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 <[email protected]> Signed-off-by: Jarno Rajahalme <[email protected]> --- lib/odp-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/odp-util.c b/lib/odp-util.c index 51dafe0..b5e7826 100644 --- a/lib/odp-util.c +++ b/lib/odp-util.c @@ -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); -- 2.1.4 _______________________________________________ dev mailing list [email protected] http://openvswitch.org/mailman/listinfo/dev
