All of lore.kernel.org
 help / color / mirror / Atom feed
From: Masahiro Yamada <masahiroy@kernel.org>
To: "Mickaël Salaün" <mic@digikod.net>
Cc: Linux Kbuild mailing list <linux-kbuild@vger.kernel.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	kernel test robot <lkp@intel.com>,
	linux-arch <linux-arch@vger.kernel.org>, X86 ML <x86@kernel.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	Ingo Molnar <mingo@redhat.com>, Borislav Petkov <bp@alien8.de>,
	Linus Torvalds <torvalds@linux-foundation.org>
Subject: Re: [PATCH 02/27] x86/syscalls: fix -Wmissing-prototypes warnings from COND_SYSCALL()
Date: Sat, 13 Feb 2021 13:50:52 +0900	[thread overview]
Message-ID: <CAK7LNAS_xG6EAKf8o8wdBD5GBZzajW1P78GfwYgCZ3gO7xCqvg@mail.gmail.com> (raw)
In-Reply-To: <b47407f4-6c4c-1db3-f1ad-c569de315790@digikod.net>

On Sat, Feb 13, 2021 at 12:12 AM Mickaël Salaün <mic@digikod.net> wrote:
>
> Could you please push this patch to Linus? Thanks.
>
> On 04/02/2021 15:16, Mickaël Salaün wrote:
> >
> > On 28/01/2021 01:50, Masahiro Yamada wrote:
> >> Building kernel/sys_ni.c with W=1 omits tons of -Wmissing-prototypes
> >> warnings.
> >>
> >> $ make W=1 kernel/sys_ni.o
> >>   [ snip ]
> >>   CC      kernel/sys_ni.o
> >> In file included from kernel/sys_ni.c:10:
> >> ./arch/x86/include/asm/syscall_wrapper.h:83:14: warning: no previous prototype for '__x64_sys_io_setup' [-Wmissing-prototypes]
> >>    83 |  __weak long __##abi##_##name(const struct pt_regs *__unused) \
> >>       |              ^~
> >> ./arch/x86/include/asm/syscall_wrapper.h:100:2: note: in expansion of macro '__COND_SYSCALL'
> >>   100 |  __COND_SYSCALL(x64, sys_##name)
> >>       |  ^~~~~~~~~~~~~~
> >> ./arch/x86/include/asm/syscall_wrapper.h:256:2: note: in expansion of macro '__X64_COND_SYSCALL'
> >>   256 |  __X64_COND_SYSCALL(name)     \
> >>       |  ^~~~~~~~~~~~~~~~~~
> >> kernel/sys_ni.c:39:1: note: in expansion of macro 'COND_SYSCALL'
> >>    39 | COND_SYSCALL(io_setup);
> >>       | ^~~~~~~~~~~~
> >> ./arch/x86/include/asm/syscall_wrapper.h:83:14: warning: no previous prototype for '__ia32_sys_io_setup' [-Wmissing-prototypes]
> >>    83 |  __weak long __##abi##_##name(const struct pt_regs *__unused) \
> >>       |              ^~
> >> ./arch/x86/include/asm/syscall_wrapper.h:120:2: note: in expansion of macro '__COND_SYSCALL'
> >>   120 |  __COND_SYSCALL(ia32, sys_##name)
> >>       |  ^~~~~~~~~~~~~~
> >> ./arch/x86/include/asm/syscall_wrapper.h:257:2: note: in expansion of macro '__IA32_COND_SYSCALL'
> >>   257 |  __IA32_COND_SYSCALL(name)
> >>       |  ^~~~~~~~~~~~~~~~~~~
> >> kernel/sys_ni.c:39:1: note: in expansion of macro 'COND_SYSCALL'
> >>    39 | COND_SYSCALL(io_setup);
> >>       | ^~~~~~~~~~~~
> >>   ...
> >>
> >> __SYS_STUB0() and __SYS_STUBx() defined a few lines above have forward
> >> declarations. Let's do likewise for __COND_SYSCALL() to fix the
> >> warnings.
> >>
> >> Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
> >
> > Tested-by: Mickaël Salaün <mic@linux.microsoft.com>
> >
> > Thanks to this patch we avoid multiple emails from Intel's bot when
> > adding new syscalls. :)


Thanks for the reminder.
I will fix the typo "omits" -> "emits"
and send v2 just in case.



> >
> >
> >> ---
> >>
> >>  arch/x86/include/asm/syscall_wrapper.h | 1 +
> >>  1 file changed, 1 insertion(+)
> >>
> >> diff --git a/arch/x86/include/asm/syscall_wrapper.h b/arch/x86/include/asm/syscall_wrapper.h
> >> index a84333adeef2..80c08c7d5e72 100644
> >> --- a/arch/x86/include/asm/syscall_wrapper.h
> >> +++ b/arch/x86/include/asm/syscall_wrapper.h
> >> @@ -80,6 +80,7 @@ extern long __ia32_sys_ni_syscall(const struct pt_regs *regs);
> >>      }
> >>
> >>  #define __COND_SYSCALL(abi, name)                                   \
> >> +    __weak long __##abi##_##name(const struct pt_regs *__unused);   \
> >>      __weak long __##abi##_##name(const struct pt_regs *__unused)    \
> >>      {                                                               \
> >>              return sys_ni_syscall();                                \
> >>



-- 
Best Regards
Masahiro Yamada

  reply	other threads:[~2021-02-13  4:52 UTC|newest]

Thread overview: 181+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-28  0:50 [PATCH 00/27] arch: syscalls: unifiy all syscalltbl.sh into scripts/syscalltbl.sh Masahiro Yamada
2021-01-28  0:50 ` Masahiro Yamada
2021-01-28  0:50 ` Masahiro Yamada
2021-01-28  0:50 ` Masahiro Yamada
2021-01-28  0:50 ` Masahiro Yamada
2021-01-28  0:50 ` [PATCH 01/27] scripts: add generic syscalltbl.sh Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  1:01   ` Masahiro Yamada
2021-01-28  1:01     ` Masahiro Yamada
2021-01-28  1:01     ` Masahiro Yamada
2021-01-28  1:01     ` Masahiro Yamada
2021-01-28  1:01     ` Masahiro Yamada
2021-01-28  1:01     ` Masahiro Yamada
2021-01-28  0:50 ` [PATCH 02/27] x86/syscalls: fix -Wmissing-prototypes warnings from COND_SYSCALL() Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:55   ` Masahiro Yamada
2021-01-28  0:55     ` Masahiro Yamada
2021-01-28  0:55     ` Masahiro Yamada
2021-01-28  0:55     ` Masahiro Yamada
2021-01-28  0:55     ` Masahiro Yamada
2021-01-28  0:55     ` Masahiro Yamada
2021-01-28  7:59   ` Sergei Shtylyov
2021-01-28  7:59     ` Sergei Shtylyov
2021-01-28  7:59     ` Sergei Shtylyov
2021-01-28  7:59     ` Sergei Shtylyov
2021-01-28  7:59     ` Sergei Shtylyov
2021-01-28  8:00     ` Sergei Shtylyov
2021-01-28  8:00       ` Sergei Shtylyov
2021-01-28  8:00       ` Sergei Shtylyov
2021-01-28  8:00       ` Sergei Shtylyov
2021-01-28  8:00       ` Sergei Shtylyov
2021-02-04 14:16   ` Mickaël Salaün
2021-02-12 15:13     ` Mickaël Salaün
2021-02-13  4:50       ` Masahiro Yamada [this message]
2021-01-28  0:50 ` [PATCH 03/27] x86/build: add missing FORCE and fix 'targets' to make if_changed work Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50 ` [PATCH 04/27] x86/entry/x32: rename __x32_compat_sys_* to __x64_compat_sys_* Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50 ` [PATCH 05/27] x86/syscalls: switch to generic syscalltbl.sh Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50 ` [PATCH 06/27] ARM: syscalls: " Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50 ` [PATCH 07/27] alpha: add missing FORCE and fix 'targets' to make if_changed work Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50 ` [PATCH 08/27] alpha: syscalls: switch to generic syscalltbl.sh Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50 ` [PATCH 09/27] ia64: add missing FORCE and fix 'targets' to make if_changed work Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50 ` [PATCH 10/27] ia64: syscalls: switch to generic syscalltbl.sh Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50 ` [PATCH 11/27] m68k: add missing FORCE and fix 'targets' to make if_changed work Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  7:58   ` Geert Uytterhoeven
2021-01-28  7:58     ` Geert Uytterhoeven
2021-01-28  7:58     ` Geert Uytterhoeven
2021-01-28  7:58     ` Geert Uytterhoeven
2021-01-28  7:58     ` Geert Uytterhoeven
2021-01-28  7:58     ` Geert Uytterhoeven
2021-01-28  0:50 ` [PATCH 12/27] m68k: syscalls: switch to generic syscalltbl.sh Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  8:17   ` Geert Uytterhoeven
2021-01-28  8:17     ` Geert Uytterhoeven
2021-01-28  8:17     ` Geert Uytterhoeven
2021-01-28  8:17     ` Geert Uytterhoeven
2021-01-28  8:17     ` Geert Uytterhoeven
2021-01-28  8:17     ` Geert Uytterhoeven
2021-01-28  0:50 ` [PATCH 13/27] microblaze: add missing FORCE and fix 'targets' to make if_changed work Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50 ` [PATCH 14/27] microblaze: syscalls: switch to generic syscalltbl.sh Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50 ` [PATCH 15/27] mips: add missing FORCE and fix 'targets' to make if_changed work Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50 ` [PATCH 16/27] mips: syscalls: switch to generic syscalltbl.sh Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50 ` [PATCH 17/27] parisc: add missing FORCE and fix 'targets' to make if_changed work Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:50   ` Masahiro Yamada
2021-01-28  0:51 ` [PATCH 18/27] parisc: syscalls: switch to generic syscalltbl.sh Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28 18:53   ` Helge Deller
2021-01-28 18:53     ` Helge Deller
2021-01-28 18:53     ` Helge Deller
2021-01-28 18:53     ` Helge Deller
2021-01-28  0:51 ` [PATCH 19/27] sh: add missing FORCE and fix 'targets' to make if_changed work Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51 ` [PATCH 20/27] sh: syscalls: switch to generic syscalltbl.sh Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51 ` [PATCH 21/27] sparc: remove wrong comment from arch/sparc/include/asm/Kbuild Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-02-14 17:00   ` Masahiro Yamada
2021-02-14 17:00     ` Masahiro Yamada
2021-02-14 17:00     ` Masahiro Yamada
2021-02-14 17:00     ` Masahiro Yamada
2021-02-14 17:00     ` Masahiro Yamada
2021-01-28  0:51 ` [PATCH 22/27] sparc: add missing FORCE and fix 'targets' to make if_changed work Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51 ` [PATCH 23/27] sparc: syscalls: switch to generic syscalltbl.sh Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51 ` [PATCH 24/27] powerpc: add missing FORCE and fix 'targets' to make if_changed work Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51 ` [PATCH 25/27] powerpc: syscalls: switch to generic syscalltbl.sh Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51 ` [PATCH 26/27] xtensa: add missing FORCE and fix 'targets' to make if_changed work Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51 ` [PATCH 27/27] xtensa: syscalls: switch to generic syscalltbl.sh Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28  0:51   ` Masahiro Yamada
2021-01-28 14:03 ` [PATCH 00/27] arch: syscalls: unifiy all syscalltbl.sh into scripts/syscalltbl.sh Anatoly Pugachev
2021-01-28 23:40   ` Masahiro Yamada
2021-02-15 12:03 ` Masahiro Yamada
2021-02-15 12:03   ` Masahiro Yamada
2021-02-15 12:03   ` Masahiro Yamada
2021-02-15 12:03   ` Masahiro Yamada
2021-02-15 12:03   ` Masahiro Yamada
2021-02-15 12:03   ` Masahiro Yamada

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAK7LNAS_xG6EAKf8o8wdBD5GBZzajW1P78GfwYgCZ3gO7xCqvg@mail.gmail.com \
    --to=masahiroy@kernel.org \
    --cc=bp@alien8.de \
    --cc=linux-arch@vger.kernel.org \
    --cc=linux-kbuild@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lkp@intel.com \
    --cc=mic@digikod.net \
    --cc=mingo@redhat.com \
    --cc=tglx@linutronix.de \
    --cc=torvalds@linux-foundation.org \
    --cc=x86@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.