mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
a28f8f5e99
The debug cgroup currently resides within cgroup-v1.c and is enabled only for v1 cgroup. To enable the debug cgroup also for v2, it makes sense to put the code into its own file as it will no longer be v1 specific. There is no change to the debug cgroup specific code. Signed-off-by: Waiman Long <longman@redhat.com> Signed-off-by: Tejun Heo <tj@kernel.org>
8 lines
229 B
Makefile
8 lines
229 B
Makefile
obj-y := cgroup.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
|