From bd2dd01d295103c8b25f4956c11681510202bb8b Mon Sep 17 00:00:00 2001 From: oster Date: Tue, 12 Nov 2002 00:01:32 +0000 Subject: xorBufCount needs to be initialized too! --- sys/dev/raidframe/rf_psstatus.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'sys/dev/raidframe') diff --git a/sys/dev/raidframe/rf_psstatus.c b/sys/dev/raidframe/rf_psstatus.c index bb2a5514d14..a32132e7fa8 100644 --- a/sys/dev/raidframe/rf_psstatus.c +++ b/sys/dev/raidframe/rf_psstatus.c @@ -1,4 +1,4 @@ -/* $NetBSD: rf_psstatus.c,v 1.11 2002/10/11 02:10:09 oster Exp $ */ +/* $NetBSD: rf_psstatus.c,v 1.12 2002/11/12 00:01:32 oster Exp $ */ /* * Copyright (c) 1995 Carnegie-Mellon University. * All rights reserved. @@ -37,7 +37,7 @@ *****************************************************************************/ #include -__KERNEL_RCSID(0, "$NetBSD: rf_psstatus.c,v 1.11 2002/10/11 02:10:09 oster Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rf_psstatus.c,v 1.12 2002/11/12 00:01:32 oster Exp $"); #include @@ -188,6 +188,7 @@ rf_LookupRUStatus( p->flags = flags; p->rbuf = NULL; p->writeRbuf = NULL; + p->xorBufCount = 0; p->blockCount = 0; p->procWaitList = NULL; p->blockWaitList = NULL; -- cgit