summaryrefslogtreecommitdiffstats
path: root/drivers/scsi
diff options
context:
space:
mode:
authorHugh Daschbach2010-02-16 21:15:28 +0100
committerJames Bottomley2010-02-18 00:43:41 +0100
commit696c1cff5254bb3ac280fbbb639c66e9ff20306e (patch)
tree1d0b99d45e7d6ff4fe54782af17387e3b136edcd /drivers/scsi
parent[SCSI] libfc: Fix e_d_tov ns -> ms scaling factor in PLOGI response. (diff)
downloadkernel-qcow2-linux-696c1cff5254bb3ac280fbbb639c66e9ff20306e.tar.gz
kernel-qcow2-linux-696c1cff5254bb3ac280fbbb639c66e9ff20306e.tar.xz
kernel-qcow2-linux-696c1cff5254bb3ac280fbbb639c66e9ff20306e.zip
[SCSI] libfc: Don't assume response request present.
Fix NULL pointer dereference crash occurs in fc_lport_bsg_request() for bsg requests that do not contain a response request. Specifically, FC_BSG_HST_ADD_RPORT and FC_BSG_HST_DEL_RPORT bsg requests are not guaranteed to include a response request. Signed-off-by: Hugh Daschbach <hdasch@broadcom.com> Signed-off-by: Robert Love <robert.w.love@intel.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi')
-rw-r--r--drivers/scsi/libfc/fc_lport.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/scsi/libfc/fc_lport.c b/drivers/scsi/libfc/fc_lport.c
index 0b165024a219..7ec8ce75007c 100644
--- a/drivers/scsi/libfc/fc_lport.c
+++ b/drivers/scsi/libfc/fc_lport.c
@@ -1800,7 +1800,8 @@ int fc_lport_bsg_request(struct fc_bsg_job *job)
u32 did;
job->reply->reply_payload_rcv_len = 0;
- rsp->resid_len = job->reply_payload.payload_len;
+ if (rsp)
+ rsp->resid_len = job->reply_payload.payload_len;
mutex_lock(&lport->lp_mutex);