]> git.baikalelectronics.ru Git - kernel.git/commit
ide-tape: remove back-to-back REQUEST_SENSE detection
authorTejun Heo <tj@kernel.org>
Sat, 18 Apr 2009 22:00:41 +0000 (07:00 +0900)
committerBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Sat, 16 May 2009 17:03:18 +0000 (19:03 +0200)
commit62b72050a425e8122e5153330b6b15fc9c69d876
tree1664d5927ec972914aac4f2541e2b6f461c3721d
parent6d3281158fc8dc043ac40ba5b7c68655970b4a4e
ide-tape: remove back-to-back REQUEST_SENSE detection

Impact: fix an oops which always triggers

ide_tape_issue_pc() assumed drive->pc isn't NULL on invocation when
checking for back-to-back request sense issues but drive->pc can be
NULL and even when it's not NULL, it's not safe to dereference it once
the previous command is complete because pc could have been freed or
was on stack.  Kill back-to-back REQUEST_SENSE detection.

Signed-off-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
drivers/ide/ide-tape.c