summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJayamohan Kallickal2011-10-08 02:31:11 +0200
committerJames Bottomley2011-10-16 18:03:40 +0200
commit37609766bf0f84b65b2181c17a7490eef139cdd1 (patch)
treee291aaf72344968ea2fca938921c57413522abfa
parent[SCSI] be2iscsi: Fix for case where task->sc was cleanedup earlier (diff)
downloadkernel-qcow2-linux-37609766bf0f84b65b2181c17a7490eef139cdd1.tar.gz
kernel-qcow2-linux-37609766bf0f84b65b2181c17a7490eef139cdd1.tar.xz
kernel-qcow2-linux-37609766bf0f84b65b2181c17a7490eef139cdd1.zip
[SCSI] be2iscsi: memset wrb for ring create
This patch fixes a situation when wrb was not being memset to zero before being used Signed-off-by: Jayamohan Kallickal <jayamohan.kallickal@emulex.com> Signed-off-by: Mike Christie <michaelc@cs.wisc.edu> Signed-off-by: James Bottomley <JBottomley@Parallels.com>
-rw-r--r--drivers/scsi/be2iscsi/be_cmds.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/scsi/be2iscsi/be_cmds.c b/drivers/scsi/be2iscsi/be_cmds.c
index 67fd831e79c2..cdb15364bc69 100644
--- a/drivers/scsi/be2iscsi/be_cmds.c
+++ b/drivers/scsi/be2iscsi/be_cmds.c
@@ -660,6 +660,7 @@ int beiscsi_cmd_mccq_create(struct beiscsi_hba *phba,
spin_lock(&phba->ctrl.mbox_lock);
ctrl = &phba->ctrl;
wrb = wrb_from_mbox(&ctrl->mbox_mem);
+ memset(wrb, 0, sizeof(*wrb));
req = embedded_payload(wrb);
ctxt = &req->context;