Re: [PATCH 0/7] x86: Clean up percpu operations

2020-05-18 Thread Nick Desaulniers
On Mon, May 18, 2020 at 12:19 PM Nick Desaulniers wrote: > > On Sun, May 17, 2020 at 8:29 AM Brian Gerst wrote: > > > > The core percpu operations already have a switch on the width of the > > data type, which resulted in an extra amount of dead code being > > Thanks for the series Brian. The du

Re: [PATCH 0/7] x86: Clean up percpu operations

2020-05-18 Thread Nick Desaulniers
On Sun, May 17, 2020 at 8:29 AM Brian Gerst wrote: > > The core percpu operations already have a switch on the width of the > data type, which resulted in an extra amount of dead code being Thanks for the series Brian. The duplication between knowing the size at the call site and the switch is e

[PATCH 0/7] x86: Clean up percpu operations

2020-05-17 Thread Brian Gerst
The core percpu operations already have a switch on the width of the data type, which resulted in an extra amount of dead code being generated with the x86 operations having another switch. This patch set rewrites the x86 ops to remove the switch. Additional cleanups are to use named assembly ope