Module Name: src
Committed By: yamt
Date: Wed Aug 1 21:12:24 UTC 2012
Modified Files:
src/sys/uvm [yamt-pagecache]: uvm_vnode.c
Log Message:
fix a typo in a comment.
To generate a diff of this commit:
cvs rdiff -u -r1.97.2.5 -r1.97.2.6 src/sys/uvm/uvm_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/uvm/uvm_vnode.c
diff -u src/sys/uvm/uvm_vnode.c:1.97.2.5 src/sys/uvm/uvm_vnode.c:1.97.2.6
--- src/sys/uvm/uvm_vnode.c:1.97.2.5 Fri Feb 17 08:18:57 2012
+++ src/sys/uvm/uvm_vnode.c Wed Aug 1 21:12:23 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: uvm_vnode.c,v 1.97.2.5 2012/02/17 08:18:57 yamt Exp $ */
+/* $NetBSD: uvm_vnode.c,v 1.97.2.6 2012/08/01 21:12:23 yamt Exp $ */
/*
* Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -45,7 +45,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_vnode.c,v 1.97.2.5 2012/02/17 08:18:57 yamt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_vnode.c,v 1.97.2.6 2012/08/01 21:12:23 yamt Exp $");
#include "opt_uvmhist.h"
@@ -261,7 +261,7 @@ uvn_findpage(struct uvm_object *uobj, vo
*
* XXX fragile API
* note that the array can be the one supplied by the caller of
- * uvm_findpages. in that case, fillflags used by the caller
+ * uvn_findpages. in that case, fillflags used by the caller
* might not match strictly with ours.
* in particular, the caller might have filled the array
* without DIRTYONLY or DENSE but passed us UFP_DIRTYONLY.