aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/compat.h
diff options
context:
space:
mode:
authorChris Mason <chris.mason@oracle.com>2009-01-06 09:38:55 -0500
committerChris Mason <chris.mason@oracle.com>2009-01-06 09:38:55 -0500
commit9ca03b997f71787e345951e6267fbd8eba14d49f (patch)
treef18ecb730a66d542ae1c29e2c3438b78ca40859c /fs/btrfs/compat.h
parent860a7a0c321ce0267fdb6ebdcd03aa63c5fcb31d (diff)
Btrfs: drop remaining LINUX_KERNEL_VERSION checks and compat code
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/compat.h')
-rw-r--r--fs/btrfs/compat.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/fs/btrfs/compat.h b/fs/btrfs/compat.h
index 594d60bdd3c4..7c4503ef6efd 100644
--- a/fs/btrfs/compat.h
+++ b/fs/btrfs/compat.h
@@ -4,29 +4,4 @@
4#define btrfs_drop_nlink(inode) drop_nlink(inode) 4#define btrfs_drop_nlink(inode) drop_nlink(inode)
5#define btrfs_inc_nlink(inode) inc_nlink(inode) 5#define btrfs_inc_nlink(inode) inc_nlink(inode)
6 6
7#if LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 27)
8static inline struct dentry *d_obtain_alias(struct inode *inode)
9{
10 struct dentry *d;
11
12 if (!inode)
13 return NULL;
14 if (IS_ERR(inode))
15 return ERR_CAST(inode);
16
17 d = d_alloc_anon(inode);
18 if (!d)
19 iput(inode);
20 return d;
21}
22#endif
23
24#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 28)
25# define __pagevec_lru_add_file __pagevec_lru_add
26# define open_bdev_exclusive open_bdev_excl
27# define close_bdev_exclusive(bdev, mode) close_bdev_excl(bdev)
28typedef unsigned __bitwise__ fmode_t;
29#endif
30
31
32#endif /* _COMPAT_H_ */ 7#endif /* _COMPAT_H_ */