]> git.baikalelectronics.ru Git - kernel.git/commit
afs: Fix potential thrashing in afs writeback
authorDavid Howells <dhowells@redhat.com>
Fri, 11 Mar 2022 15:58:21 +0000 (15:58 +0000)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 11 Mar 2022 18:24:37 +0000 (10:24 -0800)
commit1e09b0a77fd7874fa61ecb8a6089ed0d41f4c86c
tree5dc9f1cd8aeb26aed6e552d93831c881312df016
parent266a74be8e2c503734c0c163c776fcb607ed79f7
afs: Fix potential thrashing in afs writeback

In afs_writepages_region(), if the dirty page we find is undergoing
writeback or write to cache, but the sync_mode is WB_SYNC_NONE, we go
round the loop trying the same page again and again with no pausing or
waiting unless and until another thread manages to clear the writeback
and fscache flags.

Fix this with three measures:

 (1) Advance start to after the page we found.

 (2) Break out of the loop and return if rescheduling is requested.

 (3) Arbitrarily give up after a maximum of 5 skips.

Fixes: 6f37bcf4b639 ("AFS: implement basic file write support")
Reported-by: Marc Dionne <marc.dionne@auristor.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Tested-by: Marc Dionne <marc.dionne@auristor.com>
Acked-by: Marc Dionne <marc.dionne@auristor.com>
Link: https://lore.kernel.org/r/164692725757.2097000.2060513769492301854.stgit@warthog.procyon.org.uk/
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/afs/write.c