Initialize xs_status to 0 after allocating a scsipi_xfer struct. Makes life

easier for driver debugging.
This commit is contained in:
fvdl 2000-05-31 11:14:25 +00:00
parent 04b8305c9e
commit c0f99cc74a
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: scsipi_base.c,v 1.36 2000/05/27 23:59:58 fvdl Exp $ */
/* $NetBSD: scsipi_base.c,v 1.37 2000/05/31 11:14:25 fvdl Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -134,6 +134,7 @@ scsipi_get_xs(sc_link, flags)
if (xs != NULL) {
callout_init(&xs->xs_callout);
xs->xs_control = flags;
xs->xs_status = 0;
TAILQ_INSERT_TAIL(&sc_link->pending_xfers, xs, device_q);
bzero(&xs->cmdstore, sizeof(xs->cmdstore));
}