From: Matthew Wilcox (Oracle) Date: Tue, 18 Jul 2023 17:26:46 +0000 (-0400) Subject: afs: Do not test the return value of folio_start_writeback() X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=768b78b62a78b0deb6cfd29c8ad4d779befb1bd7;p=users%2Fwilly%2Fpagecache.git afs: Do not test the return value of folio_start_writeback() In preparation for removing the return value entirely, stop testing it in afs. Signed-off-by: Matthew Wilcox (Oracle) --- diff --git a/fs/afs/write.c b/fs/afs/write.c index e1c45341719bc..6f3232c552005 100644 --- a/fs/afs/write.c +++ b/fs/afs/write.c @@ -559,8 +559,7 @@ static void afs_extend_writeback(struct address_space *mapping, if (!folio_clear_dirty_for_io(folio)) BUG(); - if (folio_start_writeback(folio)) - BUG(); + folio_start_writeback(folio); afs_folio_start_fscache(caching, folio); *_count -= folio_nr_pages(folio); @@ -595,8 +594,7 @@ static ssize_t afs_write_back_from_locked_folio(struct address_space *mapping, _enter(",%lx,%llx-%llx", folio_index(folio), start, end); - if (folio_start_writeback(folio)) - BUG(); + folio_start_writeback(folio); afs_folio_start_fscache(caching, folio); count -= folio_nr_pages(folio);