diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 2000-03-20 11:29:10 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2000-03-20 11:29:10 +0000 |
commit | b99c307a21423935df9af6a532033f28b62e2966 (patch) | |
tree | 0a181e005933f6282f198aeeb060a7edd54d0817 /sys/dev/vinum/vinumrequest.c | |
parent | 3ef5063241caabe589ea159cdd84b6478e2d2010 (diff) | |
download | src-b99c307a21423935df9af6a532033f28b62e2966.tar.gz src-b99c307a21423935df9af6a532033f28b62e2966.zip |
Rename the existing BUF_STRATEGY() to DEV_STRATEGY()
substitute BUF_WRITE(foo) for VOP_BWRITE(foo->b_vp, foo)
substitute BUF_STRATEGY(foo) for VOP_STRATEGY(foo->b_vp, foo)
This patch is machine generated except for the ccd.c and buf.h parts.
Notes
Notes:
svn path=/head/; revision=58349
Diffstat (limited to 'sys/dev/vinum/vinumrequest.c')
-rw-r--r-- | sys/dev/vinum/vinumrequest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/vinum/vinumrequest.c b/sys/dev/vinum/vinumrequest.c index 98c78921bd7d..3e86d7473efd 100644 --- a/sys/dev/vinum/vinumrequest.c +++ b/sys/dev/vinum/vinumrequest.c @@ -419,7 +419,7 @@ launch_requests(struct request *rq, int reviveok) /* fire off the request */ - BUF_STRATEGY(&rqe->b, 0); + DEV_STRATEGY(&rqe->b, 0); } } } @@ -960,7 +960,7 @@ sdio(struct buf *bp) if (debug & DEBUG_LASTREQS) logrq(loginfo_sdiol, (union rqinfou) &sbp->b, &sbp->b); #endif - BUF_STRATEGY(&sbp->b, 0); + DEV_STRATEGY(&sbp->b, 0); splx(s); } |