diff options
author | Michael Ellerman <mpe@ellerman.id.au> | 2018-12-30 14:05:13 +1100 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2018-12-30 14:05:13 +1100 |
commit | f460772291f8171988b2b60141a45706123d0c69 (patch) | |
tree | 2f6ec8ee9738ffa2a741b93c02ef759fadd19a26 /arch/sh/kernel/cpu/sh2a/pinmux-sh7269.c | |
parent | powerpc/configs: Add PPC4xx_OCM to ppc40x_defconfig (diff) | |
download | linux-dev-f460772291f8171988b2b60141a45706123d0c69.tar.xz linux-dev-f460772291f8171988b2b60141a45706123d0c69.zip |
KVM: PPC: Book3S HV: radix: Fix uninitialized var build error
Old GCCs (4.6.3 at least), aren't able to follow the logic in
__kvmhv_copy_tofrom_guest_radix() and warn that old_pid is used
uninitialized:
arch/powerpc/kvm/book3s_64_mmu_radix.c:75:3: error: 'old_pid' may be
used uninitialized in this function
The logic is OK, we only use old_pid if quadrant == 1, and in that
case it has definitely be initialised, eg:
if (quadrant == 1) {
old_pid = mfspr(SPRN_PID);
...
if (quadrant == 1 && pid != old_pid)
mtspr(SPRN_PID, old_pid);
Annotate it to fix the error.
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/sh/kernel/cpu/sh2a/pinmux-sh7269.c')
0 files changed, 0 insertions, 0 deletions