All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] workqueue: remove redundant timer_stats_timer_set_start_info() call
@ 2013-09-10  6:35 Libin
  2013-09-10 13:45 ` Tejun Heo
  0 siblings, 1 reply; 3+ messages in thread
From: Libin @ 2013-09-10  6:35 UTC (permalink / raw)
  To: tj, tglx; +Cc: linux-kernel, akpm, mingo, wangyijing, guohanjun, huawei.libin

From: Li Bin <huawei.libin@huawei.com>

There is a redundant call for timer_stats_timer_set_start_info(),
because it is the responsibility of the 'timer add' function:

add_timer_on()
|- timer_stats_timer_set_start_info()

add_timer()
|- mod_timer()
	|- __mod_timer()
		|- timer_stats_timer_set_start_info()

So the calling here is redundant, remove it.

Signed-off-by: Li Bin <huawei.libin@huawei.com>
---
 kernel/workqueue.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/kernel/workqueue.c b/kernel/workqueue.c
index 987293d..51ca50e 100644
--- a/kernel/workqueue.c
+++ b/kernel/workqueue.c
@@ -1462,8 +1462,6 @@ static void __queue_delayed_work(int cpu, struct workqueue_struct *wq,
 		return;
 	}
 
-	timer_stats_timer_set_start_info(&dwork->timer);
-
 	dwork->wq = wq;
 	dwork->cpu = cpu;
 	timer->expires = jiffies + delay;
-- 
1.8.2.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-09-11  0:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-10  6:35 [PATCH] workqueue: remove redundant timer_stats_timer_set_start_info() call Libin
2013-09-10 13:45 ` Tejun Heo
2013-09-11  0:49   ` Libin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.