Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752060AbcLLWSj (ORCPT ); Mon, 12 Dec 2016 17:18:39 -0500 Received: from mail-oi0-f67.google.com ([209.85.218.67]:34881 "EHLO mail-oi0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750969AbcLLWSg (ORCPT ); Mon, 12 Dec 2016 17:18:36 -0500 MIME-Version: 1.0 In-Reply-To: <1480629741-18375-2-git-send-email-richard@nod.at> References: <1480629741-18375-1-git-send-email-richard@nod.at> <1480629741-18375-2-git-send-email-richard@nod.at> From: Richard Weinberger Date: Mon, 12 Dec 2016 23:18:35 +0100 Message-ID: Subject: Re: [PATCH 1/6] ext4: Move is_32bit_api() to generic code To: Richard Weinberger Cc: "linux-mtd@lists.infradead.org" , David Gstir , "Theodore Ts'o" , Artem Bityutskiy , Adrian Hunter , LKML , linux-fsdevel , adilger.kernel@dilger.ca, Andrew Morton , linux-ext4@vger.kernel.org Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1696 Lines: 55 On Thu, Dec 1, 2016 at 11:02 PM, Richard Weinberger wrote: > Since UBIFS will also use this function, move it to compat.h. > > Signed-off-by: Richard Weinberger > --- > fs/ext4/dir.c | 9 --------- > include/linux/compat.h | 2 ++ > 2 files changed, 2 insertions(+), 9 deletions(-) > > diff --git a/fs/ext4/dir.c b/fs/ext4/dir.c > index e8b365000d73..464e6e99d744 100644 > --- a/fs/ext4/dir.c > +++ b/fs/ext4/dir.c > @@ -290,15 +290,6 @@ static int ext4_readdir(struct file *file, struct dir_context *ctx) > return err; > } > > -static inline int is_32bit_api(void) > -{ > -#ifdef CONFIG_COMPAT > - return in_compat_syscall(); > -#else > - return (BITS_PER_LONG == 32); > -#endif > -} > - > /* > * These functions convert from the major/minor hash to an f_pos > * value for dx directories > diff --git a/include/linux/compat.h b/include/linux/compat.h > index 63609398ef9f..8412382e8d08 100644 > --- a/include/linux/compat.h > +++ b/include/linux/compat.h > @@ -730,11 +730,13 @@ asmlinkage long compat_sys_fanotify_mark(int, unsigned int, __u32, __u32, > #ifndef in_compat_syscall > static inline bool in_compat_syscall(void) { return is_compat_task(); } > #endif > +static inline int is_32bit_api(void) { return in_compat_syscall(); } > > #else > > #define is_compat_task() (0) > static inline bool in_compat_syscall(void) { return false; } > +static inline int is_32bit_api(void) { return BITS_PER_LONG == 32; } > > #endif /* CONFIG_COMPAT */ Just realized that this patch didn't get any feedback. Ted, are you fine with it? Anyway, exportable UBIFS has to wait until the next merge window. -- Thanks, //richard