diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-01-03 05:57:35 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-01-03 05:57:35 +0000 |
| commit | e2a3ea1c450d7e856afced7f789ae556e9f92a75 (patch) | |
| tree | 7c30270f60a33aae5bf8aa118731948cb5e31d9f /sys/dev | |
| parent | 49247edca6e7c15753ddf97a4de5f39d00858492 (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/raidframe/rf_freebsdkintf.c | 4 | ||||
| -rw-r--r-- | sys/dev/vinum/vinumdaemon.c | 2 | ||||
| -rw-r--r-- | sys/dev/vinum/vinuminterrupt.c | 4 | ||||
| -rw-r--r-- | sys/dev/vinum/vinumio.c | 4 | ||||
| -rw-r--r-- | sys/dev/vinum/vinumrequest.c | 4 |
5 files changed, 9 insertions, 9 deletions
diff --git a/sys/dev/raidframe/rf_freebsdkintf.c b/sys/dev/raidframe/rf_freebsdkintf.c index ad6ea113cf633..91454a07cc248 100644 --- a/sys/dev/raidframe/rf_freebsdkintf.c +++ b/sys/dev/raidframe/rf_freebsdkintf.c @@ -1971,7 +1971,7 @@ raidread_component_label(dev, b_vp, clabel) bp->b_iocmd = BIO_READ; bp->b_resid = RF_COMPONENT_INFO_SIZE / DEV_BSIZE; - DEV_STRATEGY(bp, 0); + DEV_STRATEGY(bp); error = bufwait(bp); if (!error) { @@ -2014,7 +2014,7 @@ raidwrite_component_label(dev, b_vp, clabel) memcpy(bp->b_data, clabel, sizeof(RF_ComponentLabel_t)); - DEV_STRATEGY(bp, 0); + DEV_STRATEGY(bp); error = bufwait(bp); bp->b_flags |= B_INVAL | B_AGE; diff --git a/sys/dev/vinum/vinumdaemon.c b/sys/dev/vinum/vinumdaemon.c index 16036e88b20fe..a98977eb2c349 100644 --- a/sys/dev/vinum/vinumdaemon.c +++ b/sys/dev/vinum/vinumdaemon.c @@ -210,7 +210,7 @@ recover_io(struct request *rq) * * Negotiate with phk to get it fixed. */ - DEV_STRATEGY(rq->bp, 0); /* reissue the command */ + DEV_STRATEGY(rq->bp); /* reissue the command */ } /* Functions called to interface with the daemon */ diff --git a/sys/dev/vinum/vinuminterrupt.c b/sys/dev/vinum/vinuminterrupt.c index fdefee4d2b9a7..8d72579af8cfc 100644 --- a/sys/dev/vinum/vinuminterrupt.c +++ b/sys/dev/vinum/vinuminterrupt.c @@ -420,7 +420,7 @@ complete_raid5_write(struct rqelement *rqe) if (debug & DEBUG_LASTREQS) logrq(loginfo_raid5_data, (union rqinfou) rqe, ubp); #endif - DEV_STRATEGY(&rqe->b, 0); + DEV_STRATEGY(&rqe->b); } } } @@ -459,7 +459,7 @@ complete_raid5_write(struct rqelement *rqe) if (debug & DEBUG_LASTREQS) logrq(loginfo_raid5_parity, (union rqinfou) rqe, ubp); #endif - DEV_STRATEGY(&rqe->b, 0); + DEV_STRATEGY(&rqe->b); } /* Local Variables: */ diff --git a/sys/dev/vinum/vinumio.c b/sys/dev/vinum/vinumio.c index 612f5ed8b4db0..0aef397d5e986 100644 --- a/sys/dev/vinum/vinumio.c +++ b/sys/dev/vinum/vinumio.c @@ -281,7 +281,7 @@ driveio(struct drive *drive, char *buf, size_t length, off_t offset, int flag) bp->b_saveaddr = bp->b_data; bp->b_data = buf; bp->b_bcount = len; - DEV_STRATEGY(bp, 0); /* initiate the transfer */ + DEV_STRATEGY(bp); /* initiate the transfer */ error = bufwait(bp); bp->b_data = bp->b_saveaddr; bp->b_flags |= B_INVAL | B_AGE; @@ -758,7 +758,7 @@ write_volume_label(int volno) * * Negotiate with phk to get it fixed. */ - DEV_STRATEGY(bp, 0); + DEV_STRATEGY(bp); error = bufwait(bp); bp->b_flags |= B_INVAL | B_AGE; bp->b_ioflags &= ~BIO_ERROR; diff --git a/sys/dev/vinum/vinumrequest.c b/sys/dev/vinum/vinumrequest.c index 56086a4b36913..8423ed2c905c9 100644 --- a/sys/dev/vinum/vinumrequest.c +++ b/sys/dev/vinum/vinumrequest.c @@ -439,7 +439,7 @@ launch_requests(struct request *rq, int reviveok) logrq(loginfo_rqe, (union rqinfou) rqe, rq->bp); #endif /* fire off the request */ - DEV_STRATEGY(&rqe->b, 0); + DEV_STRATEGY(&rqe->b); } } } @@ -983,7 +983,7 @@ sdio(struct buf *bp) if (debug & DEBUG_LASTREQS) logrq(loginfo_sdiol, (union rqinfou) &sbp->b, &sbp->b); #endif - DEV_STRATEGY(&sbp->b, 0); + DEV_STRATEGY(&sbp->b); splx(s); } |
