void __kprobes oops_end(unsigned long flags, struct pt_regs *regs, int signr)
 {
+       if (regs && kexec_should_crash(current))
+               crash_kexec(regs);
+
        die_owner = -1;
        bust_spinlocks(0);
        die_nest_count--;
        printk(KERN_ALERT "RIP ");
        printk_address(regs->ip, 1);
        printk(" RSP <%016lx>\n", regs->sp);
-       if (kexec_should_crash(current))
-               crash_kexec(regs);
        return 0;
 }
 
        printk(" on CPU%d, ip %08lx, registers:\n",
                smp_processor_id(), regs->ip);
        show_registers(regs);
-       if (kexec_should_crash(current))
-               crash_kexec(regs);
+       oops_end(flags, regs, 0);
        if (do_panic || panic_on_oops)
                panic("Non maskable interrupt");
-       oops_end(flags, regs, 0);
        nmi_exit();
        local_irq_enable();
        do_exit(SIGBUS);