summaryrefslogtreecommitdiffstats
path: root/sys/kern/vfs_cluster.c
diff options
context:
space:
mode:
authorcsapuntz <csapuntz@openbsd.org>2001-02-21 23:24:29 +0000
committercsapuntz <csapuntz@openbsd.org>2001-02-21 23:24:29 +0000
commitbc75418a1e2dab66284a1ed387d0dabd962c9986 (patch)
treea3fe0f405875958f0e076b635d8094cac0713557 /sys/kern/vfs_cluster.c
parent+ sis (diff)
downloadwireguard-openbsd-bc75418a1e2dab66284a1ed387d0dabd962c9986.tar.xz
wireguard-openbsd-bc75418a1e2dab66284a1ed387d0dabd962c9986.zip
Latest soft updates from FreeBSD/Kirk McKusick
Snapshot-related code has been commented out.
Diffstat (limited to 'sys/kern/vfs_cluster.c')
-rw-r--r--sys/kern/vfs_cluster.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/vfs_cluster.c b/sys/kern/vfs_cluster.c
index 0c433c72b83..1839e585f0f 100644
--- a/sys/kern/vfs_cluster.c
+++ b/sys/kern/vfs_cluster.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vfs_cluster.c,v 1.17 2000/06/23 02:14:38 mickey Exp $ */
+/* $OpenBSD: vfs_cluster.c,v 1.18 2001/02/21 23:24:30 csapuntz Exp $ */
/* $NetBSD: vfs_cluster.c,v 1.12 1996/04/22 01:39:05 christos Exp $ */
/*-
@@ -703,8 +703,8 @@ redo:
tbp->b_flags &= ~(B_READ | B_DONE | B_ERROR | B_DELWRI);
tbp->b_flags |= (B_ASYNC | B_AGE);
- if (LIST_FIRST(&tbp->b_dep) != NULL && bioops.io_start)
- (*bioops.io_start)(tbp);
+ if (LIST_FIRST(&tbp->b_dep) != NULL)
+ buf_start(tbp);
pagemove(tbp->b_data, cp, size);
bp->b_bcount += size;