linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] clocksource: Make clocksource insert entry more efficient
@ 2019-03-26 11:34 Yongkai Wu
  0 siblings, 0 replies; only message in thread
From: Yongkai Wu @ 2019-03-26 11:34 UTC (permalink / raw)
  To: John Stultz; +Cc: Thomas Gleixner, Stephen Boyd, linux-kernel, nic_w

In clocksource_enqueue(), it is unnecessary to do
entry = &tmp->list
in every loop,do it once in the last loop is enough.

Signed-off-by: Yongkai Wu <nic_w@163.com>
---
 kernel/time/clocksource.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/kernel/time/clocksource.c b/kernel/time/clocksource.c
index 3bcc19c..da4829b 100644
--- a/kernel/time/clocksource.c
+++ b/kernel/time/clocksource.c
@@ -829,11 +829,12 @@ static void clocksource_enqueue(struct clocksource *cs)
 
 	list_for_each_entry(tmp, &clocksource_list, list) {
 		/* Keep track of the place, where to insert */
-		if (tmp->rating < cs->rating)
+		if (tmp->rating < cs->rating) {
+			entry = &tmp->list;
 			break;
-		entry = &tmp->list;
+		}
 	}
-	list_add(&cs->list, entry);
+	list_add_tail(&cs->list, entry);
 }
 
 /**
-- 
1.8.3.1


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2019-03-26 11:34 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-26 11:34 [PATCH] clocksource: Make clocksource insert entry more efficient Yongkai Wu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).