summaryrefslogtreecommitdiffstats
path: root/sys/fs
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1999-05-06 20:00:34 +0000
committerphk <phk@FreeBSD.org>1999-05-06 20:00:34 +0000
commitf57a01ebfcda8effff50ce6f1c90b572e76d8cd2 (patch)
tree94f9d207949d472dc16e58b6234afce8a935fbb9 /sys/fs
parentc8250e61300b5fdd54b0ef50d5344686ca707353 (diff)
downloadFreeBSD-src-f57a01ebfcda8effff50ce6f1c90b572e76d8cd2.zip
FreeBSD-src-f57a01ebfcda8effff50ce6f1c90b572e76d8cd2.tar.gz
remove b_proc from struct buf, it's (now) unused.
Reviewed by: dillon, bde
Diffstat (limited to 'sys/fs')
-rw-r--r--sys/fs/specfs/spec_vnops.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/fs/specfs/spec_vnops.c b/sys/fs/specfs/spec_vnops.c
index 7f76209..a3ee89f 100644
--- a/sys/fs/specfs/spec_vnops.c
+++ b/sys/fs/specfs/spec_vnops.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)spec_vnops.c 8.14 (Berkeley) 5/21/95
- * $Id: spec_vnops.c,v 1.81 1999/02/25 05:22:30 dillon Exp $
+ * $Id: spec_vnops.c,v 1.82 1999/04/05 19:38:30 julian Exp $
*/
#include <sys/param.h>
@@ -812,8 +812,7 @@ spec_getpages(ap)
bp->b_iodone = spec_getpages_iodone;
/* B_PHYS is not set, but it is nice to fill this in. */
- bp->b_proc = curproc;
- bp->b_rcred = bp->b_wcred = bp->b_proc->p_ucred;
+ bp->b_rcred = bp->b_wcred = curproc->p_ucred;
if (bp->b_rcred != NOCRED)
crhold(bp->b_rcred);
if (bp->b_wcred != NOCRED)
OpenPOWER on IntegriCloud