OSDN Git Service

fscache: Fix hanging wait on page discarded by writeback
authorDavid Howells <dhowells@redhat.com>
Wed, 4 Apr 2018 12:41:26 +0000 (13:41 +0100)
committerDavid Howells <dhowells@redhat.com>
Wed, 4 Apr 2018 12:41:26 +0000 (13:41 +0100)
commit2c98425720233ae3e135add0c7e869b32913502f
tree100789f2ccb035a3ec3bbfc76d6a63eaeedf18d8
parentd0fb31ecda2c3c6092d0c2a46a6a72653e7dcabb
fscache: Fix hanging wait on page discarded by writeback

If the fscache asynchronous write operation elects to discard a page that's
pending storage to the cache because the page would be over the store limit
then it needs to wake the page as someone may be waiting on completion of
the write.

The problem is that the store limit may be updated by a different
asynchronous operation - and so may miss the write - and that the store
limit may not even get updated until later by the netfs.

Fix the kernel hang by making fscache_write_op() mark as written any pages
that are over the limit.

Signed-off-by: David Howells <dhowells@redhat.com>
fs/fscache/page.c