diff options
author | Nikolay Borisov <nborisov@suse.com> | 2018-04-19 10:46:39 +0300 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2018-05-07 14:51:07 +0200 |
commit | 3f42b8307a507073408d1d7cc394d8371e30d33a (patch) | |
tree | 65c9bd1665f5e3ed684e0517cf430a313811e992 /fs/btrfs/ctree.h | |
parent | a68ec4777f27c72e7ac0b008e936b85a4654017e (diff) | |
download | linux-next-3f42b8307a507073408d1d7cc394d8371e30d33a.tar.gz |
btrfs: Remove btrfs_wait_and_free_delalloc_work
This function is called from only 1 place and is effectively a wrapper
over wait_completion/kfree. It doesn't really bring any value having
those two calls in a separate function. Just open code it and remove it.
No functional changes.
Signed-off-by: Nikolay Borisov <nborisov@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/ctree.h')
-rw-r--r-- | fs/btrfs/ctree.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h index 9e5787f92ed7..aac3a8bfab51 100644 --- a/fs/btrfs/ctree.h +++ b/fs/btrfs/ctree.h @@ -3173,7 +3173,6 @@ struct btrfs_delalloc_work { struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode, int delay_iput); -void btrfs_wait_and_free_delalloc_work(struct btrfs_delalloc_work *work); struct extent_map *btrfs_get_extent_fiemap(struct btrfs_inode *inode, struct page *page, size_t pg_offset, u64 start, |