[PATCH] Clean up the open flags
[safe/jmp/linux-2.6] / include / asm-mips / fcntl.h
1 /*
2  * This file is subject to the terms and conditions of the GNU General Public
3  * License.  See the file "COPYING" in the main directory of this archive
4  * for more details.
5  *
6  * Copyright (C) 1995, 96, 97, 98, 99, 2003 Ralf Baechle
7  */
8 #ifndef _ASM_FCNTL_H
9 #define _ASM_FCNTL_H
10
11 #define O_APPEND        0x0008
12 #define O_SYNC          0x0010
13 #define O_NONBLOCK      0x0080
14 #define O_CREAT         0x0100  /* not fcntl */
15 #define O_EXCL          0x0400  /* not fcntl */
16 #define O_NOCTTY        0x0800  /* not fcntl */
17 #define FASYNC          0x1000  /* fcntl, for BSD compatibility */
18 #define O_LARGEFILE     0x2000  /* allow large file opens */
19 #define O_DIRECT        0x8000  /* direct disk access hint */
20
21 #define F_GETLK         14
22 #define F_SETLK         6
23 #define F_SETLKW        7
24
25 #define F_SETOWN        24      /*  for sockets. */
26 #define F_GETOWN        23      /*  for sockets. */
27 #define F_SETSIG        10      /*  for sockets. */
28 #define F_GETSIG        11      /*  for sockets. */
29
30 #ifndef __mips64
31 #define F_GETLK64       33      /*  using 'struct flock64' */
32 #define F_SETLK64       34
33 #define F_SETLKW64      35
34 #endif
35
36 /* for posix fcntl() and lockf() */
37 #define F_RDLCK         0
38 #define F_WRLCK         1
39 #define F_UNLCK         2
40
41 /* for old implementation of bsd flock () */
42 #define F_EXLCK         4       /* or 3 */
43 #define F_SHLCK         8       /* or 4 */
44
45 /* for leases */
46 #define F_INPROGRESS    16
47
48 /*
49  * The flavours of struct flock.  "struct flock" is the ABI compliant
50  * variant.  Finally struct flock64 is the LFS variant of struct flock.  As
51  * a historic accident and inconsistence with the ABI definition it doesn't
52  * contain all the same fields as struct flock.
53  */
54
55 #ifndef __mips64
56
57 struct flock {
58         short   l_type;
59         short   l_whence;
60         __kernel_off_t l_start;
61         __kernel_off_t l_len;
62         long    l_sysid;
63         __kernel_pid_t l_pid;
64         long    pad[4];
65 } flock_t;
66
67 typedef struct flock64 {
68         short   l_type;
69         short   l_whence;
70         loff_t  l_start;
71         loff_t  l_len;
72         pid_t   l_pid;
73 } flock64_t;
74
75 #else /* 64-bit definitions */
76
77 typedef struct flock {
78         short   l_type;
79         short   l_whence;
80         __kernel_off_t l_start;
81         __kernel_off_t l_len;
82         __kernel_pid_t l_pid;
83 } flock_t;
84
85 #ifdef __KERNEL__
86 #define flock64         flock
87 #endif
88
89 #endif
90
91 #include <asm-generic/fcntl.h>
92
93 #endif /* _ASM_FCNTL_H */