linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Normalize timespec for negative values in ns_to_timespec
@ 2006-01-21 10:02 Thomas Gleixner
  2006-01-21 10:19 ` Andrew Morton
  0 siblings, 1 reply; 4+ messages in thread
From: Thomas Gleixner @ 2006-01-21 10:02 UTC (permalink / raw)
  To: Andrew Morton; +Cc: LKML, George Anzinger

[-- Attachment #1: ns_to_timespec_normalize_if_negative.patch --]
[-- Type: text/plain, Size: 1093 bytes --]

From: George Anzinger <george@wildturkeyranch.net>

In case of a negative nsec value the result of the division must be
normalized.
Remove inline from an exported function.

Signed-off-by: George Anzinger <george@wildturkeyranch.net>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>


Index: linux-2.6.15/kernel/time.c
===================================================================
--- linux-2.6.15.orig/kernel/time.c
+++ linux-2.6.15/kernel/time.c
@@ -658,15 +658,16 @@ void set_normalized_timespec(struct time
  *
  * Returns the timespec representation of the nsec parameter.
  */
-inline struct timespec ns_to_timespec(const nsec_t nsec)
+struct timespec ns_to_timespec(const nsec_t nsec)
 {
 	struct timespec ts;
 
-	if (nsec)
-		ts.tv_sec = div_long_long_rem_signed(nsec, NSEC_PER_SEC,
-						     &ts.tv_nsec);
-	else
-		ts.tv_sec = ts.tv_nsec = 0;
+	if (!nsec)
+		return (struct timespec) {0, 0};
+
+	ts.tv_sec = div_long_long_rem_signed(nsec, NSEC_PER_SEC, &ts.tv_nsec);
+	if (unlikely(nsec < 0))
+		set_normalized_timespec(&ts, ts.tv_sec, ts.tv_nsec);
 
 	return ts;
 }

--


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

end of thread, other threads:[~2006-01-21 17:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-01-21 10:02 [PATCH] Normalize timespec for negative values in ns_to_timespec Thomas Gleixner
2006-01-21 10:19 ` Andrew Morton
2006-01-21 10:34   ` Thomas Gleixner
2006-01-21 17:27     ` George Anzinger

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).