2016-12-08 03:29:39

by Jia He

[permalink] [raw]
Subject: [PATCH] powerpc: Fix LPCR_VRMASD definition

Fixes: a4b349540a ("powerpc/mm: Cleanup LPCR defines")
Signed-off-by: Jia He <[email protected]>
---
arch/powerpc/include/asm/reg.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/powerpc/include/asm/reg.h b/arch/powerpc/include/asm/reg.h
index 9e1499f..93ec25e 100644
--- a/arch/powerpc/include/asm/reg.h
+++ b/arch/powerpc/include/asm/reg.h
@@ -337,7 +337,7 @@
#define LPCR_DPFD_SH 52
#define LPCR_DPFD (ASM_CONST(7) << LPCR_DPFD_SH)
#define LPCR_VRMASD_SH 47
-#define LPCR_VRMASD (ASM_CONST(1) << LPCR_VRMASD_SH)
+#define LPCR_VRMASD (ASM_CONST(0x1f) << LPCR_VRMASD_SH)
#define LPCR_VRMA_L ASM_CONST(0x0008000000000000)
#define LPCR_VRMA_LP0 ASM_CONST(0x0001000000000000)
#define LPCR_VRMA_LP1 ASM_CONST(0x0000800000000000)
--
2.5.5


2016-12-08 03:51:55

by Aneesh Kumar K.V

[permalink] [raw]
Subject: Re: [PATCH] powerpc: Fix LPCR_VRMASD definition

Jia He <[email protected]> writes:

> Fixes: a4b349540a ("powerpc/mm: Cleanup LPCR defines")
> Signed-off-by: Jia He <[email protected]>

I sent another one https://lkml.kernel.org/r/[email protected]
to fix the same issue. I didn't notice this on the list.


> ---
> arch/powerpc/include/asm/reg.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/powerpc/include/asm/reg.h b/arch/powerpc/include/asm/reg.h
> index 9e1499f..93ec25e 100644
> --- a/arch/powerpc/include/asm/reg.h
> +++ b/arch/powerpc/include/asm/reg.h
> @@ -337,7 +337,7 @@
> #define LPCR_DPFD_SH 52
> #define LPCR_DPFD (ASM_CONST(7) << LPCR_DPFD_SH)
> #define LPCR_VRMASD_SH 47
> -#define LPCR_VRMASD (ASM_CONST(1) << LPCR_VRMASD_SH)
> +#define LPCR_VRMASD (ASM_CONST(0x1f) << LPCR_VRMASD_SH)
> #define LPCR_VRMA_L ASM_CONST(0x0008000000000000)
> #define LPCR_VRMA_LP0 ASM_CONST(0x0001000000000000)
> #define LPCR_VRMA_LP1 ASM_CONST(0x0000800000000000)
> --
> 2.5.5

2016-12-08 21:21:33

by Paul Mackerras

[permalink] [raw]
Subject: Re: [PATCH] powerpc: Fix LPCR_VRMASD definition

On Thu, Dec 08, 2016 at 11:29:30AM +0800, Jia He wrote:
> Fixes: a4b349540a ("powerpc/mm: Cleanup LPCR defines")
> Signed-off-by: Jia He <[email protected]>

Acked-by: Paul Mackerras <[email protected]>