aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
Diffstat (limited to 'mm')
-rw-r--r--mm/huge_memory.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/mm/huge_memory.c b/mm/huge_memory.c
index c403a74e4bee..b2e803e14ea9 100644
--- a/mm/huge_memory.c
+++ b/mm/huge_memory.c
@@ -1344,6 +1344,13 @@ int do_huge_pmd_numa_page(struct mm_struct *mm, struct vm_area_struct *vma,
1344 goto out_unlock; 1344 goto out_unlock;
1345 } 1345 }
1346 1346
1347 /* Bail if we fail to protect against THP splits for any reason */
1348 if (unlikely(!anon_vma)) {
1349 put_page(page);
1350 page_nid = -1;
1351 goto clear_pmdnuma;
1352 }
1353
1347 /* 1354 /*
1348 * Migrate the THP to the requested node, returns with page unlocked 1355 * Migrate the THP to the requested node, returns with page unlocked
1349 * and pmd_numa cleared. 1356 * and pmd_numa cleared.