Re: [PATCH net v3] net/sched: cbs: Fix not adding cbs instance to list

2019-09-26 Thread David Miller
From: Vinicius Costa Gomes Date: Mon, 23 Sep 2019 22:04:58 -0700 > When removing a cbs instance when offloading is enabled, the crash > below can be observed. > > The problem happens because that when offloading is enabled, the cbs > instance is not added to the list. > > Also, the current code

Re: [PATCH net v3] net/sched: cbs: Fix not adding cbs instance to list

2019-09-25 Thread Vinicius Costa Gomes
Hi Andre, "Guedes, Andre" writes: > Hi Vinicius, > >> On Sep 23, 2019, at 10:04 PM, Vinicius Costa Gomes >> wrote: >> >> The problem happens because that when offloading is enabled, the cbs >> instance is not added to the list. >> >> Also, the current code doesn't handle correctly the case w

Re: [PATCH net v3] net/sched: cbs: Fix not adding cbs instance to list

2019-09-24 Thread Guedes, Andre
Hi Vinicius, > On Sep 23, 2019, at 10:04 PM, Vinicius Costa Gomes > wrote: > > The problem happens because that when offloading is enabled, the cbs > instance is not added to the list. > > Also, the current code doesn't handle correctly the case when offload > is disabled without removing the

Re: [PATCH net v3] net/sched: cbs: Fix not adding cbs instance to list

2019-09-23 Thread Cong Wang
On Mon, Sep 23, 2019 at 10:04 PM Vinicius Costa Gomes wrote: > > When removing a cbs instance when offloading is enabled, the crash > below can be observed. > > The problem happens because that when offloading is enabled, the cbs > instance is not added to the list. > > Also, the current code does