diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2000-06-16 08:48:51 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2000-06-16 08:48:51 +0000 |
| commit | a2e7a027a751cc513cc6003d21ace9f2c82cc41a (patch) | |
| tree | be9d43940b9a04c72198b4d9cb5742539455766d /sys/fs | |
| parent | 57b102722a16a614ec608dd7a0bce80f12b34db6 (diff) | |
Notes
Diffstat (limited to 'sys/fs')
| -rw-r--r-- | sys/fs/specfs/spec_vnops.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/fs/specfs/spec_vnops.c b/sys/fs/specfs/spec_vnops.c index 4b8f20c2afeff..d3aa1d8aff362 100644 --- a/sys/fs/specfs/spec_vnops.c +++ b/sys/fs/specfs/spec_vnops.c @@ -417,9 +417,8 @@ spec_strategy(ap) struct mount *mp; bp = ap->a_bp; - if ((bp->b_iocmd == BIO_WRITE) && - (LIST_FIRST(&bp->b_dep)) != NULL && bioops.io_start) - (*bioops.io_start)(bp); + if ((bp->b_iocmd == BIO_WRITE) && (LIST_FIRST(&bp->b_dep)) != NULL) + buf_start(bp); /* * Collect statistics on synchronous and asynchronous read |
