summaryrefslogtreecommitdiffstats
path: root/hw
diff options
context:
space:
mode:
authorHannes Reinecke <hare@suse.de>2014-10-29 13:00:09 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2014-10-31 11:29:00 +0100
commite74a43154d17ff771bb591e780f64eac0cb2e452 (patch)
treee8d89cb714a43f0e67c032a90ce40f139d3539ef /hw
parente23d04984a78490d8aaa5c45724a3a334933331f (diff)
downloadhqemu-e74a43154d17ff771bb591e780f64eac0cb2e452.zip
hqemu-e74a43154d17ff771bb591e780f64eac0cb2e452.tar.gz
megasas: Fix typo in megasas_dcmd_ld_get_list()
The check for a valid command buffer size was inverted. Signed-off-by: Hannes Reinecke <hare@suse.de> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/scsi/megasas.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/scsi/megasas.c b/hw/scsi/megasas.c
index 7401b6b..acc9d30 100644
--- a/hw/scsi/megasas.c
+++ b/hw/scsi/megasas.c
@@ -1118,7 +1118,7 @@ static int megasas_dcmd_ld_get_list(MegasasState *s, MegasasCmd *cmd)
BusChild *kid;
memset(&info, 0, dcmd_size);
- if (cmd->iov_size < dcmd_size) {
+ if (cmd->iov_size > dcmd_size) {
trace_megasas_dcmd_invalid_xfer_len(cmd->index, cmd->iov_size,
dcmd_size);
return MFI_STAT_INVALID_PARAMETER;
OpenPOWER on IntegriCloud