Re: [PATCH v4 01/20] powerpc: Remove asmlinkage from syscall handler definitions

2022-09-12 Thread Nicholas Piggin
On Wed Aug 24, 2022 at 12:05 PM AEST, Rohan McLure wrote: > The asmlinkage macro has no special meaning in powerpc, and prior to > this patch is used sporadically on some syscall handler definitions. On > architectures that do not define asmlinkage, it resolves to extern "C" > for C++ compilers

Re: [PATCH v4 01/20] powerpc: Remove asmlinkage from syscall handler definitions

2022-08-25 Thread Andrew Donnellan
On Wed, 2022-08-24 at 12:05 +1000, Rohan McLure wrote: > The asmlinkage macro has no special meaning in powerpc, and prior to > this patch is used sporadically on some syscall handler definitions. > On > architectures that do not define asmlinkage, it resolves to extern > "C" > for C++ compilers

[PATCH v4 01/20] powerpc: Remove asmlinkage from syscall handler definitions

2022-08-23 Thread Rohan McLure
The asmlinkage macro has no special meaning in powerpc, and prior to this patch is used sporadically on some syscall handler definitions. On architectures that do not define asmlinkage, it resolves to extern "C" for C++ compilers and a nop otherwise. The current invocations of asmlinkage provide