All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Marc Zyngier <maz@kernel.org>
Cc: kbuild-all@lists.01.org, linux-arm-kernel@lists.infradead.org
Subject: [arm-platforms:irq/domain_cleanup 38/39] arch/nios2/kernel/irq.c:24:2: error: implicit declaration of function 'generic_handle_domain_irqg'; did you mean 'generic_handle_domain_irq'?
Date: Tue, 18 May 2021 08:26:35 +0800	[thread overview]
Message-ID: <202105180833.Kt64DUWj-lkp@intel.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 2449 bytes --]

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms.git irq/domain_cleanup
head:   9f2ec21368f318d9bfcb5cec966c24c00c6681be
commit: 2a22c2b61b583fe4d76d1d1a956f4d4e047f12c4 [38/39] nios2: Bulk conversion to generic_handle_domain_irq()
config: nios2-randconfig-r006-20210517 (attached as .config)
compiler: nios2-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/maz/arm-platforms.git/commit/?id=2a22c2b61b583fe4d76d1d1a956f4d4e047f12c4
        git remote add arm-platforms https://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms.git
        git fetch --no-tags arm-platforms irq/domain_cleanup
        git checkout 2a22c2b61b583fe4d76d1d1a956f4d4e047f12c4
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross W=1 ARCH=nios2 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   arch/nios2/kernel/irq.c:19:17: warning: no previous prototype for 'do_IRQ' [-Wmissing-prototypes]
      19 | asmlinkage void do_IRQ(int hwirq, struct pt_regs *regs)
         |                 ^~~~~~
   arch/nios2/kernel/irq.c: In function 'do_IRQ':
>> arch/nios2/kernel/irq.c:24:2: error: implicit declaration of function 'generic_handle_domain_irqg'; did you mean 'generic_handle_domain_irq'? [-Werror=implicit-function-declaration]
      24 |  generic_handle_domain_irqg(NULL, hwirq);
         |  ^~~~~~~~~~~~~~~~~~~~~~~~~~
         |  generic_handle_domain_irq
   arch/nios2/kernel/irq.c: At top level:
   arch/nios2/kernel/irq.c:61:13: warning: no previous prototype for 'init_IRQ' [-Wmissing-prototypes]
      61 | void __init init_IRQ(void)
         |             ^~~~~~~~
   cc1: some warnings being treated as errors


vim +24 arch/nios2/kernel/irq.c

    18	
    19	asmlinkage void do_IRQ(int hwirq, struct pt_regs *regs)
    20	{
    21		struct pt_regs *oldregs = set_irq_regs(regs);
    22	
    23		irq_enter();
  > 24		generic_handle_domain_irqg(NULL, hwirq);
    25		irq_exit();
    26	
    27		set_irq_regs(oldregs);
    28	}
    29	

---
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: 34941 bytes --]

[-- Attachment #3: Type: text/plain, Size: 176 bytes --]

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: [arm-platforms:irq/domain_cleanup 38/39] arch/nios2/kernel/irq.c:24:2: error: implicit declaration of function 'generic_handle_domain_irqg'; did you mean 'generic_handle_domain_irq'?
Date: Tue, 18 May 2021 08:26:35 +0800	[thread overview]
Message-ID: <202105180833.Kt64DUWj-lkp@intel.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 2504 bytes --]

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms.git irq/domain_cleanup
head:   9f2ec21368f318d9bfcb5cec966c24c00c6681be
commit: 2a22c2b61b583fe4d76d1d1a956f4d4e047f12c4 [38/39] nios2: Bulk conversion to generic_handle_domain_irq()
config: nios2-randconfig-r006-20210517 (attached as .config)
compiler: nios2-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/maz/arm-platforms.git/commit/?id=2a22c2b61b583fe4d76d1d1a956f4d4e047f12c4
        git remote add arm-platforms https://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms.git
        git fetch --no-tags arm-platforms irq/domain_cleanup
        git checkout 2a22c2b61b583fe4d76d1d1a956f4d4e047f12c4
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross W=1 ARCH=nios2 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   arch/nios2/kernel/irq.c:19:17: warning: no previous prototype for 'do_IRQ' [-Wmissing-prototypes]
      19 | asmlinkage void do_IRQ(int hwirq, struct pt_regs *regs)
         |                 ^~~~~~
   arch/nios2/kernel/irq.c: In function 'do_IRQ':
>> arch/nios2/kernel/irq.c:24:2: error: implicit declaration of function 'generic_handle_domain_irqg'; did you mean 'generic_handle_domain_irq'? [-Werror=implicit-function-declaration]
      24 |  generic_handle_domain_irqg(NULL, hwirq);
         |  ^~~~~~~~~~~~~~~~~~~~~~~~~~
         |  generic_handle_domain_irq
   arch/nios2/kernel/irq.c: At top level:
   arch/nios2/kernel/irq.c:61:13: warning: no previous prototype for 'init_IRQ' [-Wmissing-prototypes]
      61 | void __init init_IRQ(void)
         |             ^~~~~~~~
   cc1: some warnings being treated as errors


vim +24 arch/nios2/kernel/irq.c

    18	
    19	asmlinkage void do_IRQ(int hwirq, struct pt_regs *regs)
    20	{
    21		struct pt_regs *oldregs = set_irq_regs(regs);
    22	
    23		irq_enter();
  > 24		generic_handle_domain_irqg(NULL, hwirq);
    25		irq_exit();
    26	
    27		set_irq_regs(oldregs);
    28	}
    29	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 34941 bytes --]

             reply	other threads:[~2021-05-18  0:29 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-18  0:26 kernel test robot [this message]
2021-05-18  0:26 ` [arm-platforms:irq/domain_cleanup 38/39] arch/nios2/kernel/irq.c:24:2: error: implicit declaration of function 'generic_handle_domain_irqg'; did you mean 'generic_handle_domain_irq'? kernel test robot

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=202105180833.Kt64DUWj-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=maz@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.