mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-26 08:31:13 +00:00
mm: report the MMU pagesize in /proc/pid/smaps
The KernelPageSize entry in /proc/pid/smaps is the pagesize used by the kernel to back a VMA. This matches the size used by the MMU in the majority of cases. However, one counter-example occurs on PPC64 kernels whereby a kernel using 64K as a base pagesize may still use 4K pages for the MMU on older processor. To distinguish, this patch reports MMUPageSize as the pagesize used by the MMU in /proc/pid/smaps. Signed-off-by: Mel Gorman <mel@csn.ul.ie> Cc: "KOSAKI Motohiro" <kosaki.motohiro@jp.fujitsu.com> Cc: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
08fba69986
commit
3340289ddf
5 changed files with 33 additions and 2 deletions
13
mm/hugetlb.c
13
mm/hugetlb.c
|
@ -235,6 +235,19 @@ unsigned long vma_kernel_pagesize(struct vm_area_struct *vma)
|
|||
return 1UL << (hstate->order + PAGE_SHIFT);
|
||||
}
|
||||
|
||||
/*
|
||||
* Return the page size being used by the MMU to back a VMA. In the majority
|
||||
* of cases, the page size used by the kernel matches the MMU size. On
|
||||
* architectures where it differs, an architecture-specific version of this
|
||||
* function is required.
|
||||
*/
|
||||
#ifndef vma_mmu_pagesize
|
||||
unsigned long vma_mmu_pagesize(struct vm_area_struct *vma)
|
||||
{
|
||||
return vma_kernel_pagesize(vma);
|
||||
}
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Flags for MAP_PRIVATE reservations. These are stored in the bottom
|
||||
* bits of the reservation map pointer, which are always clear due to
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue