diff options
author | David Sterba <dsterba@suse.com> | 2017-06-02 17:48:13 +0200 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2017-06-19 18:26:03 +0200 |
commit | 8b6c1d56f2f5094b14b22a226b798ca3d186c0e9 (patch) | |
tree | cabbffcb5b517d7f26cc5c2e9a389e165a569a96 /fs/btrfs/extent_io.h | |
parent | e4f56903863c793bc1d181f7f0b6244ea5753338 (diff) | |
download | lwn-8b6c1d56f2f5094b14b22a226b798ca3d186c0e9.tar.gz lwn-8b6c1d56f2f5094b14b22a226b798ca3d186c0e9.zip |
btrfs: sink gfp parameter to btrfs_bio_clone
All callers pass GFP_NOFS.
Reviewed-by: Anand Jain <anand.jain@oracle.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/extent_io.h')
-rw-r--r-- | fs/btrfs/extent_io.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/extent_io.h b/fs/btrfs/extent_io.h index e3512c5d8770..4fe643a5aeaf 100644 --- a/fs/btrfs/extent_io.h +++ b/fs/btrfs/extent_io.h @@ -466,7 +466,7 @@ struct bio * btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs, gfp_t gfp_flags); struct bio *btrfs_io_bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs); -struct bio *btrfs_bio_clone(struct bio *bio, gfp_t gfp_mask); +struct bio *btrfs_bio_clone(struct bio *bio); struct bio *btrfs_bio_clone_partial(struct bio *orig, int offset, int size); struct btrfs_fs_info; |