btrfs-progs: remove unused parameter from btrfs_header_fsid
authorRoss Kirk <ross.kirk@gmail.com>
Fri, 20 Sep 2013 13:27:32 +0000 (14:27 +0100)
committerChris Mason <chris.mason@fusionio.com>
Wed, 16 Oct 2013 12:23:10 +0000 (08:23 -0400)
Remove unused parameter, 'eb'. Unused since introduction in
7777e63b425f1444d2472ea05a6b2b9cf865f35b

Signed-off-by: Ross Kirk <ross.kirk@gmail.com>
Reviewed-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
chunk-recover.c
cmds-check.c
cmds-chunk.c
ctree.c
ctree.h
disk-io.c
print-tree.c
utils.c

index e44ca72..6c6db11 100644 (file)
@@ -743,7 +743,7 @@ static int scan_one_device(struct recover_control *rc, int fd,
                        break;
 
                if (memcmp_extent_buffer(buf, rc->fs_devices->fsid,
-                                        (unsigned long)btrfs_header_fsid(buf),
+                                        (unsigned long)btrfs_header_fsid(),
                                         BTRFS_FSID_SIZE)) {
                        bytenr += rc->sectorsize;
                        continue;
@@ -1044,7 +1044,7 @@ static int __rebuild_chunk_root(struct btrfs_trans_handle *trans,
        btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
        btrfs_set_header_owner(cow, BTRFS_CHUNK_TREE_OBJECTID);
        write_extent_buffer(cow, root->fs_info->fsid,
-                       (unsigned long)btrfs_header_fsid(cow),
+                       (unsigned long)btrfs_header_fsid(),
                        BTRFS_FSID_SIZE);
 
        write_extent_buffer(cow, root->fs_info->chunk_tree_uuid,
index c91cc4a..e08b79d 100644 (file)
@@ -5597,7 +5597,7 @@ init:
        btrfs_set_header_owner(c, root->root_key.objectid);
 
        write_extent_buffer(c, root->fs_info->fsid,
-                           (unsigned long)btrfs_header_fsid(c),
+                           (unsigned long)btrfs_header_fsid(),
                            BTRFS_FSID_SIZE);
 
        write_extent_buffer(c, root->fs_info->chunk_tree_uuid,
index 985f676..e06881b 100644 (file)
@@ -744,7 +744,7 @@ static int scan_one_device(struct recover_control *rc, int fd,
                        break;
 
                if (memcmp_extent_buffer(buf, rc->fs_devices->fsid,
-                                        (unsigned long)btrfs_header_fsid(buf),
+                                        (unsigned long)btrfs_header_fsid(),
                                         BTRFS_FSID_SIZE)) {
                        bytenr += rc->sectorsize;
                        continue;
@@ -1047,7 +1047,7 @@ static int __rebuild_chunk_root(struct btrfs_trans_handle *trans,
        btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
        btrfs_set_header_owner(cow, BTRFS_CHUNK_TREE_OBJECTID);
        write_extent_buffer(cow, root->fs_info->fsid,
-                       (unsigned long)btrfs_header_fsid(cow),
+                       (unsigned long)btrfs_header_fsid(),
                        BTRFS_FSID_SIZE);
 
        write_extent_buffer(cow, root->fs_info->chunk_tree_uuid,
diff --git a/ctree.c b/ctree.c
index 2650ea4..8efe1ed 100644 (file)
--- a/ctree.c
+++ b/ctree.c
@@ -118,7 +118,7 @@ int btrfs_copy_root(struct btrfs_trans_handle *trans,
                btrfs_set_header_owner(cow, new_root_objectid);
 
        write_extent_buffer(cow, root->fs_info->fsid,
-                           (unsigned long)btrfs_header_fsid(cow),
+                           (unsigned long)btrfs_header_fsid(),
                            BTRFS_FSID_SIZE);
 
        WARN_ON(btrfs_header_generation(buf) > trans->transid);
@@ -292,7 +292,7 @@ int __btrfs_cow_block(struct btrfs_trans_handle *trans,
                btrfs_set_header_owner(cow, root->root_key.objectid);
 
        write_extent_buffer(cow, root->fs_info->fsid,
-                           (unsigned long)btrfs_header_fsid(cow),
+                           (unsigned long)btrfs_header_fsid(),
                            BTRFS_FSID_SIZE);
 
        WARN_ON(btrfs_header_generation(buf) > trans->transid);
@@ -1338,7 +1338,7 @@ static int noinline insert_new_root(struct btrfs_trans_handle *trans,
        btrfs_set_header_owner(c, root->root_key.objectid);
 
        write_extent_buffer(c, root->fs_info->fsid,
-                           (unsigned long)btrfs_header_fsid(c),
+                           (unsigned long)btrfs_header_fsid(),
                            BTRFS_FSID_SIZE);
 
        write_extent_buffer(c, root->fs_info->chunk_tree_uuid,
@@ -1459,7 +1459,7 @@ static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
        btrfs_set_header_backref_rev(split, BTRFS_MIXED_BACKREF_REV);
        btrfs_set_header_owner(split, root->root_key.objectid);
        write_extent_buffer(split, root->fs_info->fsid,
-                           (unsigned long)btrfs_header_fsid(split),
+                           (unsigned long)btrfs_header_fsid(),
                            BTRFS_FSID_SIZE);
        write_extent_buffer(split, root->fs_info->chunk_tree_uuid,
                            (unsigned long)btrfs_header_chunk_tree_uuid(split),
@@ -2020,7 +2020,7 @@ again:
        btrfs_set_header_owner(right, root->root_key.objectid);
        btrfs_set_header_level(right, 0);
        write_extent_buffer(right, root->fs_info->fsid,
-                           (unsigned long)btrfs_header_fsid(right),
+                           (unsigned long)btrfs_header_fsid(),
                            BTRFS_FSID_SIZE);
 
        write_extent_buffer(right, root->fs_info->chunk_tree_uuid,
diff --git a/ctree.h b/ctree.h
index de33d14..499fea3 100644 (file)
--- a/ctree.h
+++ b/ctree.h
@@ -1777,7 +1777,7 @@ static inline void btrfs_set_header_backref_rev(struct extent_buffer *eb,
        btrfs_set_header_flags(eb, flags);
 }
 
-static inline u8 *btrfs_header_fsid(struct extent_buffer *eb)
+static inline u8 *btrfs_header_fsid(void)
 {
        unsigned long ptr = offsetof(struct btrfs_header, fsid);
        return (u8 *)ptr;
index 83a2064..f0d7040 100644 (file)
--- a/disk-io.c
+++ b/disk-io.c
@@ -50,7 +50,7 @@ static int check_tree_block(struct btrfs_root *root, struct extent_buffer *buf)
        fs_devices = root->fs_info->fs_devices;
        while (fs_devices) {
                if (!memcmp_extent_buffer(buf, fs_devices->fsid,
-                                         (unsigned long)btrfs_header_fsid(buf),
+                                         (unsigned long)btrfs_header_fsid(),
                                          BTRFS_FSID_SIZE)) {
                        ret = 0;
                        break;
index 6b1e9d4..b54a067 100644 (file)
@@ -191,7 +191,7 @@ static void print_uuids(struct extent_buffer *eb)
        char chunk_uuid[37];
        u8 disk_uuid[BTRFS_UUID_SIZE];
 
-       read_extent_buffer(eb, disk_uuid, (unsigned long)btrfs_header_fsid(eb),
+       read_extent_buffer(eb, disk_uuid, (unsigned long)btrfs_header_fsid(),
                           BTRFS_FSID_SIZE);
 
        fs_uuid[36] = '\0';
diff --git a/utils.c b/utils.c
index d184237..86147f2 100644 (file)
--- a/utils.c
+++ b/utils.c
@@ -137,7 +137,7 @@ int make_btrfs(int fd, const char *device, const char *label,
        btrfs_set_header_backref_rev(buf, BTRFS_MIXED_BACKREF_REV);
        btrfs_set_header_owner(buf, BTRFS_ROOT_TREE_OBJECTID);
        write_extent_buffer(buf, super.fsid, (unsigned long)
-                           btrfs_header_fsid(buf), BTRFS_FSID_SIZE);
+                           btrfs_header_fsid(), BTRFS_FSID_SIZE);
 
        write_extent_buffer(buf, chunk_tree_uuid, (unsigned long)
                            btrfs_header_chunk_tree_uuid(buf),