Re: [dpdk-dev] vlan intertion offload does not take effect in 17.08

2017-11-09 Thread Ferruh Yigit
On 11/9/2017 2:27 AM, Chillance Zen wrote: > hi,all > I write this code when processing a packet try to utilize VLAN offload(the > nic does support that offlaod because I verify it in its dev_info) > > m->vlan_tci=222; > m->ol_flags=PKT_TX_VLAN_PKT; > > the packets out of that interface does not

[dpdk-dev] vlan intertion offload does not take effect in 17.08

2017-11-09 Thread Chillance Zen
hi,all I write this code when processing a packet try to utilize VLAN offload(the nic does support that offlaod because I verify it in its dev_info) m->vlan_tci=222; m->ol_flags=PKT_TX_VLAN_PKT; the packets out of that interface does not contain any vlan tag. does anybody know what's happening o