Commit ee7ff15b authored by Breno Leitao's avatar Breno Leitao Committed by Jens Axboe

elevator: Remove argument from elevator_find_get

Commit e4eb37cc ("block: Remove elevator required features")
removed the usage of `struct request_queue` from elevator_find_get(),
but didn't removed the argument.

Remove the "struct request_queue *q" argument from elevator_find_get()
given it is useless.

Fixes: e4eb37cc ("block: Remove elevator required features")
Signed-off-by: default avatarBreno Leitao <leitao@debian.org>
Link: https://lore.kernel.org/r/20241011155615.3361143-1-leitao@debian.orgSigned-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent b4ff6e93
...@@ -106,8 +106,7 @@ static struct elevator_type *__elevator_find(const char *name) ...@@ -106,8 +106,7 @@ static struct elevator_type *__elevator_find(const char *name)
return NULL; return NULL;
} }
static struct elevator_type *elevator_find_get(struct request_queue *q, static struct elevator_type *elevator_find_get(const char *name)
const char *name)
{ {
struct elevator_type *e; struct elevator_type *e;
...@@ -569,7 +568,7 @@ static struct elevator_type *elevator_get_default(struct request_queue *q) ...@@ -569,7 +568,7 @@ static struct elevator_type *elevator_get_default(struct request_queue *q)
!blk_mq_is_shared_tags(q->tag_set->flags)) !blk_mq_is_shared_tags(q->tag_set->flags))
return NULL; return NULL;
return elevator_find_get(q, "mq-deadline"); return elevator_find_get("mq-deadline");
} }
/* /*
...@@ -697,7 +696,7 @@ static int elevator_change(struct request_queue *q, const char *elevator_name) ...@@ -697,7 +696,7 @@ static int elevator_change(struct request_queue *q, const char *elevator_name)
if (q->elevator && elevator_match(q->elevator->type, elevator_name)) if (q->elevator && elevator_match(q->elevator->type, elevator_name))
return 0; return 0;
e = elevator_find_get(q, elevator_name); e = elevator_find_get(elevator_name);
if (!e) if (!e)
return -EINVAL; return -EINVAL;
ret = elevator_switch(q, e); ret = elevator_switch(q, e);
......
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