mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 06:15:47 +00:00
meta-flow: Fix inverted IPv6 flow label masking.
Signed-off-by: Jarno Rajahalme <jrajahalme@nicira.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
This commit is contained in:
committed by
Ben Pfaff
parent
635c5db93d
commit
ec45f34344
@@ -2175,7 +2175,7 @@ mf_random_value(const struct mf_field *mf, union mf_value *value)
|
||||
break;
|
||||
|
||||
case MFF_IPV6_LABEL:
|
||||
value->be32 &= ~htonl(IPV6_LABEL_MASK);
|
||||
value->be32 &= htonl(IPV6_LABEL_MASK);
|
||||
break;
|
||||
|
||||
case MFF_IP_DSCP:
|
||||
|
Reference in New Issue
Block a user