Chapter 2. The 64k page size kernel
kernel-64k is an additional, optional 64-bit ARM architecture kernel package that supports 64k pages. This additional kernel exists alongside the RHEL 10 for ARM kernel, which supports 4k pages.
Optimal system performance directly relates to different memory configuration requirements. These requirements are addressed by the two variants of kernel, each suitable for different workloads. RHEL 10 on 64-bit ARM hardware thus offers two MMU page sizes:
- 4k pages kernel for efficient memory usage in smaller environments,
-
kernel-64kfor workloads with large, contiguous memory working sets.
The 4k pages kernel and kernel-64k do not differ in the user experience as the user space is the same. You can choose the variant that addresses your situation the best.
- 4k pages kernel
Use 4k pages for more efficient memory usage in smaller environments, such as those in Edge and lower-cost, small cloud instances. In these environments, increasing the physical system memory amounts is not practical due to space, power, and cost constraints. Furthermore, not all 64-bit ARM architecture processors support a 64k page size.
The 4k pages kernel supports graphical installation by using Anaconda, system or cloud image-based installations, as well as advanced installations by using Kickstart.
kernel-64kThe 64k page size kernel is a useful option for large datasets on ARM platforms.
kernel-64kis suitable for memory-intensive workloads as it has significant gains in overall system performance, namely in large database, HPC, and high network performance.You must choose page size on 64-bit ARM architecture systems at the time of installation. You can install
kernel-64konly by Kickstart by adding thekernel-64kpackage to the package list in theKickstartfile.
2.1. Determining kernel page size by system architecture Copy linkLink copied to clipboard!
You can determine the kernel page size for different system architectures.
Procedure
Identify the system architecture:
uname -r
# uname -rCopy to Clipboard Copied! Toggle word wrap Toggle overflow 6.12.0-55.9.1.el10_0.x86_64
6.12.0-55.9.1.el10_0.x86_64Copy to Clipboard Copied! Toggle word wrap Toggle overflow In this output,
x86_64indicates a 64-bit Intel or AMD architecture.Check the default page size:
getconf PAGE_SIZE
# getconf PAGE_SIZECopy to Clipboard Copied! Toggle word wrap Toggle overflow 4096
4096Copy to Clipboard Copied! Toggle word wrap Toggle overflow On x86_64 systems, the output is 4096 B, which means the default page size is 4 KB.
On ppc64le systems, the output is 65536 B, which means the default page size is 64 KB.