aboutsummaryrefslogtreecommitdiffstats
path: root/fs/afs
diff options
context:
space:
mode:
authorMatthew Wilcox (Oracle) <willy@infradead.org>2023-11-08 20:46:03 +0000
committerAndrew Morton <akpm@linux-foundation.org>2023-12-10 16:51:37 -0800
commit8525d5984b7b061ba02469cb58c17d1a1b98eb12 (patch)
tree31dc5f704b880388db6a87e23561d0899aa7c554 /fs/afs
parentc36f9d3d2c3e17f9eef1d2f47a63c91d51d55e87 (diff)
downloadlinux-8525d5984b7b061ba02469cb58c17d1a1b98eb12.tar.gz
afs: do not test the return value of folio_start_writeback()
In preparation for removing the return value entirely, stop testing it in afs. Link: https://lkml.kernel.org/r/20231108204605.745109-3-willy@infradead.org Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org> Cc: David Howells <dhowells@redhat.com> Cc: Steve French <sfrench@samba.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'fs/afs')
-rw-r--r--fs/afs/write.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/afs/write.c b/fs/afs/write.c
index 4a168781936b5..57d05d67f0c26 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);