RFR: 8298482: Implement ParallelGC NUMAStats for Linux
Albert Mingkun Yang
ayang at openjdk.org
Tue Jan 3 12:08:55 UTC 2023
On Tue, 3 Jan 2023 10:39:22 GMT, Nick Gasson <ngasson at openjdk.org> wrote:
>> src/hotspot/share/gc/parallel/mutableNUMASpace.cpp line 896:
>>
>>> 894: size_t npages = 0;
>>> 895: for (; npages < PagesPerIteration && p < end; p += os::vm_page_size())
>>> 896: pages[npages++] = p;
>>
>> This means each page is `vm_page_size()` aligned. Would it be problematic if large-page is in use?
>
> I don't think so: for HugeTLBFS it makes some redundant calls but in my testing always returns the node ID for the containing huge page even if the address given is not huge page aligned, and for THP you don't know whether a particular address is backed by a huge page so you have to step with the smallest granularity anyway. With large pages enabled the "small/large pages" count is misleading but I don't know any way to get this information on Linux except by parsing `/proc/self/smaps` which we probably don't want to do.
I see; thanks for the clarification. Re the misleading "small/large pages" count, can it be dropped? Or, what useful info does this count convey towards identifying wrongly placed OS pages?
-------------
PR: https://git.openjdk.org/jdk/pull/11635
More information about the hotspot-gc-dev
mailing list