diff options
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/workqueue.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kernel/workqueue.c b/kernel/workqueue.c index 572f559f6cb9..1b64d225f067 100644 --- a/kernel/workqueue.c +++ b/kernel/workqueue.c | |||
@@ -251,12 +251,12 @@ struct workqueue_struct *system_wq __read_mostly; | |||
251 | struct workqueue_struct *system_long_wq __read_mostly; | 251 | struct workqueue_struct *system_long_wq __read_mostly; |
252 | struct workqueue_struct *system_nrt_wq __read_mostly; | 252 | struct workqueue_struct *system_nrt_wq __read_mostly; |
253 | struct workqueue_struct *system_unbound_wq __read_mostly; | 253 | struct workqueue_struct *system_unbound_wq __read_mostly; |
254 | struct workqueue_struct *system_freezeable_wq __read_mostly; | 254 | struct workqueue_struct *system_freezable_wq __read_mostly; |
255 | EXPORT_SYMBOL_GPL(system_wq); | 255 | EXPORT_SYMBOL_GPL(system_wq); |
256 | EXPORT_SYMBOL_GPL(system_long_wq); | 256 | EXPORT_SYMBOL_GPL(system_long_wq); |
257 | EXPORT_SYMBOL_GPL(system_nrt_wq); | 257 | EXPORT_SYMBOL_GPL(system_nrt_wq); |
258 | EXPORT_SYMBOL_GPL(system_unbound_wq); | 258 | EXPORT_SYMBOL_GPL(system_unbound_wq); |
259 | EXPORT_SYMBOL_GPL(system_freezeable_wq); | 259 | EXPORT_SYMBOL_GPL(system_freezable_wq); |
260 | 260 | ||
261 | #define CREATE_TRACE_POINTS | 261 | #define CREATE_TRACE_POINTS |
262 | #include <trace/events/workqueue.h> | 262 | #include <trace/events/workqueue.h> |
@@ -3777,10 +3777,10 @@ static int __init init_workqueues(void) | |||
3777 | system_nrt_wq = alloc_workqueue("events_nrt", WQ_NON_REENTRANT, 0); | 3777 | system_nrt_wq = alloc_workqueue("events_nrt", WQ_NON_REENTRANT, 0); |
3778 | system_unbound_wq = alloc_workqueue("events_unbound", WQ_UNBOUND, | 3778 | system_unbound_wq = alloc_workqueue("events_unbound", WQ_UNBOUND, |
3779 | WQ_UNBOUND_MAX_ACTIVE); | 3779 | WQ_UNBOUND_MAX_ACTIVE); |
3780 | system_freezeable_wq = alloc_workqueue("events_freezeable", | 3780 | system_freezable_wq = alloc_workqueue("events_freezable", |
3781 | WQ_FREEZEABLE, 0); | 3781 | WQ_FREEZABLE, 0); |
3782 | BUG_ON(!system_wq || !system_long_wq || !system_nrt_wq || | 3782 | BUG_ON(!system_wq || !system_long_wq || !system_nrt_wq || |
3783 | !system_unbound_wq || !system_freezeable_wq); | 3783 | !system_unbound_wq || !system_freezable_wq); |
3784 | return 0; | 3784 | return 0; |
3785 | } | 3785 | } |
3786 | early_initcall(init_workqueues); | 3786 | early_initcall(init_workqueues); |