aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2014-03-23 10:20:44 -0400
committerThomas Gleixner <tglx@linutronix.de>2014-03-25 12:33:42 -0400
commitea2e64f280d2a34a8ed9ae3d783cd770d14b70ec (patch)
tree49bbf487a2b6683f73d9970ba97598ba1a9da30d
parent87291a9267ecc0a8efceb4d9cbd4da870f958fc1 (diff)
workqueue: Provide destroy_delayed_work_on_stack()
If a delayed or deferrable work is on stack we need to tell debug objects that we are destroying the timer and the work. Otherwise we leak the tracking object. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Vince Weaver <vincent.weaver@maine.edu> Acked-by: Tejun Heo <tj@kernel.org> Link: http://lkml.kernel.org/r/20140323141939.911487677@linutronix.de Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r--include/linux/workqueue.h2
-rw-r--r--kernel/workqueue.c7
2 files changed, 9 insertions, 0 deletions
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h
index 594521ba0d43..abdbe5af119d 100644
--- a/include/linux/workqueue.h
+++ b/include/linux/workqueue.h
@@ -191,6 +191,7 @@ struct execute_work {
191#ifdef CONFIG_DEBUG_OBJECTS_WORK 191#ifdef CONFIG_DEBUG_OBJECTS_WORK
192extern void __init_work(struct work_struct *work, int onstack); 192extern void __init_work(struct work_struct *work, int onstack);
193extern void destroy_work_on_stack(struct work_struct *work); 193extern void destroy_work_on_stack(struct work_struct *work);
194extern void destroy_delayed_work_on_stack(struct delayed_work *work);
194static inline unsigned int work_static(struct work_struct *work) 195static inline unsigned int work_static(struct work_struct *work)
195{ 196{
196 return *work_data_bits(work) & WORK_STRUCT_STATIC; 197 return *work_data_bits(work) & WORK_STRUCT_STATIC;
@@ -198,6 +199,7 @@ static inline unsigned int work_static(struct work_struct *work)
198#else 199#else
199static inline void __init_work(struct work_struct *work, int onstack) { } 200static inline void __init_work(struct work_struct *work, int onstack) { }
200static inline void destroy_work_on_stack(struct work_struct *work) { } 201static inline void destroy_work_on_stack(struct work_struct *work) { }
202static inline void destroy_delayed_work_on_stack(struct delayed_work *work) { }
201static inline unsigned int work_static(struct work_struct *work) { return 0; } 203static inline unsigned int work_static(struct work_struct *work) { return 0; }
202#endif 204#endif
203 205
diff --git a/kernel/workqueue.c b/kernel/workqueue.c
index 82ef9f3b7473..5b690b5a9e74 100644
--- a/kernel/workqueue.c
+++ b/kernel/workqueue.c
@@ -516,6 +516,13 @@ void destroy_work_on_stack(struct work_struct *work)
516} 516}
517EXPORT_SYMBOL_GPL(destroy_work_on_stack); 517EXPORT_SYMBOL_GPL(destroy_work_on_stack);
518 518
519void destroy_delayed_work_on_stack(struct delayed_work *work)
520{
521 destroy_timer_on_stack(&work->timer);
522 debug_object_free(&work->work, &work_debug_descr);
523}
524EXPORT_SYMBOL_GPL(destroy_delayed_work_on_stack);
525
519#else 526#else
520static inline void debug_work_activate(struct work_struct *work) { } 527static inline void debug_work_activate(struct work_struct *work) { }
521static inline void debug_work_deactivate(struct work_struct *work) { } 528static inline void debug_work_deactivate(struct work_struct *work) { }