Re: [PATCH] parisc: replace oops_in_progress manipulation with bust_spinlocks()

From: Helge Deller
Date: Tue Jan 08 2019 - 02:44:23 EST


On 07.01.19 10:56, Sergey Senozhatsky wrote:
> Use bust_spinlocks() function to set oops_in_progress.
>
> Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky@xxxxxxxxx>

I've added this patch to the parisc for-next tree.

Thanks,
Helge


> ---
> arch/parisc/kernel/traps.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/arch/parisc/kernel/traps.c b/arch/parisc/kernel/traps.c
> index 472a818e8c17..7e1ccafadf57 100644
> --- a/arch/parisc/kernel/traps.c
> +++ b/arch/parisc/kernel/traps.c
> @@ -218,7 +218,7 @@ void die_if_kernel(char *str, struct pt_regs *regs, long err)
> return;
> }
>
> - oops_in_progress = 1;
> + bust_spinlocks(1);
>
> oops_enter();
>
> @@ -396,7 +396,7 @@ void parisc_terminate(char *msg, struct pt_regs *regs, int code, unsigned long o
> {
> static DEFINE_SPINLOCK(terminate_lock);
>
> - oops_in_progress = 1;
> + bust_spinlocks(1);
>
> set_eiem(0);
> local_irq_disable();
>