aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJayamohan Kallickal <jayamohank@serverengines.com>2010-01-22 19:06:10 -0500
committerJames Bottomley <James.Bottomley@suse.de>2010-02-08 19:34:11 -0500
commit230dceb4316da9c8e05c82b64f2527aee95da2ff (patch)
tree393a1344de9b332bae1b5bb234166aaef929c55f
parentd2eeb1ac35a7146cbd4b1f6bf09bb6384ccdfb0d (diff)
[SCSI] be2iscsi: Fix for first_burst
This patch fixes the first_burst being modified instead of max_burst Signed-off-by: Jayamohan Kallickal <jayamohank@serverengines.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
-rw-r--r--drivers/scsi/be2iscsi/be_iscsi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/be2iscsi/be_iscsi.c b/drivers/scsi/be2iscsi/be_iscsi.c
index 3847a587d2a8..d5712bc19a71 100644
--- a/drivers/scsi/be2iscsi/be_iscsi.c
+++ b/drivers/scsi/be2iscsi/be_iscsi.c
@@ -274,8 +274,8 @@ int beiscsi_set_param(struct iscsi_cls_conn *cls_conn,
274 conn->max_recv_dlength = 65536; 274 conn->max_recv_dlength = 65536;
275 break; 275 break;
276 case ISCSI_PARAM_MAX_BURST: 276 case ISCSI_PARAM_MAX_BURST:
277 if (session->first_burst > 262144) 277 if (session->max_burst > 262144)
278 session->first_burst = 262144; 278 session->max_burst = 262144;
279 break; 279 break;
280 default: 280 default:
281 return 0; 281 return 0;