diff options
| author | oster <oster@NetBSD.org> | 1999-11-18 13:28:06 +0000 |
|---|---|---|
| committer | oster <oster@NetBSD.org> | 1999-11-18 13:28:06 +0000 |
| commit | 5fd68b5d029c99d6dda183c94e93ef95229af35a (patch) | |
| tree | ffc725bef460bdb1a33700d6d50e623ede594cf6 /sys/dev/raidframe | |
| parent | 7e4423b4eafa3054523ac597021cdb391b0e01e2 (diff) | |
We must initialize bp->b_dep in InitBP().
Diffstat (limited to 'sys/dev/raidframe')
| -rw-r--r-- | sys/dev/raidframe/rf_netbsdkintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/raidframe/rf_netbsdkintf.c b/sys/dev/raidframe/rf_netbsdkintf.c index 1e096d916c5..085d9393191 100644 --- a/sys/dev/raidframe/rf_netbsdkintf.c +++ b/sys/dev/raidframe/rf_netbsdkintf.c @@ -1,4 +1,4 @@ -/* $NetBSD: rf_netbsdkintf.c,v 1.30 1999/11/17 01:16:37 oster Exp $ */ +/* $NetBSD: rf_netbsdkintf.c,v 1.31 1999/11/18 13:28:06 oster Exp $ */ /*- * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc. * All rights reserved. @@ -1775,7 +1775,7 @@ InitBP( #if 0 db1_printf(("bp->b_data=0x%x\n", bp->b_data)); #endif - + LIST_INIT(&bp->b_dep); bp->b_blkno = startSect; bp->b_resid = bp->b_bcount; /* XXX is this right!??!?!! */ db1_printf(("b_bcount is: %d\n", (int) bp->b_bcount)); |
