]> git.karo-electronics.de Git - karo-tx-linux.git/commit
fix crash in scsi_dispatch_cmd()
authorJames Bottomley <James.Bottomley@HansenPartnership.com>
Thu, 7 Jul 2011 20:45:40 +0000 (15:45 -0500)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 5 Aug 2011 04:58:36 +0000 (21:58 -0700)
commit1768e0b7e77b5c3e11cd0f0ab15358ccba3a9880
tree1883eb13f3b634479e254ed670c1cba5423ee0cb
parentb9beb51724bebfc198533144e86601f0099c026e
fix crash in scsi_dispatch_cmd()

commit bfe159a51203c15d23cb3158fffdc25ec4b4dda1 upstream.

USB surprise removal of sr is triggering an oops in
scsi_dispatch_command().  What seems to be happening is that USB is
hanging on to a queue reference until the last close of the upper
device, so the crash is caused by surprise remove of a mounted CD
followed by attempted unmount.

The problem is that USB doesn't issue its final commands as part of
the SCSI teardown path, but on last close when the block queue is long
gone.  The long term fix is probably to make sr do the teardown in the
same way as sd (so remove all the lower bits on ejection, but keep the
upper disk alive until last close of user space).  However, the
current oops can be simply fixed by not allowing any commands to be
sent to a dead queue.

Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
block/blk-core.c
block/blk-exec.c
drivers/scsi/scsi_lib.c