Module Name: src
Committed By: pooka
Date: Sun Nov 1 08:55:05 UTC 2015
Modified Files:
src/sys/dev/pci: vioscsi.c
Log Message:
Use SCSIPI_CHAN_NOSETTLE.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/dev/pci/vioscsi.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/pci/vioscsi.c
diff -u src/sys/dev/pci/vioscsi.c:1.5 src/sys/dev/pci/vioscsi.c:1.6
--- src/sys/dev/pci/vioscsi.c:1.5 Sat Oct 31 00:41:19 2015
+++ src/sys/dev/pci/vioscsi.c Sun Nov 1 08:55:05 2015
@@ -17,7 +17,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vioscsi.c,v 1.5 2015/10/31 00:41:19 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vioscsi.c,v 1.6 2015/11/01 08:55:05 pooka Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -186,6 +186,7 @@ vioscsi_attach(device_t parent, device_t
chan->chan_ntargets = max_target;
chan->chan_nluns = max_lun;
chan->chan_id = 0;
+ chan->chan_flags = SCSIPI_CHAN_NOSETTLE;
config_found(sc->sc_dev, &sc->sc_channel, scsiprint);
}