mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
workqueue: add system_freezeable_wq
Add system wide freezeable workqueue. Signed-off-by: Tejun Heo <tj@kernel.org> Acked-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Cc: "Rafael J. Wysocki" <rjw@sisk.pl>
This commit is contained in:
parent
c534a107e8
commit
4149efb22d
@ -286,11 +286,15 @@ enum {
|
|||||||
* any specific CPU, not concurrency managed, and all queued works are
|
* any specific CPU, not concurrency managed, and all queued works are
|
||||||
* executed immediately as long as max_active limit is not reached and
|
* executed immediately as long as max_active limit is not reached and
|
||||||
* resources are available.
|
* resources are available.
|
||||||
|
*
|
||||||
|
* system_freezeable_wq is equivalent to system_wq except that it's
|
||||||
|
* freezeable.
|
||||||
*/
|
*/
|
||||||
extern struct workqueue_struct *system_wq;
|
extern struct workqueue_struct *system_wq;
|
||||||
extern struct workqueue_struct *system_long_wq;
|
extern struct workqueue_struct *system_long_wq;
|
||||||
extern struct workqueue_struct *system_nrt_wq;
|
extern struct workqueue_struct *system_nrt_wq;
|
||||||
extern struct workqueue_struct *system_unbound_wq;
|
extern struct workqueue_struct *system_unbound_wq;
|
||||||
|
extern struct workqueue_struct *system_freezeable_wq;
|
||||||
|
|
||||||
extern struct workqueue_struct *
|
extern struct workqueue_struct *
|
||||||
__alloc_workqueue_key(const char *name, unsigned int flags, int max_active,
|
__alloc_workqueue_key(const char *name, unsigned int flags, int max_active,
|
||||||
|
@ -249,10 +249,12 @@ struct workqueue_struct *system_wq __read_mostly;
|
|||||||
struct workqueue_struct *system_long_wq __read_mostly;
|
struct workqueue_struct *system_long_wq __read_mostly;
|
||||||
struct workqueue_struct *system_nrt_wq __read_mostly;
|
struct workqueue_struct *system_nrt_wq __read_mostly;
|
||||||
struct workqueue_struct *system_unbound_wq __read_mostly;
|
struct workqueue_struct *system_unbound_wq __read_mostly;
|
||||||
|
struct workqueue_struct *system_freezeable_wq __read_mostly;
|
||||||
EXPORT_SYMBOL_GPL(system_wq);
|
EXPORT_SYMBOL_GPL(system_wq);
|
||||||
EXPORT_SYMBOL_GPL(system_long_wq);
|
EXPORT_SYMBOL_GPL(system_long_wq);
|
||||||
EXPORT_SYMBOL_GPL(system_nrt_wq);
|
EXPORT_SYMBOL_GPL(system_nrt_wq);
|
||||||
EXPORT_SYMBOL_GPL(system_unbound_wq);
|
EXPORT_SYMBOL_GPL(system_unbound_wq);
|
||||||
|
EXPORT_SYMBOL_GPL(system_freezeable_wq);
|
||||||
|
|
||||||
#define CREATE_TRACE_POINTS
|
#define CREATE_TRACE_POINTS
|
||||||
#include <trace/events/workqueue.h>
|
#include <trace/events/workqueue.h>
|
||||||
@ -3764,8 +3766,10 @@ static int __init init_workqueues(void)
|
|||||||
system_nrt_wq = alloc_workqueue("events_nrt", WQ_NON_REENTRANT, 0);
|
system_nrt_wq = alloc_workqueue("events_nrt", WQ_NON_REENTRANT, 0);
|
||||||
system_unbound_wq = alloc_workqueue("events_unbound", WQ_UNBOUND,
|
system_unbound_wq = alloc_workqueue("events_unbound", WQ_UNBOUND,
|
||||||
WQ_UNBOUND_MAX_ACTIVE);
|
WQ_UNBOUND_MAX_ACTIVE);
|
||||||
|
system_freezeable_wq = alloc_workqueue("events_freezeable",
|
||||||
|
WQ_FREEZEABLE, 0);
|
||||||
BUG_ON(!system_wq || !system_long_wq || !system_nrt_wq ||
|
BUG_ON(!system_wq || !system_long_wq || !system_nrt_wq ||
|
||||||
!system_unbound_wq);
|
!system_unbound_wq || !system_freezeable_wq);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
early_initcall(init_workqueues);
|
early_initcall(init_workqueues);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user