Export panic_cpu and nmi_panic_self_stop symbols for modules which use nmi_panic() macro.
Signed-off-by: Hidehiro Kawai <[email protected]> Cc: Andrew Morton <[email protected]> Cc: Borislav Petkov <[email protected]> Cc: Thomas Gleixner <[email protected]> Cc: Michal Hocko <[email protected]> Cc: HATAYAMA Daisuke <[email protected]> Cc: Vitaly Kuznetsov <[email protected]> Cc: Tejun Heo <[email protected]> --- kernel/panic.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel/panic.c b/kernel/panic.c index d96469d..f4e8035 100644 --- a/kernel/panic.c +++ b/kernel/panic.c @@ -69,8 +69,10 @@ void __weak nmi_panic_self_stop(struct pt_regs *regs) { panic_smp_self_stop(); } +EXPORT_SYMBOL(nmi_panic_self_stop); atomic_t panic_cpu = ATOMIC_INIT(PANIC_CPU_INVALID); +EXPORT_SYMBOL(panic_cpu); /** * panic - halt the system ------------------------------------------------------------------------------ Site24x7 APM Insight: Get Deep Visibility into Application Performance APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month Monitor end-to-end web transactions and take corrective actions now Troubleshoot faster and improve end-user experience. Signup Now! http://pubads.g.doubleclick.net/gampad/clk?id=272487151&iu=/4140 _______________________________________________ Openipmi-developer mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openipmi-developer
