提交 5998249e 编写于 作者: J Jinlong Chen 提交者: Jens Axboe

block: replace continue with else-if in elv_iosched_show

else-if is more readable than continue here.
Signed-off-by: NJinlong Chen <nickyc975@zju.edu.cn>
Link: https://lore.kernel.org/r/77ac19ba556efd2c8639a6396eb4203c59bc13d6.1669736350.git.nickyc975@zju.edu.cnSigned-off-by: NJens Axboe <axboe@kernel.dk>
上级 7919d679
...@@ -776,11 +776,9 @@ ssize_t elv_iosched_show(struct request_queue *q, char *name) ...@@ -776,11 +776,9 @@ ssize_t elv_iosched_show(struct request_queue *q, char *name)
spin_lock(&elv_list_lock); spin_lock(&elv_list_lock);
list_for_each_entry(e, &elv_list, list) { list_for_each_entry(e, &elv_list, list) {
if (e == cur) { if (e == cur)
len += sprintf(name+len, "[%s] ", cur->elevator_name); len += sprintf(name+len, "[%s] ", cur->elevator_name);
continue; else if (elv_support_features(q, e))
}
if (elv_support_features(q, e))
len += sprintf(name+len, "%s ", e->elevator_name); len += sprintf(name+len, "%s ", e->elevator_name);
} }
spin_unlock(&elv_list_lock); spin_unlock(&elv_list_lock);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册