Skip to content

Commit b515963

Browse files
systemd cpu quota ignores -1
Signed-off-by: Derek Carr <[email protected]>
1 parent 0cbfd83 commit b515963

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

libcontainer/cgroups/systemd/apply_systemd.go

+14-7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ package systemd
55
import (
66
"errors"
77
"fmt"
8+
"math"
89
"os"
910
"path/filepath"
1011
"strings"
@@ -295,13 +296,19 @@ func (m *Manager) Apply(pid int) error {
295296

296297
// cpu.cfs_quota_us and cpu.cfs_period_us are controlled by systemd.
297298
if c.Resources.CpuQuota != 0 && c.Resources.CpuPeriod != 0 {
298-
cpuQuotaPerSecUSec := uint64(c.Resources.CpuQuota*1000000) / c.Resources.CpuPeriod
299-
// systemd converts CPUQuotaPerSecUSec (microseconds per CPU second) to CPUQuota
300-
// (integer percentage of CPU) internally. This means that if a fractional percent of
301-
// CPU is indicated by Resources.CpuQuota, we need to round up to the nearest
302-
// 10ms (1% of a second) such that child cgroups can set the cpu.cfs_quota_us they expect.
303-
if cpuQuotaPerSecUSec%10000 != 0 {
304-
cpuQuotaPerSecUSec = ((cpuQuotaPerSecUSec / 10000) + 1) * 10000
299+
// corresponds to USEC_INFINITY in systemd
300+
// if USEC_INFINITY is provided, CPUQuota is left unbound by systemd
301+
// always setting a property value ensures we can apply a quota and remove it later
302+
cpuQuotaPerSecUSec := uint64(math.MaxUint64)
303+
if c.Resources.CpuQuota > 0 {
304+
// systemd converts CPUQuotaPerSecUSec (microseconds per CPU second) to CPUQuota
305+
// (integer percentage of CPU) internally. This means that if a fractional percent of
306+
// CPU is indicated by Resources.CpuQuota, we need to round up to the nearest
307+
// 10ms (1% of a second) such that child cgroups can set the cpu.cfs_quota_us they expect.
308+
cpuQuotaPerSecUSec = uint64(c.Resources.CpuQuota*1000000) / c.Resources.CpuPeriod
309+
if cpuQuotaPerSecUSec%10000 != 0 {
310+
cpuQuotaPerSecUSec = ((cpuQuotaPerSecUSec / 10000) + 1) * 10000
311+
}
305312
}
306313
properties = append(properties,
307314
newProp("CPUQuotaPerSecUSec", cpuQuotaPerSecUSec))

0 commit comments

Comments
 (0)