]> git.proxmox.com Git - mirror_spl.git/blobdiff - module/spl/spl-err.c
Fix more cstyle warnings
[mirror_spl.git] / module / spl / spl-err.c
index 33a8df898ea797d365e0f5521312310c90a5d448..6b71296e8a676d62d5dc663cbe77ec045c5757b6 100644 (file)
  * analysis and other such goodies.
  * But we would still default to the current default of not to do that.
  */
+/* BEGIN CSTYLED */
 unsigned int spl_panic_halt;
 module_param(spl_panic_halt, uint, 0644);
 MODULE_PARM_DESC(spl_panic_halt, "Cause kernel panic on assertion failures");
+/* END CSTYLED */
 
 /*
  * Limit the number of stack traces dumped to not more than 5 every
@@ -55,7 +57,8 @@ spl_dumpstack(void)
 EXPORT_SYMBOL(spl_dumpstack);
 
 int
-spl_panic(const char *file, const char *func, int line, const char *fmt, ...) {
+spl_panic(const char *file, const char *func, int line, const char *fmt, ...)
+{
        const char *newfile;
        char msg[MAXMSGLEN];
        va_list ap;