]> Git Repo - linux.git/commitdiff
cgroups: annotate two variables with __read_mostly
authorLi Zefan <[email protected]>
Fri, 25 Jul 2008 08:46:56 +0000 (01:46 -0700)
committerLinus Torvalds <[email protected]>
Fri, 25 Jul 2008 17:53:35 +0000 (10:53 -0700)
- need_forkexit_callback will be read only after system boot.
- use_task_css_set_links will be read only after it's set.

And these 2 variables are checked when a new process is forked.

Signed-off-by: Li Zefan <[email protected]>
Acked-by: Paul Menage <[email protected]>
Acked-by: KOSAKI Motohiro <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
kernel/cgroup.c

index 6836a9063634e5d22a9a84fa01c60f95347c3062..70d083c6fb6bffbc948949fdb2bea872973d86f6 100644 (file)
@@ -118,7 +118,7 @@ static int root_count;
  * extra work in the fork/exit path if none of the subsystems need to
  * be called.
  */
-static int need_forkexit_callback;
+static int need_forkexit_callback __read_mostly;
 static int need_mm_owner_callback __read_mostly;
 
 /* convenient tests for these bits */
@@ -220,7 +220,7 @@ static struct hlist_head *css_set_hash(struct cgroup_subsys_state *css[])
  * task until after the first call to cgroup_iter_start(). This
  * reduces the fork()/exit() overhead for people who have cgroups
  * compiled into their kernel but not actually in use */
-static int use_task_css_set_links;
+static int use_task_css_set_links __read_mostly;
 
 /* When we create or destroy a css_set, the operation simply
  * takes/releases a reference count on all the cgroups referenced
This page took 0.055121 seconds and 4 git commands to generate.