xref: /OK3568_Linux_fs/kernel/arch/arm/include/uapi/asm/fcntl.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2*4882a593Smuzhiyun #ifndef _ARM_FCNTL_H
3*4882a593Smuzhiyun #define _ARM_FCNTL_H
4*4882a593Smuzhiyun 
5*4882a593Smuzhiyun #define O_DIRECTORY	 040000	/* must be a directory */
6*4882a593Smuzhiyun #define O_NOFOLLOW	0100000	/* don't follow links */
7*4882a593Smuzhiyun #define O_DIRECT	0200000	/* direct disk access hint - currently ignored */
8*4882a593Smuzhiyun #define O_LARGEFILE	0400000
9*4882a593Smuzhiyun 
10*4882a593Smuzhiyun #include <asm-generic/fcntl.h>
11*4882a593Smuzhiyun 
12*4882a593Smuzhiyun #endif
13