linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: irqchip-bot for Marc Zyngier <tip-bot2@linutronix.de>,
	linux-kernel@vger.kernel.org
Cc: kbuild-all@lists.01.org, Marc Zyngier <maz@kernel.org>,
	tglx@linutronix.de
Subject: Re: [irqchip: irq/irqchip-next] genirq: Use irq_resolve_mapping() to implement __handle_domain_irq() and co
Date: Sun, 6 Jun 2021 23:26:03 +0800	[thread overview]
Message-ID: <202106062319.E7ewY4ku-lkp@intel.com> (raw)
In-Reply-To: <162298342683.29796.7142738277768084602.tip-bot2@tip-bot2>

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

Hi irqchip-bot,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on linux/master]
[also build test ERROR on tip/irq/core linus/master v5.13-rc4 next-20210604]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]

url:    https://github.com/0day-ci/linux/commits/irqchip-bot-for-Marc-Zyngier/genirq-Use-irq_resolve_mapping-to-implement-__handle_domain_irq-and-co/20210606-204819
base:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git dd860052c99b1e088352bdd4fb7aef46f8d2ef47
config: openrisc-randconfig-r012-20210606 (attached as .config)
compiler: or1k-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://github.com/0day-ci/linux/commit/e684b127b014b361df0088dca184273cdd73d79e
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review irqchip-bot-for-Marc-Zyngier/genirq-Use-irq_resolve_mapping-to-implement-__handle_domain_irq-and-co/20210606-204819
        git checkout e684b127b014b361df0088dca184273cdd73d79e
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=openrisc 

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

All error/warnings (new ones prefixed by >>):

   kernel/irq/irqdesc.c: In function '__handle_domain_irq':
>> kernel/irq/irqdesc.c:683:10: error: implicit declaration of function 'irq_resolve_mapping'; did you mean 'irq_create_mapping'? [-Werror=implicit-function-declaration]
     683 |   desc = irq_resolve_mapping(domain, hwirq);
         |          ^~~~~~~~~~~~~~~~~~~
         |          irq_create_mapping
>> kernel/irq/irqdesc.c:683:8: warning: assignment to 'struct irq_desc *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
     683 |   desc = irq_resolve_mapping(domain, hwirq);
         |        ^
   kernel/irq/irqdesc.c: In function 'handle_domain_nmi':
   kernel/irq/irqdesc.c:730:7: warning: assignment to 'struct irq_desc *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
     730 |  desc = irq_resolve_mapping(domain, hwirq);
         |       ^
   cc1: some warnings being treated as errors

Kconfig warnings: (for reference only)
   WARNING: unmet direct dependencies detected for LOCKDEP
   Depends on DEBUG_KERNEL && LOCK_DEBUGGING_SUPPORT && (FRAME_POINTER || MIPS || PPC || S390 || MICROBLAZE || ARM || ARC || X86)
   Selected by
   - PROVE_LOCKING && DEBUG_KERNEL && LOCK_DEBUGGING_SUPPORT
   - DEBUG_LOCK_ALLOC && DEBUG_KERNEL && LOCK_DEBUGGING_SUPPORT


vim +683 kernel/irq/irqdesc.c

   661	
   662	#ifdef CONFIG_HANDLE_DOMAIN_IRQ
   663	/**
   664	 * __handle_domain_irq - Invoke the handler for a HW irq belonging to a domain
   665	 * @domain:	The domain where to perform the lookup
   666	 * @hwirq:	The HW irq number to convert to a logical one
   667	 * @lookup:	Whether to perform the domain lookup or not
   668	 * @regs:	Register file coming from the low-level handling code
   669	 *
   670	 * Returns:	0 on success, or -EINVAL if conversion has failed
   671	 */
   672	int __handle_domain_irq(struct irq_domain *domain, unsigned int hwirq,
   673				bool lookup, struct pt_regs *regs)
   674	{
   675		struct pt_regs *old_regs = set_irq_regs(regs);
   676		struct irq_desc *desc;
   677		int ret = 0;
   678	
   679		irq_enter();
   680	
   681		if (likely(IS_ENABLED(CONFIG_IRQ_DOMAIN) && lookup)) {
   682			/* The irqdomain code provides boundary checks */
 > 683			desc = irq_resolve_mapping(domain, hwirq);
   684		} else {
   685			/*
   686			 * Some hardware gives randomly wrong interrupts.  Rather
   687			 * than crashing, do something sensible.
   688			 */
   689			if (unlikely(!hwirq || hwirq >= nr_irqs)) {
   690				ack_bad_irq(hwirq);
   691				desc = NULL;
   692			} else {
   693				desc = irq_to_desc(hwirq);
   694			}
   695		}
   696	
   697		if (likely(desc))
   698			handle_irq_desc(desc);
   699		else
   700			ret = -EINVAL;
   701	
   702		irq_exit();
   703		set_irq_regs(old_regs);
   704		return ret;
   705	}
   706	

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

  parent reply	other threads:[~2021-06-06 15:26 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-06 12:43 [irqchip: irq/irqchip-next] genirq: Use irq_resolve_mapping() to implement __handle_domain_irq() and co irqchip-bot for Marc Zyngier
2021-06-06 14:19 ` kernel test robot
2021-06-06 15:28   ` Marc Zyngier
2021-06-07  6:34     ` [kbuild-all] " Rong Chen
2021-06-06 15:26 ` kernel test robot [this message]
2021-06-11 13:54 irqchip-bot for Marc Zyngier

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=202106062319.E7ewY4ku-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maz@kernel.org \
    --cc=tglx@linutronix.de \
    --cc=tip-bot2@linutronix.de \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).