commit | 0de57fb93b1daaeaecb658a98b3299ae460c02e9 | [log] [tgz] |
---|---|---|
author | Tejun Heo <tj@kernel.org> | Sun Apr 19 07:00:41 2009 +0900 |
committer | Jens Axboe <jens.axboe@oracle.com> | Tue Apr 28 07:37:28 2009 +0200 |
tree | 619690c0244902c9d7879a309298b5ae20cfe2af | |
parent | 924cec7789f65ab7f022256f6533ecba0747b5f3 [diff] |
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>