Re: [PATCH 08/38] nfp: Convert to XArray

2019-08-20 Thread Jakub Kicinski
On Tue, 20 Aug 2019 15:32:29 -0700, Matthew Wilcox wrote: > From: "Matthew Wilcox (Oracle)" > > A minor change in semantics where we simply store into the XArray rather > than insert; this only matters if there could already be something stored > at that index, and from my reading of the code tha

[PATCH 08/38] nfp: Convert to XArray

2019-08-20 Thread Matthew Wilcox
From: "Matthew Wilcox (Oracle)" A minor change in semantics where we simply store into the XArray rather than insert; this only matters if there could already be something stored at that index, and from my reading of the code that can't happen. Use xa_for_each() rather than xas_for_each() as non