mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-12-08 23:08:37 +00:00
block: use req_op() to maintain consistency
This is a pure code cleanup patch and doesn't change any functionality. In block layer to identify the request operation req_op() macro is used, so change the open coding the req_op() in the blk-mq-debugfs.c. Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com> Reviewed-by: Hannes Reinecke <hare@suse.com> Signed-off-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
6631142229
commit
f9bc64a0f0
@ -341,7 +341,7 @@ static const char *blk_mq_rq_state_name(enum mq_rq_state rq_state)
|
|||||||
int __blk_mq_debugfs_rq_show(struct seq_file *m, struct request *rq)
|
int __blk_mq_debugfs_rq_show(struct seq_file *m, struct request *rq)
|
||||||
{
|
{
|
||||||
const struct blk_mq_ops *const mq_ops = rq->q->mq_ops;
|
const struct blk_mq_ops *const mq_ops = rq->q->mq_ops;
|
||||||
const unsigned int op = rq->cmd_flags & REQ_OP_MASK;
|
const unsigned int op = req_op(rq);
|
||||||
|
|
||||||
seq_printf(m, "%p {.op=", rq);
|
seq_printf(m, "%p {.op=", rq);
|
||||||
if (op < ARRAY_SIZE(op_name) && op_name[op])
|
if (op < ARRAY_SIZE(op_name) && op_name[op])
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user