Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-9]: src/sys/miscfs/nullfs Pull up following revision(s) (requeste...
details: https://anonhg.NetBSD.org/src/rev/f8b7fcdd7837
branches: netbsd-9
changeset: 466537:f8b7fcdd7837
user: martin <martin%NetBSD.org@localhost>
date: Tue Dec 24 17:45:53 2019 +0000
description:
Pull up following revision(s) (requested by hannken in ticket #581):
sys/miscfs/nullfs/null_vfsops.c: revision 1.96
Set IMNT_MPSAFE before creating the vnode for the root of the
filesystem. Otherwise, it won't be created with VV_MPSAFE and require
the kernel_lock.
diffstat:
sys/miscfs/nullfs/null_vfsops.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (34 lines):
diff -r e1dd5c05370d -r f8b7fcdd7837 sys/miscfs/nullfs/null_vfsops.c
--- a/sys/miscfs/nullfs/null_vfsops.c Tue Dec 24 17:44:22 2019 +0000
+++ b/sys/miscfs/nullfs/null_vfsops.c Tue Dec 24 17:45:53 2019 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: null_vfsops.c,v 1.95 2019/02/20 10:06:00 hannken Exp $ */
+/* $NetBSD: null_vfsops.c,v 1.95.4.1 2019/12/24 17:45:53 martin Exp $ */
/*
* Copyright (c) 1999 National Aeronautics & Space Administration
@@ -76,7 +76,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: null_vfsops.c,v 1.95 2019/02/20 10:06:00 hannken Exp $");
+__KERNEL_RCSID(0, "$NetBSD: null_vfsops.c,v 1.95.4.1 2019/12/24 17:45:53 martin Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -140,6 +140,7 @@
/* Create the mount point. */
nmp = kmem_zalloc(sizeof(struct null_mount), KM_SLEEP);
mp->mnt_data = nmp;
+ mp->mnt_iflag |= IMNT_MPSAFE;
/*
* Make sure that the mount point is sufficiently initialized
@@ -168,7 +169,6 @@
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
vp->v_vflag |= VV_ROOT;
nmp->nullm_rootvp = vp;
- mp->mnt_iflag |= IMNT_MPSAFE;
VOP_UNLOCK(vp);
error = set_statvfs_info(path, UIO_USERSPACE, args->la.target,
Home |
Main Index |
Thread Index |
Old Index