From: Xunlei Pang Date: Thu, 9 Apr 2015 01:04:40 +0000 (+0800) Subject: time: Include math64.h in time64.h X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=30f3b3f9836c7c7e1f42ca855bbe8127fff4b99a;p=deliverable%2Flinux.git time: Include math64.h in time64.h On 32-bit systems, timespec64_add_ns() calls __iter_div_u64_rem() which needs math64.h, and we want to include time64.h in some cases. Cc: Thomas Gleixner Cc: Ingo Molnar Signed-off-by: Xunlei Pang Signed-off-by: John Stultz --- diff --git a/include/linux/time64.h b/include/linux/time64.h index a3831478d9cf..12d4e82b0276 100644 --- a/include/linux/time64.h +++ b/include/linux/time64.h @@ -2,6 +2,7 @@ #define _LINUX_TIME64_H #include +#include typedef __s64 time64_t;