blob: 4363512d2f90e569b07e1dd67824d25e3e464cf4 [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"
Nathan Scottcde410a2005-09-05 11:47:01 +100020#include "spin.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022static char message[256]; /* keep it off the stack */
23static DEFINE_SPINLOCK(xfs_err_lock);
24
25/* Translate from CE_FOO to KERN_FOO, err_level(CE_FOO) == KERN_FOO */
26#define XFS_MAX_ERR_LEVEL 7
27#define XFS_ERR_MASK ((1 << 3) - 1)
Christoph Hellwig1df84c92006-01-11 15:29:52 +110028static const char * const err_level[XFS_MAX_ERR_LEVEL+1] =
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 {KERN_EMERG, KERN_ALERT, KERN_CRIT,
30 KERN_ERR, KERN_WARNING, KERN_NOTICE,
31 KERN_INFO, KERN_DEBUG};
32
33void
Linus Torvalds1da177e2005-04-16 15:20:36 -070034cmn_err(register int level, char *fmt, ...)
35{
36 char *fp = fmt;
37 int len;
38 ulong flags;
39 va_list ap;
40
41 level &= XFS_ERR_MASK;
42 if (level > XFS_MAX_ERR_LEVEL)
43 level = XFS_MAX_ERR_LEVEL;
44 spin_lock_irqsave(&xfs_err_lock,flags);
45 va_start(ap, fmt);
46 if (*fmt == '!') fp++;
47 len = vsprintf(message, fp, ap);
Nathan Scottb6574522006-06-09 15:29:40 +100048 if (level != CE_DEBUG && message[len-1] != '\n')
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 strcat(message, "\n");
50 printk("%s%s", err_level[level], message);
51 va_end(ap);
52 spin_unlock_irqrestore(&xfs_err_lock,flags);
53
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);
67 len = vsprintf(message, fmt, ap);
Nathan Scottb6574522006-06-09 15:29:40 +100068 if (level != CE_DEBUG && message[len-1] != '\n')
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 strcat(message, "\n");
70 spin_unlock_irqrestore(&xfs_err_lock,flags);
71 printk("%s%s", err_level[level], message);
Eric Sesterhenn9ab5aa92006-10-03 23:37:55 +020072 BUG_ON(level == CE_PANIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
Nathan Scott3762ec62006-01-12 10:29:53 +110074
75void
76assfail(char *expr, char *file, int line)
77{
78 printk("Assertion failed: %s, file: %s, line: %d\n", expr, file, line);
79 BUG();
80}
81
82#if ((defined(DEBUG) || defined(INDUCE_IO_ERRROR)) && !defined(NO_WANT_RANDOM))
83unsigned long random(void)
84{
85 static unsigned long RandomValue = 1;
86 /* cycles pseudo-randomly through all values between 1 and 2^31 - 2 */
87 register long rv = RandomValue;
88 register long lo;
89 register long hi;
90
91 hi = rv / 127773;
92 lo = rv % 127773;
93 rv = 16807 * lo - 2836 * hi;
94 if (rv <= 0) rv += 2147483647;
95 return RandomValue = rv;
96}
97#endif /* DEBUG || INDUCE_IO_ERRROR || !NO_WANT_RANDOM */