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/fs | |
| parent | 49247edca6e7c15753ddf97a4de5f39d00858492 (diff) | |
Notes
Diffstat (limited to 'sys/fs')
| -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 9a12ee4414a8..ec5cc4614018 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); } |
