Module Name: src Committed By: dholland Date: Sat Sep 21 19:51:33 UTC 2013
Modified Files: src/sys/kern: vfs_vnode.c Log Message: In description of a locking mess, add reference to the PR for the bug the mess is supposed to help with. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 src/sys/kern/vfs_vnode.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/kern/vfs_vnode.c diff -u src/sys/kern/vfs_vnode.c:1.19 src/sys/kern/vfs_vnode.c:1.20 --- src/sys/kern/vfs_vnode.c:1.19 Wed Feb 13 14:03:48 2013 +++ src/sys/kern/vfs_vnode.c Sat Sep 21 19:51:33 2013 @@ -1,4 +1,4 @@ -/* $NetBSD: vfs_vnode.c,v 1.19 2013/02/13 14:03:48 hannken Exp $ */ +/* $NetBSD: vfs_vnode.c,v 1.20 2013/09/21 19:51:33 dholland Exp $ */ /*- * Copyright (c) 1997-2011 The NetBSD Foundation, Inc. @@ -121,10 +121,12 @@ * * Note: if VI_CLEAN is set, vnode_t::v_interlock will be released while * mntvnode_lock is still held. + * + * See PR 41374. */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: vfs_vnode.c,v 1.19 2013/02/13 14:03:48 hannken Exp $"); +__KERNEL_RCSID(0, "$NetBSD: vfs_vnode.c,v 1.20 2013/09/21 19:51:33 dholland Exp $"); #include <sys/param.h> #include <sys/kernel.h>