diff options
author | Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> | 2014-06-06 10:00:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-06 16:21:16 -0400 |
commit | d4c54919ed86302094c0ca7d48a8cbd4ee753e92 (patch) | |
tree | 0e2f79515abf8d056d6c32912194e0c69212fad5 | |
parent | d54d14bfb49f0b61aed9f20cb84cb692566cf83b (diff) |
mm: add !pte_present() check on existing hugetlb_entry callbacks
The age table walker doesn't check non-present hugetlb entry in common
path, so hugetlb_entry() callbacks must check it. The reason for this
behavior is that some callers want to handle it in its own way.
[ I think that reason is bogus, btw - it should just do what the regular
code does, which is to call the "pte_hole()" function for such hugetlb
entries - Linus]
However, some callers don't check it now, which causes unpredictable
result, for example when we have a race between migrating hugepage and
reading /proc/pid/numa_maps. This patch fixes it by adding !pte_present
checks on buggy callbacks.
This bug exists for years and got visible by introducing hugepage
migration.
ChangeLog v2:
- fix if condition (check !pte_present() instead of pte_present())
Reported-by: Sasha Levin <sasha.levin@oracle.com>
Signed-off-by: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
Cc: Rik van Riel <riel@redhat.com>
Cc: <stable@vger.kernel.org> [3.12+]
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
[ Backported to 3.15. Signed-off-by: Josh Boyer <jwboyer@fedoraproject.org> ]
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | fs/proc/task_mmu.c | 2 | ||||
-rw-r--r-- | mm/mempolicy.c | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/fs/proc/task_mmu.c b/fs/proc/task_mmu.c index 442177b1119a..c4b2646b6d7c 100644 --- a/fs/proc/task_mmu.c +++ b/fs/proc/task_mmu.c | |||
@@ -1351,7 +1351,7 @@ static int gather_hugetbl_stats(pte_t *pte, unsigned long hmask, | |||
1351 | struct numa_maps *md; | 1351 | struct numa_maps *md; |
1352 | struct page *page; | 1352 | struct page *page; |
1353 | 1353 | ||
1354 | if (pte_none(*pte)) | 1354 | if (!pte_present(*pte)) |
1355 | return 0; | 1355 | return 0; |
1356 | 1356 | ||
1357 | page = pte_page(*pte); | 1357 | page = pte_page(*pte); |
diff --git a/mm/mempolicy.c b/mm/mempolicy.c index 78e1472933ea..30cc47f8ffa0 100644 --- a/mm/mempolicy.c +++ b/mm/mempolicy.c | |||
@@ -526,9 +526,13 @@ static void queue_pages_hugetlb_pmd_range(struct vm_area_struct *vma, | |||
526 | int nid; | 526 | int nid; |
527 | struct page *page; | 527 | struct page *page; |
528 | spinlock_t *ptl; | 528 | spinlock_t *ptl; |
529 | pte_t entry; | ||
529 | 530 | ||
530 | ptl = huge_pte_lock(hstate_vma(vma), vma->vm_mm, (pte_t *)pmd); | 531 | ptl = huge_pte_lock(hstate_vma(vma), vma->vm_mm, (pte_t *)pmd); |
531 | page = pte_page(huge_ptep_get((pte_t *)pmd)); | 532 | entry = huge_ptep_get((pte_t *)pmd); |
533 | if (!pte_present(entry)) | ||
534 | goto unlock; | ||
535 | page = pte_page(entry); | ||
532 | nid = page_to_nid(page); | 536 | nid = page_to_nid(page); |
533 | if (node_isset(nid, *nodes) == !!(flags & MPOL_MF_INVERT)) | 537 | if (node_isset(nid, *nodes) == !!(flags & MPOL_MF_INVERT)) |
534 | goto unlock; | 538 | goto unlock; |