mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
btrfs: Drop fs_info parameter from __btrfs_run_delayed_refs
It's provided by transaction handle. Signed-off-by: Nikolay Borisov <nborisov@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
5ead2dd02c
commit
0a1e458a1e
@ -2650,9 +2650,9 @@ static int cleanup_ref_head(struct btrfs_trans_handle *trans,
|
|||||||
* Returns -ENOMEM or -EIO on failure and will abort the transaction.
|
* Returns -ENOMEM or -EIO on failure and will abort the transaction.
|
||||||
*/
|
*/
|
||||||
static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
|
static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
|
||||||
struct btrfs_fs_info *fs_info,
|
|
||||||
unsigned long nr)
|
unsigned long nr)
|
||||||
{
|
{
|
||||||
|
struct btrfs_fs_info *fs_info = trans->fs_info;
|
||||||
struct btrfs_delayed_ref_root *delayed_refs;
|
struct btrfs_delayed_ref_root *delayed_refs;
|
||||||
struct btrfs_delayed_ref_node *ref;
|
struct btrfs_delayed_ref_node *ref;
|
||||||
struct btrfs_delayed_ref_head *locked_ref = NULL;
|
struct btrfs_delayed_ref_head *locked_ref = NULL;
|
||||||
@ -3077,7 +3077,7 @@ again:
|
|||||||
delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
|
delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
|
||||||
#endif
|
#endif
|
||||||
trans->can_flush_pending_bgs = false;
|
trans->can_flush_pending_bgs = false;
|
||||||
ret = __btrfs_run_delayed_refs(trans, fs_info, count);
|
ret = __btrfs_run_delayed_refs(trans, count);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
btrfs_abort_transaction(trans, ret);
|
btrfs_abort_transaction(trans, ret);
|
||||||
return ret;
|
return ret;
|
||||||
|
Loading…
Reference in New Issue
Block a user