diff options
author | Paul Bolle <pebolle@tiscali.nl> | 2011-06-02 13:05:02 +0200 |
---|---|---|
committer | Jens Axboe <jaxboe@fusionio.com> | 2011-06-02 13:05:02 +0200 |
commit | 28304f485c3627cc5e1665b92e26eb7fcfe98088 (patch) | |
tree | c885abcc932d5ae28fdeb49027ea5eafaaafd376 /block | |
parent | 4c49ff3fe128ca68dabd07537415c419ad7f82f9 (diff) | |
download | linux-3.10-28304f485c3627cc5e1665b92e26eb7fcfe98088.tar.gz linux-3.10-28304f485c3627cc5e1665b92e26eb7fcfe98088.tar.bz2 linux-3.10-28304f485c3627cc5e1665b92e26eb7fcfe98088.zip |
cfq-iosched: Remove bogus check in queue_fail path
queue_fail can only be reached if cic is NULL, so its check for cic must
be bogus.
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
Diffstat (limited to 'block')
-rw-r--r-- | block/cfq-iosched.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/block/cfq-iosched.c b/block/cfq-iosched.c index 8a02c955c61..3c7b537bf90 100644 --- a/block/cfq-iosched.c +++ b/block/cfq-iosched.c @@ -3786,9 +3786,6 @@ new_queue: return 0; queue_fail: - if (cic) - put_io_context(cic->ioc); - cfq_schedule_dispatch(cfqd); spin_unlock_irqrestore(q->queue_lock, flags); cfq_log(cfqd, "set_request fail"); |