diff options
author | Jayamohan Kallickal <jayamohan.kallickal@emulex.com> | 2011-10-07 19:31:11 -0500 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2011-10-16 11:03:40 -0500 |
commit | 37609766bf0f84b65b2181c17a7490eef139cdd1 (patch) | |
tree | e291aaf72344968ea2fca938921c57413522abfa /drivers/scsi/be2iscsi/be_cmds.c | |
parent | bd5354511d00cb9c81c64b0544786807a2209488 (diff) |
[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>
Diffstat (limited to 'drivers/scsi/be2iscsi/be_cmds.c')
-rw-r--r-- | drivers/scsi/be2iscsi/be_cmds.c | 1 |
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; |