summaryrefslogtreecommitdiffstats
path: root/sys/fs
diff options
context:
space:
mode:
authordillon <dillon@FreeBSD.org>2001-11-04 18:55:42 +0000
committerdillon <dillon@FreeBSD.org>2001-11-04 18:55:42 +0000
commitc9a56085cebe87767458dd48f7738acbe105619e (patch)
tree61568963b6d37be55e92fb098649a0a28e127bf3 /sys/fs
parent80bdf7d4cbe1d6a9a78f0f19599df30b74b9279e (diff)
downloadFreeBSD-src-c9a56085cebe87767458dd48f7738acbe105619e.zip
FreeBSD-src-c9a56085cebe87767458dd48f7738acbe105619e.tar.gz
Add mnt_reservedvnlist so we can MFC to 4.x, in order to make all mount
structure changes now rather then piecemeal later on. mnt_nvnodelist currently holds all the vnodes under the mount point. This will eventually be split into a 'dirty' and 'clean' list. This way we only break kld's once rather then twice. nvnodelist will eventually turn into the dirty list and should remain compatible with the klds.
Diffstat (limited to 'sys/fs')
-rw-r--r--sys/fs/msdosfs/msdosfs_vfsops.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/fs/msdosfs/msdosfs_vfsops.c b/sys/fs/msdosfs/msdosfs_vfsops.c
index ca5a9ca..b0f0a53 100644
--- a/sys/fs/msdosfs/msdosfs_vfsops.c
+++ b/sys/fs/msdosfs/msdosfs_vfsops.c
@@ -177,6 +177,7 @@ msdosfs_mountroot()
mp->mnt_op = &msdosfs_vfsops;
mp->mnt_flag = 0;
TAILQ_INIT(&mp->mnt_nvnodelist);
+ TAILQ_INIT(&mp->mnt_reservedvnlist);
args.flags = 0;
args.uid = 0;
OpenPOWER on IntegriCloud