diff options
author | Dave Chinner <dchinner@redhat.com> | 2013-08-12 20:49:51 +1000 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2013-08-12 16:58:37 -0500 |
commit | b49a0c1883899bf9bc6cc5b9c4e6ee5d0f552530 (patch) | |
tree | c601838e731215d9499caa5e40ea602214d39789 /fs/xfs/xfs_rtalloc.c | |
parent | 63d20d6e3620898e67f80c813ec199b19b1674a9 (diff) | |
download | linux-b49a0c1883899bf9bc6cc5b9c4e6ee5d0f552530.tar.gz linux-b49a0c1883899bf9bc6cc5b9c4e6ee5d0f552530.tar.bz2 linux-b49a0c1883899bf9bc6cc5b9c4e6ee5d0f552530.zip |
xfs: remove __KERNEL__ from debug code
There is no reason the remaining kernel-only debug code needs to
remain kernel-only. Kill the __KERNEL__ part of the defines, and let
userspace handle the debug code appropriately.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Mark Tinguely <tinguely@sgi.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_rtalloc.c')
-rw-r--r-- | fs/xfs/xfs_rtalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_rtalloc.c b/fs/xfs/xfs_rtalloc.c index 48228067b0d2..6dbcb5e9fb5d 100644 --- a/fs/xfs/xfs_rtalloc.c +++ b/fs/xfs/xfs_rtalloc.c @@ -2147,7 +2147,7 @@ xfs_rtfree_extent( ASSERT(mp->m_rbmip->i_itemp != NULL); ASSERT(xfs_isilocked(mp->m_rbmip, XFS_ILOCK_EXCL)); -#if defined(__KERNEL__) && defined(DEBUG) +#ifdef DEBUG /* * Check to see that this whole range is currently allocated. */ |