Generally we try not to directly include linux header files
in core xfs code; xfs_linux.h is the spot for that.
Signed-off-by: Eric Sandeen <sandeen@xxxxxxxxxxx>
Index: linux/fs/xfs/linux-2.4/xfs_linux.h
===================================================================
--- linux.orig/fs/xfs/linux-2.4/xfs_linux.h
+++ linux/fs/xfs/linux-2.4/xfs_linux.h
@@ -93,6 +93,7 @@ typedef unsigned int gfp_t;
#include <linux/init.h>
#include <linux/list.h>
#include <linux/proc_fs.h>
+#include <linux/log2.h>
#include <asm/page.h>
#include <asm/div64.h>
Index: linux/fs/xfs/linux-2.6/xfs_linux.h
===================================================================
--- linux.orig/fs/xfs/linux-2.6/xfs_linux.h
+++ linux/fs/xfs/linux-2.6/xfs_linux.h
@@ -75,6 +75,7 @@
#include <linux/cpu.h>
#include <linux/notifier.h>
#include <linux/delay.h>
+#include <linux/log2.h>
#include <asm/page.h>
#include <asm/div64.h>
Index: linux/fs/xfs/xfs_inode.c
===================================================================
--- linux.orig/fs/xfs/xfs_inode.c
+++ linux/fs/xfs/xfs_inode.c
@@ -50,8 +50,6 @@
#include "xfs_acl.h"
#include "xfs_filestream.h"
-#include <linux/log2.h>
-
kmem_zone_t *xfs_ifork_zone;
kmem_zone_t *xfs_inode_zone;
kmem_zone_t *xfs_chashlist_zone;
|