2
0
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:
Jarno Rajahalme
2013-10-09 13:50:51 -07:00
committed by Ben Pfaff
parent 635c5db93d
commit ec45f34344

View File

@@ -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: