diff options
author | Tejun Heo <tj@kernel.org> | 2018-03-14 22:45:14 +0300 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2018-03-19 20:12:03 +0300 |
commit | 8f36aaec9c929f2864196b0799203491f6a67dc6 (patch) | |
tree | 635d3a526ad921ea402b805a675725108e7c24af /include/linux/cgroup-defs.h | |
parent | 05f0fe6b74dbd7690a4cbd61810948b7d575576a (diff) | |
download | linux-8f36aaec9c929f2864196b0799203491f6a67dc6.tar.xz |
cgroup: Use rcu_work instead of explicit rcu and work item
Workqueue now has rcu_work. Use it instead of open-coding rcu -> work
item bouncing.
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'include/linux/cgroup-defs.h')
-rw-r--r-- | include/linux/cgroup-defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/cgroup-defs.h b/include/linux/cgroup-defs.h index 9f242b876fde..92d7640632ef 100644 --- a/include/linux/cgroup-defs.h +++ b/include/linux/cgroup-defs.h @@ -151,8 +151,8 @@ struct cgroup_subsys_state { atomic_t online_cnt; /* percpu_ref killing and RCU release */ - struct rcu_head rcu_head; struct work_struct destroy_work; + struct rcu_work destroy_rwork; /* * PI: the parent css. Placed here for cache proximity to following |