diff options
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/fdc/fdc.c | 3 | ||||
-rw-r--r-- | sys/dev/vinum/vinumio.c | 3 | ||||
-rw-r--r-- | sys/dev/vinum/vinumrequest.c | 3 |
3 files changed, 3 insertions, 6 deletions
diff --git a/sys/dev/fdc/fdc.c b/sys/dev/fdc/fdc.c index 5ffa489..845107c 100644 --- a/sys/dev/fdc/fdc.c +++ b/sys/dev/fdc/fdc.c @@ -47,7 +47,7 @@ * SUCH DAMAGE. * * from: @(#)fd.c 7.4 (Berkeley) 5/25/91 - * $Id: fd.c,v 1.136 1999/04/27 11:14:56 phk Exp $ + * $Id: fd.c,v 1.137 1999/05/02 20:38:08 peter Exp $ * */ @@ -2194,7 +2194,6 @@ fdformat(dev, finfo, p) PHOLD(p); bzero((void *)bp, sizeof(struct buf)); bp->b_flags = B_BUSY | B_PHYS | B_FORMAT; - bp->b_proc = p; /* * calculate a fake blkno, so fdstrategy() would initiate a diff --git a/sys/dev/vinum/vinumio.c b/sys/dev/vinum/vinumio.c index e8c2556..0d51fbb 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 f0d0cfb..d022fe6 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 */ /* |