[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH for-next v3 10/22] x86/traps: delcare percpu softirq_trap
It needs to be non-static when we split PV specific code out. No functional change. Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> --- xen/arch/x86/traps.c | 2 +- xen/include/asm-x86/traps.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/xen/arch/x86/traps.c b/xen/arch/x86/traps.c index e6028a4403..a26b002173 100644 --- a/xen/arch/x86/traps.c +++ b/xen/arch/x86/traps.c @@ -1478,7 +1478,7 @@ void do_general_protection(struct cpu_user_regs *regs) panic("GENERAL PROTECTION FAULT\n[error_code=%04x]", regs->error_code); } -static DEFINE_PER_CPU(struct softirq_trap, softirq_trap); +DEFINE_PER_CPU(struct softirq_trap, softirq_trap); static void nmi_mce_softirq(void) { diff --git a/xen/include/asm-x86/traps.h b/xen/include/asm-x86/traps.h index f1d2513e6b..4e8760482f 100644 --- a/xen/include/asm-x86/traps.h +++ b/xen/include/asm-x86/traps.h @@ -24,6 +24,7 @@ struct softirq_trap { struct vcpu *vcpu; /* vcpu to inject trap */ int processor; /* physical cpu to inject trap */ }; +DECLARE_PER_CPU(struct softirq_trap, softirq_trap); struct cpu_user_regs; -- 2.11.0 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |