From mboxrd@z Thu Jan 1 00:00:00 1970 From: Helge Deller Subject: Re: [PATCH 17/25] parisc: Add 32 bit time_t and clock_t Date: Tue, 13 May 2014 22:17:44 +0200 Message-ID: <53727DE8.7000105@gmx.de> References: <1399971456-3941-1-git-send-email-lftan@altera.com> <1399971966-4598-1-git-send-email-lftan@altera.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Cc: lftan.linux@gmail.com, cltang@codesourcery.com, "James E.J. Bottomley" , linux-parisc@vger.kernel.org To: Ley Foon Tan , linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org Return-path: In-Reply-To: <1399971966-4598-1-git-send-email-lftan@altera.com> List-ID: List-Id: linux-parisc.vger.kernel.org Hi Ley, On 05/13/2014 11:06 AM, Ley Foon Tan wrote: > Override time_t and clock_t in include/uapi/asm-generic. > > Signed-off-by: Ley Foon Tan > --- > arch/parisc/include/uapi/asm/posix_types.h | 8 ++++++++ > 1 file changed, 8 insertions(+) > > diff --git a/arch/parisc/include/uapi/asm/posix_types.h b/arch/parisc/include/uapi/asm/posix_types.h > index b934425..21fcf1c 100644 > --- a/arch/parisc/include/uapi/asm/posix_types.h > +++ b/arch/parisc/include/uapi/asm/posix_types.h > @@ -19,6 +19,14 @@ typedef int __kernel_suseconds_t; > typedef long long __kernel_off64_t; > typedef unsigned long long __kernel_ino64_t; > > +#ifndef CONFIG_64BIT We can't use CONFIG_64BIT for a userspace header file. Please use #if !defined(__LP64__) instead. But even then I'm not sure if it's all correct... Helge > +typedef long __kernel_time_t; > +#define __kernel_time_t __kernel_time_t > + > +typedef long __kernel_clock_t; > +#define __kernel_clock_t __kernel_clock_t > +#endif > + > #include > > #endif >