@@ -5,6 +5,7 @@ package systemd
5
5
import (
6
6
"errors"
7
7
"fmt"
8
+ "math"
8
9
"os"
9
10
"path/filepath"
10
11
"strings"
@@ -270,13 +271,19 @@ func (m *Manager) Apply(pid int) error {
270
271
271
272
// cpu.cfs_quota_us and cpu.cfs_period_us are controlled by systemd.
272
273
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
+ }
280
287
}
281
288
properties = append (properties ,
282
289
newProp ("CPUQuotaPerSecUSec" , cpuQuotaPerSecUSec ))
0 commit comments