aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/support/debug.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@sgi.com>2006-01-11 15:29:52 +1100
committerNathan Scott <nathans@sgi.com>2006-01-11 15:29:52 +1100
commit1df84c930a5101223da016f256b46b192dbf2b30 (patch)
tree306dd22b0df37f70770f3f6a1f991abfcb1c239d /fs/xfs/support/debug.c
parent[XFS] Fixed an assertion failure in xfs_reclaim caused by delayed block. (diff)
downloadlinux-dev-1df84c930a5101223da016f256b46b192dbf2b30.tar.xz
linux-dev-1df84c930a5101223da016f256b46b192dbf2b30.zip
[XFS] Mark some lookup tables const. Thanks to Arjan van de Ven for
spotting these. SGI-PV: 946028 SGI-Modid: xfs-linux-melb:xfs-kern:202617a Signed-off-by: Christoph Hellwig <hch@sgi.com> Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/support/debug.c')
-rw-r--r--fs/xfs/support/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/support/debug.c b/fs/xfs/support/debug.c
index bb6dc91ea261..e281c3a71ad0 100644
--- a/fs/xfs/support/debug.c
+++ b/fs/xfs/support/debug.c
@@ -27,7 +27,7 @@ static DEFINE_SPINLOCK(xfs_err_lock);
/* Translate from CE_FOO to KERN_FOO, err_level(CE_FOO) == KERN_FOO */
#define XFS_MAX_ERR_LEVEL 7
#define XFS_ERR_MASK ((1 << 3) - 1)
-static char *err_level[XFS_MAX_ERR_LEVEL+1] =
+static const char * const err_level[XFS_MAX_ERR_LEVEL+1] =
{KERN_EMERG, KERN_ALERT, KERN_CRIT,
KERN_ERR, KERN_WARNING, KERN_NOTICE,
KERN_INFO, KERN_DEBUG};