* [PATCH] timer: use variable 'head' instead of '&work_list' in __run_timers()
@ 2014-03-18 7:53 Viresh Kumar
2014-03-20 11:39 ` [tip:timers/core] timer: Use variable head instead of &work_list " tip-bot for Viresh Kumar
0 siblings, 1 reply; 2+ messages in thread
From: Viresh Kumar @ 2014-03-18 7:53 UTC (permalink / raw)
To: tglx; +Cc: linaro-kernel, linux-kernel, Viresh Kumar
We already have a variable 'head' that points to '&work_list', and so we should
use that instead wherever possible.
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
---
kernel/timer.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/timer.c b/kernel/timer.c
index 6394fb5..1ef3de1 100644
--- a/kernel/timer.c
+++ b/kernel/timer.c
@@ -1192,7 +1192,7 @@ static inline void __run_timers(struct tvec_base *base)
!cascade(base, &base->tv4, INDEX(2)))
cascade(base, &base->tv5, INDEX(3));
++base->timer_jiffies;
- list_replace_init(base->tv1.vec + index, &work_list);
+ list_replace_init(base->tv1.vec + index, head);
while (!list_empty(head)) {
void (*fn)(unsigned long);
unsigned long data;
--
1.7.12.rc2.18.g61b472e
^ permalink raw reply [flat|nested] 2+ messages in thread* [tip:timers/core] timer: Use variable head instead of &work_list in __run_timers()
2014-03-18 7:53 [PATCH] timer: use variable 'head' instead of '&work_list' in __run_timers() Viresh Kumar
@ 2014-03-20 11:39 ` tip-bot for Viresh Kumar
0 siblings, 0 replies; 2+ messages in thread
From: tip-bot for Viresh Kumar @ 2014-03-20 11:39 UTC (permalink / raw)
To: linux-tip-commits; +Cc: linux-kernel, hpa, mingo, viresh.kumar, tglx
Commit-ID: c41eba7de133e43ea2c998ccd484059feab200f6
Gitweb: http://git.kernel.org/tip/c41eba7de133e43ea2c998ccd484059feab200f6
Author: Viresh Kumar <viresh.kumar@linaro.org>
AuthorDate: Tue, 18 Mar 2014 13:23:15 +0530
Committer: Thomas Gleixner <tglx@linutronix.de>
CommitDate: Thu, 20 Mar 2014 12:35:45 +0100
timer: Use variable head instead of &work_list in __run_timers()
We already have a variable 'head' that points to '&work_list', and so
we should use that instead wherever possible.
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Cc: linaro-kernel@lists.linaro.org
Link: http://lkml.kernel.org/r/0d8645a6efc8360c4196c9797d59343abbfdcc5e.1395129136.git.viresh.kumar@linaro.org
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
kernel/timer.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/timer.c b/kernel/timer.c
index 949d74e..8e503fe 100644
--- a/kernel/timer.c
+++ b/kernel/timer.c
@@ -1192,7 +1192,7 @@ static inline void __run_timers(struct tvec_base *base)
!cascade(base, &base->tv4, INDEX(2)))
cascade(base, &base->tv5, INDEX(3));
++base->timer_jiffies;
- list_replace_init(base->tv1.vec + index, &work_list);
+ list_replace_init(base->tv1.vec + index, head);
while (!list_empty(head)) {
void (*fn)(unsigned long);
unsigned long data;
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-03-20 11:39 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-18 7:53 [PATCH] timer: use variable 'head' instead of '&work_list' in __run_timers() Viresh Kumar
2014-03-20 11:39 ` [tip:timers/core] timer: Use variable head instead of &work_list " tip-bot for Viresh Kumar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome