[dpdk-dev] [PATCH v2] app/testpmd: fix gtp psc extension header length
Ferruh Yigit
ferruh.yigit at intel.com
Mon Nov 15 20:02:01 CET 2021
On 11/4/2021 9:40 AM, Raslan Darawsheh wrote:
> Current implementation for raw encap sets the length to be in bytes,
> but, GTP 'extension' header length is an 8-bit field in 4-octet units.
>
> This fixes the length calculation of the header length.
>
> Fixes: 9213c50e36fa ("app/testpmd: support GTP PSC option in raw sets")
> Cc: viacheslavo at nvidia.com
> Cc: stable at dpdk.org
>
> Signed-off-by: Raslan Darawsheh <rasland at nvidia.com>
> ---
> v2: fix spelling issues
> ---
> app/test-pmd/cmdline_flow.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/app/test-pmd/cmdline_flow.c b/app/test-pmd/cmdline_flow.c
> index 24b224e632..b4c5aacdbe 100644
> --- a/app/test-pmd/cmdline_flow.c
> +++ b/app/test-pmd/cmdline_flow.c
> @@ -9213,7 +9213,7 @@ cmd_set_raw_parsed(const struct buffer *in)
> uint8_t qfi:6;
> uint8_t next;
> } psc;
> - psc.len = sizeof(psc);
> + psc.len = sizeof(psc) / 4;
> psc.pdu_type = opt->hdr.type;
> psc.qfi = opt->hdr.qfi;
> psc.next = 0;
>
Hi Ori, Slava,
Can you please review this patch?
More information about the dev
mailing list