[PATCH 1/2] Kernel/time: Introduce a new timestamp function local_time_seconds()

From: Gu Zheng
Date: Mon May 13 2013 - 02:45:24 EST


Introduce a new timestamp function local_time_seconds() to hide the conversion of system time in UTC to local time seconds.

Signed-off-by: Gu Zheng <guz.fnst@xxxxxxxxxxxxxx>
---
include/linux/time.h | 1 +
kernel/time.c | 11 +++++++++++
2 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/include/linux/time.h b/include/linux/time.h
index 22d81b3..1aec534 100644
--- a/include/linux/time.h
+++ b/include/linux/time.h
@@ -271,4 +271,5 @@ static __always_inline void timespec_add_ns(struct timespec *a, u64 ns)
a->tv_nsec = ns;
}

+extern u32 local_time_seconds(void);
#endif
diff --git a/kernel/time.c b/kernel/time.c
index d3617db..715377d 100644
--- a/kernel/time.c
+++ b/kernel/time.c
@@ -712,3 +712,14 @@ struct timespec timespec_add_safe(const struct timespec lhs,

return res;
}
+
+/*
+ * Convert system time in UTC to local time seconds.
+ */
+u32 local_time_seconds(void)
+{
+ struct timeval utc;
+ do_gettimeofday(&utc);
+ return (u32)(utc.tv_sec - (sys_tz.tz_minuteswest * 60));
+}
+EXPORT_SYMBOL(local_time_seconds);
--
1.7.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/