From: Felix Blyakher Date: Thu, 12 Mar 2009 14:33:37 +0000 (-0500) Subject: Fix xfs debug build breakage by pushing xfs_error.h after X-Git-Tag: v2.6.30-rc1~232^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=da5309cd28ffda6ed8a4147bd14f1e4fbbd6503d;p=thirdparty%2Fkernel%2Flinux.git Fix xfs debug build breakage by pushing xfs_error.h after xfs_mount.h, which it depends on. Reported-by: Stephen Rothwell Reviewed-by: Christoph Hellwig Reviewed-by: Alex Elder Signed-off-by: Felix Blyakher --- diff --git a/fs/xfs/support/debug.c b/fs/xfs/support/debug.c index 930bb34804b06..3f3610a7ee059 100644 --- a/fs/xfs/support/debug.c +++ b/fs/xfs/support/debug.c @@ -17,7 +17,6 @@ */ #include #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);