From: Justin Tee <justintee8345@gmail.com>
To: hmi.jeon@samsung.com, "kbusch@kernel.org" <kbusch@kernel.org>,
"axboe@kernel.dk" <axboe@kernel.dk>
Cc: "sven@kernel.org" <sven@kernel.org>,
"j@jannau.net" <j@jannau.net>, "neal@gompa.dev" <neal@gompa.dev>,
"hch@lst.de" <hch@lst.de>, "sagi@grimberg.me" <sagi@grimberg.me>,
"justin.tee@broadcom.com" <justin.tee@broadcom.com>,
"nareshgottumukkala83@gmail.com" <nareshgottumukkala83@gmail.com>,
"paul.ely@broadcom.com" <paul.ely@broadcom.com>,
"kch@nvidia.com" <kch@nvidia.com>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>,
"linux-nvme@lists.infradead.org" <linux-nvme@lists.infradead.org>,
"asahi@lists.linux.dev" <asahi@lists.linux.dev>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] nvme: Move nvme_setup_cmd before hot_pathing
Date: Tue, 24 Mar 2026 16:55:29 -0700 [thread overview]
Message-ID: <945a3e98-ee75-453c-ae80-f3c9e3e57e58@gmail.com> (raw)
In-Reply-To: <20260320052101epcms2p42ae135da60b36685e9b7fca6849b57a6@epcms2p4>
Hi Minsik,
> diff --git a/drivers/nvme/host/fc.c b/drivers/nvme/host/fc.c
> index e1bb4707183c..8ea37102a836 100644
> --- a/drivers/nvme/host/fc.c
> +++ b/drivers/nvme/host/fc.c
> @@ -2762,14 +2762,14 @@ nvme_fc_queue_rq(struct blk_mq_hw_ctx *hctx,
> u32 data_len;
> blk_status_t ret;
>
> - if (ctrl->rport->remoteport.port_state != FC_OBJSTATE_ONLINE ||
> - !nvme_check_ready(&queue->ctrl->ctrl, rq, queue_ready))
> - return nvme_fail_nonready_command(&queue->ctrl->ctrl,
rq);
> -
> ret = nvme_setup_cmd(ns, rq);
> if (ret)
> return ret;
>
> + if (ctrl->rport->remoteport.port_state != FC_OBJSTATE_ONLINE ||
> + !nvme_check_ready(&queue->ctrl->ctrl, rq, queue_ready))
> + return nvme_fail_nonready_command(&queue->ctrl->ctrl,
rq);
> +
__nvme_check_ready() checks for (nvme_req(req)->flags &
NVME_REQ_USERCMD). In nvme_setup_cmd(), nvme_clear_nvme_request()
clears the nvme_req(req)->flags when RQF_DONTPREP is not set.
Is it possible that this patch would have nvme_setup_cmd() erase a
nvme_req(req)’s NVME_REQ_USERCMD flag before __nvme_check_ready() is
called for each respective .queue_rq?
Regards,
Justin Tee
next prev parent reply other threads:[~2026-03-24 23:56 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CGME20260320052101epcms2p42ae135da60b36685e9b7fca6849b57a6@epcms2p4>
2026-03-20 5:21 ` 전민식
2026-03-20 13:43 ` Kanchan Joshi
2026-03-22 7:16 ` kernel test robot
2026-03-22 8:22 ` kernel test robot
2026-03-22 12:09 ` kernel test robot
[not found] ` <CGME20260320052101epcms2p42ae135da60b36685e9b7fca6849b57a6@epcms2p3>
2026-03-23 1:04 ` [PATCH v2] " 전민식
2026-03-24 23:55 ` Justin Tee [this message]
[not found] ` <CGME20260320052101epcms2p42ae135da60b36685e9b7fca6849b57a6@epcms2p6>
2026-03-25 6:33 ` [PATCH v3] nvme: Add nvme_setup_cmd to host_path_error 전민식
2026-03-25 18:37 ` Justin Tee
2026-03-25 19:03 ` Keith Busch
[not found] ` <CGME20260320052101epcms2p42ae135da60b36685e9b7fca6849b57a6@epcms2p1>
2026-03-26 1:44 ` [PATCH v4] nvme: Skip trace complete_rq on host path error 전민식
2026-03-26 6:14 ` hch
[not found] ` <CGME20260320052101epcms2p42ae135da60b36685e9b7fca6849b57a6@epcms2p5>
2026-03-26 6:51 ` [PATCH v5] " 전민식
2026-03-26 14:20 ` hch
2026-03-26 14:28 ` Keith Busch
2026-03-26 14:31 ` hch
2026-03-26 14:43 ` Keith Busch
2026-03-27 6:19 ` 전민식
2026-03-27 6:37 ` 전민식
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=945a3e98-ee75-453c-ae80-f3c9e3e57e58@gmail.com \
--to=justintee8345@gmail.com \
--cc=asahi@lists.linux.dev \
--cc=axboe@kernel.dk \
--cc=hch@lst.de \
--cc=hmi.jeon@samsung.com \
--cc=j@jannau.net \
--cc=justin.tee@broadcom.com \
--cc=kbusch@kernel.org \
--cc=kch@nvidia.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-nvme@lists.infradead.org \
--cc=nareshgottumukkala83@gmail.com \
--cc=neal@gompa.dev \
--cc=paul.ely@broadcom.com \
--cc=sagi@grimberg.me \
--cc=sven@kernel.org \
/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
all inboxes | Powered by JetHome®