diff options
author | Chris Mason <chris.mason@oracle.com> | 2007-10-15 16:14:19 -0400 |
---|---|---|
committer | Chris Mason <chris.mason@oracle.com> | 2008-09-25 11:03:56 -0400 |
commit | 5f39d397dfbe140a14edecd4e73c34ce23c4f9ee (patch) | |
tree | 280561e4b68d573590557dd27df656869eed8023 /fs/btrfs/sysfs.c | |
parent | 50b78c24d594e6985f36a9a8d8e2fb74e1664e90 (diff) |
Btrfs: Create extent_buffer interface for large blocksizes
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/sysfs.c')
-rw-r--r-- | fs/btrfs/sysfs.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/btrfs/sysfs.c b/fs/btrfs/sysfs.c index 2058783373eb..9654e90eec89 100644 --- a/fs/btrfs/sysfs.c +++ b/fs/btrfs/sysfs.c | |||
@@ -31,31 +31,31 @@ | |||
31 | 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) |
32 | { | 32 | { |
33 | return snprintf(buf, PAGE_SIZE, "%llu\n", | 33 | return snprintf(buf, PAGE_SIZE, "%llu\n", |
34 | (unsigned long long)btrfs_root_blocks_used(&root->root_item)); | 34 | (unsigned long long)btrfs_root_used(&root->root_item)); |
35 | } | 35 | } |
36 | 36 | ||
37 | static ssize_t root_block_limit_show(struct btrfs_root *root, char *buf) | 37 | static ssize_t root_block_limit_show(struct btrfs_root *root, char *buf) |
38 | { | 38 | { |
39 | return snprintf(buf, PAGE_SIZE, "%llu\n", | 39 | return snprintf(buf, PAGE_SIZE, "%llu\n", |
40 | (unsigned long long)btrfs_root_block_limit(&root->root_item)); | 40 | (unsigned long long)btrfs_root_limit(&root->root_item)); |
41 | } | 41 | } |
42 | 42 | ||
43 | static ssize_t super_blocks_used_show(struct btrfs_fs_info *fs, char *buf) | 43 | static ssize_t super_blocks_used_show(struct btrfs_fs_info *fs, char *buf) |
44 | { | 44 | { |
45 | return snprintf(buf, PAGE_SIZE, "%llu\n", | 45 | return snprintf(buf, PAGE_SIZE, "%llu\n", |
46 | (unsigned long long)btrfs_super_blocks_used(fs->disk_super)); | 46 | (unsigned long long)btrfs_super_blocks_used(&fs->super_copy)); |
47 | } | 47 | } |
48 | 48 | ||
49 | static ssize_t super_total_blocks_show(struct btrfs_fs_info *fs, char *buf) | 49 | static ssize_t super_total_blocks_show(struct btrfs_fs_info *fs, char *buf) |
50 | { | 50 | { |
51 | return snprintf(buf, PAGE_SIZE, "%llu\n", | 51 | return snprintf(buf, PAGE_SIZE, "%llu\n", |
52 | (unsigned long long)btrfs_super_total_blocks(fs->disk_super)); | 52 | (unsigned long long)btrfs_super_total_blocks(&fs->super_copy)); |
53 | } | 53 | } |
54 | 54 | ||
55 | static ssize_t super_blocksize_show(struct btrfs_fs_info *fs, char *buf) | 55 | static ssize_t super_blocksize_show(struct btrfs_fs_info *fs, char *buf) |
56 | { | 56 | { |
57 | return snprintf(buf, PAGE_SIZE, "%llu\n", | 57 | return snprintf(buf, PAGE_SIZE, "%llu\n", |
58 | (unsigned long long)btrfs_super_blocksize(fs->disk_super)); | 58 | (unsigned long long)btrfs_super_sectorsize(&fs->super_copy)); |
59 | } | 59 | } |
60 | 60 | ||
61 | /* this is for root attrs (subvols/snapshots) */ | 61 | /* this is for root attrs (subvols/snapshots) */ |