summaryrefslogtreecommitdiffstats
path: root/sys/fs/nandfs
diff options
context:
space:
mode:
authorrmacklem <rmacklem@FreeBSD.org>2015-04-15 20:16:31 +0000
committerrmacklem <rmacklem@FreeBSD.org>2015-04-15 20:16:31 +0000
commitad77d0b1c1c3c09a9bf76bebb397102d08ed35c6 (patch)
treebbc578ff440927019e13de747fa3256b9df8b2d7 /sys/fs/nandfs
parent98c2a4bca48582a25dbb01274fd65c9b8cd74058 (diff)
downloadFreeBSD-src-ad77d0b1c1c3c09a9bf76bebb397102d08ed35c6.zip
FreeBSD-src-ad77d0b1c1c3c09a9bf76bebb397102d08ed35c6.tar.gz
File systems that do not use the buffer cache (such as ZFS) must
use VOP_FSYNC() to perform the NFS server's Commit operation. This patch adds a mnt_kern_flag called MNTK_USES_BCACHE which is set by file systems that use the buffer cache. If this flag is not set, the NFS server always does a VOP_FSYNC(). This should be ok for old file system modules that do not set MNTK_USES_BCACHE, since calling VOP_FSYNC() is correct, although it might not be optimal for file systems that use the buffer cache. Reviewed by: kib MFC after: 2 weeks
Diffstat (limited to 'sys/fs/nandfs')
-rw-r--r--sys/fs/nandfs/nandfs_vfsops.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/fs/nandfs/nandfs_vfsops.c b/sys/fs/nandfs/nandfs_vfsops.c
index eb07d4f..7132635 100644
--- a/sys/fs/nandfs/nandfs_vfsops.c
+++ b/sys/fs/nandfs/nandfs_vfsops.c
@@ -1391,6 +1391,7 @@ nandfs_mountfs(struct vnode *devvp, struct mount *mp)
nmp->nm_ronly = ronly;
MNT_ILOCK(mp);
mp->mnt_flag |= MNT_LOCAL;
+ mp->mnt_kern_flag |= MNTK_USES_BCACHE;
MNT_IUNLOCK(mp);
nmp->nm_nandfsdev = nandfsdev;
/* Add our mountpoint */
OpenPOWER on IntegriCloud