diff options
author | Chris Mason <chris.mason@oracle.com> | 2008-09-24 11:48:04 -0400 |
---|---|---|
committer | Chris Mason <chris.mason@oracle.com> | 2008-09-25 15:41:59 -0400 |
commit | 2b1f55b0f0d0d1a66470ef4ea2696cd5dd741a12 (patch) | |
tree | 980019fac9b0891e682bc7d9a8c8a58284b467fc /fs/btrfs/sysfs.c | |
parent | 9b49c9b9f93e148815f2544d0c91f43b6d72eea9 (diff) |
Remove Btrfs compat code for older kernels
Btrfs had compatibility code for kernels back to 2.6.18. These have
been removed, and will be maintained in a separate backport
git tree from now on.
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/sysfs.c')
-rw-r--r-- | fs/btrfs/sysfs.c | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/fs/btrfs/sysfs.c b/fs/btrfs/sysfs.c index 61af5d8446e3..300076e66765 100644 --- a/fs/btrfs/sysfs.c +++ b/fs/btrfs/sysfs.c | |||
@@ -28,7 +28,6 @@ | |||
28 | #include "disk-io.h" | 28 | #include "disk-io.h" |
29 | #include "transaction.h" | 29 | #include "transaction.h" |
30 | 30 | ||
31 | #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,25) | ||
32 | static ssize_t root_blocks_used_show(struct btrfs_root *root, char *buf) | 31 | static ssize_t root_blocks_used_show(struct btrfs_root *root, char *buf) |
33 | { | 32 | { |
34 | return snprintf(buf, PAGE_SIZE, "%llu\n", | 33 | return snprintf(buf, PAGE_SIZE, "%llu\n", |
@@ -267,35 +266,3 @@ void btrfs_exit_sysfs(void) | |||
267 | kset_unregister(btrfs_kset); | 266 | kset_unregister(btrfs_kset); |
268 | } | 267 | } |
269 | 268 | ||
270 | #else | ||
271 | |||
272 | int btrfs_sysfs_add_super(struct btrfs_fs_info *fs) | ||
273 | { | ||
274 | return 0; | ||
275 | } | ||
276 | |||
277 | int btrfs_sysfs_add_root(struct btrfs_root *root) | ||
278 | { | ||
279 | return 0; | ||
280 | } | ||
281 | |||
282 | void btrfs_sysfs_del_root(struct btrfs_root *root) | ||
283 | { | ||
284 | return; | ||
285 | } | ||
286 | |||
287 | void btrfs_sysfs_del_super(struct btrfs_fs_info *fs) | ||
288 | { | ||
289 | return; | ||
290 | } | ||
291 | |||
292 | int btrfs_init_sysfs(void) | ||
293 | { | ||
294 | return 0; | ||
295 | } | ||
296 | |||
297 | void btrfs_exit_sysfs(void) | ||
298 | { | ||
299 | return; | ||
300 | } | ||
301 | #endif | ||