Commit d2367006 authored by Julia Lawall's avatar Julia Lawall Committed by Linus Torvalds

drivers/message: move dereference after NULL test

If the NULL test on dev->i2o_dev or i2o_dev is needed, then the dereference
should be after the NULL test.

A simplified version of the semantic match that detects this problem is as
follows (http://coccinelle.lip6.fr/):

// <smpl>
@match exists@
expression x, E;
identifier fld;
@@

* x->fld
  ... when != \(x = E\|&x\)
* x == NULL
// </smpl>
Signed-off-by: default avatarJulia Lawall <julia@diku.dk>
Cc: James Bottomley <James.Bottomley@suse.de>
Cc: Kashyap Desai <kashyap.desai@lsi.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 95cc7baa
...@@ -727,7 +727,7 @@ static int i2o_block_transfer(struct request *req) ...@@ -727,7 +727,7 @@ static int i2o_block_transfer(struct request *req)
{ {
struct i2o_block_device *dev = req->rq_disk->private_data; struct i2o_block_device *dev = req->rq_disk->private_data;
struct i2o_controller *c; struct i2o_controller *c;
u32 tid = dev->i2o_dev->lct_data.tid; u32 tid;
struct i2o_message *msg; struct i2o_message *msg;
u32 *mptr; u32 *mptr;
struct i2o_block_request *ireq = req->special; struct i2o_block_request *ireq = req->special;
...@@ -743,6 +743,7 @@ static int i2o_block_transfer(struct request *req) ...@@ -743,6 +743,7 @@ static int i2o_block_transfer(struct request *req)
goto exit; goto exit;
} }
tid = dev->i2o_dev->lct_data.tid;
c = dev->i2o_dev->iop; c = dev->i2o_dev->iop;
msg = i2o_msg_get(c); msg = i2o_msg_get(c);
......
...@@ -528,7 +528,6 @@ static int i2o_scsi_queuecommand(struct scsi_cmnd *SCpnt, ...@@ -528,7 +528,6 @@ static int i2o_scsi_queuecommand(struct scsi_cmnd *SCpnt,
* Do the incoming paperwork * Do the incoming paperwork
*/ */
i2o_dev = SCpnt->device->hostdata; i2o_dev = SCpnt->device->hostdata;
c = i2o_dev->iop;
SCpnt->scsi_done = done; SCpnt->scsi_done = done;
...@@ -538,7 +537,7 @@ static int i2o_scsi_queuecommand(struct scsi_cmnd *SCpnt, ...@@ -538,7 +537,7 @@ static int i2o_scsi_queuecommand(struct scsi_cmnd *SCpnt,
done(SCpnt); done(SCpnt);
goto exit; goto exit;
} }
c = i2o_dev->iop;
tid = i2o_dev->lct_data.tid; tid = i2o_dev->lct_data.tid;
osm_debug("qcmd: Tid = %03x\n", tid); osm_debug("qcmd: Tid = %03x\n", tid);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment