]> git.baikalelectronics.ru Git - kernel.git/commit
powerpc/mm: Fixup wrong LPCR_VRMASD value
authorAneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Thu, 8 Dec 2016 03:42:13 +0000 (09:12 +0530)
committerMichael Ellerman <mpe@ellerman.id.au>
Wed, 25 Jan 2017 02:34:19 +0000 (13:34 +1100)
commita530e34699a46aee4a140e2d29872fa76c6f41e7
treef459ddec58bf47e33c5774d6e9463177d08afde9
parent1c08881bb8118a3bdef1b2c0e19cc1a331dfe41f
powerpc/mm: Fixup wrong LPCR_VRMASD value

In commit e32456f9ae0e5e ("powerpc/mm: Cleanup LPCR defines") we updated
LPCR_VRMASD wrongly as below.

-#define   LPCR_VRMASD  (0x1ful << (63-16))
+#define   LPCR_VRMASD_SH       47
+#define   LPCR_VRMASD          (ASM_CONST(1) << LPCR_VRMASD_SH)

We initialize the VRMA bits in LPCR to 0x00 in kvm. Hence using a
different mask value as above while updating lpcr should not have any
impact.

This patch updates it to the correct value.

Fixes: e32456f9ae0e ("powerpc/mm: Cleanup LPCR defines")
Reported-by: Ram Pai <linuxram@us.ibm.com>
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Signed-off-by: Jia He <hejianet@gmail.com>
Acked-by: Paul Mackerras <paulus@ozlabs.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/include/asm/reg.h