Message ID | 1399971966-4598-1-git-send-email-lftan@altera.com (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
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 <lftan@altera.com> > --- > 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 <asm-generic/posix_types.h> > > #endif > -- To unsubscribe from this list: send the line "unsubscribe linux-parisc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Wed, May 14, 2014 at 4:17 AM, Helge Deller <deller@gmx.de> wrote: > 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 <lftan@altera.com> >> --- >> 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... Okay, will change to this. Maybe can try compile and boot with this change. Thanks. Regards Ley Foon -- To unsubscribe from this list: send the line "unsubscribe linux-parisc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On 05/13/2014 01:17 PM, Helge Deller wrote: > > 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... > __u64 (or __s64) works fine in that case. -hpa -- To unsubscribe from this list: send the line "unsubscribe linux-parisc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
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 +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 <asm-generic/posix_types.h> #endif
Override time_t and clock_t in include/uapi/asm-generic. Signed-off-by: Ley Foon Tan <lftan@altera.com> --- arch/parisc/include/uapi/asm/posix_types.h | 8 ++++++++ 1 file changed, 8 insertions(+)