Re: [PATCH 07/10] powerpc/64e/interrupt: handle bad_page_fault in C

2021-03-16 Thread Nicholas Piggin
Excerpts from Christophe Leroy's message of March 16, 2021 12:07 am: > > > Le 15/03/2021 à 04:17, Nicholas Piggin a écrit : >> With non-volatile registers saved on interrupt, bad_page_fault >> can now be called by do_page_fault. >> >> Signed-off-by: Nicholas Piggin >> --- >> arch/powerpc/kern

Re: [PATCH 07/10] powerpc/64e/interrupt: handle bad_page_fault in C

2021-03-15 Thread Christophe Leroy
Le 15/03/2021 à 04:17, Nicholas Piggin a écrit : With non-volatile registers saved on interrupt, bad_page_fault can now be called by do_page_fault. Signed-off-by: Nicholas Piggin --- arch/powerpc/kernel/exceptions-64e.S | 6 -- arch/powerpc/mm/fault.c | 5 + 2 files

[PATCH 07/10] powerpc/64e/interrupt: handle bad_page_fault in C

2021-03-14 Thread Nicholas Piggin
With non-volatile registers saved on interrupt, bad_page_fault can now be called by do_page_fault. Signed-off-by: Nicholas Piggin --- arch/powerpc/kernel/exceptions-64e.S | 6 -- arch/powerpc/mm/fault.c | 5 + 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/ar