diff options
Diffstat (limited to 'include/asm-mips/fcntl.h')
-rw-r--r-- | include/asm-mips/fcntl.h | 75 |
1 files changed, 8 insertions, 67 deletions
diff --git a/include/asm-mips/fcntl.h b/include/asm-mips/fcntl.h index 2436392e7990..06c5d13faf66 100644 --- a/include/asm-mips/fcntl.h +++ b/include/asm-mips/fcntl.h | |||
@@ -8,33 +8,16 @@ | |||
8 | #ifndef _ASM_FCNTL_H | 8 | #ifndef _ASM_FCNTL_H |
9 | #define _ASM_FCNTL_H | 9 | #define _ASM_FCNTL_H |
10 | 10 | ||
11 | /* open/fcntl - O_SYNC is only implemented on blocks devices and on files | ||
12 | located on an ext2 file system */ | ||
13 | #define O_ACCMODE 0x0003 | ||
14 | #define O_RDONLY 0x0000 | ||
15 | #define O_WRONLY 0x0001 | ||
16 | #define O_RDWR 0x0002 | ||
17 | #define O_APPEND 0x0008 | 11 | #define O_APPEND 0x0008 |
18 | #define O_SYNC 0x0010 | 12 | #define O_SYNC 0x0010 |
19 | #define O_NONBLOCK 0x0080 | 13 | #define O_NONBLOCK 0x0080 |
20 | #define O_CREAT 0x0100 /* not fcntl */ | 14 | #define O_CREAT 0x0100 /* not fcntl */ |
21 | #define O_TRUNC 0x0200 /* not fcntl */ | ||
22 | #define O_EXCL 0x0400 /* not fcntl */ | 15 | #define O_EXCL 0x0400 /* not fcntl */ |
23 | #define O_NOCTTY 0x0800 /* not fcntl */ | 16 | #define O_NOCTTY 0x0800 /* not fcntl */ |
24 | #define FASYNC 0x1000 /* fcntl, for BSD compatibility */ | 17 | #define FASYNC 0x1000 /* fcntl, for BSD compatibility */ |
25 | #define O_LARGEFILE 0x2000 /* allow large file opens */ | 18 | #define O_LARGEFILE 0x2000 /* allow large file opens */ |
26 | #define O_DIRECT 0x8000 /* direct disk access hint */ | 19 | #define O_DIRECT 0x8000 /* direct disk access hint */ |
27 | #define O_DIRECTORY 0x10000 /* must be a directory */ | ||
28 | #define O_NOFOLLOW 0x20000 /* don't follow links */ | ||
29 | #define O_NOATIME 0x40000 | ||
30 | 20 | ||
31 | #define O_NDELAY O_NONBLOCK | ||
32 | |||
33 | #define F_DUPFD 0 /* dup */ | ||
34 | #define F_GETFD 1 /* get close_on_exec */ | ||
35 | #define F_SETFD 2 /* set/clear close_on_exec */ | ||
36 | #define F_GETFL 3 /* get file->f_flags */ | ||
37 | #define F_SETFL 4 /* set file->f_flags */ | ||
38 | #define F_GETLK 14 | 21 | #define F_GETLK 14 |
39 | #define F_SETLK 6 | 22 | #define F_SETLK 6 |
40 | #define F_SETLKW 7 | 23 | #define F_SETLKW 7 |
@@ -50,33 +33,6 @@ | |||
50 | #define F_SETLKW64 35 | 33 | #define F_SETLKW64 35 |
51 | #endif | 34 | #endif |
52 | 35 | ||
53 | /* for F_[GET|SET]FL */ | ||
54 | #define FD_CLOEXEC 1 /* actually anything with low bit set goes */ | ||
55 | |||
56 | /* for posix fcntl() and lockf() */ | ||
57 | #define F_RDLCK 0 | ||
58 | #define F_WRLCK 1 | ||
59 | #define F_UNLCK 2 | ||
60 | |||
61 | /* for old implementation of bsd flock () */ | ||
62 | #define F_EXLCK 4 /* or 3 */ | ||
63 | #define F_SHLCK 8 /* or 4 */ | ||
64 | |||
65 | /* for leases */ | ||
66 | #define F_INPROGRESS 16 | ||
67 | |||
68 | /* operations for bsd flock(), also used by the kernel implementation */ | ||
69 | #define LOCK_SH 1 /* shared lock */ | ||
70 | #define LOCK_EX 2 /* exclusive lock */ | ||
71 | #define LOCK_NB 4 /* or'd with one of the above to prevent | ||
72 | blocking */ | ||
73 | #define LOCK_UN 8 /* remove lock */ | ||
74 | |||
75 | #define LOCK_MAND 32 /* This is a mandatory flock */ | ||
76 | #define LOCK_READ 64 /* ... Which allows concurrent read operations */ | ||
77 | #define LOCK_WRITE 128 /* ... Which allows concurrent write operations */ | ||
78 | #define LOCK_RW 192 /* ... Which allows concurrent read & write ops */ | ||
79 | |||
80 | /* | 36 | /* |
81 | * The flavours of struct flock. "struct flock" is the ABI compliant | 37 | * The flavours of struct flock. "struct flock" is the ABI compliant |
82 | * variant. Finally struct flock64 is the LFS variant of struct flock. As | 38 | * variant. Finally struct flock64 is the LFS variant of struct flock. As |
@@ -86,7 +42,7 @@ | |||
86 | 42 | ||
87 | #ifndef __mips64 | 43 | #ifndef __mips64 |
88 | 44 | ||
89 | typedef struct flock { | 45 | struct flock { |
90 | short l_type; | 46 | short l_type; |
91 | short l_whence; | 47 | short l_whence; |
92 | __kernel_off_t l_start; | 48 | __kernel_off_t l_start; |
@@ -94,32 +50,17 @@ typedef struct flock { | |||
94 | long l_sysid; | 50 | long l_sysid; |
95 | __kernel_pid_t l_pid; | 51 | __kernel_pid_t l_pid; |
96 | long pad[4]; | 52 | long pad[4]; |
97 | } flock_t; | 53 | }; |
98 | |||
99 | typedef struct flock64 { | ||
100 | short l_type; | ||
101 | short l_whence; | ||
102 | loff_t l_start; | ||
103 | loff_t l_len; | ||
104 | pid_t l_pid; | ||
105 | } flock64_t; | ||
106 | 54 | ||
107 | #else /* 64-bit definitions */ | 55 | #define HAVE_ARCH_STRUCT_FLOCK |
108 | 56 | ||
109 | typedef struct flock { | ||
110 | short l_type; | ||
111 | short l_whence; | ||
112 | __kernel_off_t l_start; | ||
113 | __kernel_off_t l_len; | ||
114 | __kernel_pid_t l_pid; | ||
115 | } flock_t; | ||
116 | |||
117 | #ifdef __KERNEL__ | ||
118 | #define flock64 flock | ||
119 | #endif | 57 | #endif |
120 | 58 | ||
121 | #endif | 59 | #include <asm-generic/fcntl.h> |
122 | 60 | ||
123 | #define F_LINUX_SPECIFIC_BASE 1024 | 61 | typedef struct flock flock_t; |
62 | #ifndef __mips64 | ||
63 | typedef struct flock64 flock64_t; | ||
64 | #endif | ||
124 | 65 | ||
125 | #endif /* _ASM_FCNTL_H */ | 66 | #endif /* _ASM_FCNTL_H */ |