From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from Galois.linutronix.de (Galois.linutronix.de [IPv6:2001:470:1f0b:db:abcd:42:0:1]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 2B0741A0C17 for ; Tue, 21 Apr 2015 05:54:36 +1000 (AEST) Date: Mon, 20 Apr 2015 21:14:04 +0200 (CEST) From: Thomas Gleixner To: Baolin Wang Subject: Re: [PATCH 01/11] linux/time64.h:Introduce the 'struct itimerspec64' for 64bit In-Reply-To: <1429509459-17068-2-git-send-email-baolin.wang@linaro.org> Message-ID: References: <1429509459-17068-1-git-send-email-baolin.wang@linaro.org> <1429509459-17068-2-git-send-email-baolin.wang@linaro.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: pang.xunlei@linaro.org, peterz@infradead.org, heiko.carstens@de.ibm.com, paulus@samba.org, cl@linux.com, heenasirwani@gmail.com, linux-arch@vger.kernel.org, linux-s390@vger.kernel.org, y2038@lists.linaro.org, rafael.j.wysocki@intel.com, ahh@google.com, fweisbec@gmail.com, pjt@google.com, riel@redhat.com, arnd@arndb.de, richardcochran@gmail.com, schwidefsky@de.ibm.com, john.stultz@linaro.org, rth@twiddle.net, gregkh@linuxfoundation.org, linux-kernel@vger.kernel.org, netdev@vger.kernel.org, tj@kernel.org, linux390@de.ibm.com, linuxppc-dev@lists.ozlabs.org List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Mon, 20 Apr 2015, Baolin Wang wrote: > This patch introduces the 'struct itimerspec64' for 64bit to replace itimerspec, > and also introduces the conversion methods: itimerspec64_to_itimerspec() and > itimerspec_to_itimerspec64(), that makes itimerspec to ready for 2038 year. > > Signed-off-by: Baolin Wang > --- > include/linux/time64.h | 13 +++++++++++++ > 1 file changed, 13 insertions(+) > > diff --git a/include/linux/time64.h b/include/linux/time64.h > index a383147..3647bdd 100644 > --- a/include/linux/time64.h > +++ b/include/linux/time64.h > @@ -18,6 +18,11 @@ struct timespec64 { > }; > #endif > > +struct itimerspec64 { > + struct timespec64 it_interval; /* timer period */ > + struct timespec64 it_value; /* timer expiration */ > +}; > + > /* Parameters used to convert the timespec values: */ > #define MSEC_PER_SEC 1000L > #define USEC_PER_MSEC 1000L > @@ -187,4 +192,12 @@ static __always_inline void timespec64_add_ns(struct timespec64 *a, u64 ns) > > #endif > > +#define itimerspec64_to_itimerspec(its64) \ > +#define itimerspec_to_itimerspec64(its) \ 1.) Make these static inlines please. These macros are not typesafe. 2.) Use pointers to the input value. Thanks. tglx