diff options
author | phk <phk@FreeBSD.org> | 2003-01-03 05:57:35 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-01-03 05:57:35 +0000 |
commit | 00ede7aab1a3912008308e8dc9863323870901f1 (patch) | |
tree | 7c30270f60a33aae5bf8aa118731948cb5e31d9f /sys/fs/specfs | |
parent | ed9a027a4af44624e146aba2ff4c73032ea9e9ad (diff) | |
download | FreeBSD-src-00ede7aab1a3912008308e8dc9863323870901f1.zip FreeBSD-src-00ede7aab1a3912008308e8dc9863323870901f1.tar.gz |
Remove unused second argument from DEV_STRATEGY().
Diffstat (limited to 'sys/fs/specfs')
-rw-r--r-- | sys/fs/specfs/spec_vnops.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/fs/specfs/spec_vnops.c b/sys/fs/specfs/spec_vnops.c index 9a12ee4..ec5cc46 100644 --- a/sys/fs/specfs/spec_vnops.c +++ b/sys/fs/specfs/spec_vnops.c @@ -602,10 +602,10 @@ spec_strategy(ap) if (dsw->d_flags & D_NOGIANT) { DROP_GIANT(); - DEV_STRATEGY(bp, 0); + DEV_STRATEGY(bp); PICKUP_GIANT(); } else - DEV_STRATEGY(bp, 0); + DEV_STRATEGY(bp); return (0); } @@ -635,7 +635,7 @@ spec_freeblks(ap) bp->b_offset = dbtob(ap->a_addr); bp->b_bcount = ap->a_length; BUF_KERNPROC(bp); - DEV_STRATEGY(bp, 0); + DEV_STRATEGY(bp); return (0); } |