[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <4B376CB7.2050904@panasas.com>
Date: Sun, 27 Dec 2009 16:18:31 +0200
From: Boaz Harrosh <bharrosh@...asas.com>
To: Dan Carpenter <error27@...il.com>, kernel-janitors@...r.kernel.org,
linux-kernel@...r.kernel.org, open-osd <osd-dev@...n-osd.org>,
linux-scsi <linux-scsi@...r.kernel.org>
Subject: Re: pointless assignments
On 12/27/2009 03:41 PM, Dan Carpenter wrote:
> drivers/scsi/osd/osd_initiator.c +1435 osd_finalize_request warning: assignment to 'ret' was never used
Thanks, very good catch. Humans 0 Robots 1 ;-)
I'll queue the below patch for next Kernel. (Such an unused code path no need
rocking the bote)
Boaz
---
From: Boaz Harrosh <bharrosh@...asas.com>
Date: Sun, 27 Dec 2009 16:06:47 +0200
Subject: [PATCH] libosd: Fix unchecked err return found by smatch
Doing CHECK="smatch --two-passes gives:
drivers/scsi/osd/osd_initiator.c +1435 osd_finalize_request warning: assignment to 'ret' was never used
Which is an unchecked possible allocation failure, Fixed.
Reported-by: Dan Carpenter <error27@...il.com>
Signed-off-by: Boaz Harrosh <bharrosh@...asas.com>
---
drivers/scsi/osd/osd_initiator.c | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/drivers/scsi/osd/osd_initiator.c b/drivers/scsi/osd/osd_initiator.c
index 2422347..9334431 100644
--- a/drivers/scsi/osd/osd_initiator.c
+++ b/drivers/scsi/osd/osd_initiator.c
@@ -1433,6 +1433,10 @@ int osd_finalize_request(struct osd_request *or,
cdbh->command_specific_options |= or->attributes_mode;
if (or->attributes_mode == OSD_CDB_GET_ATTR_PAGE_SET_ONE) {
ret = _osd_req_finalize_attr_page(or);
+ if (ret) {
+ OSD_DEBUG("_osd_req_finalize_set_attr_list failed\n");
+ return ret;
+ }
} else {
/* TODO: I think that for the GET_ATTR command these 2 should
* be reversed to keep them in execution order (for embeded
--
1.6.5.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists