Currently, when testpmd command `...vlan tci is 0x1234`, the VLAN TCI field is being specified in spec, but is not masked in mask. Add full mask to VLAN TCI when specified.
Signed-off-by: Anatoly Burakov <[email protected]> --- app/test-pmd/cmdline_flow.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/test-pmd/cmdline_flow.c b/app/test-pmd/cmdline_flow.c index 67f200f2e3..0b7d268535 100644 --- a/app/test-pmd/cmdline_flow.c +++ b/app/test-pmd/cmdline_flow.c @@ -4610,7 +4610,8 @@ static const struct token token_list[] = { .help = "tag control information", .next = NEXT(item_vlan, NEXT_ENTRY(COMMON_UNSIGNED), item_param), - .args = ARGS(ARGS_ENTRY_HTON(struct rte_flow_item_vlan, hdr.vlan_tci)), + .args = ARGS(ARGS_ENTRY_MASK_HTON(struct rte_flow_item_vlan, + hdr.vlan_tci, "\xff\xff")), }, [ITEM_VLAN_PCP] = { .name = "pcp", -- 2.47.3

