blob: c27abef7b84f9498821dfb9704e21b15bb86e781 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Vlad Apostolov93c189c2006-11-11 18:03:49 +110018#include <xfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "debug.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Lachlan McIlroydc74eaa2007-02-10 18:34:38 +110021static char message[1024]; /* keep it off the stack */
Linus Torvalds1da177e2005-04-16 15:20:36 -070022static DEFINE_SPINLOCK(xfs_err_lock);
23
24/* Translate from CE_FOO to KERN_FOO, err_level(CE_FOO) == KERN_FOO */
25#define XFS_MAX_ERR_LEVEL 7
26#define XFS_ERR_MASK ((1 << 3) - 1)
Christoph Hellwig1df84c92006-01-11 15:29:52 +110027static const char * const err_level[XFS_MAX_ERR_LEVEL+1] =
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 {KERN_EMERG, KERN_ALERT, KERN_CRIT,
29 KERN_ERR, KERN_WARNING, KERN_NOTICE,
30 KERN_INFO, KERN_DEBUG};
31
32void
Linus Torvalds1da177e2005-04-16 15:20:36 -070033cmn_err(register int level, char *fmt, ...)
34{
35 char *fp = fmt;
36 int len;
37 ulong flags;
38 va_list ap;
39
40 level &= XFS_ERR_MASK;
41 if (level > XFS_MAX_ERR_LEVEL)
42 level = XFS_MAX_ERR_LEVEL;
43 spin_lock_irqsave(&xfs_err_lock,flags);
44 va_start(ap, fmt);
45 if (*fmt == '!') fp++;
Lachlan McIlroydc74eaa2007-02-10 18:34:38 +110046 len = vsnprintf(message, sizeof(message), fp, ap);
47 if (len >= sizeof(message))
48 len = sizeof(message) - 1;
49 if (message[len-1] == '\n')
50 message[len-1] = 0;
51 printk("%s%s\n", err_level[level], message);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 va_end(ap);
53 spin_unlock_irqrestore(&xfs_err_lock,flags);
Eric Sesterhenn9ab5aa92006-10-03 23:37:55 +020054 BUG_ON(level == CE_PANIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055}
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057void
58icmn_err(register int level, char *fmt, va_list ap)
59{
60 ulong flags;
61 int len;
62
63 level &= XFS_ERR_MASK;
64 if(level > XFS_MAX_ERR_LEVEL)
65 level = XFS_MAX_ERR_LEVEL;
66 spin_lock_irqsave(&xfs_err_lock,flags);
Lachlan McIlroydc74eaa2007-02-10 18:34:38 +110067 len = vsnprintf(message, sizeof(message), fmt, ap);
68 if (len >= sizeof(message))
69 len = sizeof(message) - 1;
70 if (message[len-1] == '\n')
71 message[len-1] = 0;
72 printk("%s%s\n", err_level[level], message);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 spin_unlock_irqrestore(&xfs_err_lock,flags);
Eric Sesterhenn9ab5aa92006-10-03 23:37:55 +020074 BUG_ON(level == CE_PANIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
Nathan Scott3762ec62006-01-12 10:29:53 +110076
77void
78assfail(char *expr, char *file, int line)
79{
80 printk("Assertion failed: %s, file: %s, line: %d\n", expr, file, line);
81 BUG();
82}
Eric Sandeend4f3cc02007-10-12 11:13:08 +100083
84void
85xfs_hex_dump(void *p, int length)
86{
87 print_hex_dump(KERN_ALERT, "", DUMP_PREFIX_OFFSET, 16, 1, p, length, 1);
88}