From: Caleb Sander Mateos <csander@purestorage.com>
To: Ming Lei <ming.lei@redhat.com>, Jens Axboe <axboe@kernel.dk>
Cc: linux-block@vger.kernel.org, linux-kernel@vger.kernel.org,
Caleb Sander Mateos <csander@purestorage.com>
Subject: [PATCH 1/5] ublk: remove unused cmd argument to ublk_dispatch_req()
Date: Fri, 28 Mar 2025 12:04:07 -0600 [thread overview]
Message-ID: <20250328180411.2696494-2-csander@purestorage.com> (raw)
In-Reply-To: <20250328180411.2696494-1-csander@purestorage.com>
ublk_dispatch_req() never uses its struct io_uring_cmd *cmd argument.
Drop it so callers don't have to pass a value.
Signed-off-by: Caleb Sander Mateos <csander@purestorage.com>
---
drivers/block/ublk_drv.c | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/drivers/block/ublk_drv.c b/drivers/block/ublk_drv.c
index 355a59c78539..39efe443e235 100644
--- a/drivers/block/ublk_drv.c
+++ b/drivers/block/ublk_drv.c
@@ -1183,11 +1183,10 @@ static inline void __ublk_abort_rq(struct ublk_queue *ubq,
else
blk_mq_end_request(rq, BLK_STS_IOERR);
}
static void ublk_dispatch_req(struct ublk_queue *ubq,
- struct io_uring_cmd *cmd,
struct request *req,
unsigned int issue_flags)
{
int tag = req->tag;
struct ublk_io *io = &ubq->ios[tag];
@@ -1271,11 +1270,11 @@ static void ublk_cmd_tw_cb(struct io_uring_cmd *cmd,
struct ublk_queue *ubq = pdu->ubq;
int tag = pdu->tag;
struct request *req = blk_mq_tag_to_rq(
ubq->dev->tag_set.tags[ubq->q_id], tag);
- ublk_dispatch_req(ubq, cmd, req, issue_flags);
+ ublk_dispatch_req(ubq, req, issue_flags);
}
static void ublk_queue_cmd(struct ublk_queue *ubq, struct request *rq)
{
struct ublk_io *io = &ubq->ios[rq->tag];
@@ -1290,15 +1289,13 @@ static void ublk_cmd_list_tw_cb(struct io_uring_cmd *cmd,
struct request *rq = pdu->req_list;
struct ublk_queue *ubq = rq->mq_hctx->driver_data;
struct request *next;
while (rq) {
- struct ublk_io *io = &ubq->ios[rq->tag];
-
next = rq->rq_next;
rq->rq_next = NULL;
- ublk_dispatch_req(ubq, io->cmd, rq, issue_flags);
+ ublk_dispatch_req(ubq, rq, issue_flags);
rq = next;
}
}
static void ublk_queue_cmd_list(struct ublk_queue *ubq, struct rq_list *l)
--
2.45.2
next prev parent reply other threads:[~2025-03-28 18:05 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-28 18:04 [PATCH 0/5] Minor ublk optimizations Caleb Sander Mateos
2025-03-28 18:04 ` Caleb Sander Mateos [this message]
2025-03-28 18:04 ` [PATCH 2/5] ublk: skip 1 NULL check in ublk_cmd_list_tw_cb() loop Caleb Sander Mateos
2025-03-28 18:04 ` [PATCH 3/5] ublk: get ubq from pdu in ublk_cmd_list_tw_cb() Caleb Sander Mateos
2025-03-28 18:04 ` [PATCH 4/5] ublk: avoid redundant io->cmd in ublk_queue_cmd_list() Caleb Sander Mateos
2025-03-28 18:04 ` [PATCH 5/5] ublk: store req in ublk_uring_cmd_pdu for ublk_cmd_tw_cb() Caleb Sander Mateos
2025-03-28 19:20 ` [PATCH 0/5] Minor ublk optimizations Jens Axboe
2025-03-29 0:23 ` Ming Lei
2025-03-29 11:57 ` Jens Axboe
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250328180411.2696494-2-csander@purestorage.com \
--to=csander@purestorage.com \
--cc=axboe@kernel.dk \
--cc=linux-block@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=ming.lei@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox