btrfs: use __bio_add_page for adding a single page in repair_one_sector
authorJohannes Thumshirn <johannes.thumshirn@wdc.com>
Thu, 30 Mar 2023 10:43:50 +0000 (03:43 -0700)
committerDavid Sterba <dsterba@suse.com>
Mon, 17 Apr 2023 16:01:20 +0000 (18:01 +0200)
commit078e4cf5dbedb3d407417a10ac5918dca6ca156a
treed672e05f82ba75bb512227606386a7313c472f7d
parent7e812f2054b8eeaca2c61ae9dc8986e9190e4dd6
btrfs: use __bio_add_page for adding a single page in repair_one_sector

The btrfs repair bio submission code uses bio_add_page() to add a page
to a newly created bio. bio_add_page() can fail, but the return value is
never checked.

Use __bio_add_page() as adding a single page to a newly created bio is
guaranteed to succeed.

This brings us a step closer to marking bio_add_page() as __must_check.

Reviewed-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>
Signed-off-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/bio.c