summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Elischer <julian@FreeBSD.org>1999-06-17 01:25:25 +0000
committerJulian Elischer <julian@FreeBSD.org>1999-06-17 01:25:25 +0000
commit4e1b754078884bbda9df07882143c4593ffc500b (patch)
tree66978e10772e830005158b30594abd51fe1cc1b3
parent94f7e29a2a694e5e695202037bc6261ad8bb24e3 (diff)
Notes
-rw-r--r--sys/kern/vfs_cluster.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/sys/kern/vfs_cluster.c b/sys/kern/vfs_cluster.c
index 47e432254090..3674516ceb5a 100644
--- a/sys/kern/vfs_cluster.c
+++ b/sys/kern/vfs_cluster.c
@@ -33,7 +33,7 @@
* SUCH DAMAGE.
*
* @(#)vfs_cluster.c 8.7 (Berkeley) 2/13/94
- * $Id: vfs_cluster.c,v 1.81 1999/05/02 23:56:11 alc Exp $
+ * $Id: vfs_cluster.c,v 1.82 1999/06/16 15:54:30 dg Exp $
*/
#include "opt_debug_cluster.h"
@@ -649,13 +649,14 @@ cluster_wbuild(vp, size, start_lbn, len)
tbp->b_flags &= ~B_DONE;
splx(s);
- /*
- * Extra memory in the buffer, punt on this buffer. XXX we could
- * handle this in most cases, but we would have to push the extra
- * memory down to after our max possible cluster size and then
- * potentially pull it back up if the cluster was terminated
- * prematurely--too much hassle.
- */
+ /*
+ * Extra memory in the buffer, punt on this buffer.
+ * XXX we could handle this in most cases, but we would
+ * have to push the extra memory down to after our max
+ * possible cluster size and then potentially pull it back
+ * up if the cluster was terminated prematurely--too much
+ * hassle.
+ */
if (((tbp->b_flags & (B_CLUSTEROK|B_MALLOC)) != B_CLUSTEROK) ||
(tbp->b_bcount != tbp->b_bufsize) ||
(tbp->b_bcount != size) ||