mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
dio: Remove code handling bio_alloc failure with __GFP_WAIT
Remove code handling bio_alloc failure with __GFP_WAIT. GFP_KERNEL implies __GFP_WAIT. Signed-off-by: Nikanth Karthikesan <knikanth@suse.de> Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
This commit is contained in:
parent
15afd1cc7b
commit
4d1f9fdb61
1 changed files with 0 additions and 2 deletions
|
@ -307,8 +307,6 @@ dio_bio_alloc(struct dio *dio, struct block_device *bdev,
|
||||||
struct bio *bio;
|
struct bio *bio;
|
||||||
|
|
||||||
bio = bio_alloc(GFP_KERNEL, nr_vecs);
|
bio = bio_alloc(GFP_KERNEL, nr_vecs);
|
||||||
if (bio == NULL)
|
|
||||||
return -ENOMEM;
|
|
||||||
|
|
||||||
bio->bi_bdev = bdev;
|
bio->bi_bdev = bdev;
|
||||||
bio->bi_sector = first_sector;
|
bio->bi_sector = first_sector;
|
||||||
|
|
Loading…
Reference in a new issue