forked from mirrors/linux
		
	cgroup: move cgroup files under kernel/cgroup/
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>
This commit is contained in:
		
							parent
							
								
									5f617ebbdf
								
							
						
					
					
						commit
						201af4c0fa
					
				
					 6 changed files with 6 additions and 4 deletions
				
			
		|  | @ -64,10 +64,7 @@ obj-$(CONFIG_KEXEC) += kexec.o | |||
| obj-$(CONFIG_KEXEC_FILE) += kexec_file.o | ||||
| obj-$(CONFIG_BACKTRACE_SELF_TEST) += backtracetest.o | ||||
| obj-$(CONFIG_COMPAT) += compat.o | ||||
| obj-$(CONFIG_CGROUPS) += cgroup.o | ||||
| obj-$(CONFIG_CGROUP_FREEZER) += cgroup_freezer.o | ||||
| obj-$(CONFIG_CGROUP_PIDS) += cgroup_pids.o | ||||
| obj-$(CONFIG_CPUSETS) += cpuset.o | ||||
| obj-$(CONFIG_CGROUPS) += cgroup/ | ||||
| obj-$(CONFIG_UTS_NS) += utsname.o | ||||
| obj-$(CONFIG_USER_NS) += user_namespace.o | ||||
| obj-$(CONFIG_PID_NS) += pid_namespace.o | ||||
|  |  | |||
							
								
								
									
										5
									
								
								kernel/cgroup/Makefile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								kernel/cgroup/Makefile
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,5 @@ | |||
| obj-y := cgroup.o | ||||
| 
 | ||||
| obj-$(CONFIG_CGROUP_FREEZER) += freezer.o | ||||
| obj-$(CONFIG_CGROUP_PIDS) += pids.o | ||||
| obj-$(CONFIG_CPUSETS) += cpuset.o | ||||
		Loading…
	
		Reference in a new issue
	
	 Tejun Heo
						Tejun Heo