aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/vinum
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1999-05-06 20:00:34 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1999-05-06 20:00:34 +0000
commitb0eeea20421ad6d9b90f1f1b081d980349642cc3 (patch)
tree3ae069fec51f5f2efb7e7a53ba32e7ea9581458f /sys/dev/vinum
parent782e5999ff4b4cd0a88a706905eeea985df84481 (diff)
downloadsrc-b0eeea20421ad6d9b90f1f1b081d980349642cc3.tar.gz
src-b0eeea20421ad6d9b90f1f1b081d980349642cc3.zip
remove b_proc from struct buf, it's (now) unused.
Reviewed by: dillon, bde
Notes
Notes: svn path=/head/; revision=46580
Diffstat (limited to 'sys/dev/vinum')
-rw-r--r--sys/dev/vinum/vinumio.c3
-rw-r--r--sys/dev/vinum/vinumrequest.c3
2 files changed, 2 insertions, 4 deletions
diff --git a/sys/dev/vinum/vinumio.c b/sys/dev/vinum/vinumio.c
index e8c2556edaba..0d51fbb95f49 100644
--- a/sys/dev/vinum/vinumio.c
+++ b/sys/dev/vinum/vinumio.c
@@ -33,7 +33,7 @@
* otherwise) arising in any way out of the use of this software, even if
* advised of the possibility of such damage.
*
- * $Id: vinumio.c,v 1.24 1999/03/23 02:00:52 grog Exp grog $
+ * $Id: vinumio.c,v 1.21 1999/05/02 07:51:20 grog Exp $
*/
#define STATIC /* nothing while we're testing XXX */
@@ -284,7 +284,6 @@ driveio(struct drive *drive, char *buf, size_t length, off_t offset, int flag)
bp = geteblk(len); /* get a buffer header */
bp->b_flags = B_BUSY | flag; /* get busy */
- bp->b_proc = curproc; /* process */
bp->b_dev = drive->vp->v_un.vu_specinfo->si_rdev; /* device */
bp->b_blkno = offset / drive->partinfo.disklab->d_secsize; /* block number */
bp->b_data = buf;
diff --git a/sys/dev/vinum/vinumrequest.c b/sys/dev/vinum/vinumrequest.c
index f0d0cfb73aa1..d022fe621ae5 100644
--- a/sys/dev/vinum/vinumrequest.c
+++ b/sys/dev/vinum/vinumrequest.c
@@ -33,7 +33,7 @@
* otherwise) arising in any way out of the use of this software, even if
* advised of the possibility of such damage.
*
- * $Id: vinumrequest.c,v 1.23 1999/03/20 21:58:38 grog Exp grog $
+ * $Id: vinumrequest.c,v 1.18 1999/03/28 08:54:25 grog Exp $
*/
#define REALLYKERNEL
@@ -724,7 +724,6 @@ build_rq_buffer(struct rqelement *rqe, struct plex *plex)
/* Initialize the buf struct */
bzero(&rqe->b, sizeof(struct buf));
- bp->b_proc = ubp->b_proc; /* process pointer */
bp->b_flags = ubp->b_flags & (B_NOCACHE | B_READ | B_ASYNC); /* copy these flags from user bp */
bp->b_flags |= B_CALL | B_BUSY; /* inform us when it's done */
/*