diff options
author | Oleg Nesterov <oleg@tv-sign.ru> | 2007-05-09 05:34:18 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-09 15:30:52 -0400 |
commit | 1634c48f8b85dcb05101f1eb2eab9af40b5976da (patch) | |
tree | 143aa0fbf21e712a5258806b37f2024ba432b522 /include/linux/workqueue.h | |
parent | a848e3b67c07ed79374bd0f9b82f9ce45a419643 (diff) |
make cancel_rearming_delayed_work() work on any workqueue, not just keventd_wq
cancel_rearming_delayed_workqueue(wq, dwork) doesn't need the first
parameter. We don't hang on un-queued dwork any longer, and work->data
doesn't change its type. This means we can always figure out "wq" from
dwork when it is needed.
Remove this parameter, and rename the function to
cancel_rearming_delayed_work(). Re-create an inline "obsolete"
cancel_rearming_delayed_workqueue(wq) which just calls
cancel_rearming_delayed_work().
Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/workqueue.h')
-rw-r--r-- | include/linux/workqueue.h | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h index 2a58f16e1961..27110c04f21e 100644 --- a/include/linux/workqueue.h +++ b/include/linux/workqueue.h | |||
@@ -191,9 +191,6 @@ extern int current_is_keventd(void); | |||
191 | extern int keventd_up(void); | 191 | extern int keventd_up(void); |
192 | 192 | ||
193 | extern void init_workqueues(void); | 193 | extern void init_workqueues(void); |
194 | void cancel_rearming_delayed_work(struct delayed_work *work); | ||
195 | void cancel_rearming_delayed_workqueue(struct workqueue_struct *, | ||
196 | struct delayed_work *); | ||
197 | int execute_in_process_context(work_func_t fn, struct execute_work *); | 194 | int execute_in_process_context(work_func_t fn, struct execute_work *); |
198 | 195 | ||
199 | /* | 196 | /* |
@@ -212,4 +209,14 @@ static inline int cancel_delayed_work(struct delayed_work *work) | |||
212 | return ret; | 209 | return ret; |
213 | } | 210 | } |
214 | 211 | ||
212 | extern void cancel_rearming_delayed_work(struct delayed_work *work); | ||
213 | |||
214 | /* Obsolete. use cancel_rearming_delayed_work() */ | ||
215 | static inline | ||
216 | void cancel_rearming_delayed_workqueue(struct workqueue_struct *wq, | ||
217 | struct delayed_work *work) | ||
218 | { | ||
219 | cancel_rearming_delayed_work(work); | ||
220 | } | ||
221 | |||
215 | #endif | 222 | #endif |