From mboxrd@z Thu Jan 1 00:00:00 1970
From: ynorov@caviumnetworks.com (Yury Norov)
Date: Fri, 29 Apr 2016 16:13:38 +0300
Subject: [PATCH 20/25] arm64:ilp32: add sys_ilp32.c and a separate table
(in entry.S) to use it
In-Reply-To: <4271094.ei7kj5zJxn@wuerfel>
References: <1459894127-17698-1-git-send-email-ynorov@caviumnetworks.com>
<2760348.qmm1L3yQch@wuerfel> <20160428222137.GB18227@yury-N73SV>
<4271094.ei7kj5zJxn@wuerfel>
Message-ID: <20160429131338.GB32007@yury-N73SV>
To: linux-arm-kernel@lists.infradead.org
List-Id: linux-arm-kernel.lists.infradead.org
On Fri, Apr 29, 2016 at 12:43:41AM +0200, Arnd Bergmann wrote:
> On Friday 29 April 2016 01:21:37 Yury Norov wrote:
> > index 1458ad7..410d817 100644
> > --- a/arch/arm64/kernel/sys_ilp32.c
> > +++ b/arch/arm64/kernel/sys_ilp32.c
> > @@ -17,6 +17,8 @@
> > * along with this program. If not, see
> > * .
> > */
> >
> > +#define __SYSCALL_COMPAT
> > +
> > #include
> > #include
> > #include
> > @@ -48,13 +50,12 @@ asmlinkage long
> > ilp32_sys_rt_sigreturn_wrapper(void);
> >
> > #include
> >
> > -#undef __SYSCALL
> > -#undef __SC_COMP
> > -#undef __SC_WRAP
> > -#undef __SC_3264
> > -#undef __SC_COMP_3264
> >
> > -#define __SYSCALL_COMPAT
> > #define __SYSCALL(nr, sym) [nr] = sym,
> > #define __SC_WRAP(nr, sym) [nr] = compat_##sym,
> >
> > This patch makes gcc warn about redefinition.
> >
> > arch/arm64/kernel/sys_ilp32.c:59:0: warning: "__SYSCALL" redefined
> > #define __SYSCALL(nr, sym) [nr] = sym,
> > ^
> > In file included from include/asm-generic/unistd.h:1:0,
> >
>
> Ok, I think I see it now. Can you #undef the two symbols at the
> end of arch/arm64/include/uapi/asm/unistd.h
I think it doesn't look better than what we have now, but not worse
as well. If you like it, I'll change.
> or possibly
> include/uapi/asm-generic/unistd.h?
>
> Arnd