Skip to content

Commit 3ed80a6

Browse files
committed
cgroup: drop module support
With module supported dropped from net_prio, no controller is using cgroup module support. None of actual resource controllers can be built as a module and we aren't gonna add new controllers which don't control resources. This patch drops module support from cgroup. * cgroup_[un]load_subsys() and cgroup_subsys->module removed. * As there's no point in distinguishing IS_BUILTIN() and IS_MODULE(), cgroup_subsys.h now uses IS_ENABLED() directly. * enum cgroup_subsys_id now exactly matches the list of enabled controllers as ordered in cgroup_subsys.h. * cgroup_subsys[] is now a contiguously occupied array. Size specification is no longer necessary and dropped. * for_each_builtin_subsys() is removed and for_each_subsys() is updated to not require any locking. * module ref handling is removed from rebind_subsystems(). * Module related comments dropped. v2: Rebased on top of fe1217c ("net: net_cls: move cgroupfs classid handling into core"). v3: Added {} around the if (need_forkexit_callback) block in cgroup_post_fork() for readability as suggested by Li. Signed-off-by: Tejun Heo <[email protected]> Acked-by: Li Zefan <[email protected]>
1 parent af63633 commit 3ed80a6

File tree

6 files changed

+32
-308
lines changed

6 files changed

+32
-308
lines changed

block/blk-cgroup.c

-1
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,6 @@ struct cgroup_subsys blkio_subsys = {
914914
.can_attach = blkcg_can_attach,
915915
.subsys_id = blkio_subsys_id,
916916
.base_cftypes = blkcg_files,
917-
.module = THIS_MODULE,
918917
};
919918
EXPORT_SYMBOL_GPL(blkio_subsys);
920919

include/linux/cgroup.h

+4-25
Original file line numberDiff line numberDiff line change
@@ -37,28 +37,13 @@ extern void cgroup_post_fork(struct task_struct *p);
3737
extern void cgroup_exit(struct task_struct *p, int run_callbacks);
3838
extern int cgroupstats_build(struct cgroupstats *stats,
3939
struct dentry *dentry);
40-
extern int cgroup_load_subsys(struct cgroup_subsys *ss);
41-
extern void cgroup_unload_subsys(struct cgroup_subsys *ss);
4240

4341
extern int proc_cgroup_show(struct seq_file *, void *);
4442

45-
/*
46-
* Define the enumeration of all cgroup subsystems.
47-
*
48-
* We define ids for builtin subsystems and then modular ones.
49-
*/
43+
/* define the enumeration of all cgroup subsystems */
5044
#define SUBSYS(_x) _x ## _subsys_id,
5145
enum cgroup_subsys_id {
52-
#define IS_SUBSYS_ENABLED(option) IS_BUILTIN(option)
5346
#include <linux/cgroup_subsys.h>
54-
#undef IS_SUBSYS_ENABLED
55-
CGROUP_BUILTIN_SUBSYS_COUNT,
56-
57-
__CGROUP_SUBSYS_TEMP_PLACEHOLDER = CGROUP_BUILTIN_SUBSYS_COUNT - 1,
58-
59-
#define IS_SUBSYS_ENABLED(option) IS_MODULE(option)
60-
#include <linux/cgroup_subsys.h>
61-
#undef IS_SUBSYS_ENABLED
6247
CGROUP_SUBSYS_COUNT,
6348
};
6449
#undef SUBSYS
@@ -370,10 +355,9 @@ struct css_set {
370355
struct list_head cgrp_links;
371356

372357
/*
373-
* Set of subsystem states, one for each subsystem. This array
374-
* is immutable after creation apart from the init_css_set
375-
* during subsystem registration (at boot time) and modular subsystem
376-
* loading/unloading.
358+
* Set of subsystem states, one for each subsystem. This array is
359+
* immutable after creation apart from the init_css_set during
360+
* subsystem registration (at boot time).
377361
*/
378362
struct cgroup_subsys_state *subsys[CGROUP_SUBSYS_COUNT];
379363

@@ -620,15 +604,10 @@ struct cgroup_subsys {
620604
/* base cftypes, automatically [de]registered with subsys itself */
621605
struct cftype *base_cftypes;
622606
struct cftype_set base_cftset;
623-
624-
/* should be defined only by modular subsystems */
625-
struct module *module;
626607
};
627608

628609
#define SUBSYS(_x) extern struct cgroup_subsys _x ## _subsys;
629-
#define IS_SUBSYS_ENABLED(option) IS_BUILTIN(option)
630610
#include <linux/cgroup_subsys.h>
631-
#undef IS_SUBSYS_ENABLED
632611
#undef SUBSYS
633612

634613
/**

include/linux/cgroup_subsys.h

+12-12
Original file line numberDiff line numberDiff line change
@@ -3,51 +3,51 @@
33
*
44
* DO NOT ADD ANY SUBSYSTEM WITHOUT EXPLICIT ACKS FROM CGROUP MAINTAINERS.
55
*/
6-
#if IS_SUBSYS_ENABLED(CONFIG_CPUSETS)
6+
#if IS_ENABLED(CONFIG_CPUSETS)
77
SUBSYS(cpuset)
88
#endif
99

10-
#if IS_SUBSYS_ENABLED(CONFIG_CGROUP_DEBUG)
10+
#if IS_ENABLED(CONFIG_CGROUP_DEBUG)
1111
SUBSYS(debug)
1212
#endif
1313

14-
#if IS_SUBSYS_ENABLED(CONFIG_CGROUP_SCHED)
14+
#if IS_ENABLED(CONFIG_CGROUP_SCHED)
1515
SUBSYS(cpu_cgroup)
1616
#endif
1717

18-
#if IS_SUBSYS_ENABLED(CONFIG_CGROUP_CPUACCT)
18+
#if IS_ENABLED(CONFIG_CGROUP_CPUACCT)
1919
SUBSYS(cpuacct)
2020
#endif
2121

22-
#if IS_SUBSYS_ENABLED(CONFIG_MEMCG)
22+
#if IS_ENABLED(CONFIG_MEMCG)
2323
SUBSYS(mem_cgroup)
2424
#endif
2525

26-
#if IS_SUBSYS_ENABLED(CONFIG_CGROUP_DEVICE)
26+
#if IS_ENABLED(CONFIG_CGROUP_DEVICE)
2727
SUBSYS(devices)
2828
#endif
2929

30-
#if IS_SUBSYS_ENABLED(CONFIG_CGROUP_FREEZER)
30+
#if IS_ENABLED(CONFIG_CGROUP_FREEZER)
3131
SUBSYS(freezer)
3232
#endif
3333

34-
#if IS_SUBSYS_ENABLED(CONFIG_CGROUP_NET_CLASSID)
34+
#if IS_ENABLED(CONFIG_CGROUP_NET_CLASSID)
3535
SUBSYS(net_cls)
3636
#endif
3737

38-
#if IS_SUBSYS_ENABLED(CONFIG_BLK_CGROUP)
38+
#if IS_ENABLED(CONFIG_BLK_CGROUP)
3939
SUBSYS(blkio)
4040
#endif
4141

42-
#if IS_SUBSYS_ENABLED(CONFIG_CGROUP_PERF)
42+
#if IS_ENABLED(CONFIG_CGROUP_PERF)
4343
SUBSYS(perf)
4444
#endif
4545

46-
#if IS_SUBSYS_ENABLED(CONFIG_CGROUP_NET_PRIO)
46+
#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
4747
SUBSYS(net_prio)
4848
#endif
4949

50-
#if IS_SUBSYS_ENABLED(CONFIG_CGROUP_HUGETLB)
50+
#if IS_ENABLED(CONFIG_CGROUP_HUGETLB)
5151
SUBSYS(hugetlb)
5252
#endif
5353
/*

0 commit comments

Comments
 (0)