Re: [PATCH 08/12] s390: syscall_wrapper: avoid clang warning

2019-04-10 Thread Martin Schwidefsky
On Mon, 8 Apr 2019 23:26:21 +0200 Arnd Bergmann wrote: > Building system calls with clang results in a warning > about an alias from a global function to a static one: > > ../fs/namei.c:3847:1: warning: unused function '__se_sys_mkdirat' > [-Wunused-function] > SYSCALL_DEFINE3(mkdirat, int,

[PATCH 08/12] s390: syscall_wrapper: avoid clang warning

2019-04-08 Thread Arnd Bergmann
Building system calls with clang results in a warning about an alias from a global function to a static one: ../fs/namei.c:3847:1: warning: unused function '__se_sys_mkdirat' [-Wunused-function] SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode) ^