[dts] [PATCH V1 1/2]framework: fix the error of getting vlan value

Tu, Lijuan lijuan.tu at intel.com
Wed Mar 11 02:31:59 CET 2020



> -----Original Message-----
> From: Han, YingyaX
> Sent: Tuesday, March 10, 2020 5:04 PM
> To: dts at dpdk.org; Tu, Lijuan <lijuan.tu at intel.com>
> Cc: Han, YingyaX <yingyax.han at intel.com>
> Subject: [dts][PATCH V1 1/2]framework: fix the error of getting vlan value
> 
> Signed-off-by: hanyingya <yingyax.han at intel.com>
> ---
>  framework/pktgen.py | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/framework/pktgen.py b/framework/pktgen.py index
> 889e94a..404f171 100644
> --- a/framework/pktgen.py
> +++ b/framework/pktgen.py
> @@ -167,7 +167,7 @@ class PacketGeneratorHelper(object):
>                  action = config.get('action') or 'default'
>                  range = config.get('range') or 64
>                  # ignore 'L' suffix
> -                start_vlan = int(pcap_fields.get(layer_name)[:-1])
> +                start_vlan = int(pcap_fields.get(layer_name))
[Lijuan] need consider more, how to deal with w/ or w/o "L" suffix . some scapy version may have "L" suffix, and the other may not have. 
>                  end_vlan = start_vlan + range - 1
>                  fields_config[layer_name][name] = {}
>                  fields_config[layer_name][name]['start'] = start_vlan @@ -212,4
> +212,4 @@ def getPacketGenerator(tester, pktgen_type=PKTGEN_IXIA):
>          return CLS(tester)
>      else:
>          msg = "not support <{0}> packet generator".format(pktgen_type)
> -        raise Exception(msg)
> \ No newline at end of file
> +        raise Exception(msg)
> --
> 2.17.2



More information about the dts mailing list