diff options
Diffstat (limited to 'kernel/workqueue.c')
-rw-r--r-- | kernel/workqueue.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/kernel/workqueue.c b/kernel/workqueue.c index ee6578b578ad..5ca7ce9ce754 100644 --- a/kernel/workqueue.c +++ b/kernel/workqueue.c | |||
@@ -251,10 +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_freezable_wq __read_mostly; | ||
254 | EXPORT_SYMBOL_GPL(system_wq); | 255 | EXPORT_SYMBOL_GPL(system_wq); |
255 | EXPORT_SYMBOL_GPL(system_long_wq); | 256 | EXPORT_SYMBOL_GPL(system_long_wq); |
256 | EXPORT_SYMBOL_GPL(system_nrt_wq); | 257 | EXPORT_SYMBOL_GPL(system_nrt_wq); |
257 | EXPORT_SYMBOL_GPL(system_unbound_wq); | 258 | EXPORT_SYMBOL_GPL(system_unbound_wq); |
259 | EXPORT_SYMBOL_GPL(system_freezable_wq); | ||
258 | 260 | ||
259 | #define CREATE_TRACE_POINTS | 261 | #define CREATE_TRACE_POINTS |
260 | #include <trace/events/workqueue.h> | 262 | #include <trace/events/workqueue.h> |
@@ -316,6 +318,11 @@ static inline int __next_wq_cpu(int cpu, const struct cpumask *mask, | |||
316 | 318 | ||
317 | static struct debug_obj_descr work_debug_descr; | 319 | static struct debug_obj_descr work_debug_descr; |
318 | 320 | ||
321 | static void *work_debug_hint(void *addr) | ||
322 | { | ||
323 | return ((struct work_struct *) addr)->func; | ||
324 | } | ||
325 | |||
319 | /* | 326 | /* |
320 | * fixup_init is called when: | 327 | * fixup_init is called when: |
321 | * - an active object is initialized | 328 | * - an active object is initialized |
@@ -387,6 +394,7 @@ static int work_fixup_free(void *addr, enum debug_obj_state state) | |||
387 | 394 | ||
388 | static struct debug_obj_descr work_debug_descr = { | 395 | static struct debug_obj_descr work_debug_descr = { |
389 | .name = "work_struct", | 396 | .name = "work_struct", |
397 | .debug_hint = work_debug_hint, | ||
390 | .fixup_init = work_fixup_init, | 398 | .fixup_init = work_fixup_init, |
391 | .fixup_activate = work_fixup_activate, | 399 | .fixup_activate = work_fixup_activate, |
392 | .fixup_free = work_fixup_free, | 400 | .fixup_free = work_fixup_free, |
@@ -3775,8 +3783,10 @@ static int __init init_workqueues(void) | |||
3775 | system_nrt_wq = alloc_workqueue("events_nrt", WQ_NON_REENTRANT, 0); | 3783 | system_nrt_wq = alloc_workqueue("events_nrt", WQ_NON_REENTRANT, 0); |
3776 | system_unbound_wq = alloc_workqueue("events_unbound", WQ_UNBOUND, | 3784 | system_unbound_wq = alloc_workqueue("events_unbound", WQ_UNBOUND, |
3777 | WQ_UNBOUND_MAX_ACTIVE); | 3785 | WQ_UNBOUND_MAX_ACTIVE); |
3786 | system_freezable_wq = alloc_workqueue("events_freezable", | ||
3787 | WQ_FREEZABLE, 0); | ||
3778 | BUG_ON(!system_wq || !system_long_wq || !system_nrt_wq || | 3788 | BUG_ON(!system_wq || !system_long_wq || !system_nrt_wq || |
3779 | !system_unbound_wq); | 3789 | !system_unbound_wq || !system_freezable_wq); |
3780 | return 0; | 3790 | return 0; |
3781 | } | 3791 | } |
3782 | early_initcall(init_workqueues); | 3792 | early_initcall(init_workqueues); |