From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ley Foon Tan Subject: [PATCH 19/25] s390: Add 32 bit time_t and clock_t Date: Tue, 13 May 2014 17:06:17 +0800 Message-ID: <1399971977-4670-1-git-send-email-lftan@altera.com> References: <1399971456-3941-1-git-send-email-lftan@altera.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from mail-by2on0133.outbound.protection.outlook.com ([207.46.100.133]:33810 "EHLO na01-by2-obe.outbound.protection.outlook.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752759AbaEMJG1 (ORCPT ); Tue, 13 May 2014 05:06:27 -0400 In-Reply-To: <1399971456-3941-1-git-send-email-lftan@altera.com> Sender: linux-arch-owner@vger.kernel.org List-ID: To: linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Ley Foon Tan , lftan.linux@gmail.com, cltang@codesourcery.com, Martin Schwidefsky , Heiko Carstens , linux390@de.ibm.com Override time_t and clock_t in include/uapi/asm-generic. Signed-off-by: Ley Foon Tan --- arch/s390/include/uapi/asm/posix_types.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/arch/s390/include/uapi/asm/posix_types.h b/arch/s390/include/uapi/asm/posix_types.h index bf2a2ad..95729a3 100644 --- a/arch/s390/include/uapi/asm/posix_types.h +++ b/arch/s390/include/uapi/asm/posix_types.h @@ -28,6 +28,12 @@ typedef unsigned short __kernel_uid_t; typedef unsigned short __kernel_gid_t; typedef int __kernel_ptrdiff_t; +typedef long __kernel_time_t; +#define __kernel_time_t __kernel_time_t + +typedef long __kernel_clock_t; +#define __kernel_clock_t __kernel_clock_t + #else /* __s390x__ */ typedef unsigned int __kernel_ino_t; -- 1.8.2.1