aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/support
diff options
context:
space:
mode:
authorFelix Blyakher <felixb@sgi.com>2009-03-12 09:33:37 -0500
committerFelix Blyakher <felixb@sgi.com>2009-03-15 08:10:25 -0500
commitda5309cd28ffda6ed8a4147bd14f1e4fbbd6503d (patch)
tree8383bc2aa9313e6b41052a844bff09bc543c8a3f /fs/xfs/support
parentf3697bc314e912599f422cc5c6e53c7382c0aeb2 (diff)
downloadkernel_samsung_smdk4412-da5309cd28ffda6ed8a4147bd14f1e4fbbd6503d.zip
kernel_samsung_smdk4412-da5309cd28ffda6ed8a4147bd14f1e4fbbd6503d.tar.gz
kernel_samsung_smdk4412-da5309cd28ffda6ed8a4147bd14f1e4fbbd6503d.tar.bz2
Fix xfs debug build breakage by pushing xfs_error.h after
xfs_mount.h, which it depends on. Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Reviewed-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Alex Elder <aelder@sgi.com> Signed-off-by: Felix Blyakher <felixb@sgi.com>
Diffstat (limited to 'fs/xfs/support')
-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 930bb34..3f3610a 100644
--- a/fs/xfs/support/debug.c
+++ b/fs/xfs/support/debug.c
@@ -17,7 +17,6 @@
*/
#include <xfs.h>
#include "debug.h"
-#include "xfs_error.h"
/* xfs_mount.h drags a lot of crap in, sorry.. */
#include "xfs_sb.h"
@@ -25,6 +24,7 @@
#include "xfs_ag.h"
#include "xfs_dmapi.h"
#include "xfs_mount.h"
+#include "xfs_error.h"
static char message[1024]; /* keep it off the stack */
static DEFINE_SPINLOCK(xfs_err_lock);