All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: [avpatel:riscv_kvm_aia_v1 35/41] drivers/irqchip/irq-riscv-imsic.c:269:14: error: no member named 'base_ipi' in 'struct imsic_priv'
Date: Wed, 11 Aug 2021 03:50:58 +0800	[thread overview]
Message-ID: <202108110350.YbdS6ATS-lkp@intel.com> (raw)

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

tree:   https://github.com/avpatel/linux.git riscv_kvm_aia_v1
head:   330ad93a7e17dcbb2341a9e679ff5fb65aa99611
commit: b6d8139e22dcf8bcfe9a4c89b1dde6c59591eab8 [35/41] irqchip: Add RISC-V incoming MSI controller driver
config: riscv-randconfig-r042-20210810 (attached as .config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project 614c7d03877fd99c2de47429b15be3f00306a3bd)
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/b6d8139e22dcf8bcfe9a4c89b1dde6c59591eab8
        git remote add avpatel https://github.com/avpatel/linux.git
        git fetch --no-tags avpatel riscv_kvm_aia_v1
        git checkout b6d8139e22dcf8bcfe9a4c89b1dde6c59591eab8
        # save the attached .config to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross O=build_dir ARCH=riscv SHELL=/bin/bash drivers/gpio/ 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:269:14: error: no member named 'base_ipi' in 'struct imsic_priv'
                   if ((priv->base_ipi <= i) &&
                        ~~~~  ^
   drivers/irqchip/irq-riscv-imsic.c:270:19: error: no member named 'base_ipi' in 'struct imsic_priv'
                       (i < (priv->base_ipi + priv->nr_ipis)))
                             ~~~~  ^
>> drivers/irqchip/irq-riscv-imsic.c:270:36: error: no member named 'nr_ipis' in 'struct imsic_priv'; did you mean 'nr_ids'?
                       (i < (priv->base_ipi + priv->nr_ipis)))
                                                    ^~~~~~~
                                                    nr_ids
   drivers/irqchip/irq-riscv-imsic.c:69:6: note: 'nr_ids' declared here
           u32 nr_ids;
               ^
   3 errors generated.


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

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

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

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: Anup Patel <anup.patel@wdc.com>
Cc: clang-built-linux@googlegroups.com, kbuild-all@lists.01.org,
	linux-kernel@vger.kernel.org
Subject: [avpatel:riscv_kvm_aia_v1 35/41] drivers/irqchip/irq-riscv-imsic.c:269:14: error: no member named 'base_ipi' in 'struct imsic_priv'
Date: Wed, 11 Aug 2021 03:50:58 +0800	[thread overview]
Message-ID: <202108110350.YbdS6ATS-lkp@intel.com> (raw)

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

tree:   https://github.com/avpatel/linux.git riscv_kvm_aia_v1
head:   330ad93a7e17dcbb2341a9e679ff5fb65aa99611
commit: b6d8139e22dcf8bcfe9a4c89b1dde6c59591eab8 [35/41] irqchip: Add RISC-V incoming MSI controller driver
config: riscv-randconfig-r042-20210810 (attached as .config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project 614c7d03877fd99c2de47429b15be3f00306a3bd)
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/b6d8139e22dcf8bcfe9a4c89b1dde6c59591eab8
        git remote add avpatel https://github.com/avpatel/linux.git
        git fetch --no-tags avpatel riscv_kvm_aia_v1
        git checkout b6d8139e22dcf8bcfe9a4c89b1dde6c59591eab8
        # save the attached .config to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross O=build_dir ARCH=riscv SHELL=/bin/bash drivers/gpio/ 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:269:14: error: no member named 'base_ipi' in 'struct imsic_priv'
                   if ((priv->base_ipi <= i) &&
                        ~~~~  ^
   drivers/irqchip/irq-riscv-imsic.c:270:19: error: no member named 'base_ipi' in 'struct imsic_priv'
                       (i < (priv->base_ipi + priv->nr_ipis)))
                             ~~~~  ^
>> drivers/irqchip/irq-riscv-imsic.c:270:36: error: no member named 'nr_ipis' in 'struct imsic_priv'; did you mean 'nr_ids'?
                       (i < (priv->base_ipi + priv->nr_ipis)))
                                                    ^~~~~~~
                                                    nr_ids
   drivers/irqchip/irq-riscv-imsic.c:69:6: note: 'nr_ids' declared here
           u32 nr_ids;
               ^
   3 errors generated.


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

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

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

             reply	other threads:[~2021-08-10 19:50 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-10 19:50 kernel test robot [this message]
2021-08-10 19:50 ` [avpatel:riscv_kvm_aia_v1 35/41] drivers/irqchip/irq-riscv-imsic.c:269:14: error: no member named 'base_ipi' in 'struct imsic_priv' 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=202108110350.YbdS6ATS-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.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.