All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mm,thp: stop leaking unreleased file pages
@ 2020-05-24  1:50 ` Hugh Dickins
  0 siblings, 0 replies; 12+ messages in thread
From: Hugh Dickins @ 2020-05-24  1:50 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Song Liu, Kirill A. Shutemov, linux-kernel, linux-mm

When collapse_file() calls try_to_release_page(), it has already
isolated the page: so if releasing buffers happens to fail (as it
sometimes does), remember to putback_lru_page(): otherwise that page is
left unreclaimable and unfreeable, and the file extent uncollapsible.

Signed-off-by: Hugh Dickins <hughd@google.com>
Fixes: 99cb0dbd47a1 ("mm,thp: add read-only THP support for (non-shmem) FS")
Cc: stable@vger.kernel.org # v5.4+
---

 mm/khugepaged.c |    1 +
 1 file changed, 1 insertion(+)

--- 5.7-rc6/mm/khugepaged.c	2020-04-12 16:24:37.710999073 -0700
+++ linux/mm/khugepaged.c	2020-05-10 17:06:21.788398646 -0700
@@ -1692,6 +1692,7 @@ static void collapse_file(struct mm_stru
 		if (page_has_private(page) &&
 		    !try_to_release_page(page, GFP_KERNEL)) {
 			result = SCAN_PAGE_HAS_PRIVATE;
+			putback_lru_page(page);
 			goto out_unlock;
 		}
 

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2020-06-03 22:20 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-24  1:50 [PATCH] mm,thp: stop leaking unreleased file pages Hugh Dickins
2020-05-24  1:50 ` Hugh Dickins
2020-05-25  0:05 ` Song Liu
2020-05-25  4:32 ` Kirill A. Shutemov
2020-05-26 16:01 ` Johannes Weiner
2020-05-27 21:28   ` Hugh Dickins
2020-05-27 21:28     ` Hugh Dickins
2020-05-28  8:51     ` Naresh Kamboju
2020-05-28  8:51       ` Naresh Kamboju
2020-06-03 21:51     ` Matthew Wilcox
2020-06-03 22:19       ` Hugh Dickins
2020-06-03 22:19         ` Hugh Dickins

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.