linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Anup Patel <anup.patel@wdc.com>
Cc: kbuild-all@lists.01.org, linux-kernel@vger.kernel.org
Subject: [avpatel:riscv_kvm_aia_v1 35/45] drivers/irqchip/irq-riscv-imsic.c:268:26: error: 'struct imsic_priv' has no member named 'base_ipi'
Date: Thu, 9 Sep 2021 09:35:49 +0800	[thread overview]
Message-ID: <202109090942.0wNVMWvZ-lkp@intel.com> (raw)

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

Hi Anup,

FYI, the error/warning still remains.

tree:   https://github.com/avpatel/linux.git riscv_kvm_aia_v1
head:   8f1b73a6107a9f039cf62b3aef9150d21ac7b41d
commit: a086e3962fd40d4296e9dc4ea490510d93786712 [35/45] irqchip: Add RISC-V incoming MSI controller driver
config: riscv-randconfig-c004-20210908 (attached as .config)
compiler: riscv32-linux-gcc (GCC) 11.2.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/avpatel/linux/commit/a086e3962fd40d4296e9dc4ea490510d93786712
        git remote add avpatel https://github.com/avpatel/linux.git
        git fetch --no-tags avpatel riscv_kvm_aia_v1
        git checkout a086e3962fd40d4296e9dc4ea490510d93786712
        # save the attached .config to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=riscv SHELL=/bin/bash drivers/irqchip/

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 >>):

   drivers/irqchip/irq-riscv-imsic.c: In function 'imsic_ids_local_sync':
>> drivers/irqchip/irq-riscv-imsic.c:268:26: error: 'struct imsic_priv' has no member named 'base_ipi'
     268 |                 if ((priv->base_ipi <= i) &&
         |                          ^~
   drivers/irqchip/irq-riscv-imsic.c:269:31: error: 'struct imsic_priv' has no member named 'base_ipi'
     269 |                     (i < (priv->base_ipi + priv->nr_ipis)))
         |                               ^~
>> drivers/irqchip/irq-riscv-imsic.c:269:50: error: 'struct imsic_priv' has no member named 'nr_ipis'; did you mean 'nr_ids'?
     269 |                     (i < (priv->base_ipi + priv->nr_ipis)))
         |                                                  ^~~~~~~
         |                                                  nr_ids
   drivers/irqchip/irq-riscv-imsic.c: In function 'imsic_init':
   drivers/irqchip/irq-riscv-imsic.c:906:45: error: 'struct imsic_priv' has no member named 'base_ipi'
     906 |                                        &priv->base_ipi))
         |                                             ^~
   drivers/irqchip/irq-riscv-imsic.c:907:21: error: 'struct imsic_priv' has no member named 'base_ipi'
     907 |                 priv->base_ipi = 0;
         |                     ^~
   drivers/irqchip/irq-riscv-imsic.c:909:47: error: 'struct imsic_priv' has no member named 'nr_ipis'; did you mean 'nr_ids'?
     909 |                                        &priv->nr_ipis))
         |                                               ^~~~~~~
         |                                               nr_ids
   drivers/irqchip/irq-riscv-imsic.c:910:23: error: 'struct imsic_priv' has no member named 'nr_ipis'; did you mean 'nr_ids'?
     910 |                 priv->nr_ipis = 0;
         |                       ^~~~~~~
         |                       nr_ids


vim +268 drivers/irqchip/irq-riscv-imsic.c

   261	
   262	static void imsic_ids_local_sync(struct imsic_priv *priv)
   263	{
   264		int i;
   265	
   266		raw_spin_lock(&priv->ids_lock);
   267		for (i = 1; i <= priv->nr_ids; i++) {
 > 268			if ((priv->base_ipi <= i) &&
 > 269			    (i < (priv->base_ipi + priv->nr_ipis)))
   270				continue;
   271			if (test_bit(i, priv->ids_enabled_bimap))
   272				csr_write(CSR_SETEIENUM, i);
   273			else
   274				csr_write(CSR_CLREIENUM, i);
   275		}
   276		raw_spin_unlock(&priv->ids_lock);
   277	}
   278	

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

             reply	other threads:[~2021-09-09  1:36 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-09  1:35 kernel test robot [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-08-30 13:50 [avpatel:riscv_kvm_aia_v1 35/45] drivers/irqchip/irq-riscv-imsic.c:268:26: error: 'struct imsic_priv' has no member named 'base_ipi' 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=202109090942.0wNVMWvZ-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=anup.patel@wdc.com \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-kernel@vger.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 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).