mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
a5c2b93f79
stat is too generic a name and ends up causing subtle confusions. It'll be made generic so that controllers can plug into it, which will make the problem worse. Let's rename it to something more specific - cgroup_rstat for cgroup recursive stat. First, rename kernel/cgroup/stat.c to kernel/cgroup/rstat.c. No content changes. Signed-off-by: Tejun Heo <tj@kernel.org>
9 lines
272 B
Makefile
9 lines
272 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-y := cgroup.o rstat.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
|