Skip to content

Commit

Permalink
mm/huge_memory: fix split assumption of page size
Browse files Browse the repository at this point in the history
File THPs may now be of arbitrary size, and we can't rely on that size
after doing the split so remember the number of pages before we start the
split.

Signed-off-by: Kirill A. Shutemov <[email protected]>
Signed-off-by: Matthew Wilcox (Oracle) <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Reviewed-by: SeongJae Park <[email protected]>
Cc: Huang Ying <[email protected]>
Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
kiryl authored and torvalds committed Oct 16, 2020
1 parent 86b562b commit 8cce547
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions mm/huge_memory.c
Original file line number Diff line number Diff line change
Expand Up @@ -2335,13 +2335,13 @@ static void unmap_page(struct page *page)
VM_BUG_ON_PAGE(!unmap_success, page);
}

static void remap_page(struct page *page)
static void remap_page(struct page *page, unsigned int nr)
{
int i;
if (PageTransHuge(page)) {
remove_migration_ptes(page, page, true);
} else {
for (i = 0; i < HPAGE_PMD_NR; i++)
for (i = 0; i < nr; i++)
remove_migration_ptes(page + i, page + i, true);
}
}
Expand Down Expand Up @@ -2419,6 +2419,7 @@ static void __split_huge_page(struct page *page, struct list_head *list,
struct lruvec *lruvec;
struct address_space *swap_cache = NULL;
unsigned long offset = 0;
unsigned int nr = thp_nr_pages(head);
int i;

lruvec = mem_cgroup_page_lruvec(head, pgdat);
Expand All @@ -2434,7 +2435,7 @@ static void __split_huge_page(struct page *page, struct list_head *list,
xa_lock(&swap_cache->i_pages);
}

for (i = HPAGE_PMD_NR - 1; i >= 1; i--) {
for (i = nr - 1; i >= 1; i--) {
__split_huge_page_tail(head, i, lruvec, list);
/* Some pages can be beyond i_size: drop them from page cache */
if (head[i].index >= end) {
Expand All @@ -2454,7 +2455,7 @@ static void __split_huge_page(struct page *page, struct list_head *list,

ClearPageCompound(head);

split_page_owner(head, HPAGE_PMD_NR);
split_page_owner(head, nr);

/* See comment in __split_huge_page_tail() */
if (PageAnon(head)) {
Expand All @@ -2473,9 +2474,9 @@ static void __split_huge_page(struct page *page, struct list_head *list,

spin_unlock_irqrestore(&pgdat->lru_lock, flags);

remap_page(head);
remap_page(head, nr);

for (i = 0; i < HPAGE_PMD_NR; i++) {
for (i = 0; i < nr; i++) {
struct page *subpage = head + i;
if (subpage == page)
continue;
Expand Down Expand Up @@ -2729,7 +2730,7 @@ int split_huge_page_to_list(struct page *page, struct list_head *list)
fail: if (mapping)
xa_unlock(&mapping->i_pages);
spin_unlock_irqrestore(&pgdata->lru_lock, flags);
remap_page(head);
remap_page(head, thp_nr_pages(head));
ret = -EBUSY;
}

Expand Down

0 comments on commit 8cce547

Please sign in to comment.