Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1313429

[PATCH] numa: fix /proc/<pid>/numa_maps on s390

From Michael Holzheu <holzheu@linux.vnet.ibm.com>
Newsgroups linux.kernel
Subject [PATCH] numa: fix /proc/<pid>/numa_maps on s390
Date 2016-01-20 19:20 +0100
Message-ID <qT5wl-1SC-9@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


When working with huge page pmds in general is not valid to directly
use pte functions like pte_present() because the hardware bit layout
of pmds and ptes can be different. This is the case on s390. Therefore
we have to convert the pmds first into a valid pte encoding with
huge_ptep_get(). So add the two missing functions calls to do this.

Reviewed-by: Gerald Schaefer <gerald.schaefer@de.ibm.com>
Signed-off-by: Michael Holzheu <holzheu@linux.vnet.ibm.com>
---
 fs/proc/task_mmu.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/fs/proc/task_mmu.c b/fs/proc/task_mmu.c
index 65a1b6c..e287e32 100644
--- a/fs/proc/task_mmu.c
+++ b/fs/proc/task_mmu.c
@@ -1520,7 +1520,7 @@ static int gather_pte_stats(pmd_t *pmd, unsigned long addr,
 	pte_t *pte;
 
 	if (pmd_trans_huge_lock(pmd, vma, &ptl)) {
-		pte_t huge_pte = *(pte_t *)pmd;
+		pte_t huge_pte = huge_ptep_get((pte_t *)pmd);
 		struct page *page;
 
 		page = can_gather_numa_stats(huge_pte, vma, addr);
@@ -1548,18 +1548,19 @@ static int gather_pte_stats(pmd_t *pmd, unsigned long addr,
 static int gather_hugetlb_stats(pte_t *pte, unsigned long hmask,
 		unsigned long addr, unsigned long end, struct mm_walk *walk)
 {
+	pte_t huge_pte = huge_ptep_get(pte);
 	struct numa_maps *md;
 	struct page *page;
 
-	if (!pte_present(*pte))
+	if (!pte_present(huge_pte))
 		return 0;
 
-	page = pte_page(*pte);
+	page = pte_page(huge_pte);
 	if (!page)
 		return 0;
 
 	md = walk->private;
-	gather_stats(page, md, pte_dirty(*pte), 1);
+	gather_stats(page, md, pte_dirty(huge_pte), 1);
 	return 0;
 }
 
-- 
2.3.9

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH] numa: fix /proc/<pid>/numa_maps on s390 Michael Holzheu <holzheu@linux.vnet.ibm.com> - 2016-01-20 19:20 +0100
  Re: [PATCH] numa: fix /proc/<pid>/numa_maps on s390 kbuild test robot <lkp@intel.com> - 2016-01-20 20:40 +0100
    Re: [PATCH] numa: fix /proc/<pid>/numa_maps on s390 Andrew Morton <akpm@linux-foundation.org> - 2016-01-20 21:30 +0100
      Re: [PATCH] numa: fix /proc/<pid>/numa_maps on s390 Gerald Schaefer <gerald.schaefer@de.ibm.com> - 2016-01-21 16:00 +0100
        Re: [PATCH] numa: fix /proc/<pid>/numa_maps on s390 Andrew Morton <akpm@linux-foundation.org> - 2016-01-21 20:20 +0100
          Re: [PATCH] numa: fix /proc/<pid>/numa_maps on s390 Gerald Schaefer <gerald.schaefer@de.ibm.com> - 2016-01-22 14:40 +0100

csiph-web