btrfs: reada: move reada_extent_put to place after __readahead_hook()
authorZhao Lei <zhaolei@cn.fujitsu.com>
Thu, 31 Dec 2015 13:07:17 +0000 (21:07 +0800)
committerDavid Sterba <dsterba@suse.com>
Thu, 18 Feb 2016 09:26:12 +0000 (10:26 +0100)
commitb257cf50060cada63a3fe11a932909b9badf4595
tree3b4d36cafc38ee4fb67baf0b134b09f229b54d36
parent1e7970c0f31d6916e0ab523e5f05c9741f71955f
btrfs: reada: move reada_extent_put to place after __readahead_hook()

We can't release reada_extent earlier than __readahead_hook(), because
__readahead_hook() still need to use it, it is necessary to hode a refcnt
to avoid it be freed.

Actually it is not a problem after my patch named:
  Avoid many times of empty loop
It make reada_extent in above line include at least one reada_extctl,
which keeps additional one refcnt for reada_extent.

But we still need this patch to make the code in pretty logic.

Signed-off-by: Zhao Lei <zhaolei@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/reada.c