Skip to content

Commit 4160989

Browse files
vireshkaxboe
authored andcommitted
blk-cgroup: Drop unlikely before IS_ERR(_OR_NULL)
IS_ERR(_OR_NULL) already contain an 'unlikely' compiler flag and there is no need to do that again from its callers. Drop it. Acked-by: Tejun Heo <tj@kernel.org> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Jens Axboe <axboe@fb.com>
1 parent 9b81c84 commit 4160989

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/linux/blk-cgroup.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ static inline struct request_list *blk_get_rl(struct request_queue *q,
374374
* root_rl in such cases.
375375
*/
376376
blkg = blkg_lookup_create(blkcg, q);
377-
if (unlikely(IS_ERR(blkg)))
377+
if (IS_ERR(blkg))
378378
goto root_rl;
379379

380380
blkg_get(blkg);

0 commit comments

Comments
 (0)