Module Name: src
Committed By: wiz
Date: Sun Dec 6 09:38:54 UTC 2015
Modified Files:
src/sys/uvm: uvm_vnode.c
Log Message:
Fix typo in comment.
To generate a diff of this commit:
cvs rdiff -u -r1.101 -r1.102 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.101 src/sys/uvm/uvm_vnode.c:1.102
--- src/sys/uvm/uvm_vnode.c:1.101 Sun Dec 6 08:53:22 2015
+++ src/sys/uvm/uvm_vnode.c Sun Dec 6 09:38:54 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: uvm_vnode.c,v 1.101 2015/12/06 08:53:22 mlelstv Exp $ */
+/* $NetBSD: uvm_vnode.c,v 1.102 2015/12/06 09:38:54 wiz 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.101 2015/12/06 08:53:22 mlelstv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_vnode.c,v 1.102 2015/12/06 09:38:54 wiz Exp $");
#ifdef _KERNEL_OPT
#include "opt_uvmhist.h"
@@ -356,7 +356,7 @@ uvm_vnp_setsize(struct vnode *vp, voff_t
oldsize = vp->v_writesize;
/*
- * check wether size shrinks
+ * check whether size shrinks
* if old size hasn't been set, there are no pages to drop
* if there was an integer overflow in pgend, then this is no shrink
*/