Commit 8797f2f4 authored by Hugh Dickins's avatar Hugh Dickins Committed by Greg Kroah-Hartman

mm/khugepaged: collapse_shmem() stop if punched or truncated

commit 701270fa upstream.

Huge tmpfs testing showed that although collapse_shmem() recognizes a
concurrently truncated or hole-punched page correctly, its handling of
holes was liable to refill an emptied extent.  Add check to stop that.

Link: http://lkml.kernel.org/r/alpine.LSU.2.11.1811261522040.2275@eggly.anvils
Fixes: f3f0e1d2 ("khugepaged: add support of collapse for tmpfs/shmem pages")
Signed-off-by: default avatarHugh Dickins <hughd@google.com>
Reviewed-by: default avatarMatthew Wilcox <willy@infradead.org>
Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Cc: Jerome Glisse <jglisse@redhat.com>
Cc: Konstantin Khlebnikov <khlebnikov@yandex-team.ru>
Cc: <stable@vger.kernel.org>	[4.8+]
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent d31ff472
...@@ -1349,6 +1349,16 @@ static void collapse_shmem(struct mm_struct *mm, ...@@ -1349,6 +1349,16 @@ static void collapse_shmem(struct mm_struct *mm,
radix_tree_for_each_slot(slot, &mapping->i_pages, &iter, start) { radix_tree_for_each_slot(slot, &mapping->i_pages, &iter, start) {
int n = min(iter.index, end) - index; int n = min(iter.index, end) - index;
/*
* Stop if extent has been hole-punched, and is now completely
* empty (the more obvious i_size_read() check would take an
* irq-unsafe seqlock on 32-bit).
*/
if (n >= HPAGE_PMD_NR) {
result = SCAN_TRUNCATED;
goto tree_locked;
}
/* /*
* Handle holes in the radix tree: charge it from shmem and * Handle holes in the radix tree: charge it from shmem and
* insert relevant subpage of new_page into the radix-tree. * insert relevant subpage of new_page into the radix-tree.
...@@ -1459,6 +1469,11 @@ static void collapse_shmem(struct mm_struct *mm, ...@@ -1459,6 +1469,11 @@ static void collapse_shmem(struct mm_struct *mm,
if (result == SCAN_SUCCEED && index < end) { if (result == SCAN_SUCCEED && index < end) {
int n = end - index; int n = end - index;
/* Stop if extent has been truncated, and is now empty */
if (n >= HPAGE_PMD_NR) {
result = SCAN_TRUNCATED;
goto tree_locked;
}
if (!shmem_charge(mapping->host, n)) { if (!shmem_charge(mapping->host, n)) {
result = SCAN_FAIL; result = SCAN_FAIL;
goto tree_locked; goto tree_locked;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment