Re: [dpdk-dev] [PATCH] net: do not insert VLAN tag to shared mbufs

2019-07-04 Thread Thomas Monjalon
13/05/2019 14:43, Olivier Matz: > On Wed, Apr 17, 2019 at 09:12:55AM +0100, Bruce Richardson wrote: > > On Tue, Apr 16, 2019 at 02:32:18PM -0400, Chas Williams wrote: > > > > > > > > > On 4/16/19 12:28 PM, Bruce Richardson wrote: > > > > On Tue, Apr 16, 2019 at 04:51:26PM +0100, Ferruh Yigit wrot

Re: [dpdk-dev] [PATCH] net: do not insert VLAN tag to shared mbufs

2019-05-13 Thread Olivier Matz
On Wed, Apr 17, 2019 at 09:12:55AM +0100, Bruce Richardson wrote: > On Tue, Apr 16, 2019 at 02:32:18PM -0400, Chas Williams wrote: > > > > > > On 4/16/19 12:28 PM, Bruce Richardson wrote: > > > On Tue, Apr 16, 2019 at 04:51:26PM +0100, Ferruh Yigit wrote: > > > > The vlan_insert() is buggy when i

Re: [dpdk-dev] [PATCH] net: do not insert VLAN tag to shared mbufs

2019-04-17 Thread Bruce Richardson
On Tue, Apr 16, 2019 at 02:32:18PM -0400, Chas Williams wrote: > > > On 4/16/19 12:28 PM, Bruce Richardson wrote: > > On Tue, Apr 16, 2019 at 04:51:26PM +0100, Ferruh Yigit wrote: > > > The vlan_insert() is buggy when it tires to handle the shared mbufs, > > > instead don't support inserting VLAN

Re: [dpdk-dev] [PATCH] net: do not insert VLAN tag to shared mbufs

2019-04-16 Thread Chas Williams
On 4/16/19 12:28 PM, Bruce Richardson wrote: On Tue, Apr 16, 2019 at 04:51:26PM +0100, Ferruh Yigit wrote: The vlan_insert() is buggy when it tires to handle the shared mbufs, instead don't support inserting VLAN tag into shared mbufs and return an error for that case. Signed-off-by: Ferruh

Re: [dpdk-dev] [PATCH] net: do not insert VLAN tag to shared mbufs

2019-04-16 Thread Chas Williams
On 4/16/19 11:51 AM, Ferruh Yigit wrote: The vlan_insert() is buggy when it tires to handle the shared mbufs, s/tries/tries/ instead don't support inserting VLAN tag into shared mbufs and return an error for that case. Signed-off-by: Ferruh Yigit --- Cc: Stephen Hemminger Cc: Chas Willi

Re: [dpdk-dev] [PATCH] net: do not insert VLAN tag to shared mbufs

2019-04-16 Thread Bruce Richardson
On Tue, Apr 16, 2019 at 04:51:26PM +0100, Ferruh Yigit wrote: > The vlan_insert() is buggy when it tires to handle the shared mbufs, > instead don't support inserting VLAN tag into shared mbufs and return > an error for that case. > > Signed-off-by: Ferruh Yigit > --- > Cc: Stephen Hemminger > C

[dpdk-dev] [PATCH] net: do not insert VLAN tag to shared mbufs

2019-04-16 Thread Ferruh Yigit
The vlan_insert() is buggy when it tires to handle the shared mbufs, instead don't support inserting VLAN tag into shared mbufs and return an error for that case. Signed-off-by: Ferruh Yigit --- Cc: Stephen Hemminger Cc: Chas Williams This is another approach to RFC to fix the vlan_insert: htt