Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 234968
b: refs/heads/master
c: 24d51ad
h: refs/heads/master
v: v3
  • Loading branch information
Tejun Heo committed Feb 21, 2011
1 parent ac9ce39 commit 4a2528e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 43d133c18b44e7d82d82ef0dcc2bddd55d5dfe81
refs/heads/master: 24d51add7438f9696a7205927bf9de3c5c787a58
6 changes: 3 additions & 3 deletions trunk/include/linux/workqueue.h
Original file line number Diff line number Diff line change
Expand Up @@ -287,14 +287,14 @@ enum {
* executed immediately as long as max_active limit is not reached and
* resources are available.
*
* system_freezeable_wq is equivalent to system_wq except that it's
* freezeable.
* system_freezable_wq is equivalent to system_wq except that it's
* freezable.
*/
extern struct workqueue_struct *system_wq;
extern struct workqueue_struct *system_long_wq;
extern struct workqueue_struct *system_nrt_wq;
extern struct workqueue_struct *system_unbound_wq;
extern struct workqueue_struct *system_freezeable_wq;
extern struct workqueue_struct *system_freezable_wq;

extern struct workqueue_struct *
__alloc_workqueue_key(const char *name, unsigned int flags, int max_active,
Expand Down
10 changes: 5 additions & 5 deletions trunk/kernel/workqueue.c
Original file line number Diff line number Diff line change
Expand Up @@ -251,12 +251,12 @@ struct workqueue_struct *system_wq __read_mostly;
struct workqueue_struct *system_long_wq __read_mostly;
struct workqueue_struct *system_nrt_wq __read_mostly;
struct workqueue_struct *system_unbound_wq __read_mostly;
struct workqueue_struct *system_freezeable_wq __read_mostly;
struct workqueue_struct *system_freezable_wq __read_mostly;
EXPORT_SYMBOL_GPL(system_wq);
EXPORT_SYMBOL_GPL(system_long_wq);
EXPORT_SYMBOL_GPL(system_nrt_wq);
EXPORT_SYMBOL_GPL(system_unbound_wq);
EXPORT_SYMBOL_GPL(system_freezeable_wq);
EXPORT_SYMBOL_GPL(system_freezable_wq);

#define CREATE_TRACE_POINTS
#include <trace/events/workqueue.h>
Expand Down Expand Up @@ -3777,10 +3777,10 @@ static int __init init_workqueues(void)
system_nrt_wq = alloc_workqueue("events_nrt", WQ_NON_REENTRANT, 0);
system_unbound_wq = alloc_workqueue("events_unbound", WQ_UNBOUND,
WQ_UNBOUND_MAX_ACTIVE);
system_freezeable_wq = alloc_workqueue("events_freezeable",
WQ_FREEZEABLE, 0);
system_freezable_wq = alloc_workqueue("events_freezable",
WQ_FREEZABLE, 0);
BUG_ON(!system_wq || !system_long_wq || !system_nrt_wq ||
!system_unbound_wq || !system_freezeable_wq);
!system_unbound_wq || !system_freezable_wq);
return 0;
}
early_initcall(init_workqueues);

0 comments on commit 4a2528e

Please sign in to comment.