projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
db64f68
)
cfq-iosched: remove redundant check for NULL cfqq in cfq_set_request()
author
Shan Wei
<shanwei@cn.fujitsu.com>
Wed, 1 Jul 2009 10:41:14 +0000
(12:41 +0200)
committer
Jens Axboe
<jens.axboe@oracle.com>
Wed, 1 Jul 2009 10:41:14 +0000
(12:41 +0200)
With the changes for falling back to an oom_cfqq, we never fail
to find/allocate a queue in cfq_get_queue(). So remove the check.
Signed-off-by: Shan Wei <shanwei@cn.fujitsu.com>
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
block/cfq-iosched.c
patch
|
blob
|
blame
|
history
diff --git
a/block/cfq-iosched.c
b/block/cfq-iosched.c
index 1d9160ffa26dd9e54b0fd4766962aaf7473edd47..87276eb83f7f54576fe8fc65c84605133b3e7000 100644
(file)
--- a/
block/cfq-iosched.c
+++ b/
block/cfq-iosched.c
@@
-2313,10
+2313,6
@@
cfq_set_request(struct request_queue *q, struct request *rq, gfp_t gfp_mask)
cfqq = cic_to_cfqq(cic, is_sync);
if (!cfqq) {
cfqq = cfq_get_queue(cfqd, is_sync, cic->ioc, gfp_mask);
-
- if (!cfqq)
- goto queue_fail;
-
cic_set_cfqq(cic, cfqq, is_sync);
}