summaryrefslogtreecommitdiffstats
path: root/sys/kern/vfs_aio.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1999-05-06 20:00:34 +0000
committerphk <phk@FreeBSD.org>1999-05-06 20:00:34 +0000
commitf57a01ebfcda8effff50ce6f1c90b572e76d8cd2 (patch)
tree94f9d207949d472dc16e58b6234afce8a935fbb9 /sys/kern/vfs_aio.c
parentc8250e61300b5fdd54b0ef50d5344686ca707353 (diff)
downloadFreeBSD-src-f57a01ebfcda8effff50ce6f1c90b572e76d8cd2.zip
FreeBSD-src-f57a01ebfcda8effff50ce6f1c90b572e76d8cd2.tar.gz
remove b_proc from struct buf, it's (now) unused.
Reviewed by: dillon, bde
Diffstat (limited to 'sys/kern/vfs_aio.c')
-rw-r--r--sys/kern/vfs_aio.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/vfs_aio.c b/sys/kern/vfs_aio.c
index d833bd6..cd5c2ff 100644
--- a/sys/kern/vfs_aio.c
+++ b/sys/kern/vfs_aio.c
@@ -13,7 +13,7 @@
* bad that happens because of using this software isn't the responsibility
* of the author. This software is distributed AS-IS.
*
- * $Id: vfs_aio.c,v 1.46 1999/04/28 01:04:28 luoqi Exp $
+ * $Id: vfs_aio.c,v 1.47 1999/05/06 18:44:42 peter Exp $
*/
/*
@@ -1005,7 +1005,7 @@ aio_qphysio(p, aiocbe)
/*
* get a copy of the kva from the physical buffer
*/
- bp->b_proc = p;
+ bp->b_caller1 = p;
bp->b_dev = dev;
error = bp->b_error = 0;
@@ -1963,7 +1963,7 @@ aio_physwakeup(bp)
aiocbe = (struct aiocblist *)bp->b_spc;
if (aiocbe) {
- p = bp->b_proc;
+ p = bp->b_caller1;
aiocbe->jobstate = JOBST_JOBBFINISHED;
aiocbe->uaiocb._aiocb_private.status -= bp->b_resid;
OpenPOWER on IntegriCloud