提交 5fbf83c1 编写于 作者: S Stefan Behrens 提交者: Josef Bacik

Btrfs: delete unused parameter to btrfs_read_root_item()

Signed-off-by: NStefan Behrens <sbehrens@giantdisaster.de>
Signed-off-by: NJosef Bacik <jbacik@fusionio.com>
上级 ecc7ada7
...@@ -3359,9 +3359,8 @@ int __must_check btrfs_update_root(struct btrfs_trans_handle *trans, ...@@ -3359,9 +3359,8 @@ int __must_check btrfs_update_root(struct btrfs_trans_handle *trans,
struct btrfs_root *root, struct btrfs_root *root,
struct btrfs_key *key, struct btrfs_key *key,
struct btrfs_root_item *item); struct btrfs_root_item *item);
void btrfs_read_root_item(struct btrfs_root *root, void btrfs_read_root_item(struct extent_buffer *eb, int slot,
struct extent_buffer *eb, int slot, struct btrfs_root_item *item);
struct btrfs_root_item *item);
int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, struct int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, struct
btrfs_root_item *item, struct btrfs_key *key); btrfs_root_item *item, struct btrfs_key *key);
int btrfs_find_dead_roots(struct btrfs_root *root, u64 objectid); int btrfs_find_dead_roots(struct btrfs_root *root, u64 objectid);
......
...@@ -1481,7 +1481,7 @@ struct btrfs_root *btrfs_read_fs_root_no_radix(struct btrfs_root *tree_root, ...@@ -1481,7 +1481,7 @@ struct btrfs_root *btrfs_read_fs_root_no_radix(struct btrfs_root *tree_root,
if (ret == 0) { if (ret == 0) {
l = path->nodes[0]; l = path->nodes[0];
slot = path->slots[0]; slot = path->slots[0];
btrfs_read_root_item(tree_root, l, slot, &root->root_item); btrfs_read_root_item(l, slot, &root->root_item);
memcpy(&root->root_key, location, sizeof(*location)); memcpy(&root->root_key, location, sizeof(*location));
} }
btrfs_free_path(path); btrfs_free_path(path);
......
...@@ -29,9 +29,8 @@ ...@@ -29,9 +29,8 @@
* generation numbers as then we know the root was once mounted with an older * generation numbers as then we know the root was once mounted with an older
* kernel that was not aware of the root item structure change. * kernel that was not aware of the root item structure change.
*/ */
void btrfs_read_root_item(struct btrfs_root *root, void btrfs_read_root_item(struct extent_buffer *eb, int slot,
struct extent_buffer *eb, int slot, struct btrfs_root_item *item)
struct btrfs_root_item *item)
{ {
uuid_le uuid; uuid_le uuid;
int len; int len;
...@@ -104,7 +103,7 @@ int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, ...@@ -104,7 +103,7 @@ int btrfs_find_last_root(struct btrfs_root *root, u64 objectid,
goto out; goto out;
} }
if (item) if (item)
btrfs_read_root_item(root, l, slot, item); btrfs_read_root_item(l, slot, item);
if (key) if (key)
memcpy(key, &found_key, sizeof(found_key)); memcpy(key, &found_key, sizeof(found_key));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册