Skip to content

Commit 451f43b

Browse files
authored
Merge pull request #2 from sjenning/pick-1805-3.9
[3.9] UPSTREAM: 1805: fix systemd cpu quota for -1
2 parents 53345de + 3ceb752 commit 451f43b

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"
@@ -270,13 +271,19 @@ func (m *Manager) Apply(pid int) error {
270271

271272
// cpu.cfs_quota_us and cpu.cfs_period_us are controlled by systemd.
272273
if c.Resources.CpuQuota != 0 && c.Resources.CpuPeriod != 0 {
273-
cpuQuotaPerSecUSec := uint64(c.Resources.CpuQuota*1000000) / c.Resources.CpuPeriod
274-
// systemd converts CPUQuotaPerSecUSec (microseconds per CPU second) to CPUQuota
275-
// (integer percentage of CPU) internally. This means that if a fractional percent of
276-
// CPU is indicated by Resources.CpuQuota, we need to round up to the nearest
277-
// 10ms (1% of a second) such that child cgroups can set the cpu.cfs_quota_us they expect.
278-
if cpuQuotaPerSecUSec%10000 != 0 {
279-
cpuQuotaPerSecUSec = ((cpuQuotaPerSecUSec / 10000) + 1) * 10000
274+
// corresponds to USEC_INFINITY in systemd
275+
// if USEC_INFINITY is provided, CPUQuota is left unbound by systemd
276+
// always setting a property value ensures we can apply a quota and remove it later
277+
cpuQuotaPerSecUSec := uint64(math.MaxUint64)
278+
if c.Resources.CpuQuota > 0 {
279+
// systemd converts CPUQuotaPerSecUSec (microseconds per CPU second) to CPUQuota
280+
// (integer percentage of CPU) internally. This means that if a fractional percent of
281+
// CPU is indicated by Resources.CpuQuota, we need to round up to the nearest
282+
// 10ms (1% of a second) such that child cgroups can set the cpu.cfs_quota_us they expect.
283+
cpuQuotaPerSecUSec = uint64(c.Resources.CpuQuota*1000000) / c.Resources.CpuPeriod
284+
if cpuQuotaPerSecUSec%10000 != 0 {
285+
cpuQuotaPerSecUSec = ((cpuQuotaPerSecUSec / 10000) + 1) * 10000
286+
}
280287
}
281288
properties = append(properties,
282289
newProp("CPUQuotaPerSecUSec", cpuQuotaPerSecUSec))

0 commit comments

Comments
 (0)