Module Name: src
Committed By: riastradh
Date: Sat Mar 18 19:59:20 UTC 2017
Modified Files:
src/sys/kern: vfs_cache.c
Log Message:
Omit vestigial comment.
- We have not dropped the cache entry on vget failure since 2008.
- We have not had `generation numbers' since 2001.
To generate a diff of this commit:
cvs rdiff -u -r1.113 -r1.114 src/sys/kern/vfs_cache.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_cache.c
diff -u src/sys/kern/vfs_cache.c:1.113 src/sys/kern/vfs_cache.c:1.114
--- src/sys/kern/vfs_cache.c:1.113 Sat Mar 18 19:43:31 2017
+++ src/sys/kern/vfs_cache.c Sat Mar 18 19:59:20 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: vfs_cache.c,v 1.113 2017/03/18 19:43:31 riastradh Exp $ */
+/* $NetBSD: vfs_cache.c,v 1.114 2017/03/18 19:59:20 riastradh Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -58,7 +58,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vfs_cache.c,v 1.113 2017/03/18 19:43:31 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vfs_cache.c,v 1.114 2017/03/18 19:59:20 riastradh Exp $");
#ifdef _KERNEL_OPT
#include "opt_ddb.h"
@@ -100,9 +100,6 @@ __KERNEL_RCSID(0, "$NetBSD: vfs_cache.c,
* Upon reaching the last segment of a path, if the reference
* is for DELETE, or NOCACHE is set (rewrite), and the
* name is located in the cache, it will be dropped.
- * The entry is dropped also when it was not possible to lock
- * the cached vnode, either because vcache_tryvget() failed or
- * the generation number has changed while waiting for the lock.
*/
/*