OSDN Git Service

bnx2fc: Check sc_cmd device and host pointer before returning the command to the...
authorChad Dupuis <chad.dupuis@qlogic.com>
Thu, 7 Apr 2016 13:07:59 +0000 (09:07 -0400)
committerMartin K. Petersen <martin.petersen@oracle.com>
Fri, 15 Apr 2016 20:53:10 +0000 (16:53 -0400)
commitd02327a863168647b9e6fde610c4730ff4837f9e
tree14f84de3a85acbf2ee958d15effe56c764ebbc4e
parentf72464d128efd22301ce58b204f3f1808013a536
bnx2fc: Check sc_cmd device and host pointer before returning the command to the mid-layer.

When we are in connection recovery and the internal command timer on a
request pops, either the scsi_cmnd->device or scsi_cmnd->device->host
back pointers may be NULL as the device that the command that the
request was submitted on may have been subsequently reaped due to the
connection recovery. This can cause one or both of the pointers above to
be NULL and cause a system crash if we try to return the command to the
midlayer.

Instead, double check the pointers before the return to the midlayer so
as to prevent the crash and let the upper layers finish the session
recovery and rediscover the device.

Signed-off-by: Chad Dupuis <chad.dupuis@qlogic.com>
Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/bnx2fc/bnx2fc_io.c