Netdev List
 help / color / mirror / Atom feed
From: Geliang Tang <geliang@kernel.org>
To: Stanislav Fomichev <sdf.kernel@gmail.com>
Cc: Keith Busch <kbusch@kernel.org>, Jens Axboe <axboe@kernel.dk>,
	Christoph Hellwig <hch@lst.de>, Sagi Grimberg <sagi@grimberg.me>,
	Chaitanya Kulkarni <kch@nvidia.com>,
	 David Ahern <dsahern@kernel.org>,
	Ido Schimmel <idosch@nvidia.com>,
	"David S. Miller" <davem@davemloft.net>,
	 Eric Dumazet <edumazet@google.com>,
	Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
	 Simon Horman <horms@kernel.org>, Hannes Reinecke <hare@suse.de>,
	Geliang Tang <tanggeliang@kylinos.cn>,
	 linux-nvme@lists.infradead.org, netdev@vger.kernel.org,
	mptcp@lists.linux.dev
Subject: Re: [PATCH v2 2/3] nvme-tcp: support IPv6 traffic class
Date: Wed, 12 Aug 2026 06:41:59 +0800	[thread overview]
Message-ID: <078f34213dd05a3fe519eca68313379d9c038805.camel@kernel.org> (raw)
In-Reply-To: <anptYps5IoeGDCnt@devvm7509.cco0.facebook.com>

Hi Stanislav,

On Mon, 2026-08-10 at 17:32 -0700, Stanislav Fomichev wrote:
> On 08/08, Geliang Tang wrote:
> > From: Geliang Tang <tanggeliang@kylinos.cn>
> > 
> > The NVMe/TCP transport needs to configure the IPv6 traffic class on
> > its
> > queue sockets, but the fabrics option parser currently has no
> > corresponding
> > option.
> > 
> > Add the tclass option to the fabrics parser and store the validated
> > value
> > in struct nvmf_ctrl_options. Negative values are rejected, while
> > values
> > greater than 255 are clamped to 255, matching the valid range of
> > the IPv6
> > traffic class field.
> > 
> > Keep -1 as the default value to let the transport use its default
> > traffic
> > class.
> > 
> > The fabrics layer now supports parsing the tclass option, but the
> > NVMe/TCP
> > transport does not currently advertise or apply it.
> > 
> > Allow NVMe/TCP to use NVMF_OPT_TCLASS and set IPV6_TCLASS on each
> > queue
> > socket via ip6_sock_set_tclass() when a traffic class is specified,
> > keeping
> > the existing IPv4 TOS handling unchanged.
> > 
> > Signed-off-by: Geliang Tang <tanggeliang@kylinos.cn>
> > ---
> >  drivers/nvme/host/fabrics.c | 18 ++++++++++++++++++
> >  drivers/nvme/host/fabrics.h |  3 +++
> >  drivers/nvme/host/tcp.c     |  8 +++++++-
> >  3 files changed, 28 insertions(+), 1 deletion(-)
> > 
> > diff --git a/drivers/nvme/host/fabrics.c
> > b/drivers/nvme/host/fabrics.c
> > index ac3d4f400601..643c03dc7bcb 100644
> > --- a/drivers/nvme/host/fabrics.c
> > +++ b/drivers/nvme/host/fabrics.c
> > @@ -695,6 +695,7 @@ static const match_table_t opt_tokens = {
> >  	{ NVMF_OPT_NR_WRITE_QUEUES,	"nr_write_queues=%d"	},
> >  	{ NVMF_OPT_NR_POLL_QUEUES,	"nr_poll_queues=%d"	},
> >  	{
> > NVMF_OPT_TOS,			"tos=%d"		},
> > +	{ NVMF_OPT_TCLASS,		"tclass=%d"		},
> 
> Do you really need new UAPI for v6? Any reason not to apply existing
> NVMF_OPT_TOS to ipv6 sockets?

Thanks for the feedback. I've given this careful consideration, and
you're absolutely right - there's no strong reason to introduce new
UAPI specifically for IPv6 when the existing NVMF_OPT_TOS can be
reused. I'll reuse it for IPv6 in v3 and drop this new "tclass" option.

Thanks,
-Geliang

  reply	other threads:[~2026-08-11 22:42 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-08  6:54 [PATCH v2 0/3] nvme-tcp: add IPv6 traffic class support Geliang Tang
2026-08-08  6:54 ` [PATCH v2 1/3] ipv6: extract and export ip6_sock_set_tclass helpers Geliang Tang
2026-08-08 19:59   ` Jakub Kicinski
2026-08-09  0:31     ` Geliang Tang
2026-08-08  6:55 ` [PATCH v2 2/3] nvme-tcp: support IPv6 traffic class Geliang Tang
2026-08-11  0:32   ` Stanislav Fomichev
2026-08-11 22:41     ` Geliang Tang [this message]
2026-08-08  6:55 ` [PATCH v2 3/3] nvmet-tcp: " Geliang Tang

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=078f34213dd05a3fe519eca68313379d9c038805.camel@kernel.org \
    --to=geliang@kernel.org \
    --cc=axboe@kernel.dk \
    --cc=davem@davemloft.net \
    --cc=dsahern@kernel.org \
    --cc=edumazet@google.com \
    --cc=hare@suse.de \
    --cc=hch@lst.de \
    --cc=horms@kernel.org \
    --cc=idosch@nvidia.com \
    --cc=kbusch@kernel.org \
    --cc=kch@nvidia.com \
    --cc=kuba@kernel.org \
    --cc=linux-nvme@lists.infradead.org \
    --cc=mptcp@lists.linux.dev \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=sagi@grimberg.me \
    --cc=sdf.kernel@gmail.com \
    --cc=tanggeliang@kylinos.cn \
    /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