2 * Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
3 * Copyright (C) 2007 The Regents of the University of California.
4 * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
5 * Written by Brian Behlendorf <behlendorf1@llnl.gov>.
8 * This file is part of the SPL, Solaris Porting Layer.
10 * The SPL is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
15 * The SPL is distributed in the hope that it will be useful, but WITHOUT
16 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 * You should have received a copy of the GNU General Public License along
21 * with the SPL. If not, see <http://www.gnu.org/licenses/>.
23 * Solaris Porting Layer (SPL) Error Implementation.
26 #include <sys/sysmacros.h>
27 #include <sys/cmn_err.h>
30 * It is often useful to actually have the panic crash the node so you
31 * can then get notified of the event, get the crashdump for later
32 * analysis and other such goodies.
33 * But we would still default to the current default of not to do that.
35 static unsigned int spl_panic_halt
;
37 module_param(spl_panic_halt
, uint
, 0644);
38 MODULE_PARM_DESC(spl_panic_halt
, "Cause kernel panic on assertion failures");
43 printk("Showing stack for process %d\n", current
->pid
);
46 EXPORT_SYMBOL(spl_dumpstack
);
49 spl_panic(const char *file
, const char *func
, int line
, const char *fmt
, ...)
55 newfile
= strrchr(file
, '/');
57 newfile
= newfile
+ 1;
62 (void) vsnprintf(msg
, sizeof (msg
), fmt
, ap
);
65 printk(KERN_EMERG
"%s", msg
);
66 printk(KERN_EMERG
"PANIC at %s:%d:%s()\n", newfile
, line
, func
);
72 /* Halt the thread to facilitate further debugging */
73 set_current_state(TASK_UNINTERRUPTIBLE
);
79 EXPORT_SYMBOL(spl_panic
);
82 vcmn_err(int ce
, const char *fmt
, va_list ap
)
86 vsnprintf(msg
, MAXMSGLEN
, fmt
, ap
);
95 printk(KERN_NOTICE
"NOTICE: %s\n", msg
);
98 printk(KERN_WARNING
"WARNING: %s\n", msg
);
101 printk(KERN_EMERG
"PANIC: %s\n", msg
);
107 /* Halt the thread to facilitate further debugging */
108 set_current_state(TASK_UNINTERRUPTIBLE
);
113 EXPORT_SYMBOL(vcmn_err
);
116 cmn_err(int ce
, const char *fmt
, ...)
121 vcmn_err(ce
, fmt
, ap
);
124 EXPORT_SYMBOL(cmn_err
);