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/kern/vfs_cluster.c | |
| parent | 57b102722a16a614ec608dd7a0bce80f12b34db6 (diff) | |
Notes
Diffstat (limited to 'sys/kern/vfs_cluster.c')
| -rw-r--r-- | sys/kern/vfs_cluster.c | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/kern/vfs_cluster.c b/sys/kern/vfs_cluster.c index e1c05b02a5e2..b1b4b773fa96 100644 --- a/sys/kern/vfs_cluster.c +++ b/sys/kern/vfs_cluster.c @@ -805,9 +805,8 @@ cluster_wbuild(vp, size, start_lbn, len)  				splx(s);  			} /* end of code for non-first buffers only */  			/* check for latent dependencies to be handled */ -			if ((LIST_FIRST(&tbp->b_dep)) != NULL && -			    bioops.io_start) -				(*bioops.io_start)(tbp); +			if ((LIST_FIRST(&tbp->b_dep)) != NULL) +				buf_start(tbp);  			/*  			 * If the IO is via the VM then we do some  			 * special VM hackery. (yuck)  | 
