mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-04 12:16:41 +00:00
SCSI: scsi_lib: fix potential NULL dereference
commit 03b147083a
upstream.
Stanse found a potential NULL dereference in scsi_kill_request.
Instead of triggering BUG() in 'if (unlikely(cmd == NULL))' branch,
the kernel will Oops earlier on cmd dereference.
Move the dereferences after the if.
[ WT: starget is not set in 2.6.27 ]
Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Willy Tarreau <w@1wt.eu>
This commit is contained in:
parent
67cd6ea478
commit
65d2e9804a
@ -1389,8 +1389,8 @@ static inline int scsi_host_queue_ready(struct request_queue *q,
|
||||
static void scsi_kill_request(struct request *req, struct request_queue *q)
|
||||
{
|
||||
struct scsi_cmnd *cmd = req->special;
|
||||
struct scsi_device *sdev = cmd->device;
|
||||
struct Scsi_Host *shost = sdev->host;
|
||||
struct scsi_device *sdev;
|
||||
struct Scsi_Host *shost;
|
||||
|
||||
blkdev_dequeue_request(req);
|
||||
|
||||
@ -1402,6 +1402,8 @@ static void scsi_kill_request(struct request *req, struct request_queue *q)
|
||||
|
||||
scmd_printk(KERN_INFO, cmd, "killing request\n");
|
||||
|
||||
sdev = cmd->device;
|
||||
shost = sdev->host;
|
||||
scsi_init_cmd_errh(cmd);
|
||||
cmd->result = DID_NO_CONNECT << 16;
|
||||
atomic_inc(&cmd->device->iorequest_cnt);
|
||||
|
Loading…
Reference in New Issue
Block a user