summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2014-01-22 01:21:34 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2014-01-22 01:21:34 +0000
commit0b5d0eb5a2672453de059d23b0b50ad606b2f2c7 (patch)
tree647876e2897ed51799d010ef9e79d024d9c5ff5e /sys
parent6009cfa9dd644676f47c70c102db68ed2fac2617 (diff)
iscsid can handle multiple outstanding commands per lun. with the latency
on iscsi the way it is, you need to get concurrent io up in the air.
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/vscsi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/vscsi.c b/sys/dev/vscsi.c
index 98b0e319584..16250ea1158 100644
--- a/sys/dev/vscsi.c
+++ b/sys/dev/vscsi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vscsi.c,v 1.27 2013/05/10 18:33:55 mikeb Exp $ */
+/* $OpenBSD: vscsi.c,v 1.28 2014/01/22 01:21:33 dlg Exp $ */
/*
* Copyright (c) 2008 David Gwynne <dlg@openbsd.org>
@@ -151,7 +151,7 @@ vscsi_attach(struct device *parent, struct device *self, void *aux)
sc->sc_link.adapter_softc = sc;
sc->sc_link.adapter_target = 256;
sc->sc_link.adapter_buswidth = 256;
- sc->sc_link.openings = 1;
+ sc->sc_link.openings = 16;
sc->sc_link.pool = &sc->sc_iopool;
bzero(&saa, sizeof(saa));