From 0075ec260e5df5904c2fe40adf698c26bb4d3df3 Mon Sep 17 00:00:00 2001 From: Vladislav Bolkhovitin Date: Thu, 24 Dec 2009 19:33:16 +0000 Subject: [PATCH] Limiting MaxOutstandingR2T to 1, because this code is known to crash sometimes. The proper fix is too big for the stable branch. git-svn-id: http://svn.code.sf.net/p/scst/svn/branches/1.0.1.x@1413 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- iscsi-scst/usr/param.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iscsi-scst/usr/param.c b/iscsi-scst/usr/param.c index 3fc77f46a..f588f89ae 100644 --- a/iscsi-scst/usr/param.c +++ b/iscsi-scst/usr/param.c @@ -304,7 +304,7 @@ struct iscsi_key session_keys[] = { {"FirstBurstLength", 65536, -1, 512, -1, &minimum_ops}, {"DefaultTime2Wait", 2, 2, 0, 3600, &maximum_ops}, {"DefaultTime2Retain", 20, 20, 0, 3600, &minimum_ops}, - {"MaxOutstandingR2T", 1, 20, 1, 65535, &minimum_ops}, + {"MaxOutstandingR2T", 1, 1, 1, 1, &minimum_ops}, {"DataPDUInOrder", 1, 0, 0, 1, &or_ops}, {"DataSequenceInOrder", 1, 0, 0, 1, &or_ops}, {"ErrorRecoveryLevel", 0, 0, 0, 0, &minimum_ops},