* FAILED: patch "[PATCH] powerpc/603: Always fault when _PAGE_ACCESSED is not set" failed to apply to 5.9-stable tree
@ 2020-11-09 10:09 gregkh
2020-11-09 17:23 ` Christophe Leroy
0 siblings, 1 reply; 4+ messages in thread
From: gregkh @ 2020-11-09 10:09 UTC (permalink / raw)
To: christophe.leroy, mpe; +Cc: stable
The patch below does not apply to the 5.9-stable tree.
If someone wants it applied there, or to any other stable or longterm
tree, then please email the backport, including the original git commit
id to <stable@vger.kernel.org>.
thanks,
greg k-h
------------------ original commit in Linus's tree ------------------
From 11522448e641e8f1690c9db06e01985e8e19b401 Mon Sep 17 00:00:00 2001
From: Christophe Leroy <christophe.leroy@csgroup.eu>
Date: Sat, 10 Oct 2020 15:14:30 +0000
Subject: [PATCH] powerpc/603: Always fault when _PAGE_ACCESSED is not set
The kernel expects pte_young() to work regardless of CONFIG_SWAP.
Make sure a minor fault is taken to set _PAGE_ACCESSED when it
is not already set, regardless of the selection of CONFIG_SWAP.
Fixes: 84de6ab0e904 ("powerpc/603: don't handle PAGE_ACCESSED in TLB miss handlers.")
Cc: stable@vger.kernel.org
Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/a44367744de54e2315b2f1a8cbbd7f88488072e0.1602342806.git.christophe.leroy@csgroup.eu
diff --git a/arch/powerpc/kernel/head_book3s_32.S b/arch/powerpc/kernel/head_book3s_32.S
index 5eb9eedac920..2aa16d5368e1 100644
--- a/arch/powerpc/kernel/head_book3s_32.S
+++ b/arch/powerpc/kernel/head_book3s_32.S
@@ -457,11 +457,7 @@ InstructionTLBMiss:
cmplw 0,r1,r3
#endif
mfspr r2, SPRN_SPRG_PGDIR
-#ifdef CONFIG_SWAP
li r1,_PAGE_PRESENT | _PAGE_ACCESSED | _PAGE_EXEC
-#else
- li r1,_PAGE_PRESENT | _PAGE_EXEC
-#endif
#if defined(CONFIG_MODULES) || defined(CONFIG_DEBUG_PAGEALLOC)
bgt- 112f
lis r2, (swapper_pg_dir - PAGE_OFFSET)@ha /* if kernel address, use */
@@ -523,11 +519,7 @@ DataLoadTLBMiss:
lis r1, TASK_SIZE@h /* check if kernel address */
cmplw 0,r1,r3
mfspr r2, SPRN_SPRG_PGDIR
-#ifdef CONFIG_SWAP
li r1, _PAGE_PRESENT | _PAGE_ACCESSED
-#else
- li r1, _PAGE_PRESENT
-#endif
bgt- 112f
lis r2, (swapper_pg_dir - PAGE_OFFSET)@ha /* if kernel address, use */
addi r2, r2, (swapper_pg_dir - PAGE_OFFSET)@l /* kernel page table */
@@ -603,11 +595,7 @@ DataStoreTLBMiss:
lis r1, TASK_SIZE@h /* check if kernel address */
cmplw 0,r1,r3
mfspr r2, SPRN_SPRG_PGDIR
-#ifdef CONFIG_SWAP
li r1, _PAGE_RW | _PAGE_DIRTY | _PAGE_PRESENT | _PAGE_ACCESSED
-#else
- li r1, _PAGE_RW | _PAGE_DIRTY | _PAGE_PRESENT
-#endif
bgt- 112f
lis r2, (swapper_pg_dir - PAGE_OFFSET)@ha /* if kernel address, use */
addi r2, r2, (swapper_pg_dir - PAGE_OFFSET)@l /* kernel page table */
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: FAILED: patch "[PATCH] powerpc/603: Always fault when _PAGE_ACCESSED is not set" failed to apply to 5.9-stable tree
2020-11-09 10:09 FAILED: patch "[PATCH] powerpc/603: Always fault when _PAGE_ACCESSED is not set" failed to apply to 5.9-stable tree gregkh
@ 2020-11-09 17:23 ` Christophe Leroy
2020-11-09 17:37 ` Greg KH
0 siblings, 1 reply; 4+ messages in thread
From: Christophe Leroy @ 2020-11-09 17:23 UTC (permalink / raw)
To: gregkh, mpe; +Cc: stable
Hi,
It does apply, but you have to increase your merge.renamelimit, that's because the file name changed
recently.
Thanks
Christophe
Le 09/11/2020 à 11:09, gregkh@linuxfoundation.org a écrit :
>
> The patch below does not apply to the 5.9-stable tree.
> If someone wants it applied there, or to any other stable or longterm
> tree, then please email the backport, including the original git commit
> id to <stable@vger.kernel.org>.
>
> thanks,
>
> greg k-h
>
> ------------------ original commit in Linus's tree ------------------
>
> From 11522448e641e8f1690c9db06e01985e8e19b401 Mon Sep 17 00:00:00 2001
> From: Christophe Leroy <christophe.leroy@csgroup.eu>
> Date: Sat, 10 Oct 2020 15:14:30 +0000
> Subject: [PATCH] powerpc/603: Always fault when _PAGE_ACCESSED is not set
>
> The kernel expects pte_young() to work regardless of CONFIG_SWAP.
>
> Make sure a minor fault is taken to set _PAGE_ACCESSED when it
> is not already set, regardless of the selection of CONFIG_SWAP.
>
> Fixes: 84de6ab0e904 ("powerpc/603: don't handle PAGE_ACCESSED in TLB miss handlers.")
> Cc: stable@vger.kernel.org
> Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
> Link: https://lore.kernel.org/r/a44367744de54e2315b2f1a8cbbd7f88488072e0.1602342806.git.christophe.leroy@csgroup.eu
>
> diff --git a/arch/powerpc/kernel/head_book3s_32.S b/arch/powerpc/kernel/head_book3s_32.S
> index 5eb9eedac920..2aa16d5368e1 100644
> --- a/arch/powerpc/kernel/head_book3s_32.S
> +++ b/arch/powerpc/kernel/head_book3s_32.S
> @@ -457,11 +457,7 @@ InstructionTLBMiss:
> cmplw 0,r1,r3
> #endif
> mfspr r2, SPRN_SPRG_PGDIR
> -#ifdef CONFIG_SWAP
> li r1,_PAGE_PRESENT | _PAGE_ACCESSED | _PAGE_EXEC
> -#else
> - li r1,_PAGE_PRESENT | _PAGE_EXEC
> -#endif
> #if defined(CONFIG_MODULES) || defined(CONFIG_DEBUG_PAGEALLOC)
> bgt- 112f
> lis r2, (swapper_pg_dir - PAGE_OFFSET)@ha /* if kernel address, use */
> @@ -523,11 +519,7 @@ DataLoadTLBMiss:
> lis r1, TASK_SIZE@h /* check if kernel address */
> cmplw 0,r1,r3
> mfspr r2, SPRN_SPRG_PGDIR
> -#ifdef CONFIG_SWAP
> li r1, _PAGE_PRESENT | _PAGE_ACCESSED
> -#else
> - li r1, _PAGE_PRESENT
> -#endif
> bgt- 112f
> lis r2, (swapper_pg_dir - PAGE_OFFSET)@ha /* if kernel address, use */
> addi r2, r2, (swapper_pg_dir - PAGE_OFFSET)@l /* kernel page table */
> @@ -603,11 +595,7 @@ DataStoreTLBMiss:
> lis r1, TASK_SIZE@h /* check if kernel address */
> cmplw 0,r1,r3
> mfspr r2, SPRN_SPRG_PGDIR
> -#ifdef CONFIG_SWAP
> li r1, _PAGE_RW | _PAGE_DIRTY | _PAGE_PRESENT | _PAGE_ACCESSED
> -#else
> - li r1, _PAGE_RW | _PAGE_DIRTY | _PAGE_PRESENT
> -#endif
> bgt- 112f
> lis r2, (swapper_pg_dir - PAGE_OFFSET)@ha /* if kernel address, use */
> addi r2, r2, (swapper_pg_dir - PAGE_OFFSET)@l /* kernel page table */
>
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: FAILED: patch "[PATCH] powerpc/603: Always fault when _PAGE_ACCESSED is not set" failed to apply to 5.9-stable tree
2020-11-09 17:23 ` Christophe Leroy
@ 2020-11-09 17:37 ` Greg KH
2020-11-09 17:42 ` Christophe Leroy
0 siblings, 1 reply; 4+ messages in thread
From: Greg KH @ 2020-11-09 17:37 UTC (permalink / raw)
To: Christophe Leroy; +Cc: mpe, stable
On Mon, Nov 09, 2020 at 06:23:42PM +0100, Christophe Leroy wrote:
> Hi,
>
> It does apply, but you have to increase your merge.renamelimit, that's
> because the file name changed recently.
I do not use git to apply patches this way, I use quilt, which does not
handle renames :)
Can you send a backported patch with the correct file rename?
thanks,
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: FAILED: patch "[PATCH] powerpc/603: Always fault when _PAGE_ACCESSED is not set" failed to apply to 5.9-stable tree
2020-11-09 17:37 ` Greg KH
@ 2020-11-09 17:42 ` Christophe Leroy
0 siblings, 0 replies; 4+ messages in thread
From: Christophe Leroy @ 2020-11-09 17:42 UTC (permalink / raw)
To: Greg KH; +Cc: mpe, stable
Le 09/11/2020 à 18:37, Greg KH a écrit :
> On Mon, Nov 09, 2020 at 06:23:42PM +0100, Christophe Leroy wrote:
>> Hi,
>>
>> It does apply, but you have to increase your merge.renamelimit, that's
>> because the file name changed recently.
>
> I do not use git to apply patches this way, I use quilt, which does not
> handle renames :)
>
> Can you send a backported patch with the correct file rename?
>
Ok
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-11-09 17:42 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-09 10:09 FAILED: patch "[PATCH] powerpc/603: Always fault when _PAGE_ACCESSED is not set" failed to apply to 5.9-stable tree gregkh
2020-11-09 17:23 ` Christophe Leroy
2020-11-09 17:37 ` Greg KH
2020-11-09 17:42 ` Christophe Leroy
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.