* arch/arm64/kernel/entry-common.c:68:25: warning: no previous prototype for 'el1_sync_handler'
@ 2020-12-14 7:12 kernel test robot
2020-12-14 10:28 ` Catalin Marinas
0 siblings, 1 reply; 3+ messages in thread
From: kernel test robot @ 2020-12-14 7:12 UTC (permalink / raw)
To: Mark Rutland; +Cc: kbuild-all, linux-kernel, Catalin Marinas, James Morse
[-- Attachment #1: Type: text/plain, Size: 1687 bytes --]
Hi Mark,
FYI, the error/warning still remains.
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 2c85ebc57b3e1817b6ce1a6b703928e113a90442
commit: ed3768db588291ddb5dc794daed12cc751373566 arm64: entry: convert el1_sync to C
date: 1 year, 2 months ago
config: arm64-randconfig-r021-20201214 (attached as .config)
compiler: aarch64-linux-gcc (GCC) 9.3.0
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=ed3768db588291ddb5dc794daed12cc751373566
git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
git fetch --no-tags linus master
git checkout ed3768db588291ddb5dc794daed12cc751373566
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=arm64
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
>> arch/arm64/kernel/entry-common.c:68:25: warning: no previous prototype for 'el1_sync_handler' [-Wmissing-prototypes]
68 | asmlinkage void notrace el1_sync_handler(struct pt_regs *regs)
| ^~~~~~~~~~~~~~~~
vim +/el1_sync_handler +68 arch/arm64/kernel/entry-common.c
67
> 68 asmlinkage void notrace el1_sync_handler(struct pt_regs *regs)
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 41120 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: arch/arm64/kernel/entry-common.c:68:25: warning: no previous prototype for 'el1_sync_handler'
2020-12-14 7:12 arch/arm64/kernel/entry-common.c:68:25: warning: no previous prototype for 'el1_sync_handler' kernel test robot
@ 2020-12-14 10:28 ` Catalin Marinas
2020-12-14 11:12 ` Mark Rutland
0 siblings, 1 reply; 3+ messages in thread
From: Catalin Marinas @ 2020-12-14 10:28 UTC (permalink / raw)
To: kernel test robot; +Cc: Mark Rutland, kbuild-all, linux-kernel, James Morse
On Mon, Dec 14, 2020 at 03:12:34PM +0800, kernel test robot wrote:
> tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
> head: 2c85ebc57b3e1817b6ce1a6b703928e113a90442
> commit: ed3768db588291ddb5dc794daed12cc751373566 arm64: entry: convert el1_sync to C
> date: 1 year, 2 months ago
> config: arm64-randconfig-r021-20201214 (attached as .config)
> compiler: aarch64-linux-gcc (GCC) 9.3.0
> reproduce (this is a W=1 build):
> wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
> chmod +x ~/bin/make.cross
> # https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=ed3768db588291ddb5dc794daed12cc751373566
> git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
> git fetch --no-tags linus master
> git checkout ed3768db588291ddb5dc794daed12cc751373566
> # save the attached .config to linux build tree
> COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=arm64
>
> If you fix the issue, kindly add following tag as appropriate
> Reported-by: kernel test robot <lkp@intel.com>
>
> All warnings (new ones prefixed by >>):
>
> >> arch/arm64/kernel/entry-common.c:68:25: warning: no previous prototype for 'el1_sync_handler' [-Wmissing-prototypes]
> 68 | asmlinkage void notrace el1_sync_handler(struct pt_regs *regs)
Do we actually need to fix these? It's asmlinkage and called from
assembly, it wouldn't understand a prototype anyway.
--
Catalin
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: arch/arm64/kernel/entry-common.c:68:25: warning: no previous prototype for 'el1_sync_handler'
2020-12-14 10:28 ` Catalin Marinas
@ 2020-12-14 11:12 ` Mark Rutland
0 siblings, 0 replies; 3+ messages in thread
From: Mark Rutland @ 2020-12-14 11:12 UTC (permalink / raw)
To: Catalin Marinas; +Cc: kernel test robot, kbuild-all, linux-kernel, James Morse
On Mon, Dec 14, 2020 at 10:28:48AM +0000, Catalin Marinas wrote:
> On Mon, Dec 14, 2020 at 03:12:34PM +0800, kernel test robot wrote:
> > tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
> > head: 2c85ebc57b3e1817b6ce1a6b703928e113a90442
> > commit: ed3768db588291ddb5dc794daed12cc751373566 arm64: entry: convert el1_sync to C
> > date: 1 year, 2 months ago
> > config: arm64-randconfig-r021-20201214 (attached as .config)
> > compiler: aarch64-linux-gcc (GCC) 9.3.0
> > reproduce (this is a W=1 build):
> > wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
> > chmod +x ~/bin/make.cross
> > # https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=ed3768db588291ddb5dc794daed12cc751373566
> > git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
> > git fetch --no-tags linus master
> > git checkout ed3768db588291ddb5dc794daed12cc751373566
> > # save the attached .config to linux build tree
> > COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=arm64
> >
> > If you fix the issue, kindly add following tag as appropriate
> > Reported-by: kernel test robot <lkp@intel.com>
> >
> > All warnings (new ones prefixed by >>):
> >
> > >> arch/arm64/kernel/entry-common.c:68:25: warning: no previous prototype for 'el1_sync_handler' [-Wmissing-prototypes]
> > 68 | asmlinkage void notrace el1_sync_handler(struct pt_regs *regs)
>
> Do we actually need to fix these? It's asmlinkage and called from
> assembly, it wouldn't understand a prototype anyway.
Given we do this for a few other asmlinkage functions in this area, I'll
spin a patch to add the few missing entry-common.c prototypes to
asm/exception.h for consistency.
It's not strictly necessary, but it's vastly less effort than fighting
the testing systems. ;)
Thanks,
Mark.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-12-14 11:14 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-14 7:12 arch/arm64/kernel/entry-common.c:68:25: warning: no previous prototype for 'el1_sync_handler' kernel test robot
2020-12-14 10:28 ` Catalin Marinas
2020-12-14 11:12 ` Mark Rutland
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox