Difference between revisions of "Page size"
(→Addressable virtual address space) |
(→Addressable virtual address space) |
||
Line 31: | Line 31: | ||
* Address spaces of less than 2GB are not likely to be very useful either. | * Address spaces of less than 2GB are not likely to be very useful either. | ||
* Only 3-level tables are supported by 64-bit MIPS kernels. The exception are 64kB pages where the resulting 55 bits / 32PB address space would be so large that cropping it to 42 bits / 4TB appeared more practical for the time being. | * Only 3-level tables are supported by 64-bit MIPS kernels. The exception are 64kB pages where the resulting 55 bits / 32PB address space would be so large that cropping it to 42 bits / 4TB appeared more practical for the time being. | ||
− | * | + | * 32-bit kernels only support 4kB and 16kB page size |
== Software support == | == Software support == |
Revision as of 21:26, 27 September 2012
Since a while the Linux/MIPS kernel support page sizes other than 4kB.
- The R6000 processor only supports 16kB page size.
- The R8000 processor supports 8kB page size as it's smallest pagesize. It's also the only MIPS processor to support 8kB page size.
- Large compute workloads benefit sometimes dramatically from the increased TLB reach. Downside: the memory overhead can be significant and at times prohibitive.
- Large pagesize eleminates cache aliases and the overhead and potencial for bugs associated with them.
- SPECbench numbers have been shown to be boosted significantly by 16kB pages and yet somewhat more by 64kB pages.
Contents
Addressable virtual address space
The size of the usable address space depends on the number of levels of the page tables, page size and the kernel model used. It always is 4GB for 32-bit kernels. Note that these 4GB are split into 2GB of userspace and 2GB of kernel addressing space. This split is hardwired in the MIPS architecture and (with the exception of the R6000) cannot be changed. The following table gives an overview over the situation on the 64-bit kernel.
Page Size | 1 Level | 2 Level | 3 Levels | 4 Levels |
---|---|---|---|---|
4kB | 21 bits / 2MB | 30 bits / 1GB | 39 bits / 512GB | 48 bits / 256TB |
8kB | 23 bits / 8MB | 33 bits / 8GB | 43 bits / 8TB | 53 bits / 8PB |
16kB | 25 bits / 32MB | 36 bits / 64GB | 47 bits / 128TB | 58 bits / 256PB |
32kB | 27 bits / 128MB | 39 bits / 512GB | 51 bits / 2PB | 63 bits / 8EB |
64kB | 29 bits / 512MB | 42 bits / 4TB | 55 bits / 32PB | 68 bits / 256EB |
The combinations marked red are nonsenical because XUSEG limits the user address space to 62 bits / 4EB.
This table is mostly meant to show how the numbers work out if all page table levels are one page in size.
- For 3 level page tableswith 4kB pages Linux uses two pages for the page directory so the actual virtual address space capacity is 40 bits / 1TB.
- The largest virtual address space supported by any MIPS processor is 48bits on the old and rather odd R8000 processor. Typical 64-bit MIPS processors support 36-bit, 40-bit or 44-bit address spaces but other sizes are permitted by the MIPS64 architecture.
- Address spaces of less than 2GB are not likely to be very useful either.
- Only 3-level tables are supported by 64-bit MIPS kernels. The exception are 64kB pages where the resulting 55 bits / 32PB address space would be so large that cropping it to 42 bits / 4TB appeared more practical for the time being.
- 32-bit kernels only support 4kB and 16kB page size
Software support
Hugetlbfs
Hugetlbfs is a special magic filesystem. Any file mmapped from hugetlbfs will use huge pages. The problem with hugetlbfs is that it software will need to be modified to use it and memory to be used for huge pages with hugetlbfs needs to be put aside manually.
Cavium's SDK is able to put away with the need to modify software by using an special preload library that wraps malloc. This method works for most but not all applications.
Transparent Huge Pages
Transparent Huge Pages allows normal unmodified software to use huge pages. Other than possibly having to enable THP support there is no administrative activity required. The price for this is a slight overhead.