This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / include / asm-generic / fcntl.h
1 #ifndef _ASM_GENERIC_FCNTL_H
2 #define _ASM_GENERIC_FCNTL_H
3
4 #include <linux/config.h>
5 #include <linux/types.h>
6
7 /* open/fcntl - O_SYNC is only implemented on blocks devices and on files
8    located on an ext2 file system */
9 #define O_ACCMODE       00000003
10 #define O_RDONLY        00000000
11 #define O_WRONLY        00000001
12 #define O_RDWR          00000002
13 #ifndef O_CREAT
14 #define O_CREAT         00000100        /* not fcntl */
15 #endif
16 #ifndef O_EXCL
17 #define O_EXCL          00000200        /* not fcntl */
18 #endif
19 #ifndef O_NOCTTY
20 #define O_NOCTTY        00000400        /* not fcntl */
21 #endif
22 #ifndef O_TRUNC
23 #define O_TRUNC         00001000        /* not fcntl */
24 #endif
25 #ifndef O_APPEND
26 #define O_APPEND        00002000
27 #endif
28 #ifndef O_NONBLOCK
29 #define O_NONBLOCK      00004000
30 #endif
31 #ifndef O_SYNC
32 #define O_SYNC          00010000
33 #endif
34 #ifndef FASYNC
35 #define FASYNC          00020000        /* fcntl, for BSD compatibility */
36 #endif
37 #ifndef O_DIRECT
38 #define O_DIRECT        00040000        /* direct disk access hint */
39 #endif
40 #ifndef O_LARGEFILE
41 #define O_LARGEFILE     00100000
42 #endif
43 #ifndef O_DIRECTORY
44 #define O_DIRECTORY     00200000        /* must be a directory */
45 #endif
46 #ifndef O_NOFOLLOW
47 #define O_NOFOLLOW      00400000        /* don't follow links */
48 #endif
49 #ifndef O_NOATIME
50 #define O_NOATIME       01000000
51 #endif
52 #ifndef O_ATOMICLOOKUP
53 #define O_ATOMICLOOKUP  02000000        /* do atomic file lookup */
54 #endif
55
56 #ifndef O_NDELAY
57 #define O_NDELAY        O_NONBLOCK
58 #endif
59
60 #define F_DUPFD         0       /* dup */
61 #define F_GETFD         1       /* get close_on_exec */
62 #define F_SETFD         2       /* set/clear close_on_exec */
63 #define F_GETFL         3       /* get file->f_flags */
64 #define F_SETFL         4       /* set file->f_flags */
65 #ifndef F_GETLK
66 #define F_GETLK         5
67 #define F_SETLK         6
68 #define F_SETLKW        7
69 #endif
70 #ifndef F_SETOWN
71 #define F_SETOWN        8       /* for sockets. */
72 #define F_GETOWN        9       /* for sockets. */
73 #endif
74 #ifndef F_SETSIG
75 #define F_SETSIG        10      /* for sockets. */
76 #define F_GETSIG        11      /* for sockets. */
77 #endif
78
79 /* for F_[GET|SET]FL */
80 #define FD_CLOEXEC      1       /* actually anything with low bit set goes */
81
82 /* for posix fcntl() and lockf() */
83 #ifndef F_RDLCK
84 #define F_RDLCK         0
85 #define F_WRLCK         1
86 #define F_UNLCK         2
87 #endif
88
89 /* for old implementation of bsd flock () */
90 #ifndef F_EXLCK
91 #define F_EXLCK         4       /* or 3 */
92 #define F_SHLCK         8       /* or 4 */
93 #endif
94
95 /* for leases */
96 #ifndef F_INPROGRESS
97 #define F_INPROGRESS    16
98 #endif
99
100 /* operations for bsd flock(), also used by the kernel implementation */
101 #define LOCK_SH         1       /* shared lock */
102 #define LOCK_EX         2       /* exclusive lock */
103 #define LOCK_NB         4       /* or'd with one of the above to prevent
104                                    blocking */
105 #define LOCK_UN         8       /* remove lock */
106
107 #define LOCK_MAND       32      /* This is a mandatory flock ... */
108 #define LOCK_READ       64      /* which allows concurrent read operations */
109 #define LOCK_WRITE      128     /* which allows concurrent write operations */
110 #define LOCK_RW         192     /* which allows concurrent read & write ops */
111
112 #define F_LINUX_SPECIFIC_BASE   1024
113
114 #ifndef HAVE_ARCH_STRUCT_FLOCK
115 #ifndef __ARCH_FLOCK_PAD
116 #define __ARCH_FLOCK_PAD
117 #endif
118
119 struct flock {
120         short   l_type;
121         short   l_whence;
122         off_t   l_start;
123         off_t   l_len;
124         pid_t   l_pid;
125         __ARCH_FLOCK_PAD
126 };
127 #endif
128
129 #ifndef CONFIG_64BIT
130
131 #ifndef F_GETLK64
132 #define F_GETLK64       12      /*  using 'struct flock64' */
133 #define F_SETLK64       13
134 #define F_SETLKW64      14
135 #endif
136
137 #ifndef HAVE_ARCH_STRUCT_FLOCK64
138 #ifndef __ARCH_FLOCK64_PAD
139 #define __ARCH_FLOCK64_PAD
140 #endif
141
142 struct flock64 {
143         short  l_type;
144         short  l_whence;
145         loff_t l_start;
146         loff_t l_len;
147         pid_t  l_pid;
148         __ARCH_FLOCK64_PAD
149 };
150 #endif
151 #endif /* !CONFIG_64BIT */
152
153 #endif /* _ASM_GENERIC_FCNTL_H */