mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] cputime: Fix timeval/timespec-->cputime conversion
@ 2016-02-02  3:38 zengtao
  2016-02-02 12:53 ` Arnd Bergmann
  2016-02-02 14:30 ` [tip:timers/urgent] cputime: Prevent 32bit overflow in time[ val|spec]_to_cputime() tip-bot for zengtao
  0 siblings, 2 replies; 3+ messages in thread
From: zengtao @ 2016-02-02  3:38 UTC (permalink / raw)
  To: tglx, arnd, fweisbec; +Cc: linux-kernel

The datatype __kernel_time_t is u32 on 32bit platform,
it will easily get overflow, so force u64 conversion.

Currently the following function will be affected:
1. setitimer()
2. timer_create/timer_settime()
3. sys_clock_nanosleep
And this will occur on MIPS32 and ARM32 with "Full dynticks CPU
time accounting" enabled, which is required for CONFIG_NO_HZ_FULL.

Signed-off-by: zengtao <prime.zeng@huawei.com>
---
 include/asm-generic/cputime_nsecs.h | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/include/asm-generic/cputime_nsecs.h b/include/asm-generic/cputime_nsecs.h
index 0419485..0f1c6f3 100644
--- a/include/asm-generic/cputime_nsecs.h
+++ b/include/asm-generic/cputime_nsecs.h
@@ -75,7 +75,7 @@ typedef u64 __nocast cputime64_t;
  */
 static inline cputime_t timespec_to_cputime(const struct timespec *val)
 {
-	u64 ret = val->tv_sec * NSEC_PER_SEC + val->tv_nsec;
+	u64 ret = (u64)val->tv_sec * NSEC_PER_SEC + val->tv_nsec;
 	return (__force cputime_t) ret;
 }
 static inline void cputime_to_timespec(const cputime_t ct, struct timespec *val)
@@ -91,7 +91,8 @@ static inline void cputime_to_timespec(const cputime_t ct, struct timespec *val)
  */
 static inline cputime_t timeval_to_cputime(const struct timeval *val)
 {
-	u64 ret = val->tv_sec * NSEC_PER_SEC + val->tv_usec * NSEC_PER_USEC;
+	u64 ret = (u64)val->tv_sec * NSEC_PER_SEC +
+			val->tv_usec * NSEC_PER_USEC;
 	return (__force cputime_t) ret;
 }
 static inline void cputime_to_timeval(const cputime_t ct, struct timeval *val)
-- 
1.9.1

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

end of thread, other threads:[~2016-02-02 14:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-02  3:38 [PATCH] cputime: Fix timeval/timespec-->cputime conversion zengtao
2016-02-02 12:53 ` Arnd Bergmann
2016-02-02 14:30 ` [tip:timers/urgent] cputime: Prevent 32bit overflow in time[ val|spec]_to_cputime() tip-bot for zengtao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®