diff options
author | David Sterba <dsterba@suse.com> | 2017-06-02 17:55:44 +0200 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2017-06-19 18:26:03 +0200 |
commit | 9f2179a5e72b794f8af22a6818d83d1600050c5c (patch) | |
tree | 84c04b1313c309965b233b9ad4d9d1d0f5a726c9 /fs/btrfs/compression.c | |
parent | 8b6c1d56f2f5094b14b22a226b798ca3d186c0e9 (diff) | |
download | linux-stable-9f2179a5e72b794f8af22a6818d83d1600050c5c.tar.gz linux-stable-9f2179a5e72b794f8af22a6818d83d1600050c5c.tar.bz2 linux-stable-9f2179a5e72b794f8af22a6818d83d1600050c5c.zip |
btrfs: remove redundant parameters from btrfs_bio_alloc
All callers pass gfp_flags=GFP_NOFS and nr_vecs=BIO_MAX_PAGES.
submit_extent_page adds __GFP_HIGH that does not make a difference in
our case as it allows access to memory reserves but otherwise does not
change the constraints.
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/compression.c')
-rw-r--r-- | fs/btrfs/compression.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/compression.c b/fs/btrfs/compression.c index 39cd164e5a62..ab04dd01c69f 100644 --- a/fs/btrfs/compression.c +++ b/fs/btrfs/compression.c @@ -57,7 +57,7 @@ static inline int compressed_bio_size(struct btrfs_fs_info *fs_info, static struct bio *compressed_bio_alloc(struct block_device *bdev, u64 first_byte, gfp_t gfp_flags) { - return btrfs_bio_alloc(bdev, first_byte >> 9, BIO_MAX_PAGES, gfp_flags); + return btrfs_bio_alloc(bdev, first_byte >> 9); } static int check_compressed_csum(struct btrfs_inode *inode, |