All of lore.kernel.org
 help / color / mirror / Atom feed
From: Matthias May <matthias.may@westermo.com>
To: <netdev@vger.kernel.org>
Cc: <davem@davemloft.net>, <edumazet@google.com>, <kuba@kernel.org>,
	<pabeni@redhat.com>, <roopa@nvidia.com>,
	<eng.alaamohamedsoliman.am@gmail.com>, <bigeasy@linutronix.de>,
	<saeedm@nvidia.com>, <leon@kernel.org>, <roid@nvidia.com>,
	<maord@nvidia.com>, <lariel@nvidia.com>, <vladbu@nvidia.com>,
	<cmi@nvidia.com>, <gnault@redhat.com>, <yoshfuji@linux-ipv6.org>,
	<dsahern@kernel.org>, <linux-kernel@vger.kernel.org>,
	<bpf@vger.kernel.org>, <linux-rdma@vger.kernel.org>,
	<nicolas.dichtel@6wind.com>, <eyal.birger@gmail.com>,
	<jesse@nicira.com>, <linville@tuxdriver.com>,
	<daniel@iogearbox.net>, <hadarh@mellanox.com>,
	<ogerlitz@mellanox.com>, <willemb@google.com>,
	<martin.varghese@nokia.com>,
	Matthias May <matthias.may@westermo.com>
Subject: [PATCH v3 net 1/4] geneve: do not use RT_TOS for IPv6 flowlabel
Date: Fri, 5 Aug 2022 21:19:03 +0200	[thread overview]
Message-ID: <20220805191906.9323-2-matthias.may@westermo.com> (raw)
In-Reply-To: <20220805191906.9323-1-matthias.may@westermo.com>

According to Guillaume Nault RT_TOS should never be used for IPv6.

Quote:
RT_TOS() is an old macro used to interprete IPv4 TOS as described in
the obsolete RFC 1349. It's conceptually wrong to use it even in IPv4
code, although, given the current state of the code, most of the
existing calls have no consequence.

But using RT_TOS() in IPv6 code is always a bug: IPv6 never had a "TOS"
field to be interpreted the RFC 1349 way. There's no historical
compatibility to worry about.

Fixes: 3a56f86f1be6 ("geneve: handle ipv6 priority like ipv4 tos")
Acked-by: Guillaume Nault <gnault@redhat.com>
Signed-off-by: Matthias May <matthias.may@westermo.com>
---
v1 -> v2:
 - Fix spacing of "Fixes" tag.
 - Add missing CCs
v2 -> v3:
 - Add the info from the cover to the actual patch message (Guillaume Nault)
 - Correct length of fixes-tag from 13 to 12 characters (Guillaume Nault)
---
 drivers/net/geneve.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/net/geneve.c b/drivers/net/geneve.c
index 4c380c06f178..e1a4480e6f17 100644
--- a/drivers/net/geneve.c
+++ b/drivers/net/geneve.c
@@ -877,8 +877,7 @@ static struct dst_entry *geneve_get_v6_dst(struct sk_buff *skb,
 		use_cache = false;
 	}
 
-	fl6->flowlabel = ip6_make_flowinfo(RT_TOS(prio),
-					   info->key.label);
+	fl6->flowlabel = ip6_make_flowinfo(prio, info->key.label);
 	dst_cache = (struct dst_cache *)&info->dst_cache;
 	if (use_cache) {
 		dst = dst_cache_get_ip6(dst_cache, &fl6->saddr);
-- 
2.35.1


  reply	other threads:[~2022-08-05 19:24 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-05 19:19 [PATCH v3 net 0/4] Do not use RT_TOS for IPv6 flowlabel Matthias May
2022-08-05 19:19 ` Matthias May [this message]
2022-08-05 19:19 ` [PATCH v3 net 2/4] vxlan: do " Matthias May
2022-08-05 19:19 ` [PATCH v3 net 3/4] mlx5: " Matthias May
2022-08-05 19:19 ` [PATCH v3 net 4/4] ipv6: " Matthias May
2022-08-10  5:30 ` [PATCH v3 net 0/4] Do " patchwork-bot+netdevbpf

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=20220805191906.9323-2-matthias.may@westermo.com \
    --to=matthias.may@westermo.com \
    --cc=bigeasy@linutronix.de \
    --cc=bpf@vger.kernel.org \
    --cc=cmi@nvidia.com \
    --cc=daniel@iogearbox.net \
    --cc=davem@davemloft.net \
    --cc=dsahern@kernel.org \
    --cc=edumazet@google.com \
    --cc=eng.alaamohamedsoliman.am@gmail.com \
    --cc=eyal.birger@gmail.com \
    --cc=gnault@redhat.com \
    --cc=hadarh@mellanox.com \
    --cc=jesse@nicira.com \
    --cc=kuba@kernel.org \
    --cc=lariel@nvidia.com \
    --cc=leon@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-rdma@vger.kernel.org \
    --cc=linville@tuxdriver.com \
    --cc=maord@nvidia.com \
    --cc=martin.varghese@nokia.com \
    --cc=netdev@vger.kernel.org \
    --cc=nicolas.dichtel@6wind.com \
    --cc=ogerlitz@mellanox.com \
    --cc=pabeni@redhat.com \
    --cc=roid@nvidia.com \
    --cc=roopa@nvidia.com \
    --cc=saeedm@nvidia.com \
    --cc=vladbu@nvidia.com \
    --cc=willemb@google.com \
    --cc=yoshfuji@linux-ipv6.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.