kernel-janitors.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [patch] block, sx8: fix pointer math issue getting fw version
@ 2012-03-02 19:00 Dan Carpenter
  2012-03-03  6:58 ` Jens Axboe
  0 siblings, 1 reply; 7+ messages in thread
From: Dan Carpenter @ 2012-03-02 19:00 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: Tejun Heo, Jens Axboe, linux-kernel, kernel-janitors

"mem" is type u8.  We need parenthesis here or it screws up the pointer
math probably leading to an oops.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>

diff --git a/drivers/block/sx8.c b/drivers/block/sx8.c
index e7472f5..3fb6ab4 100644
--- a/drivers/block/sx8.c
+++ b/drivers/block/sx8.c
@@ -1120,7 +1120,7 @@ static inline void carm_handle_resp(struct carm_host *host,
 			break;
 		case MISC_GET_FW_VER: {
 			struct carm_fw_ver *ver = (struct carm_fw_ver *)
-				mem + sizeof(struct carm_msg_get_fw_ver);
+				(mem + sizeof(struct carm_msg_get_fw_ver));
 			if (!error) {
 				host->fw_ver = le32_to_cpu(ver->version);
 				host->flags |= (ver->features & FL_FW_VER_MASK);

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2012-03-03 18:44 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-02 19:00 [patch] block, sx8: fix pointer math issue getting fw version Dan Carpenter
2012-03-03  6:58 ` Jens Axboe
2012-03-03  7:00   ` Jens Axboe
2012-03-03  8:04     ` Dan Carpenter
2012-03-03 11:08       ` Jens Axboe
2012-03-03 17:10   ` Jeff Garzik
2012-03-03 18:44     ` Jens Axboe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).