mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
201af4c0fa
They're growing to be too many and planned to get split further. Move them under their own directory. kernel/cgroup.c -> kernel/cgroup/cgroup.c kernel/cgroup_freezer.c -> kernel/cgroup/freezer.c kernel/cgroup_pids.c -> kernel/cgroup/pids.c kernel/cpuset.c -> kernel/cgroup/cpuset.c Signed-off-by: Tejun Heo <tj@kernel.org> Acked-by: Acked-by: Zefan Li <lizefan@huawei.com>
6 lines
131 B
Makefile
6 lines
131 B
Makefile
obj-y := cgroup.o
|
|
|
|
obj-$(CONFIG_CGROUP_FREEZER) += freezer.o
|
|
obj-$(CONFIG_CGROUP_PIDS) += pids.o
|
|
obj-$(CONFIG_CPUSETS) += cpuset.o
|