diff options
author | Felix Blyakher <felixb@sgi.com> | 2009-03-12 10:33:37 -0400 |
---|---|---|
committer | Felix Blyakher <felixb@sgi.com> | 2009-03-15 09:10:25 -0400 |
commit | da5309cd28ffda6ed8a4147bd14f1e4fbbd6503d (patch) | |
tree | 8383bc2aa9313e6b41052a844bff09bc543c8a3f /fs/xfs/support | |
parent | f3697bc314e912599f422cc5c6e53c7382c0aeb2 (diff) |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/support/debug.c b/fs/xfs/support/debug.c index 930bb34804b0..3f3610a7ee05 100644 --- a/fs/xfs/support/debug.c +++ b/fs/xfs/support/debug.c | |||
@@ -17,7 +17,6 @@ | |||
17 | */ | 17 | */ |
18 | #include <xfs.h> | 18 | #include <xfs.h> |
19 | #include "debug.h" | 19 | #include "debug.h" |
20 | #include "xfs_error.h" | ||
21 | 20 | ||
22 | /* xfs_mount.h drags a lot of crap in, sorry.. */ | 21 | /* xfs_mount.h drags a lot of crap in, sorry.. */ |
23 | #include "xfs_sb.h" | 22 | #include "xfs_sb.h" |
@@ -25,6 +24,7 @@ | |||
25 | #include "xfs_ag.h" | 24 | #include "xfs_ag.h" |
26 | #include "xfs_dmapi.h" | 25 | #include "xfs_dmapi.h" |
27 | #include "xfs_mount.h" | 26 | #include "xfs_mount.h" |
27 | #include "xfs_error.h" | ||
28 | 28 | ||
29 | static char message[1024]; /* keep it off the stack */ | 29 | static char message[1024]; /* keep it off the stack */ |
30 | static DEFINE_SPINLOCK(xfs_err_lock); | 30 | static DEFINE_SPINLOCK(xfs_err_lock); |