Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 704bc602 authored by qctecmdr Service's avatar qctecmdr Service Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ARM64: smp: Save CPU registers before IPI_CPU_STOP processing"

parents 117ab600 bfbda096
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -59,6 +59,7 @@
#include <asm/tlbflush.h>
#include <asm/ptrace.h>
#include <asm/virt.h>
#include <asm/system_misc.h>

#define CREATE_TRACE_POINTS
#include <trace/events/ipi.h>
@@ -786,15 +787,20 @@ void arch_irq_work_raise(void)
#endif

static DEFINE_RAW_SPINLOCK(stop_lock);

DEFINE_PER_CPU(struct pt_regs, regs_before_stop);

/*
 * ipi_cpu_stop - handle IPI from smp_send_stop()
 */
static void ipi_cpu_stop(unsigned int cpu)
static void ipi_cpu_stop(unsigned int cpu, struct pt_regs *regs)
{
	if (system_state == SYSTEM_BOOTING ||
	    system_state == SYSTEM_RUNNING) {
		per_cpu(regs_before_stop, cpu) = *regs;
		raw_spin_lock(&stop_lock);
		pr_crit("CPU%u: stopping\n", cpu);
		__show_regs(regs);
		dump_stack();
		raw_spin_unlock(&stop_lock);
	}
@@ -858,7 +864,7 @@ void handle_IPI(int ipinr, struct pt_regs *regs)

	case IPI_CPU_STOP:
		irq_enter();
		ipi_cpu_stop(cpu);
		ipi_cpu_stop(cpu, regs);
		irq_exit();
		break;