]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Btrfs: Fix some build problems on 2.6.18 based enterprise kernels
authorChris Mason <chris.mason@oracle.com>
Thu, 24 Jul 2008 13:51:08 +0000 (09:51 -0400)
committerChris Mason <chris.mason@oracle.com>
Thu, 25 Sep 2008 15:04:05 +0000 (11:04 -0400)
Signed-off-by: Chris Mason <chris.mason@oracle.com>
fs/btrfs/ctree.h
fs/btrfs/locking.c

index 90504ba7f83856e484b5f7e10f670c18578cecd8..8ecac2e77a438e464bc0add50f83b0c0d88d1966 100644 (file)
@@ -1595,6 +1595,14 @@ int btrfs_csum_truncate(struct btrfs_trans_handle *trans,
                        struct btrfs_root *root, struct btrfs_path *path,
                        u64 isize);
 /* inode.c */
+
+/* RHEL and EL kernels have a patch that renames PG_checked to FsMisc */
+#ifdef ClearPageFsMisc
+#define ClearPageChecked ClearPageFsMisc
+#define SetPageChecked SetPageFsMisc
+#define PageChecked PageFsMisc
+#endif
+
 int btrfs_writepages(struct address_space *mapping,
                     struct writeback_control *wbc);
 int btrfs_create_subvol_root(struct btrfs_root *new_root,
index 27a02376ab14449cc777a471778629909c3d4f83..d617c29787fac22cf5d79dcf7f1aa4eed19085b4 100644 (file)
@@ -20,7 +20,7 @@
 #include <linux/pagemap.h>
 #include <linux/spinlock.h>
 #include <linux/page-flags.h>
-#include <linux/bug.h>
+#include <asm/bug.h>
 #include "ctree.h"
 #include "extent_io.h"
 #include "locking.h"