Commit c28f158e authored by Jeff Mahoney's avatar Jeff Mahoney Committed by David Sterba

btrfs: struct reada_control.root -> reada_control.fs_info

The root is never used.  We substitute extent_root in for the
reada_find_extent call, since it's only ever used to obtain the node
size.  This call site will be changed to use fs_info in a later patch.
Signed-off-by: default avatarJeff Mahoney <jeffm@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent de143792
...@@ -3652,7 +3652,7 @@ static inline void btrfs_bio_counter_dec(struct btrfs_fs_info *fs_info) ...@@ -3652,7 +3652,7 @@ static inline void btrfs_bio_counter_dec(struct btrfs_fs_info *fs_info)
/* reada.c */ /* reada.c */
struct reada_control { struct reada_control {
struct btrfs_root *root; /* tree to prefetch */ struct btrfs_fs_info *fs_info; /* tree to prefetch */
struct btrfs_key key_start; struct btrfs_key key_start;
struct btrfs_key key_end; /* exclusive */ struct btrfs_key key_end; /* exclusive */
atomic_t elems; atomic_t elems;
......
...@@ -544,17 +544,18 @@ static void reada_control_release(struct kref *kref) ...@@ -544,17 +544,18 @@ static void reada_control_release(struct kref *kref)
static int reada_add_block(struct reada_control *rc, u64 logical, static int reada_add_block(struct reada_control *rc, u64 logical,
struct btrfs_key *top, u64 generation) struct btrfs_key *top, u64 generation)
{ {
struct btrfs_root *root = rc->root; struct btrfs_fs_info *fs_info = rc->fs_info;
struct reada_extent *re; struct reada_extent *re;
struct reada_extctl *rec; struct reada_extctl *rec;
re = reada_find_extent(root, logical, top); /* takes one ref */ /* takes one ref */
re = reada_find_extent(fs_info->tree_root, logical, top);
if (!re) if (!re)
return -1; return -1;
rec = kzalloc(sizeof(*rec), GFP_KERNEL); rec = kzalloc(sizeof(*rec), GFP_KERNEL);
if (!rec) { if (!rec) {
reada_extent_put(root->fs_info, re); reada_extent_put(fs_info, re);
return -ENOMEM; return -ENOMEM;
} }
...@@ -914,7 +915,7 @@ struct reada_control *btrfs_reada_add(struct btrfs_root *root, ...@@ -914,7 +915,7 @@ struct reada_control *btrfs_reada_add(struct btrfs_root *root,
if (!rc) if (!rc)
return ERR_PTR(-ENOMEM); return ERR_PTR(-ENOMEM);
rc->root = root; rc->fs_info = root->fs_info;
rc->key_start = *key_start; rc->key_start = *key_start;
rc->key_end = *key_end; rc->key_end = *key_end;
atomic_set(&rc->elems, 0); atomic_set(&rc->elems, 0);
...@@ -942,7 +943,7 @@ struct reada_control *btrfs_reada_add(struct btrfs_root *root, ...@@ -942,7 +943,7 @@ struct reada_control *btrfs_reada_add(struct btrfs_root *root,
int btrfs_reada_wait(void *handle) int btrfs_reada_wait(void *handle)
{ {
struct reada_control *rc = handle; struct reada_control *rc = handle;
struct btrfs_fs_info *fs_info = rc->root->fs_info; struct btrfs_fs_info *fs_info = rc->fs_info;
while (atomic_read(&rc->elems)) { while (atomic_read(&rc->elems)) {
if (!atomic_read(&fs_info->reada_works_cnt)) if (!atomic_read(&fs_info->reada_works_cnt))
...@@ -963,7 +964,7 @@ int btrfs_reada_wait(void *handle) ...@@ -963,7 +964,7 @@ int btrfs_reada_wait(void *handle)
int btrfs_reada_wait(void *handle) int btrfs_reada_wait(void *handle)
{ {
struct reada_control *rc = handle; struct reada_control *rc = handle;
struct btrfs_fs_info *fs_info = rc->root->fs_info; struct btrfs_fs_info *fs_info = rc->fs_info;
while (atomic_read(&rc->elems)) { while (atomic_read(&rc->elems)) {
if (!atomic_read(&fs_info->reada_works_cnt)) if (!atomic_read(&fs_info->reada_works_cnt))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment