@@ -45,7 +45,6 @@ import (
45
45
kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
46
46
"k8s.io/kubernetes/pkg/kubelet/qos"
47
47
kubelettypes "k8s.io/kubernetes/pkg/kubelet/types"
48
- cgroups "k8s.io/kubernetes/third_party/forked/cgroups"
49
48
"k8s.io/utils/ptr"
50
49
)
51
50
@@ -339,38 +338,35 @@ var isCgroup2UnifiedMode = func() bool {
339
338
return libcontainercgroups .IsCgroup2UnifiedMode ()
340
339
}
341
340
342
- var (
343
- swapControllerAvailability bool
344
- swapControllerAvailabilityOnce sync.Once
345
- )
346
-
347
341
// Note: this function variable is being added here so it would be possible to mock
348
342
// the swap controller availability for unit tests by assigning a new function to it. Without it,
349
343
// the swap controller availability would solely depend on the environment running the test.
350
- var swapControllerAvailable = func () bool {
344
+ var swapControllerAvailable = sync . OnceValue ( func () bool {
351
345
// See https://github.com/containerd/containerd/pull/7838/
352
- swapControllerAvailabilityOnce .Do (func () {
353
- const warn = "Failed to detect the availability of the swap controller, assuming not available"
354
- p := "/sys/fs/cgroup/memory/memory.memsw.limit_in_bytes"
355
- if isCgroup2UnifiedMode () {
356
- // memory.swap.max does not exist in the cgroup root, so we check /sys/fs/cgroup/<SELF>/memory.swap.max
357
- _ , unified , err := cgroups .ParseCgroupFileUnified ("/proc/self/cgroup" )
358
- if err != nil {
359
- klog .V (5 ).ErrorS (fmt .Errorf ("failed to parse /proc/self/cgroup: %w" , err ), warn )
360
- return
361
- }
362
- p = filepath .Join ("/sys/fs/cgroup" , unified , "memory.swap.max" )
346
+ const warn = "Failed to detect the availability of the swap controller, assuming not available"
347
+ p := "/sys/fs/cgroup/memory/memory.memsw.limit_in_bytes"
348
+ if isCgroup2UnifiedMode () {
349
+ // memory.swap.max does not exist in the cgroup root, so we check /sys/fs/cgroup/<SELF>/memory.swap.max
350
+ cm , err := libcontainercgroups .ParseCgroupFile ("/proc/self/cgroup" )
351
+ if err != nil {
352
+ klog .V (5 ).ErrorS (fmt .Errorf ("failed to parse /proc/self/cgroup: %w" , err ), warn )
353
+ return false
363
354
}
364
- if _ , err := os .Stat (p ); err != nil {
365
- if ! errors .Is (err , os .ErrNotExist ) {
366
- klog .V (5 ).ErrorS (err , warn )
367
- }
368
- return
355
+ // Fr cgroup v2 unified hierarchy, there are no per-controller
356
+ // cgroup paths, so the cm map returned by ParseCgroupFile above
357
+ // has a single element where the key is empty string ("") and
358
+ // the value is the cgroup path the <pid> is in.
359
+ p = filepath .Join ("/sys/fs/cgroup" , cm ["" ], "memory.swap.max" )
360
+ }
361
+ if _ , err := os .Stat (p ); err != nil {
362
+ if ! errors .Is (err , os .ErrNotExist ) {
363
+ klog .V (5 ).ErrorS (err , warn )
369
364
}
370
- swapControllerAvailability = true
371
- })
372
- return swapControllerAvailability
373
- }
365
+ return false
366
+ }
367
+
368
+ return true
369
+ })
374
370
375
371
type swapConfigurationHelper struct {
376
372
machineInfo cadvisorv1.MachineInfo
@@ -392,7 +388,6 @@ func (m swapConfigurationHelper) ConfigureLimitedSwap(lcr *runtimeapi.LinuxConta
392
388
393
389
containerMemoryRequest := container .Resources .Requests .Memory ()
394
390
swapLimit , err := calcSwapForBurstablePods (containerMemoryRequest .Value (), int64 (m .machineInfo .MemoryCapacity ), int64 (m .machineInfo .SwapCapacity ))
395
-
396
391
if err != nil {
397
392
klog .ErrorS (err , "cannot calculate swap allocation amount; disallowing swap" )
398
393
m .ConfigureNoSwap (lcr )
0 commit comments