Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 847097 | Differences between
and this patch

Collapse All | Expand All

(-)a/src/VBox/Additions/linux/sharedfolders/regops.c (-3 / +5 lines)
Lines 1-9 Link Here
1
/* $Id: regops.c $ */
1
/* $Id$ */
2
/** @file
2
/** @file
3
 * vboxsf - VBox Linux Shared Folders VFS, regular file inode and file operations.
3
 * vboxsf - VBox Linux Shared Folders VFS, regular file inode and file operations.
4
 */
4
 */
5
5
6
/*
6
/*
7
 * Copyright (C) 2006-2020 Oracle Corporation
7
 * Copyright (C) 2006-2022 Oracle Corporation
8
 *
8
 *
9
 * Permission is hereby granted, free of charge, to any person
9
 * Permission is hereby granted, free of charge, to any person
10
 * obtaining a copy of this software and associated documentation
10
 * obtaining a copy of this software and associated documentation
Lines 3442-3448 struct address_space_operations vbsf_reg Link Here
3442
    .readpage       = vbsf_readpage,
3442
    .readpage       = vbsf_readpage,
3443
    .writepage      = vbsf_writepage,
3443
    .writepage      = vbsf_writepage,
3444
    /** @todo Need .writepages if we want msync performance...  */
3444
    /** @todo Need .writepages if we want msync performance...  */
3445
#if RTLNX_VER_MIN(2,5,12)
3445
#if RTLNX_VER_MIN(5,18,0)
3446
    .dirty_folio = filemap_dirty_folio,
3447
#elif RTLNX_VER_MIN(2,5,12)
3446
    .set_page_dirty = __set_page_dirty_buffers,
3448
    .set_page_dirty = __set_page_dirty_buffers,
3447
#endif
3449
#endif
3448
#if RTLNX_VER_MIN(5,14,0)
3450
#if RTLNX_VER_MIN(5,14,0)

Return to bug 847097