diff options
author | 2006-11-15 17:25:40 +0000 | |
---|---|---|
committer | 2006-11-15 17:25:40 +0000 | |
commit | 2addf348d99d034bebaf09682c22cb6f51ac3e59 (patch) | |
tree | 224b96b682b06720cc5200707e991d97089afd1c /sys/kern/kern_physio.c | |
parent | make sure pod parsers are in a sane state at beginning of parse. (diff) | |
download | wireguard-openbsd-2addf348d99d034bebaf09682c22cb6f51ac3e59.tar.xz wireguard-openbsd-2addf348d99d034bebaf09682c22cb6f51ac3e59.zip |
typos; from bret lambert
Diffstat (limited to 'sys/kern/kern_physio.c')
-rw-r--r-- | sys/kern/kern_physio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/kern_physio.c b/sys/kern/kern_physio.c index 5a31a3aa7d4..436436be615 100644 --- a/sys/kern/kern_physio.c +++ b/sys/kern/kern_physio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_physio.c,v 1.24 2005/12/08 14:02:47 krw Exp $ */ +/* $OpenBSD: kern_physio.c,v 1.25 2006/11/15 17:25:40 jmc Exp $ */ /* $NetBSD: kern_physio.c,v 1.28 1997/05/19 10:43:28 pk Exp $ */ /*- @@ -116,7 +116,7 @@ physio(void (*strategy)(struct buf *), struct buf *bp, dev_t dev, int flags, /* * [mark the buffer busy for physical I/O] * (i.e. set B_PHYS (because it's an I/O to user - * memory, and B_RAW, because B_RAW is to be + * memory), and B_RAW, because B_RAW is to be * "Set by physio for raw transfers.", in addition * to the "busy" and read/write flag.) */ @@ -242,7 +242,7 @@ done: else { /* * [if another process is waiting for the raw I/O buffer, - * wake up processes waiting to do physical I/O; + * wake up processes waiting to do physical I/O] */ if (bp->b_flags & B_WANTED) { bp->b_flags &= ~B_WANTED; |