1 #ifndef _ASM_GENERIC_FCNTL_H
2 #define _ASM_GENERIC_FCNTL_H
4 #include <linux/types.h>
6 /* open/fcntl - O_SYNC is only implemented on blocks devices and on files
7 located on an ext2 file system */
8 #define O_ACCMODE 00000003
9 #define O_RDONLY 00000000
10 #define O_WRONLY 00000001
11 #define O_RDWR 00000002
13 #define O_CREAT 00000100 /* not fcntl */
16 #define O_EXCL 00000200 /* not fcntl */
19 #define O_NOCTTY 00000400 /* not fcntl */
22 #define O_TRUNC 00001000 /* not fcntl */
25 #define O_APPEND 00002000
28 #define O_NONBLOCK 00004000
31 #define O_SYNC 00010000
34 #define FASYNC 00020000 /* fcntl, for BSD compatibility */
37 #define O_DIRECT 00040000 /* direct disk access hint */
40 #define O_LARGEFILE 00100000
43 #define O_DIRECTORY 00200000 /* must be a directory */
46 #define O_NOFOLLOW 00400000 /* don't follow links */
49 #define O_NOATIME 01000000
52 #define O_CLOEXEC 02000000 /* set close_on_exec */
55 #define O_NDELAY O_NONBLOCK
58 #define F_DUPFD 0 /* dup */
59 #define F_GETFD 1 /* get close_on_exec */
60 #define F_SETFD 2 /* set/clear close_on_exec */
61 #define F_GETFL 3 /* get file->f_flags */
62 #define F_SETFL 4 /* set file->f_flags */
69 #define F_SETOWN 8 /* for sockets. */
70 #define F_GETOWN 9 /* for sockets. */
73 #define F_SETSIG 10 /* for sockets. */
74 #define F_GETSIG 11 /* for sockets. */
77 #define F_SETOWN_EX 12
78 #define F_GETOWN_EX 13
90 /* for F_[GET|SET]FL */
91 #define FD_CLOEXEC 1 /* actually anything with low bit set goes */
93 /* for posix fcntl() and lockf() */
100 /* for old implementation of bsd flock () */
102 #define F_EXLCK 4 /* or 3 */
103 #define F_SHLCK 8 /* or 4 */
108 #define F_INPROGRESS 16
111 /* operations for bsd flock(), also used by the kernel implementation */
112 #define LOCK_SH 1 /* shared lock */
113 #define LOCK_EX 2 /* exclusive lock */
114 #define LOCK_NB 4 /* or'd with one of the above to prevent
116 #define LOCK_UN 8 /* remove lock */
118 #define LOCK_MAND 32 /* This is a mandatory flock ... */
119 #define LOCK_READ 64 /* which allows concurrent read operations */
120 #define LOCK_WRITE 128 /* which allows concurrent write operations */
121 #define LOCK_RW 192 /* which allows concurrent read & write ops */
123 #define F_LINUX_SPECIFIC_BASE 1024
125 #ifndef HAVE_ARCH_STRUCT_FLOCK
126 #ifndef __ARCH_FLOCK_PAD
127 #define __ARCH_FLOCK_PAD
133 __kernel_off_t l_start
;
134 __kernel_off_t l_len
;
135 __kernel_pid_t l_pid
;
143 #define F_GETLK64 12 /* using 'struct flock64' */
145 #define F_SETLKW64 14
148 #ifndef HAVE_ARCH_STRUCT_FLOCK64
149 #ifndef __ARCH_FLOCK64_PAD
150 #define __ARCH_FLOCK64_PAD
156 __kernel_loff_t l_start
;
157 __kernel_loff_t l_len
;
158 __kernel_pid_t l_pid
;
162 #endif /* !CONFIG_64BIT */
164 #endif /* _ASM_GENERIC_FCNTL_H */