mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
22714a2ba4
Pull cgroup updates from Tejun Heo: "Cgroup2 cpu controller support is finally merged. - Basic cpu statistics support to allow monitoring by default without the CPU controller enabled. - cgroup2 cpu controller support. - /sys/kernel/cgroup files to help dealing with new / optional features" * 'for-4.15' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup: cgroup: export list of cgroups v2 features using sysfs cgroup: export list of delegatable control files using sysfs cgroup: mark @cgrp __maybe_unused in cpu_stat_show() MAINTAINERS: relocate cpuset.c cgroup, sched: Move basic cpu stats from cgroup.stat to cpu.stat sched: Implement interface for cgroup unified hierarchy sched: Misc preps for cgroup unified hierarchy interface sched/cputime: Add dummy cputime_adjust() implementation for CONFIG_VIRT_CPU_ACCOUNTING_NATIVE cgroup: statically initialize init_css_set->dfl_cgrp cgroup: Implement cgroup2 basic CPU usage accounting cpuacct: Introduce cgroup_account_cputime[_field]() sched/cputime: Expose cputime_adjust()
9 lines
271 B
Makefile
9 lines
271 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-y := cgroup.o stat.o namespace.o cgroup-v1.o
|
|
|
|
obj-$(CONFIG_CGROUP_FREEZER) += freezer.o
|
|
obj-$(CONFIG_CGROUP_PIDS) += pids.o
|
|
obj-$(CONFIG_CGROUP_RDMA) += rdma.o
|
|
obj-$(CONFIG_CPUSETS) += cpuset.o
|
|
obj-$(CONFIG_CGROUP_DEBUG) += debug.o
|