From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759613AbaEMJCw (ORCPT ); Tue, 13 May 2014 05:02:52 -0400 Received: from mail-by2on0130.outbound.protection.outlook.com ([207.46.100.130]:3699 "EHLO na01-by2-obe.outbound.protection.outlook.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1754763AbaEMJCs (ORCPT ); Tue, 13 May 2014 05:02:48 -0400 From: Ley Foon Tan To: , CC: Ley Foon Tan , , , Vineet Gupta Subject: [PATCH 02/25] arc: Add 32 bit time_t and clock_t Date: Tue, 13 May 2014 17:02:36 +0800 Message-ID: <1399971756-4042-1-git-send-email-lftan@altera.com> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: <1399971456-3941-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 X-EOPAttributedMessage: 0 X-Forefront-Antispam-Report: CIP:66.35.236.232;CTRY:US;IPV:NLI;IPV:NLI;EFV:NLI;SFV:NSPM;SFS:(10019001)(6009001)(189002)(199002)(62966002)(83072002)(81542001)(87286001)(92566001)(92726001)(89996001)(86362001)(2009001)(76176999)(77156001)(48376002)(50466002)(31966008)(33646001)(74502001)(36756003)(50986999)(19580395003)(4396001)(19580405001)(47776003)(83322001)(44976005)(6806004)(87936001)(84676001)(50226001)(79102001)(46102001)(81342001)(80022001)(85852003)(74662001)(16796002)(77982001)(20776003)(102836001)(76482001);DIR:OUT;SFP:1102;SCL:1;SRVR:BN1BFFO11HUB047;H:SJ-ITEXEDGE02.altera.priv.altera.com;FPR:;MLV:sfv;PTR:InfoDomainNonexistent;MX:1;A:1;LANG:en; X-OriginatorOrg: altera.onmicrosoft.com X-Forefront-PRVS: 0210479ED8 Authentication-Results: spf=softfail (sender IP is 66.35.236.232) smtp.mailfrom=lftan@altera.com; Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Override time_t and clock_t in include/uapi/asm-generic. Signed-off-by: Ley Foon Tan --- arch/arc/include/asm/Kbuild | 1 - arch/arc/include/uapi/asm/Kbuild | 1 + arch/arc/include/uapi/asm/posix_types.h | 17 +++++++++++++++++ 3 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 arch/arc/include/uapi/asm/posix_types.h diff --git a/arch/arc/include/asm/Kbuild b/arch/arc/include/asm/Kbuild index e76fd79..2186afc 100644 --- a/arch/arc/include/asm/Kbuild +++ b/arch/arc/include/asm/Kbuild @@ -30,7 +30,6 @@ generic-y += parport.h generic-y += pci.h generic-y += percpu.h generic-y += poll.h -generic-y += posix_types.h generic-y += preempt.h generic-y += resource.h generic-y += scatterlist.h diff --git a/arch/arc/include/uapi/asm/Kbuild b/arch/arc/include/uapi/asm/Kbuild index 18fefae..1d6ffba 100644 --- a/arch/arc/include/uapi/asm/Kbuild +++ b/arch/arc/include/uapi/asm/Kbuild @@ -5,6 +5,7 @@ header-y += page.h header-y += setup.h header-y += byteorder.h header-y += cachectl.h +header-y += posix_types.h header-y += ptrace.h header-y += sigcontext.h header-y += signal.h diff --git a/arch/arc/include/uapi/asm/posix_types.h b/arch/arc/include/uapi/asm/posix_types.h new file mode 100644 index 0000000..ac69105 --- /dev/null +++ b/arch/arc/include/uapi/asm/posix_types.h @@ -0,0 +1,17 @@ +#ifndef __ARCH_ARC_POSIX_TYPES_H +#define __ARCH_ARC_POSIX_TYPES_H + +/* + * This file is generally used by user-level software, so you need to + * be a little careful about namespace pollution etc. Also, we cannot + * assume GCC is being used. + */ +typedef long __kernel_time_t; +#define __kernel_time_t __kernel_time_t + +typedef long __kernel_clock_t; +#define __kernel_clock_t __kernel_clock_t + +#include + +#endif -- 1.8.2.1