xref: /linux/arch/powerpc/include/uapi/asm/fcntl.h (revision 498495dba268b20e8eadd7fe93c140c68b6cc9d2)
1*6f52b16cSGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2c3617f72SDavid Howells #ifndef _ASM_FCNTL_H
3c3617f72SDavid Howells #define _ASM_FCNTL_H
4c3617f72SDavid Howells 
5c3617f72SDavid Howells #define O_DIRECTORY      040000	/* must be a directory */
6c3617f72SDavid Howells #define O_NOFOLLOW      0100000	/* don't follow links */
7c3617f72SDavid Howells #define O_LARGEFILE     0200000
8c3617f72SDavid Howells #define O_DIRECT	0400000	/* direct disk access hint */
9c3617f72SDavid Howells 
10c3617f72SDavid Howells #include <asm-generic/fcntl.h>
11c3617f72SDavid Howells 
12c3617f72SDavid Howells #endif /* _ASM_FCNTL_H */
13