Commit 2543a87108d2af7d48a43b3d6685c2b1ea279e36
Committed by
Tejun Heo
1 parent
257313b2a8
Exists in
master
and in
6 other branches
workqueue: remove cancel_rearming_delayed_work[queue]()
cancel_rearming_delayed_work() and cancel_rearming_delayed_workqueue() can be removed now. Signed-off-by: WANG Cong <amwang@redhat.com> Signed-off-by: Tejun Heo <tj@kernel.org>
Showing 2 changed files with 0 additions and 25 deletions Side-by-side Diff
Documentation/feature-removal-schedule.txt
... | ... | @@ -513,16 +513,6 @@ |
513 | 513 | |
514 | 514 | ---------------------------- |
515 | 515 | |
516 | -What: cancel_rearming_delayed_work[queue]() | |
517 | -When: 2.6.39 | |
518 | - | |
519 | -Why: The functions have been superceded by cancel_delayed_work_sync() | |
520 | - quite some time ago. The conversion is trivial and there is no | |
521 | - in-kernel user left. | |
522 | -Who: Tejun Heo <tj@kernel.org> | |
523 | - | |
524 | ----------------------------- | |
525 | - | |
526 | 516 | What: Legacy, non-standard chassis intrusion detection interface. |
527 | 517 | When: June 2011 |
528 | 518 | Why: The adm9240, w83792d and w83793 hardware monitoring drivers have |
include/linux/workqueue.h
... | ... | @@ -412,21 +412,6 @@ |
412 | 412 | return ret; |
413 | 413 | } |
414 | 414 | |
415 | -/* Obsolete. use cancel_delayed_work_sync() */ | |
416 | -static inline __deprecated | |
417 | -void cancel_rearming_delayed_workqueue(struct workqueue_struct *wq, | |
418 | - struct delayed_work *work) | |
419 | -{ | |
420 | - cancel_delayed_work_sync(work); | |
421 | -} | |
422 | - | |
423 | -/* Obsolete. use cancel_delayed_work_sync() */ | |
424 | -static inline __deprecated | |
425 | -void cancel_rearming_delayed_work(struct delayed_work *work) | |
426 | -{ | |
427 | - cancel_delayed_work_sync(work); | |
428 | -} | |
429 | - | |
430 | 415 | #ifndef CONFIG_SMP |
431 | 416 | static inline long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg) |
432 | 417 | { |