Commit 5998249e authored by Jinlong Chen's avatar Jinlong Chen Committed by Jens Axboe

block: replace continue with else-if in elv_iosched_show

else-if is more readable than continue here.
Signed-off-by: default avatarJinlong Chen <nickyc975@zju.edu.cn>
Link: https://lore.kernel.org/r/77ac19ba556efd2c8639a6396eb4203c59bc13d6.1669736350.git.nickyc975@zju.edu.cnSigned-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 7919d679
......@@ -776,11 +776,9 @@ ssize_t elv_iosched_show(struct request_queue *q, char *name)
spin_lock(&elv_list_lock);
list_for_each_entry(e, &elv_list, list) {
if (e == cur) {
if (e == cur)
len += sprintf(name+len, "[%s] ", cur->elevator_name);
continue;
}
if (elv_support_features(q, e))
else if (elv_support_features(q, e))
len += sprintf(name+len, "%s ", e->elevator_name);
}
spin_unlock(&elv_list_lock);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment