Skip to content

Commit 5166094

Browse files
committedSep 9, 2020
8252957: Wrong comment in CgroupV1Subsystem::cpu_quota
The comment is wrong. The 'us' in 'cpu.cfs_quota_us' stands for microseconds, which is read verbatim. Similarly for cgroups v2 all units in 'cpu.max' are in microseconds. Reviewed-by: shade, hseigel
1 parent 6329de4 commit 5166094

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎src/hotspot/os/linux/cgroupV1Subsystem_linux.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -203,11 +203,11 @@ char * CgroupV1Subsystem::cpu_cpuset_memory_nodes() {
203203

204204
/* cpu_quota
205205
*
206-
* Return the number of milliseconds per period
206+
* Return the number of microseconds per period
207207
* process is guaranteed to run.
208208
*
209209
* return:
210-
* quota time in milliseconds
210+
* quota time in microseconds
211211
* -1 for no quota
212212
* OSCONTAINER_ERROR for not supported
213213
*/

‎src/hotspot/os/linux/cgroupV2Subsystem_linux.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ int CgroupV2Subsystem::cpu_shares() {
7474

7575
/* cpu_quota
7676
*
77-
* Return the number of milliseconds per period
77+
* Return the number of microseconds per period
7878
* process is guaranteed to run.
7979
*
8080
* return:
81-
* quota time in milliseconds
81+
* quota time in microseconds
8282
* -1 for no quota
8383
* OSCONTAINER_ERROR for not supported
8484
*/

0 commit comments

Comments
 (0)
Please sign in to comment.