From: kernel test robot <lkp@intel.com>
To: Nicholas Piggin <npiggin@gmail.com>
Cc: kbuild-all@lists.01.org, linux-kernel@vger.kernel.org,
"Michael Ellerman" <mpe@ellerman.id.au>,
"Cédric Le Goater" <clg@kaod.org>,
"Alexey Kardashevskiy" <aik@ozlabs.ru>
Subject: arch/powerpc/kvm/book3s_xive.c:151:41: sparse: sparse: incorrect type in assignment (different base types)
Date: Sun, 20 Mar 2022 01:11:24 +0800 [thread overview]
Message-ID: <202203200134.Vp9bsSPI-lkp@intel.com> (raw)
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 34e047aa16c0123bbae8e2f6df33e5ecc1f56601
commit: 023c3c96ca4d196c09d554d5a98900406e4d7ecb KVM: PPC: Book3S HV P9: implement kvmppc_xive_pull_vcpu in C
date: 9 months ago
config: powerpc64-randconfig-s031-20220319 (https://download.01.org/0day-ci/archive/20220320/202203200134.Vp9bsSPI-lkp@intel.com/config)
compiler: powerpc64-linux-gcc (GCC) 11.2.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# apt-get install sparse
# sparse version: v0.6.4-dirty
# https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=023c3c96ca4d196c09d554d5a98900406e4d7ecb
git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
git fetch --no-tags linus master
git checkout 023c3c96ca4d196c09d554d5a98900406e4d7ecb
# save the config file to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__' O=build_dir ARCH=powerpc SHELL=/bin/bash arch/powerpc/kvm/
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
sparse warnings: (new ones prefixed by >>)
arch/powerpc/kvm/book3s_xive.c: note: in included file:
arch/powerpc/kvm/book3s_xive_template.c:26:15: sparse: sparse: cast to restricted __be16
arch/powerpc/kvm/book3s_xive_template.c:339:39: sparse: sparse: incorrect type in initializer (different base types) @@ expected restricted __be64 [usertype] qw1 @@ got unsigned long @@
arch/powerpc/kvm/book3s_xive_template.c:339:39: sparse: expected restricted __be64 [usertype] qw1
arch/powerpc/kvm/book3s_xive_template.c:339:39: sparse: got unsigned long
arch/powerpc/kvm/book3s_xive.c:79:49: sparse: sparse: incorrect type in argument 1 (different base types) @@ expected unsigned long v @@ got restricted __be64 [usertype] w01 @@
arch/powerpc/kvm/book3s_xive.c:79:49: sparse: expected unsigned long v
arch/powerpc/kvm/book3s_xive.c:79:49: sparse: got restricted __be64 [usertype] w01
arch/powerpc/kvm/book3s_xive.c:80:32: sparse: sparse: incorrect type in argument 1 (different base types) @@ expected unsigned int v @@ got restricted __be32 [usertype] xive_cam_word @@
arch/powerpc/kvm/book3s_xive.c:80:32: sparse: expected unsigned int v
arch/powerpc/kvm/book3s_xive.c:80:32: sparse: got restricted __be32 [usertype] xive_cam_word
>> arch/powerpc/kvm/book3s_xive.c:151:41: sparse: sparse: incorrect type in assignment (different base types) @@ expected restricted __be64 [usertype] w01 @@ got unsigned long @@
arch/powerpc/kvm/book3s_xive.c:151:41: sparse: expected restricted __be64 [usertype] w01
arch/powerpc/kvm/book3s_xive.c:151:41: sparse: got unsigned long
vim +151 arch/powerpc/kvm/book3s_xive.c
129
130 /*
131 * Pull a vcpu's context from the XIVE on guest exit.
132 * This assumes we are in virtual mode (MMU on)
133 */
134 void kvmppc_xive_pull_vcpu(struct kvm_vcpu *vcpu)
135 {
136 void __iomem *tima = local_paca->kvm_hstate.xive_tima_virt;
137
138 if (!vcpu->arch.xive_pushed)
139 return;
140
141 /*
142 * Should not have been pushed if there is no tima
143 */
144 if (WARN_ON(!tima))
145 return;
146
147 eieio();
148 /* First load to pull the context, we ignore the value */
149 __raw_readl(tima + TM_SPC_PULL_OS_CTX);
150 /* Second load to recover the context state (Words 0 and 1) */
> 151 vcpu->arch.xive_saved_state.w01 = __raw_readq(tima + TM_QW1_OS);
152
153 /* Fixup some of the state for the next load */
154 vcpu->arch.xive_saved_state.lsmfb = 0;
155 vcpu->arch.xive_saved_state.ack = 0xff;
156 vcpu->arch.xive_pushed = 0;
157 eieio();
158 }
159 EXPORT_SYMBOL_GPL(kvmppc_xive_pull_vcpu);
160
--
0-DAY CI Kernel Test Service
https://01.org/lkp
next reply other threads:[~2022-03-19 17:12 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-19 17:11 kernel test robot [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-03-19 19:13 arch/powerpc/kvm/book3s_xive.c:151:41: sparse: sparse: incorrect type in assignment (different base types) kernel test robot
2022-06-14 3:50 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=202203200134.Vp9bsSPI-lkp@intel.com \
--to=lkp@intel.com \
--cc=aik@ozlabs.ru \
--cc=clg@kaod.org \
--cc=kbuild-all@lists.01.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mpe@ellerman.id.au \
--cc=npiggin@gmail.com \
/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