Commit edea55ab authored by Bart Van Assche's avatar Bart Van Assche Committed by Jens Axboe

blk-mq-debugfs: Add 'kick' operation

Running a queue causes the block layer to examine the per-CPU and
hw queues but not the requeue list. Hence add a 'kick' operation
that also examines the requeue list.
Signed-off-by: default avatarBart Van Assche <bart.vanassche@sandisk.com>
Reviewed-by: default avatarMing Lei <ming.lei@redhat.com>
Reviewed-by: default avatarEduardo Valentin <eduval@amazon.com>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Hannes Reinecke <hare@suse.com>
Cc: Omar Sandoval <osandov@fb.com>
Signed-off-by: default avatarJens Axboe <axboe@fb.com>
parent 2720bab5
...@@ -114,10 +114,12 @@ static ssize_t queue_state_write(void *data, const char __user *buf, ...@@ -114,10 +114,12 @@ static ssize_t queue_state_write(void *data, const char __user *buf,
blk_mq_run_hw_queues(q, true); blk_mq_run_hw_queues(q, true);
} else if (strcmp(op, "start") == 0) { } else if (strcmp(op, "start") == 0) {
blk_mq_start_stopped_hw_queues(q, true); blk_mq_start_stopped_hw_queues(q, true);
} else if (strcmp(op, "kick") == 0) {
blk_mq_kick_requeue_list(q);
} else { } else {
pr_err("%s: unsupported operation '%s'\n", __func__, op); pr_err("%s: unsupported operation '%s'\n", __func__, op);
inval: inval:
pr_err("%s: use either 'run' or 'start'\n", __func__); pr_err("%s: use 'run', 'start' or 'kick'\n", __func__);
return -EINVAL; return -EINVAL;
} }
return count; return count;
......
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