diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 1999-08-14 11:40:51 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1999-08-14 11:40:51 +0000 |
| commit | 49ff4debd3d4c155448b2b4e3b95b17d9eb575ed (patch) | |
| tree | 18155d44b4b3b16a219615f98df0600bc15bfce8 /sys/fs | |
| parent | 5462f43fb0cc935e2bfee4f28c06ec3d1c71626b (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 befab656f2fd..dfee711c968e 100644 --- a/sys/fs/specfs/spec_vnops.c +++ b/sys/fs/specfs/spec_vnops.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)spec_vnops.c 8.14 (Berkeley) 5/21/95 - * $Id: spec_vnops.c,v 1.94 1999/08/13 10:53:58 phk Exp $ + * $Id: spec_vnops.c,v 1.95 1999/08/13 16:29:21 phk Exp $ */ #include <sys/param.h> @@ -546,7 +546,7 @@ spec_strategy(ap) if (((bp->b_flags & B_READ) == 0) && (LIST_FIRST(&bp->b_dep)) != NULL && bioops.io_start) (*bioops.io_start)(bp); - (*devsw(bp->b_dev)->d_strategy)(bp); + BUF_STRATEGY(bp, 0); return (0); } @@ -570,7 +570,7 @@ spec_freeblks(ap) bp->b_blkno = ap->a_addr; bp->b_offset = dbtob(ap->a_addr); bp->b_bcount = ap->a_length; - (*bsw->d_strategy)(bp); + BUF_STRATEGY(bp, 0); return (0); } |
