summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_physio.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2003-01-03 05:57:35 +0000
committerphk <phk@FreeBSD.org>2003-01-03 05:57:35 +0000
commit00ede7aab1a3912008308e8dc9863323870901f1 (patch)
tree7c30270f60a33aae5bf8aa118731948cb5e31d9f /sys/kern/kern_physio.c
parented9a027a4af44624e146aba2ff4c73032ea9e9ad (diff)
downloadFreeBSD-src-00ede7aab1a3912008308e8dc9863323870901f1.zip
FreeBSD-src-00ede7aab1a3912008308e8dc9863323870901f1.tar.gz
Remove unused second argument from DEV_STRATEGY().
Diffstat (limited to 'sys/kern/kern_physio.c')
-rw-r--r--sys/kern/kern_physio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/kern_physio.c b/sys/kern/kern_physio.c
index 3525ca0..f61b55c 100644
--- a/sys/kern/kern_physio.c
+++ b/sys/kern/kern_physio.c
@@ -104,7 +104,7 @@ physio(dev_t dev, struct uio *uio, int ioflag)
vmapbuf(bp);
}
- DEV_STRATEGY(bp, 0);
+ DEV_STRATEGY(bp);
spl = splbio();
while ((bp->b_flags & B_DONE) == 0)
tsleep(bp, PRIBIO, "physstr", 0);
OpenPOWER on IntegriCloud