From: Ahmed Abdelsalam <ahabdels@xxxxxxxxx>
Date: Mon, 24 Aug 2020 08:51:24 +0000
This patch allows copying the DSCP from inner IPv4 header to the
outer IPv6 header, when doing SRv6 Encapsulation.
This allows forwarding packet across the SRv6 fabric based on their
original traffic class.
Signed-off-by: Ahmed Abdelsalam <ahabdels@xxxxxxxxx>
"Allows" sounds like the behavior is optional, but that is not what
is happening here. You are making this DSCP inheritance behavior
unconditional.
I've stated that the current behavior matches what other ipv6
tunneling devices do, and therefore we should keep it that way.
Furthermore, this behavior has been in place for several releases
so you cannot change it by default. People may be depending upon
how things work right now.
Also:Fixed in the new patch.
@@ -130,6 +129,7 @@ int seg6_do_srh_encap(struct sk_buff *skb, struct ipv6_sr_hdr *osrh, int proto)
struct ipv6_sr_hdr *isrh;
int hdrlen, tot_len, err;
__be32 flowlabel;
+ u8 tos = 0, hop_limit;
Need to preserve reverse christmas tree here.