Module Name:    src
Committed By:   prlw1
Date:           Mon May 25 21:02:37 UTC 2015

Modified Files:
        src/share/man/man9: csf.9
        src/sys/dev: vnd.c
        src/sys/kern: kern_mutex.c

Log Message:
typo


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/share/man/man9/csf.9
cvs rdiff -u -r1.244 -r1.245 src/sys/dev/vnd.c
cvs rdiff -u -r1.61 -r1.62 src/sys/kern/kern_mutex.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/man/man9/csf.9
diff -u src/share/man/man9/csf.9:1.8 src/share/man/man9/csf.9:1.9
--- src/share/man/man9/csf.9:1.8	Mon Oct 27 12:02:17 2014
+++ src/share/man/man9/csf.9	Mon May 25 21:02:37 2015
@@ -1,4 +1,4 @@
-.\"     $NetBSD: csf.9,v 1.8 2014/10/27 12:02:17 christos Exp $
+.\"     $NetBSD: csf.9,v 1.9 2015/05/25 21:02:37 prlw1 Exp $
 .\"
 .\" Copyright (c) 2002 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -92,7 +92,7 @@ Currently, the schedulers available are
 .Xr sched_4bsd 9 ,
 the traditional 4.4BSD thread scheduler, and
 .Xr sched_m2 9
-which implements a SVR4/Solaris like apporach.
+which implements a SVR4/Solaris like approach.
 .Pp
 The interface is divided into two parts: A set of functions each
 scheduler needs to implement and common functions used by all

Index: src/sys/dev/vnd.c
diff -u src/sys/dev/vnd.c:1.244 src/sys/dev/vnd.c:1.245
--- src/sys/dev/vnd.c:1.244	Mon May 25 20:57:18 2015
+++ src/sys/dev/vnd.c	Mon May 25 21:02:37 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: vnd.c,v 1.244 2015/05/25 20:57:18 prlw1 Exp $	*/
+/*	$NetBSD: vnd.c,v 1.245 2015/05/25 21:02:37 prlw1 Exp $	*/
 
 /*-
  * Copyright (c) 1996, 1997, 1998, 2008 The NetBSD Foundation, Inc.
@@ -91,7 +91,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vnd.c,v 1.244 2015/05/25 20:57:18 prlw1 Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vnd.c,v 1.245 2015/05/25 21:02:37 prlw1 Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_vnd.h"
@@ -743,7 +743,7 @@ vnode_has_op(const struct vnode *vp, int
 }
 
 /*
- * Handes the read/write request given in 'bp' using the vnode's VOP_READ
+ * Handles the read/write request given in 'bp' using the vnode's VOP_READ
  * and VOP_WRITE operations.
  *
  * 'obp' is a pointer to the original request fed to the vnd device.

Index: src/sys/kern/kern_mutex.c
diff -u src/sys/kern/kern_mutex.c:1.61 src/sys/kern/kern_mutex.c:1.62
--- src/sys/kern/kern_mutex.c:1.61	Fri Nov 28 08:27:27 2014
+++ src/sys/kern/kern_mutex.c	Mon May 25 21:02:37 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: kern_mutex.c,v 1.61 2014/11/28 08:27:27 uebayasi Exp $	*/
+/*	$NetBSD: kern_mutex.c,v 1.62 2015/05/25 21:02:37 prlw1 Exp $	*/
 
 /*-
  * Copyright (c) 2002, 2006, 2007, 2008 The NetBSD Foundation, Inc.
@@ -40,7 +40,7 @@
 #define	__MUTEX_PRIVATE
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_mutex.c,v 1.61 2014/11/28 08:27:27 uebayasi Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_mutex.c,v 1.62 2015/05/25 21:02:37 prlw1 Exp $");
 
 #include <sys/param.h>
 #include <sys/atomic.h>
@@ -432,7 +432,7 @@ mutex_oncpu(uintptr_t owner)
  *
  *	Support routine for mutex_enter() that must handle all cases.  In
  *	the LOCKDEBUG case, mutex_enter() is always aliased here, even if
- *	fast-path stubs are available.  If an mutex_spin_enter() stub is
+ *	fast-path stubs are available.  If a mutex_spin_enter() stub is
  *	not available, then it is also aliased directly here.
  */
 void

Reply via email to