@@ -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"
@@ -295,13 +296,19 @@ func (m *Manager) Apply(pid int) error {
295
296
296
297
// cpu.cfs_quota_us and cpu.cfs_period_us are controlled by systemd.
297
298
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
+ }
305
312
}
306
313
properties = append (properties ,
307
314
newProp ("CPUQuotaPerSecUSec" , cpuQuotaPerSecUSec ))
0 commit comments