Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 9 Aug 2002 00:25:19 -0700 (PDT)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 15722 for review
Message-ID:  <200208090725.g797PJ8C021299@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=15722

Change 15722 by rwatson@rwatson_tislabs on 2002/08/09 00:24:33

	Catch one more merge issue from the integ: vp->v_flag is now
	vp->v_vflag for vnode lock protected flags.

Affected files ...

.. //depot/projects/trustedbsd/mac/sys/kern/vfs_cache.c#12 edit

Differences ...

==== //depot/projects/trustedbsd/mac/sys/kern/vfs_cache.c#12 (text+ko) ====

@@ -882,7 +882,7 @@
 		if (vp == rootvnode || vp == fd_rdir)
 			break;
 		ASSERT_VOP_LOCKED(vp, "vn_fullpath");
-		if (vp->v_flag & VV_ROOT) {
+		if (vp->v_vflag & VV_ROOT) {
 			if (vp->v_mount == NULL) {	/* forced unmount */
 				error = EBADF;
 				goto out;

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200208090725.g797PJ8C021299>