net/mvpp2: support custom header in config file

Extend 'start_hdr' options with custom header.

Signed-off-by: Dana Vardi <danat@marvell.com>
Reviewed-by: Liron Himi <lironh@marvell.com>
This commit is contained in:
Dana Vardi 2021-01-27 18:09:45 +02:00 committed by Ferruh Yigit
parent 006f6ccb44
commit 21aa25e033
2 changed files with 6 additions and 1 deletions

View File

@ -261,7 +261,7 @@ Where:
- ``<portnum>``: DPDK Port number (0..n).
- ``<start_hdr>``: Indicate what is the start header mode (`none` (eth), `dsa`, or `ext_dsa`).
- ``<start_hdr>``: Indicate what is the start header mode (`none` (eth), `dsa`, `ext_dsa` or `custom`).
- ``<default_tc>``: Default traffic class (e.g. 0)

View File

@ -23,6 +23,7 @@
#define MRVL_TOK_START_HDR "start_hdr"
#define MRVL_TOK_START_HDR_NONE "none"
#define MRVL_TOK_START_HDR_DSA "dsa"
#define MRVL_TOK_START_HDR_CUSTOM "custom"
#define MRVL_TOK_START_HDR_EXT_DSA "ext_dsa"
#define MRVL_TOK_DEFAULT_TC "default_tc"
#define MRVL_TOK_DSCP "dscp"
@ -742,6 +743,10 @@ mrvl_get_cfg(const char *key __rte_unused, const char *path, void *extra_args)
sizeof(MRVL_TOK_START_HDR_DSA)))
(*cfg)->port[n].eth_start_hdr =
PP2_PPIO_HDR_ETH_DSA;
else if (!strncmp(entry, MRVL_TOK_START_HDR_CUSTOM,
sizeof(MRVL_TOK_START_HDR_CUSTOM)))
(*cfg)->port[n].eth_start_hdr =
PP2_PPIO_HDR_ETH_CUSTOM;
else if (!strncmp(entry, MRVL_TOK_START_HDR_EXT_DSA,
sizeof(MRVL_TOK_START_HDR_EXT_DSA))) {
(*cfg)->port[n].eth_start_hdr =