JDK-8261896 : Add support for multiple large page sizes for UseSHM
  • Type: Enhancement
  • Component: hotspot
  • Sub-Component: gc
  • Affected Version: 17
  • Priority: P4
  • Status: Open
  • Resolution: Unresolved
  • OS: linux
  • Submitted: 2021-02-17
  • Updated: 2022-02-21
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
Other
tbdUnresolved
Related Reports
Relates :  
Relates :  
Description
If we decide not to remove the support for UseSHM (see JDK-8261894), we should add support for using different large page sizes. Currently shmget() is only called with SHM_HUGETLB and this will always use the default large page size. For systems supporting multiple page sizes we should make use of SHM_HUGE_2MB or SHM_HUGE_1GB to allow usage of other page sizes than the default.