From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753494AbdK0Tbg (ORCPT ); Mon, 27 Nov 2017 14:31:36 -0500 Received: from mail-qk0-f194.google.com ([209.85.220.194]:34188 "EHLO mail-qk0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752734AbdK0Tbc (ORCPT ); Mon, 27 Nov 2017 14:31:32 -0500 X-Google-Smtp-Source: AGs4zMbzT/3tJULNm9AjDI3WnH73a2fOCz7E0f0rmcCkti1jh/ym3W7aP1MvBWVBBwEsxxpHN8CoUg== From: Deepa Dinamani To: tglx@linutronix.de, john.stultz@linaro.org Cc: linux-kernel@vger.kernel.org, arnd@arndb.de, y2038@lists.linaro.org Subject: [PATCH v2 01/10] compat: Make compat helpers independent of CONFIG_COMPAT Date: Mon, 27 Nov 2017 11:30:28 -0800 Message-Id: <20171127193037.8711-2-deepa.kernel@gmail.com> X-Mailer: git-send-email 2.14.1 In-Reply-To: <20171127193037.8711-1-deepa.kernel@gmail.com> References: <20171127193037.8711-1-deepa.kernel@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Many of the compat time syscalls are also repurposed as 32 bit native syscalls to provide backward compatibility while adding new y2038 safe sycalls. Enabling the helpers makes this possible. Signed-off-by: Arnd Bergmann Signed-off-by: Deepa Dinamani --- include/linux/compat.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/include/linux/compat.h b/include/linux/compat.h index 0fc36406f32c..b24aaf66feb4 100644 --- a/include/linux/compat.h +++ b/include/linux/compat.h @@ -8,8 +8,6 @@ #include -#ifdef CONFIG_COMPAT - #include #include /* for HZ */ #include @@ -19,9 +17,11 @@ #include /* for aio_context_t */ #include +#ifdef CONFIG_COMPAT #include #include #include +#endif #ifndef COMPAT_USE_64BIT_TIME #define COMPAT_USE_64BIT_TIME 0 @@ -58,6 +58,8 @@ } \ static inline long C_SYSC##name(__MAP(x,__SC_DECL,__VA_ARGS__)) +#ifdef CONFIG_COMPAT + #ifndef compat_user_stack_pointer #define compat_user_stack_pointer() current_user_stack_pointer() #endif @@ -771,7 +773,9 @@ static inline struct compat_timeval ns_to_compat_timeval(s64 nsec) #else /* !CONFIG_COMPAT */ #define is_compat_task() (0) +#ifndef in_compat_syscall static inline bool in_compat_syscall(void) { return false; } +#endif #endif /* CONFIG_COMPAT */ -- 2.14.1