[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <dde3f0d00580fd24c6a51fce124762084a62efc9.1475144721.git.jslaby@suse.cz>
Date: Thu, 29 Sep 2016 12:24:33 +0200
From: Jiri Slaby <jslaby@...e.cz>
To: stable@...r.kernel.org
Cc: linux-kernel@...r.kernel.org,
Tim Gardner <tim.gardner@...onical.com>,
Jayamohan Kallickal <jayamohan.kallickal@...gotech.com>,
Minh Tran <minh.tran@...gotech.com>,
John Soni Jose <sony.john-n@...gotech.com>,
"James E.J. Bottomley" <JBottomley@...n.com>,
"Martin K . Petersen" <martin.petersen@...cle.com>,
Willy Tarreau <w@....eu>, Jiri Slaby <jslaby@...e.cz>
Subject: [PATCH 3.12 037/119] be2iscsi: Fix bogus WARN_ON length check
From: Tim Gardner <tim.gardner@...onical.com>
3.12-stable review patch. If anyone has any objections, please let me know.
===============
commit dd29dae00d39186890a5eaa2fe4ad8768bfd41a9 upstream.
drivers/scsi/be2iscsi/be_main.c: In function 'be_sgl_create_contiguous':
drivers/scsi/be2iscsi/be_main.c:3187:18: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses]
WARN_ON(!length > 0);
gcc version 5.2.1
Signed-off-by: Tim Gardner <tim.gardner@...onical.com>
Cc: Jayamohan Kallickal <jayamohan.kallickal@...gotech.com>
Cc: Minh Tran <minh.tran@...gotech.com>
Cc: John Soni Jose <sony.john-n@...gotech.com>
Cc: "James E.J. Bottomley" <JBottomley@...n.com>
Reported-by: Joel Stanley <joel@....id.au>
Reviewed-by: Manoj Kumar <manoj@...ux.vnet.ibm.com>
Signed-off-by: Martin K. Petersen <martin.petersen@...cle.com>
Cc: Willy Tarreau <w@....eu>
Signed-off-by: Jiri Slaby <jslaby@...e.cz>
---
drivers/scsi/be2iscsi/be_main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/scsi/be2iscsi/be_main.c b/drivers/scsi/be2iscsi/be_main.c
index 8eeb24272154..fdff867f9d8e 100644
--- a/drivers/scsi/be2iscsi/be_main.c
+++ b/drivers/scsi/be2iscsi/be_main.c
@@ -2978,7 +2978,7 @@ be_sgl_create_contiguous(void *virtual_address,
{
WARN_ON(!virtual_address);
WARN_ON(!physical_address);
- WARN_ON(!length > 0);
+ WARN_ON(!length);
WARN_ON(!sgl);
sgl->va = virtual_address;
--
2.10.0
Powered by blists - more mailing lists