Re: [RFC patch 01/15] entry: Provide generic syscall entry functionality

2019-10-20 Thread Thomas Gleixner
On Fri, 20 Sep 2019, Andy Lutomirski wrote: > On Thu, Sep 19, 2019 at 8:09 AM Thomas Gleixner wrote: > > +#ifndef _TIF_AUDIT > > +# define _TIF_AUDIT(0) > > +#endif > > I'm wondering if these should be __TIF (double-underscore) or > MAYBE_TIF_ or something to avoid errors

Re: [RFC patch 01/15] entry: Provide generic syscall entry functionality

2019-09-23 Thread Mike Rapoport
On Thu, Sep 19, 2019 at 05:03:15PM +0200, Thomas Gleixner wrote: > On syscall entry certain work needs to be done conditionally like tracing, > seccomp etc. This code is duplicated in all architectures. > > Provide a generic version. > > Signed-off-by: Thomas Gleixner > --- > arch/Kconfig

Re: [RFC patch 01/15] entry: Provide generic syscall entry functionality

2019-09-20 Thread Andy Lutomirski
On Thu, Sep 19, 2019 at 8:09 AM Thomas Gleixner wrote: > > On syscall entry certain work needs to be done conditionally like tracing, > seccomp etc. This code is duplicated in all architectures. > > Provide a generic version. > > Signed-off-by: Thomas Gleixner > --- > arch/Kconfig

[RFC patch 01/15] entry: Provide generic syscall entry functionality

2019-09-19 Thread Thomas Gleixner
On syscall entry certain work needs to be done conditionally like tracing, seccomp etc. This code is duplicated in all architectures. Provide a generic version. Signed-off-by: Thomas Gleixner --- arch/Kconfig |3 + include/linux/entry-common.h | 122