diff mbox

scsi: aacraid: remove redundant zero check on ret

Message ID 20170224144330.6707-1-colin.king@canonical.com (mailing list archive)
State Accepted, archived
Headers show

Commit Message

Colin King Feb. 24, 2017, 2:43 p.m. UTC
From: Colin Ian King <colin.king@canonical.com>

The check for ret being zero is redundant as a few statements earlier
we break out of the while loop if ret is non-zero.  Thus we can
remove the zero check and also the dead-code non-zero case too.

Detected by CoverityScan, CID#1411632 ("Logically Dead Code")

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/scsi/aacraid/commsup.c | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

Comments

Dave Carroll Feb. 26, 2017, 8:01 p.m. UTC | #1
> -----Original Message-----

> From: Colin King [mailto:colin.king@canonical.com]

> Sent: Friday, February 24, 2017 7:44 AM

> To: dl-esc-Aacraid Linux Driver; James E . J . Bottomley; Martin K .

> Petersen; linux-scsi@vger.kernel.org

> Cc: kernel-janitors@vger.kernel.org; linux-kernel@vger.kernel.org

> Subject: [PATCH] scsi: aacraid: remove redundant zero check on ret

> 

> From: Colin Ian King <colin.king@canonical.com>

> 

> The check for ret being zero is redundant as a few statements earlier we

> break out of the while loop if ret is non-zero.  Thus we can remove the

> zero check and also the dead-code non-zero case too.

> 

> Detected by CoverityScan, CID#1411632 ("Logically Dead Code")

> 

> Signed-off-by: Colin Ian King <colin.king@canonical.com>

> ---

>  drivers/scsi/aacraid/commsup.c | 6 +-----

>  1 file changed, 1 insertion(+), 5 deletions(-)


Acked-by: Dave Carroll <david.carroll@microsemi.com>
Martin K. Petersen Feb. 28, 2017, 3:20 a.m. UTC | #2
>>>>> "Colin" == Colin King <colin.king@canonical.com> writes:

Colin,

Colin> The check for ret being zero is redundant as a few statements
Colin> earlier we break out of the while loop if ret is non-zero.  Thus
Colin> we can remove the zero check and also the dead-code non-zero case
Colin> too.

Applied to 4.11/scsi-fixes.
diff mbox

Patch

diff --git a/drivers/scsi/aacraid/commsup.c b/drivers/scsi/aacraid/commsup.c
index 1994c74..a3ad042 100644
--- a/drivers/scsi/aacraid/commsup.c
+++ b/drivers/scsi/aacraid/commsup.c
@@ -2508,8 +2508,7 @@  int aac_command_thread(void *data)
 			 && (now.tv_usec > (1000000 / HZ)))
 				difference = (((1000000 - now.tv_usec) * HZ)
 				  + 500000) / 1000000;
-			else if (ret == 0) {
-
+			else {
 				if (now.tv_usec > 500000)
 					++now.tv_sec;
 
@@ -2520,9 +2519,6 @@  int aac_command_thread(void *data)
 					ret = aac_send_hosttime(dev, &now);
 
 				difference = (long)(unsigned)update_interval*HZ;
-			} else {
-				/* retry shortly */
-				difference = 10 * HZ;
 			}
 			next_jiffies = jiffies + difference;
 			if (time_before(next_check_jiffies,next_jiffies))