aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleg Nesterov <oleg@tv-sign.ru>2007-07-16 02:41:44 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-07-16 12:05:51 -0400
commitf5a421a4509a7e2dff11da0f01b0548f4f84d503 (patch)
tree1338d2ab1e5b88ff0b62c2fd38feed38112cffea
parent422b14c2e2f816f58ce8ce0ab0beeae02dfb7a75 (diff)
rename cancel_rearming_delayed_work() to cancel_delayed_work_sync()
Imho, the current naming of cancel_xxx workqueue functions is very confusing. cancel_delayed_work() cancel_rearming_delayed_work() cancel_rearming_delayed_workqueue() // obsolete cancel_work_sync() This looks as if the first 2 functions differ in "type" of their argument which is not true any longer, nowadays the difference is the behaviour. The semantics of cancel_rearming_delayed_work(dwork) was changed significantly, it doesn't require that dwork rearms itself, and cancels dwork synchronously. Rename it to cancel_delayed_work_sync(). This matches cancel_delayed_work() and cancel_work_sync(). Re-create cancel_rearming_delayed_work() as a simple inline obsolete wrapper, like cancel_rearming_delayed_workqueue(). Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru> Acked-by: Jarek Poplawski <jarkao2@o2.pl> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--include/linux/workqueue.h13
-rw-r--r--kernel/workqueue.c6
2 files changed, 13 insertions, 6 deletions
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h
index ce0719a2cfeb..5c89ac6e7f55 100644
--- a/include/linux/workqueue.h
+++ b/include/linux/workqueue.h
@@ -166,14 +166,21 @@ static inline int cancel_delayed_work(struct delayed_work *work)
166 return ret; 166 return ret;
167} 167}
168 168
169extern void cancel_rearming_delayed_work(struct delayed_work *work); 169extern void cancel_delayed_work_sync(struct delayed_work *work);
170 170
171/* Obsolete. use cancel_rearming_delayed_work() */ 171/* Obsolete. use cancel_delayed_work_sync() */
172static inline 172static inline
173void cancel_rearming_delayed_workqueue(struct workqueue_struct *wq, 173void cancel_rearming_delayed_workqueue(struct workqueue_struct *wq,
174 struct delayed_work *work) 174 struct delayed_work *work)
175{ 175{
176 cancel_rearming_delayed_work(work); 176 cancel_delayed_work_sync(work);
177}
178
179/* Obsolete. use cancel_delayed_work_sync() */
180static inline
181void cancel_rearming_delayed_work(struct delayed_work *work)
182{
183 cancel_delayed_work_sync(work);
177} 184}
178 185
179#endif 186#endif
diff --git a/kernel/workqueue.c b/kernel/workqueue.c
index 3bebf73be976..ad9656886daa 100644
--- a/kernel/workqueue.c
+++ b/kernel/workqueue.c
@@ -486,13 +486,13 @@ void cancel_work_sync(struct work_struct *work)
486EXPORT_SYMBOL_GPL(cancel_work_sync); 486EXPORT_SYMBOL_GPL(cancel_work_sync);
487 487
488/** 488/**
489 * cancel_rearming_delayed_work - reliably kill off a delayed work. 489 * cancel_delayed_work_sync - reliably kill off a delayed work.
490 * @dwork: the delayed work struct 490 * @dwork: the delayed work struct
491 * 491 *
492 * It is possible to use this function if @dwork rearms itself via queue_work() 492 * It is possible to use this function if @dwork rearms itself via queue_work()
493 * or queue_delayed_work(). See also the comment for cancel_work_sync(). 493 * or queue_delayed_work(). See also the comment for cancel_work_sync().
494 */ 494 */
495void cancel_rearming_delayed_work(struct delayed_work *dwork) 495void cancel_delayed_work_sync(struct delayed_work *dwork)
496{ 496{
497 while (!del_timer(&dwork->timer) && 497 while (!del_timer(&dwork->timer) &&
498 !try_to_grab_pending(&dwork->work)) 498 !try_to_grab_pending(&dwork->work))
@@ -500,7 +500,7 @@ void cancel_rearming_delayed_work(struct delayed_work *dwork)
500 wait_on_work(&dwork->work); 500 wait_on_work(&dwork->work);
501 work_clear_pending(&dwork->work); 501 work_clear_pending(&dwork->work);
502} 502}
503EXPORT_SYMBOL(cancel_rearming_delayed_work); 503EXPORT_SYMBOL(cancel_delayed_work_sync);
504 504
505static struct workqueue_struct *keventd_wq __read_mostly; 505static struct workqueue_struct *keventd_wq __read_mostly;
506 506