Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1613738 > unrolled thread

[tip:timers/core] timekeeping: Remove pointless conversion to bool

Started bytip-bot for Nicholas Mc Guire <tipbot@zytor.com>
First post2017-03-31 10:40 +0200
Last post2017-03-31 10:40 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [tip:timers/core] timekeeping: Remove pointless conversion to bool tip-bot for Nicholas Mc Guire <tipbot@zytor.com> - 2017-03-31 10:40 +0200

#1613738 — [tip:timers/core] timekeeping: Remove pointless conversion to bool

Fromtip-bot for Nicholas Mc Guire <tipbot@zytor.com>
Date2017-03-31 10:40 +0200
Subject[tip:timers/core] timekeeping: Remove pointless conversion to bool
Message-ID<tr0ga-2al-27@gated-at.bofh.it>
Commit-ID:  5fc63f9577322d11019b6d357f73f5ce9031f263
Gitweb:     http://git.kernel.org/tip/5fc63f9577322d11019b6d357f73f5ce9031f263
Author:     Nicholas Mc Guire <der.herr@hofr.at>
AuthorDate: Fri, 24 Mar 2017 20:03:35 +0100
Committer:  Thomas Gleixner <tglx@linutronix.de>
CommitDate: Fri, 31 Mar 2017 10:26:56 +0200

timekeeping: Remove pointless conversion to bool

interp_forward is type bool so assignment from a logical operation directly
is sufficient.

Signed-off-by: Nicholas Mc Guire <der.herr@hofr.at>
Cc: "Christopher S. Hall" <christopher.s.hall@intel.com>
Cc: John Stultz <john.stultz@linaro.org>
Link: http://lkml.kernel.org/r/1490382215-30505-1-git-send-email-der.herr@hofr.at
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

---
 kernel/time/timekeeping.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c
index 5b63a21..9652bc5 100644
--- a/kernel/time/timekeeping.c
+++ b/kernel/time/timekeeping.c
@@ -996,8 +996,7 @@ static int adjust_historical_crosststamp(struct system_time_snapshot *history,
 		return 0;
 
 	/* Interpolate shortest distance from beginning or end of history */
-	interp_forward = partial_history_cycles > total_history_cycles/2 ?
-		true : false;
+	interp_forward = partial_history_cycles > total_history_cycles / 2;
 	partial_history_cycles = interp_forward ?
 		total_history_cycles - partial_history_cycles :
 		partial_history_cycles;

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web