After the call to oops_exit(), it should not panic or execute
the crash kernel if the oops is to be suppressed.
Suggested-by: Maciej W. Rozycki <macro@orcam.me.uk>
Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
Signed-off-by: Huacai Chen <chenhuacai@loongson.cn>
 
        oops_exit();
 
+       if (ret == NOTIFY_STOP)
+               return;
+
        if (regs && kexec_should_crash(current))
                crash_kexec(regs);
 
        if (panic_on_oops)
                panic("Fatal exception");
 
-       if (ret != NOTIFY_STOP)
-               make_task_dead(SIGSEGV);
+       make_task_dead(SIGSEGV);
 }
 
 static inline void setup_vint_size(unsigned int size)