diff options
author | dyson <dyson@FreeBSD.org> | 1996-03-02 01:49:51 +0000 |
---|---|---|
committer | dyson <dyson@FreeBSD.org> | 1996-03-02 01:49:51 +0000 |
commit | 5f6f44df5a35eca0291a7eee3f09997484de41ea (patch) | |
tree | 4f35277cccd5201e94d4e00e066e11e67a32e3f0 /sys/scsi/scsi_ioctl.c | |
parent | 8bc36c3dbc3c59e9d8632ddda344652ff44d3ec1 (diff) | |
download | FreeBSD-src-5f6f44df5a35eca0291a7eee3f09997484de41ea.zip FreeBSD-src-5f6f44df5a35eca0291a7eee3f09997484de41ea.tar.gz |
More b_flags fixes.
Diffstat (limited to 'sys/scsi/scsi_ioctl.c')
-rw-r--r-- | sys/scsi/scsi_ioctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/scsi/scsi_ioctl.c b/sys/scsi/scsi_ioctl.c index 50aa65c..e93ef24 100644 --- a/sys/scsi/scsi_ioctl.c +++ b/sys/scsi/scsi_ioctl.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. *End copyright * - * $Id: scsi_ioctl.c,v 1.18 1995/12/14 09:54:27 phk Exp $ + * $Id: scsi_ioctl.c,v 1.19 1996/01/05 20:12:46 wollman Exp $ * * */ @@ -318,7 +318,7 @@ struct proc *p, struct scsi_link *sc_link) /* if no data, no need to translate it.. */ bp->b_un.b_addr = 0; bp->b_dev = dev; - bp->b_flags = B_BUSY; + bp->b_flags |= B_BUSY; scsistrategy(bp); ret = bp->b_error; |