xfs
[Top] [All Lists]

[PATCH 5/7] - move linux/log2.h header to xfs_linux.h

To: xfs-oss <xfs@xxxxxxxxxxx>
Subject: [PATCH 5/7] - move linux/log2.h header to xfs_linux.h
From: Eric Sandeen <sandeen@xxxxxxxxxxx>
Date: Thu, 19 Jul 2007 23:12:24 -0500
Sender: xfs-bounce@xxxxxxxxxxx
User-agent: Thunderbird 2.0.0.4 (Macintosh/20070604)
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;



<Prev in Thread] Current Thread [Next in Thread>
  • [PATCH 5/7] - move linux/log2.h header to xfs_linux.h, Eric Sandeen <=