From: David Howells Date: Thu, 16 Mar 2017 16:27:43 +0000 (+0000) Subject: afs: Fix missing put_page() X-Git-Tag: v3.18.89~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28cd05a2efe27f5ea1c2b1c5ffef8d350a5ef1eb;p=thirdparty%2Fkernel%2Fstable.git afs: Fix missing put_page() [ Upstream commit 29c8bbbd6e21daa0997d1c3ee886b897ee7ad652 ] In afs_writepages_region(), inside the loop where we find dirty pages to deal with, one of the if-statements is missing a put_page(). Signed-off-by: David Howells Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/afs/write.c b/fs/afs/write.c index ab6adfd525168..cbc6d8372369a 100644 --- a/fs/afs/write.c +++ b/fs/afs/write.c @@ -504,6 +504,7 @@ static int afs_writepages_region(struct address_space *mapping, if (PageWriteback(page) || !PageDirty(page)) { unlock_page(page); + put_page(page); continue; }