From: Hannes Reinecke Date: Wed, 29 Oct 2014 12:00:09 +0000 (+0100) Subject: megasas: Fix typo in megasas_dcmd_ld_get_list() X-Git-Tag: v2.2.0-rc0~15^2~27 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e74a43154d17ff771bb591e780f64eac0cb2e452;p=thirdparty%2Fqemu.git megasas: Fix typo in megasas_dcmd_ld_get_list() The check for a valid command buffer size was inverted. Signed-off-by: Hannes Reinecke Signed-off-by: Paolo Bonzini --- diff --git a/hw/scsi/megasas.c b/hw/scsi/megasas.c index 7401b6b778c..acc9d307729 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;