From 00ede7aab1a3912008308e8dc9863323870901f1 Mon Sep 17 00:00:00 2001 From: phk Date: Fri, 3 Jan 2003 05:57:35 +0000 Subject: Remove unused second argument from DEV_STRATEGY(). --- sys/fs/specfs/spec_vnops.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/fs') 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); } -- cgit v1.1