NFS: Don't loop forever in nfs_do_recoalesce()
authorTrond Myklebust <trond.myklebust@hammerspace.com>
Sat, 26 Mar 2022 01:51:03 +0000 (21:51 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 8 Apr 2022 12:23:53 +0000 (14:23 +0200)
commitc95578235888431e61d36f212ad2236e0ff8b90f
treed86f8a4364865d9d497e7f51a2b0dc0f553980c3
parent667760fe01e96597ad7e56c7d011ad5ef7b81da5
NFS: Don't loop forever in nfs_do_recoalesce()

[ Upstream commit d02d81efc7564b4d5446a02e0214a164cf00b1f3 ]

If __nfs_pageio_add_request() fails to add the request, it will return
with either desc->pg_error < 0, or mirror->pg_recoalesce will be set, so
we are guaranteed either to exit the function altogether, or to loop.

However if there is nothing left in mirror->pg_list to coalesce, we must
exit, so make sure that we clear mirror->pg_recoalesce every time we
loop.

Reported-by: Olga Kornievskaia <aglo@umich.edu>
Fixes: 70536bf4eb07 ("NFS: Clean up reset of the mirror accounting variables")
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
fs/nfs/pagelist.c