Fix a bug that was almost certainly making breadn() fail. BUF_KERNPROC()

was being called on the wrong bp - it should be called on the one that's
just about to be fed to VOP_STRATEGY().
This commit is contained in:
peter 1999-06-28 15:32:10 +00:00
parent 836f488cc5
commit bbe9a3f06f

View File

@ -11,7 +11,7 @@
* 2. Absolutely no warranty of function or purpose is made by the author
* John S. Dyson.
*
* $Id: vfs_bio.c,v 1.216 1999/06/26 02:46:06 mckusick Exp $
* $Id: vfs_bio.c,v 1.217 1999/06/26 14:46:35 peter Exp $
*/
/*
@ -464,7 +464,7 @@ breadn(struct vnode * vp, daddr_t blkno, int size,
rabp->b_rcred = cred;
}
vfs_busy_pages(rabp, 0);
BUF_KERNPROC(bp);
BUF_KERNPROC(rabp);
VOP_STRATEGY(vp, rabp);
} else {
brelse(rabp);