blob: 3f36d37ac5baded594762585f67807ee29d41109 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * workqueue.h --- work queue handling for Linux.
3 */
4
5#ifndef _LINUX_WORKQUEUE_H
6#define _LINUX_WORKQUEUE_H
7
8#include <linux/timer.h>
9#include <linux/linkage.h>
10#include <linux/bitops.h>
Johannes Berg4e6045f2007-10-18 23:39:55 -070011#include <linux/lockdep.h>
Tejun Heo7a22ad72010-06-29 10:07:13 +020012#include <linux/threads.h>
Linus Torvaldsa08727b2006-12-16 09:53:50 -080013#include <asm/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15struct workqueue_struct;
16
David Howells65f27f32006-11-22 14:55:48 +000017struct work_struct;
18typedef void (*work_func_t)(struct work_struct *work);
David Howells6bb49e52006-11-22 14:54:45 +000019
Linus Torvaldsa08727b2006-12-16 09:53:50 -080020/*
21 * The first word is the work queue pointer and the flags rolled into
22 * one
23 */
24#define work_data_bits(work) ((unsigned long *)(&(work)->data))
25
Tejun Heo22df02b2010-06-29 10:07:10 +020026enum {
27 WORK_STRUCT_PENDING_BIT = 0, /* work item is pending execution */
Tejun Heoaffee4b2010-06-29 10:07:12 +020028 WORK_STRUCT_LINKED_BIT = 1, /* next work is linked to this one */
Tejun Heo22df02b2010-06-29 10:07:10 +020029#ifdef CONFIG_DEBUG_OBJECTS_WORK
Tejun Heoaffee4b2010-06-29 10:07:12 +020030 WORK_STRUCT_STATIC_BIT = 2, /* static initializer (debugobjects) */
Tejun Heo73f53c42010-06-29 10:07:11 +020031 WORK_STRUCT_COLOR_SHIFT = 3, /* color for workqueue flushing */
Tejun Heo0f900042010-06-29 10:07:11 +020032#else
Tejun Heo73f53c42010-06-29 10:07:11 +020033 WORK_STRUCT_COLOR_SHIFT = 2, /* color for workqueue flushing */
Tejun Heo22df02b2010-06-29 10:07:10 +020034#endif
35
Tejun Heo73f53c42010-06-29 10:07:11 +020036 WORK_STRUCT_COLOR_BITS = 4,
37
Tejun Heo22df02b2010-06-29 10:07:10 +020038 WORK_STRUCT_PENDING = 1 << WORK_STRUCT_PENDING_BIT,
Tejun Heoaffee4b2010-06-29 10:07:12 +020039 WORK_STRUCT_LINKED = 1 << WORK_STRUCT_LINKED_BIT,
Tejun Heo22df02b2010-06-29 10:07:10 +020040#ifdef CONFIG_DEBUG_OBJECTS_WORK
41 WORK_STRUCT_STATIC = 1 << WORK_STRUCT_STATIC_BIT,
42#else
43 WORK_STRUCT_STATIC = 0,
44#endif
45
Tejun Heo73f53c42010-06-29 10:07:11 +020046 /*
47 * The last color is no color used for works which don't
48 * participate in workqueue flushing.
49 */
50 WORK_NR_COLORS = (1 << WORK_STRUCT_COLOR_BITS) - 1,
51 WORK_NO_COLOR = WORK_NR_COLORS,
52
53 /*
54 * Reserve 6 bits off of cwq pointer w/ debugobjects turned
55 * off. This makes cwqs aligned to 64 bytes which isn't too
56 * excessive while allowing 15 workqueue flush colors.
57 */
58 WORK_STRUCT_FLAG_BITS = WORK_STRUCT_COLOR_SHIFT +
59 WORK_STRUCT_COLOR_BITS,
60
Tejun Heo0f900042010-06-29 10:07:11 +020061 WORK_STRUCT_FLAG_MASK = (1UL << WORK_STRUCT_FLAG_BITS) - 1,
Tejun Heo22df02b2010-06-29 10:07:10 +020062 WORK_STRUCT_WQ_DATA_MASK = ~WORK_STRUCT_FLAG_MASK,
Tejun Heo7a22ad72010-06-29 10:07:13 +020063 WORK_STRUCT_NO_CPU = NR_CPUS << WORK_STRUCT_FLAG_BITS,
Tejun Heodcd989c2010-06-29 10:07:14 +020064
65 /* bit mask for work_busy() return values */
66 WORK_BUSY_PENDING = 1 << 0,
67 WORK_BUSY_RUNNING = 1 << 1,
Tejun Heo22df02b2010-06-29 10:07:10 +020068};
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070struct work_struct {
Linus Torvaldsa08727b2006-12-16 09:53:50 -080071 atomic_long_t data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 struct list_head entry;
David Howells6bb49e52006-11-22 14:54:45 +000073 work_func_t func;
Johannes Berg4e6045f2007-10-18 23:39:55 -070074#ifdef CONFIG_LOCKDEP
75 struct lockdep_map lockdep_map;
76#endif
David Howells52bad642006-11-22 14:54:01 +000077};
78
Tejun Heo7a22ad72010-06-29 10:07:13 +020079#define WORK_DATA_INIT() ATOMIC_LONG_INIT(WORK_STRUCT_NO_CPU)
80#define WORK_DATA_STATIC_INIT() \
81 ATOMIC_LONG_INIT(WORK_STRUCT_NO_CPU | WORK_STRUCT_STATIC)
Linus Torvaldsa08727b2006-12-16 09:53:50 -080082
David Howells52bad642006-11-22 14:54:01 +000083struct delayed_work {
84 struct work_struct work;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 struct timer_list timer;
86};
87
Jean Delvarebf6aede2009-04-02 16:56:54 -070088static inline struct delayed_work *to_delayed_work(struct work_struct *work)
89{
90 return container_of(work, struct delayed_work, work);
91}
92
James Bottomley1fa44ec2006-02-23 12:43:43 -060093struct execute_work {
94 struct work_struct work;
95};
96
Johannes Berg4e6045f2007-10-18 23:39:55 -070097#ifdef CONFIG_LOCKDEP
98/*
99 * NB: because we have to copy the lockdep_map, setting _key
100 * here is required, otherwise it could get initialised to the
101 * copy of the lockdep_map!
102 */
103#define __WORK_INIT_LOCKDEP_MAP(n, k) \
104 .lockdep_map = STATIC_LOCKDEP_MAP_INIT(n, k),
105#else
106#define __WORK_INIT_LOCKDEP_MAP(n, k)
107#endif
108
David Howells65f27f32006-11-22 14:55:48 +0000109#define __WORK_INITIALIZER(n, f) { \
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900110 .data = WORK_DATA_STATIC_INIT(), \
Oleg Nesterov23b2e592007-05-09 02:34:19 -0700111 .entry = { &(n).entry, &(n).entry }, \
David Howells65f27f32006-11-22 14:55:48 +0000112 .func = (f), \
Johannes Berg4e6045f2007-10-18 23:39:55 -0700113 __WORK_INIT_LOCKDEP_MAP(#n, &(n)) \
David Howells65f27f32006-11-22 14:55:48 +0000114 }
115
116#define __DELAYED_WORK_INITIALIZER(n, f) { \
117 .work = __WORK_INITIALIZER((n).work, (f)), \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 .timer = TIMER_INITIALIZER(NULL, 0, 0), \
119 }
120
David Howells65f27f32006-11-22 14:55:48 +0000121#define DECLARE_WORK(n, f) \
122 struct work_struct n = __WORK_INITIALIZER(n, f)
123
David Howells65f27f32006-11-22 14:55:48 +0000124#define DECLARE_DELAYED_WORK(n, f) \
125 struct delayed_work n = __DELAYED_WORK_INITIALIZER(n, f)
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127/*
David Howells65f27f32006-11-22 14:55:48 +0000128 * initialize a work item's function pointer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 */
David Howells65f27f32006-11-22 14:55:48 +0000130#define PREPARE_WORK(_work, _func) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 do { \
David Howells52bad642006-11-22 14:54:01 +0000132 (_work)->func = (_func); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 } while (0)
134
David Howells65f27f32006-11-22 14:55:48 +0000135#define PREPARE_DELAYED_WORK(_work, _func) \
136 PREPARE_WORK(&(_work)->work, (_func))
David Howells52bad642006-11-22 14:54:01 +0000137
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900138#ifdef CONFIG_DEBUG_OBJECTS_WORK
139extern void __init_work(struct work_struct *work, int onstack);
140extern void destroy_work_on_stack(struct work_struct *work);
Tejun Heo4690c4a2010-06-29 10:07:10 +0200141static inline unsigned int work_static(struct work_struct *work)
142{
Tejun Heo22df02b2010-06-29 10:07:10 +0200143 return *work_data_bits(work) & WORK_STRUCT_STATIC;
Tejun Heo4690c4a2010-06-29 10:07:10 +0200144}
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900145#else
146static inline void __init_work(struct work_struct *work, int onstack) { }
147static inline void destroy_work_on_stack(struct work_struct *work) { }
Tejun Heo4690c4a2010-06-29 10:07:10 +0200148static inline unsigned int work_static(struct work_struct *work) { return 0; }
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900149#endif
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/*
David Howells52bad642006-11-22 14:54:01 +0000152 * initialize all of a work item in one go
Linus Torvaldsa08727b2006-12-16 09:53:50 -0800153 *
Dmitri Vorobievb9049df2009-06-23 12:09:29 +0200154 * NOTE! No point in using "atomic_long_set()": using a direct
Linus Torvaldsa08727b2006-12-16 09:53:50 -0800155 * assignment of the work data initializer allows the compiler
156 * to generate better code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 */
Johannes Berg4e6045f2007-10-18 23:39:55 -0700158#ifdef CONFIG_LOCKDEP
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900159#define __INIT_WORK(_work, _func, _onstack) \
Johannes Berg4e6045f2007-10-18 23:39:55 -0700160 do { \
161 static struct lock_class_key __key; \
162 \
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900163 __init_work((_work), _onstack); \
Johannes Berg4e6045f2007-10-18 23:39:55 -0700164 (_work)->data = (atomic_long_t) WORK_DATA_INIT(); \
165 lockdep_init_map(&(_work)->lockdep_map, #_work, &__key, 0);\
166 INIT_LIST_HEAD(&(_work)->entry); \
167 PREPARE_WORK((_work), (_func)); \
168 } while (0)
169#else
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900170#define __INIT_WORK(_work, _func, _onstack) \
David Howells65f27f32006-11-22 14:55:48 +0000171 do { \
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900172 __init_work((_work), _onstack); \
Oleg Nesterov23b2e592007-05-09 02:34:19 -0700173 (_work)->data = (atomic_long_t) WORK_DATA_INIT(); \
David Howells65f27f32006-11-22 14:55:48 +0000174 INIT_LIST_HEAD(&(_work)->entry); \
175 PREPARE_WORK((_work), (_func)); \
176 } while (0)
Johannes Berg4e6045f2007-10-18 23:39:55 -0700177#endif
David Howells65f27f32006-11-22 14:55:48 +0000178
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900179#define INIT_WORK(_work, _func) \
180 do { \
181 __INIT_WORK((_work), (_func), 0); \
182 } while (0)
183
184#define INIT_WORK_ON_STACK(_work, _func) \
185 do { \
186 __INIT_WORK((_work), (_func), 1); \
187 } while (0)
188
David Howells65f27f32006-11-22 14:55:48 +0000189#define INIT_DELAYED_WORK(_work, _func) \
David Howells52bad642006-11-22 14:54:01 +0000190 do { \
David Howells65f27f32006-11-22 14:55:48 +0000191 INIT_WORK(&(_work)->work, (_func)); \
192 init_timer(&(_work)->timer); \
193 } while (0)
194
Peter Zijlstra6d612b02009-01-12 12:52:23 +0100195#define INIT_DELAYED_WORK_ON_STACK(_work, _func) \
196 do { \
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900197 INIT_WORK_ON_STACK(&(_work)->work, (_func)); \
Peter Zijlstra6d612b02009-01-12 12:52:23 +0100198 init_timer_on_stack(&(_work)->timer); \
199 } while (0)
200
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900201#define INIT_DELAYED_WORK_DEFERRABLE(_work, _func) \
Venki Pallipadi28287032007-05-08 00:27:47 -0700202 do { \
203 INIT_WORK(&(_work)->work, (_func)); \
204 init_timer_deferrable(&(_work)->timer); \
205 } while (0)
206
David Howells365970a2006-11-22 14:54:49 +0000207/**
208 * work_pending - Find out whether a work item is currently pending
209 * @work: The work item in question
210 */
211#define work_pending(work) \
Tejun Heo22df02b2010-06-29 10:07:10 +0200212 test_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))
David Howells365970a2006-11-22 14:54:49 +0000213
214/**
215 * delayed_work_pending - Find out whether a delayable work item is currently
216 * pending
217 * @work: The work item in question
218 */
Linus Torvalds02218722006-12-15 14:13:51 -0800219#define delayed_work_pending(w) \
220 work_pending(&(w)->work)
David Howells365970a2006-11-22 14:54:49 +0000221
David Howells65f27f32006-11-22 14:55:48 +0000222/**
Oleg Nesterov23b2e592007-05-09 02:34:19 -0700223 * work_clear_pending - for internal use only, mark a work item as not pending
224 * @work: The work item in question
David Howells65f27f32006-11-22 14:55:48 +0000225 */
Oleg Nesterov23b2e592007-05-09 02:34:19 -0700226#define work_clear_pending(work) \
Tejun Heo22df02b2010-06-29 10:07:10 +0200227 clear_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work))
David Howells65f27f32006-11-22 14:55:48 +0000228
Tejun Heo97e37d72010-06-29 10:07:10 +0200229enum {
230 WQ_FREEZEABLE = 1 << 0, /* freeze during suspend */
Tejun Heo502ca9d2010-06-29 10:07:13 +0200231 WQ_SINGLE_CPU = 1 << 1, /* only single cpu at a time */
Tejun Heo18aa9ef2010-06-29 10:07:13 +0200232 WQ_NON_REENTRANT = 1 << 2, /* guarantee non-reentrance */
Tejun Heoe22bee72010-06-29 10:07:14 +0200233 WQ_RESCUER = 1 << 3, /* has an rescue worker */
Tejun Heo649027d2010-06-29 10:07:14 +0200234 WQ_HIGHPRI = 1 << 4, /* high priority */
Tejun Heofb0e7be2010-06-29 10:07:15 +0200235 WQ_CPU_INTENSIVE = 1 << 5, /* cpu instensive workqueue */
Tejun Heob71ab8c2010-06-29 10:07:14 +0200236
237 WQ_MAX_ACTIVE = 512, /* I like 512, better ideas? */
238 WQ_DFL_ACTIVE = WQ_MAX_ACTIVE / 2,
Tejun Heo97e37d72010-06-29 10:07:10 +0200239};
David Howells52bad642006-11-22 14:54:01 +0000240
Tejun Heod320c032010-06-29 10:07:14 +0200241/*
242 * System-wide workqueues which are always present.
243 *
244 * system_wq is the one used by schedule[_delayed]_work[_on]().
245 * Multi-CPU multi-threaded. There are users which expect relatively
246 * short queue flush time. Don't queue works which can run for too
247 * long.
248 *
249 * system_long_wq is similar to system_wq but may host long running
250 * works. Queue flushing might take relatively long.
251 *
252 * system_nrt_wq is non-reentrant and guarantees that any given work
253 * item is never executed in parallel by multiple CPUs. Queue
254 * flushing might take relatively long.
255 */
256extern struct workqueue_struct *system_wq;
257extern struct workqueue_struct *system_long_wq;
258extern struct workqueue_struct *system_nrt_wq;
259
Johannes Berg4e6045f2007-10-18 23:39:55 -0700260extern struct workqueue_struct *
Tejun Heod320c032010-06-29 10:07:14 +0200261__alloc_workqueue_key(const char *name, unsigned int flags, int max_active,
262 struct lock_class_key *key, const char *lock_name);
Johannes Berg4e6045f2007-10-18 23:39:55 -0700263
264#ifdef CONFIG_LOCKDEP
Tejun Heod320c032010-06-29 10:07:14 +0200265#define alloc_workqueue(name, flags, max_active) \
Johannes Berg4e6045f2007-10-18 23:39:55 -0700266({ \
267 static struct lock_class_key __key; \
Johannes Bergeb13ba82008-01-16 09:51:58 +0100268 const char *__lock_name; \
269 \
270 if (__builtin_constant_p(name)) \
271 __lock_name = (name); \
272 else \
273 __lock_name = #name; \
Johannes Berg4e6045f2007-10-18 23:39:55 -0700274 \
Tejun Heod320c032010-06-29 10:07:14 +0200275 __alloc_workqueue_key((name), (flags), (max_active), \
276 &__key, __lock_name); \
Johannes Berg4e6045f2007-10-18 23:39:55 -0700277})
278#else
Tejun Heod320c032010-06-29 10:07:14 +0200279#define alloc_workqueue(name, flags, max_active) \
280 __alloc_workqueue_key((name), (flags), (max_active), NULL, NULL)
Johannes Berg4e6045f2007-10-18 23:39:55 -0700281#endif
282
Tejun Heo97e37d72010-06-29 10:07:10 +0200283#define create_workqueue(name) \
Tejun Heod320c032010-06-29 10:07:14 +0200284 alloc_workqueue((name), WQ_RESCUER, 1)
Tejun Heo97e37d72010-06-29 10:07:10 +0200285#define create_freezeable_workqueue(name) \
Tejun Heod320c032010-06-29 10:07:14 +0200286 alloc_workqueue((name), WQ_FREEZEABLE | WQ_SINGLE_CPU | WQ_RESCUER, 1)
Tejun Heo97e37d72010-06-29 10:07:10 +0200287#define create_singlethread_workqueue(name) \
Tejun Heod320c032010-06-29 10:07:14 +0200288 alloc_workqueue((name), WQ_SINGLE_CPU | WQ_RESCUER, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290extern void destroy_workqueue(struct workqueue_struct *wq);
291
Harvey Harrisonb3c97522008-02-13 15:03:15 -0800292extern int queue_work(struct workqueue_struct *wq, struct work_struct *work);
Zhang Ruic1a220e2008-07-23 21:28:39 -0700293extern int queue_work_on(int cpu, struct workqueue_struct *wq,
294 struct work_struct *work);
Harvey Harrisonb3c97522008-02-13 15:03:15 -0800295extern int queue_delayed_work(struct workqueue_struct *wq,
296 struct delayed_work *work, unsigned long delay);
Venkatesh Pallipadi7a6bc1c2006-06-28 13:50:33 -0700297extern int queue_delayed_work_on(int cpu, struct workqueue_struct *wq,
Oleg Nesterov28e53bd2007-05-09 02:34:22 -0700298 struct delayed_work *work, unsigned long delay);
299
Harvey Harrisonb3c97522008-02-13 15:03:15 -0800300extern void flush_workqueue(struct workqueue_struct *wq);
Oleg Nesterov28e53bd2007-05-09 02:34:22 -0700301extern void flush_scheduled_work(void);
Linus Torvalds43046b62009-10-14 09:16:42 -0700302extern void flush_delayed_work(struct delayed_work *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Harvey Harrisonb3c97522008-02-13 15:03:15 -0800304extern int schedule_work(struct work_struct *work);
Zhang Ruic1a220e2008-07-23 21:28:39 -0700305extern int schedule_work_on(int cpu, struct work_struct *work);
Harvey Harrisonb3c97522008-02-13 15:03:15 -0800306extern int schedule_delayed_work(struct delayed_work *work, unsigned long delay);
Oleg Nesterov28e53bd2007-05-09 02:34:22 -0700307extern int schedule_delayed_work_on(int cpu, struct delayed_work *work,
308 unsigned long delay);
David Howells65f27f32006-11-22 14:55:48 +0000309extern int schedule_on_each_cpu(work_func_t func);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310extern int keventd_up(void);
311
312extern void init_workqueues(void);
David Howells65f27f32006-11-22 14:55:48 +0000313int execute_in_process_context(work_func_t fn, struct execute_work *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Oleg Nesterovdb700892008-07-25 01:47:49 -0700315extern int flush_work(struct work_struct *work);
Oleg Nesterov1f1f6422007-07-15 23:41:44 -0700316extern int cancel_work_sync(struct work_struct *work);
Oleg Nesterov28e53bd2007-05-09 02:34:22 -0700317
Tejun Heodcd989c2010-06-29 10:07:14 +0200318extern void workqueue_set_max_active(struct workqueue_struct *wq,
319 int max_active);
320extern bool workqueue_congested(unsigned int cpu, struct workqueue_struct *wq);
321extern unsigned int work_cpu(struct work_struct *work);
322extern unsigned int work_busy(struct work_struct *work);
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324/*
325 * Kill off a pending schedule_delayed_work(). Note that the work callback
Oleg Nesterov071b6382007-04-26 15:45:32 -0700326 * function may still be running on return from cancel_delayed_work(), unless
327 * it returns 1 and the work doesn't re-arm itself. Run flush_workqueue() or
Oleg Nesterov28e53bd2007-05-09 02:34:22 -0700328 * cancel_work_sync() to wait on it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 */
David Howells52bad642006-11-22 14:54:01 +0000330static inline int cancel_delayed_work(struct delayed_work *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
332 int ret;
333
Oleg Nesterov223a10a2007-05-18 00:36:42 -0700334 ret = del_timer_sync(&work->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 if (ret)
Oleg Nesterov23b2e592007-05-09 02:34:19 -0700336 work_clear_pending(&work->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 return ret;
338}
339
Oleg Nesterov4e496272009-09-05 11:17:06 -0700340/*
341 * Like above, but uses del_timer() instead of del_timer_sync(). This means,
342 * if it returns 0 the timer function may be running and the queueing is in
343 * progress.
344 */
345static inline int __cancel_delayed_work(struct delayed_work *work)
346{
347 int ret;
348
349 ret = del_timer(&work->timer);
350 if (ret)
351 work_clear_pending(&work->work);
352 return ret;
353}
354
Oleg Nesterov1f1f6422007-07-15 23:41:44 -0700355extern int cancel_delayed_work_sync(struct delayed_work *work);
Oleg Nesterov1634c482007-05-09 02:34:18 -0700356
Oleg Nesterovf5a421a2007-07-15 23:41:44 -0700357/* Obsolete. use cancel_delayed_work_sync() */
Oleg Nesterov1634c482007-05-09 02:34:18 -0700358static inline
359void cancel_rearming_delayed_workqueue(struct workqueue_struct *wq,
360 struct delayed_work *work)
361{
Oleg Nesterovf5a421a2007-07-15 23:41:44 -0700362 cancel_delayed_work_sync(work);
363}
364
365/* Obsolete. use cancel_delayed_work_sync() */
366static inline
367void cancel_rearming_delayed_work(struct delayed_work *work)
368{
369 cancel_delayed_work_sync(work);
Oleg Nesterov1634c482007-05-09 02:34:18 -0700370}
371
Rusty Russell2d3854a2008-11-05 13:39:10 +1100372#ifndef CONFIG_SMP
373static inline long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg)
374{
375 return fn(arg);
376}
377#else
378long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg);
379#endif /* CONFIG_SMP */
Tejun Heoa0a1a5f2010-06-29 10:07:12 +0200380
381#ifdef CONFIG_FREEZER
382extern void freeze_workqueues_begin(void);
383extern bool freeze_workqueues_busy(void);
384extern void thaw_workqueues(void);
385#endif /* CONFIG_FREEZER */
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387#endif