diff options
author | Jeff Mahoney <jeffm@suse.com> | 2016-12-13 14:39:34 -0500 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2017-02-14 15:50:50 +0100 |
commit | fef394f75bc17599c17287fbc437d4fb07a98583 (patch) | |
tree | 1642c0a345224f0e9e49682f51b0a51ada221521 /fs/btrfs/delayed-ref.h | |
parent | 694a0dee9c2d36a552f31a1b104733ed3f90f46d (diff) | |
download | talos-op-linux-fef394f75bc17599c17287fbc437d4fb07a98583.tar.gz talos-op-linux-fef394f75bc17599c17287fbc437d4fb07a98583.zip |
btrfs: drop unused extent_op arg from btrfs_add_delayed_data_ref
btrfs_add_delayed_data_ref is always called with a NULL extent_op,
so let's drop the argument.
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/delayed-ref.h')
-rw-r--r-- | fs/btrfs/delayed-ref.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/btrfs/delayed-ref.h b/fs/btrfs/delayed-ref.h index 50947b5a9152..8a0220fb703c 100644 --- a/fs/btrfs/delayed-ref.h +++ b/fs/btrfs/delayed-ref.h @@ -250,8 +250,7 @@ int btrfs_add_delayed_data_ref(struct btrfs_fs_info *fs_info, struct btrfs_trans_handle *trans, u64 bytenr, u64 num_bytes, u64 parent, u64 ref_root, - u64 owner, u64 offset, u64 reserved, int action, - struct btrfs_delayed_extent_op *extent_op); + u64 owner, u64 offset, u64 reserved, int action); int btrfs_add_delayed_extent_op(struct btrfs_fs_info *fs_info, struct btrfs_trans_handle *trans, u64 bytenr, u64 num_bytes, |