From: Chaitanya Kulkarni <chaitanyak@nvidia.com>
To: Keith Busch <kbusch@kernel.org>, Thomas Glanzmann <thomas@glanzmann.de>
Cc: "linux-nvme@lists.infradead.org" <linux-nvme@lists.infradead.org>
Subject: Re: Number of data and admin queues in use
Date: Tue, 15 Jul 2025 17:22:53 +0000 [thread overview]
Message-ID: <8584a963-a482-47cf-9ca2-a9d34e54b200@nvidia.com> (raw)
In-Reply-To: <aHZoBO9cPcRGIDwH@kbusch-mbp>
On 7/15/25 07:39, Keith Busch wrote:
> On Tue, Jul 15, 2025 at 03:58:01AM +0200, Thomas Glanzmann wrote:
>> I one heard that the Linux kernel allocates one queue per processor (core or
>> hyperthread). I can see that using /proc/interrupts but only on physical
>> devices, but not on NVME/TCP systems.
> For PCI, the driver automatically handles the queue and interrupt setup,
> and cpu assignment.
>
> For TCP (and all fabrics transports), you have to specificy how many
> connections you want to make ("nr_io_queues=X") when you're setting up
> your initial fabrics connection.
>
> If you want to see what you've ended up with, you can consult the
> namespaces' sysfs entries:
>
> How many IO queues are there:
>
> # ls -1 /sys/block/nvme0n1/mq/ | wc -l
> 64
>
> How large is each IO queue:
>
> # cat /sys/block/nvme0n1/queue/nr_requests
> 1023
>
For block layer queue allocation which will happen when you issue connect
command from host to target which will create controller and populate block
and char devices see below [1].
From what I can see you are getting number of queues for both tcp and pcie
NVMe controller, what is your question ?
Another way to dig into controller side fields or queue depth you can
read the CAP space see this from spec
Figure 36: Offset 0h: CAP – Controller Capabilities :-
"Maximum Queue Entries Supported (MQES): This field indicates the maximum
individual queue size that the controller supports. For NVMe over PCIe
implementations, this value applies to the I/O Submission Queues and I/O
Completion Queues that the host creates. For NVMe over Fabrics
implementations,
this value applies to only the I/O Submission Queues that the host
creates. This is
a 0’s based value. The minimum value is 1h, indicating two entries."
-ck
[1]
For fabrics transport (TCP) number are queues are calculated using
nvmf_nr_io_queue() to make sure we don't create more read/defult
queues than CPUs available same check is also applicable for write
and poll queues.
nvme_set_queue_count adjusts the queue count based on controller
capabilities which cal also clamp the queue count.
nvmf_set_io_queues() set queue count for each queue type read,
default, poll. then nvmf_map_queues() maps them into blk-mq
structure so that default/read/poll and each gets attached to
blk_mq context.
On My machine I've 48 CPUs so when I create tcp target I get :-
[ 1196.058440] nvme nvme1: creating 48 I/O queues.
[ 1196.062370] nvme nvme1: mapped 48/0/0 default/read/poll queues.
you should be able to see this into debug messages that is coming
from queue allocation helpers respectively that also has controller
device name "nvme1" :-
nvme_tcp_alloc_io_queues()
nvmf_map_queues()
Hope this helps.
next prev parent reply other threads:[~2025-07-15 19:19 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-15 1:58 Number of data and admin queues in use Thomas Glanzmann
2025-07-15 14:39 ` Keith Busch
2025-07-15 16:38 ` Thomas Glanzmann
2025-07-15 17:22 ` Chaitanya Kulkarni [this message]
2025-07-15 18:05 ` Thomas Glanzmann
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=8584a963-a482-47cf-9ca2-a9d34e54b200@nvidia.com \
--to=chaitanyak@nvidia.com \
--cc=kbusch@kernel.org \
--cc=linux-nvme@lists.infradead.org \
--cc=thomas@glanzmann.de \
/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