Re: [PATCH net v3 0/4] net-sysfs: fix race conditions in the xps code

2020-12-28 Thread Jakub Kicinski
On Wed, 23 Dec 2020 15:26:08 -0800 Alexander Duyck wrote: > On Wed, Dec 23, 2020 at 1:23 PM Antoine Tenart wrote: > > > > Hello all, > > > > This series fixes race conditions in the xps code, where out of bound > > accesses can occur when dev->num_tc is updated, triggering oops. The > > root cause

Re: [PATCH net v3 0/4] net-sysfs: fix race conditions in the xps code

2020-12-23 Thread Alexander Duyck
On Wed, Dec 23, 2020 at 1:23 PM Antoine Tenart wrote: > > Hello all, > > This series fixes race conditions in the xps code, where out of bound > accesses can occur when dev->num_tc is updated, triggering oops. The > root cause is linked to locking issues. An explanation is given in each > of the c

[PATCH net v3 0/4] net-sysfs: fix race conditions in the xps code

2020-12-23 Thread Antoine Tenart
Hello all, This series fixes race conditions in the xps code, where out of bound accesses can occur when dev->num_tc is updated, triggering oops. The root cause is linked to locking issues. An explanation is given in each of the commit logs. We had a discussion on the v1 of this series about usin