mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-11 20:07:00 +00:00
f9af420fc8
fs/notify/fanotify/fanotify_user.c: In function 'SYSC_fanotify_init': fs/notify/fanotify/fanotify_user.c:726: error: implicit declaration of function 'personality' fs/notify/fanotify/fanotify_user.c:726: error: 'PER_LINUX32' undeclared (first use in this function) fs/notify/fanotify/fanotify_user.c:726: error: (Each undeclared identifier is reported only once fs/notify/fanotify/fanotify_user.c:726: error: for each function it appears in.) Reported-by: Wu Fengguang <fengguang.wu@intel.com> Cc: Will Woods <wwoods@redhat.com> Cc: "Luck, Tony" <tony.luck@intel.com> Cc: <stable@vger.kernel.org> [3.15.x] Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
15 lines
325 B
C
15 lines
325 B
C
#ifndef _ASM_IA64_FCNTL_H
|
|
#define _ASM_IA64_FCNTL_H
|
|
/*
|
|
* Modified 1998-2000
|
|
* David Mosberger-Tang <davidm@hpl.hp.com>, Hewlett-Packard Co.
|
|
*/
|
|
|
|
#define force_o_largefile() \
|
|
(personality(current->personality) != PER_LINUX32)
|
|
|
|
#include <linux/personality.h>
|
|
#include <asm-generic/fcntl.h>
|
|
|
|
#endif /* _ASM_IA64_FCNTL_H */
|