[dpdk-dev] mailing list configuration

2016-03-12 Thread Thomas Monjalon
Hi all, Please find an information notice about mailman running this mailing list. You can change your settings at this URL: http://dpdk.org/ml/options/dev/ There is an option "nodupes": " Avoid duplicate copies of messages? When you are listed explicitly in the To: or Cc: headers of a l

[dpdk-dev] [PATCH v5 2/2] i40e: fix the overflow issue

2016-03-12 Thread Helin Zhang
The array 'ptype_table' was defined in depth of 'UINT8_MAX' which is 255, while the querying index could be from 0 to 255. The issue can be fixed with expanding the array to one more element. Fixes: 9571ea028489 ("i40e: replace some offload flags with unified packet type") Signed-off-by: Helin Z

[dpdk-dev] [PATCH v5 1/2] ethdev: add vlan type for setting ether type

2016-03-12 Thread Helin Zhang
In order to set ether type of VLAN for single VLAN, inner and outer VLAN, the VLAN type as an input parameter is added to 'rte_eth_dev_set_vlan_ether_type()'. In addition, corresponding changes in e1000, ixgbe and i40e are also added. Signed-off-by: Helin Zhang Acked-by: Wenzhuo Lu --- app/test

[dpdk-dev] [PATCH v5 0/2] i40e setting ether type of VLANs

2016-03-12 Thread Helin Zhang
It adds setting ether type of both single VLAN(inner VLAN) and outer VLAN for i40e. For ixgbe and e1000/igb, it supports setting single VLAN(inner VLAN) only, and can be extended in the future. The patch set was branched off rel_16_04 of repo dpdk-next-net, on below commit. commit 5721e6447b5c2020

[dpdk-dev] [PATCH v9 1/5] lib/librte_ether: change function name of tunnel port config

2016-03-12 Thread Thomas Monjalon
2016-03-10 10:42, Wenzhuo Lu: > The names of function for tunnel port configuration are not > accurate. They're tunnel_add/del, better change them to > tunnel_port_add/del. > As it may be an ABI change if change the names directly, the > new functions are added but not remove the old ones. The old