mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 06:15:47 +00:00
odp-util: Use FLOW_MAX_MPLS_LABELS when parsing MPLS ODP keys.
Even though the number of supported MPLS labels may vary between a datapath and the OVS userspace, it is better to use the FLOW_MAX_MPLS_LABELS than a hard-coded '3' as the maximum number of labels to scan. Requested-by: Ben Pfaff <blp@ovn.org> Signed-off-by: Jarno Rajahalme <jarno@ovn.org> Acked-by: Ben Pfaff <blp@ovn.org>
This commit is contained in:
@@ -4052,7 +4052,7 @@ parse_odp_key_mask_attr(const char *s, const struct simap *port_names,
|
||||
|
||||
SCAN_SINGLE("eth_type(", ovs_be16, be16, OVS_KEY_ATTR_ETHERTYPE);
|
||||
|
||||
SCAN_BEGIN_ARRAY("mpls(", struct ovs_key_mpls, 3) {
|
||||
SCAN_BEGIN_ARRAY("mpls(", struct ovs_key_mpls, FLOW_MAX_MPLS_LABELS) {
|
||||
SCAN_FIELD_ARRAY("label=", mpls_label, mpls_lse);
|
||||
SCAN_FIELD_ARRAY("tc=", mpls_tc, mpls_lse);
|
||||
SCAN_FIELD_ARRAY("ttl=", mpls_ttl, mpls_lse);
|
||||
|
Reference in New Issue
Block a user