diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2005-09-06 18:17:58 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-07 19:57:38 -0400 |
commit | e64ca97fd80a129e538ca42d0b12c379746b83db (patch) | |
tree | 196c445874941ffbcca785be713338f647b42d5b /include/asm-generic | |
parent | 2b2fa38e5f3f17a5e1ef3fe29a9869d93197ebfd (diff) |
[PATCH] Clean up the open flags
This patch puts the most popular of each open flag into asm-generic/fcntl.h
and cleans up the arch files.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-generic')
-rw-r--r-- | include/asm-generic/fcntl.h | 52 |
1 files changed, 48 insertions, 4 deletions
diff --git a/include/asm-generic/fcntl.h b/include/asm-generic/fcntl.h index d256c5bb6edc..f3690e73a40f 100644 --- a/include/asm-generic/fcntl.h +++ b/include/asm-generic/fcntl.h | |||
@@ -1,10 +1,54 @@ | |||
1 | #ifndef _ASM_GENERIC_FCNTL_H | 1 | #ifndef _ASM_GENERIC_FCNTL_H |
2 | #define _ASM_GENERIC_FCNTL_H | 2 | #define _ASM_GENERIC_FCNTL_H |
3 | 3 | ||
4 | #define O_ACCMODE 0003 | 4 | /* open/fcntl - O_SYNC is only implemented on blocks devices and on files |
5 | #define O_RDONLY 0000 | 5 | located on an ext2 file system */ |
6 | #define O_WRONLY 0001 | 6 | #define O_ACCMODE 00000003 |
7 | #define O_RDWR 0002 | 7 | #define O_RDONLY 00000000 |
8 | #define O_WRONLY 00000001 | ||
9 | #define O_RDWR 00000002 | ||
10 | #ifndef O_CREAT | ||
11 | #define O_CREAT 00000100 /* not fcntl */ | ||
12 | #endif | ||
13 | #ifndef O_EXCL | ||
14 | #define O_EXCL 00000200 /* not fcntl */ | ||
15 | #endif | ||
16 | #ifndef O_NOCTTY | ||
17 | #define O_NOCTTY 00000400 /* not fcntl */ | ||
18 | #endif | ||
19 | #ifndef O_TRUNC | ||
20 | #define O_TRUNC 00001000 /* not fcntl */ | ||
21 | #endif | ||
22 | #ifndef O_APPEND | ||
23 | #define O_APPEND 00002000 | ||
24 | #endif | ||
25 | #ifndef O_NONBLOCK | ||
26 | #define O_NONBLOCK 00004000 | ||
27 | #endif | ||
28 | #ifndef O_SYNC | ||
29 | #define O_SYNC 00010000 | ||
30 | #endif | ||
31 | #ifndef FASYNC | ||
32 | #define FASYNC 00020000 /* fcntl, for BSD compatibility */ | ||
33 | #endif | ||
34 | #ifndef O_DIRECT | ||
35 | #define O_DIRECT 00040000 /* direct disk access hint */ | ||
36 | #endif | ||
37 | #ifndef O_LARGEFILE | ||
38 | #define O_LARGEFILE 00100000 | ||
39 | #endif | ||
40 | #ifndef O_DIRECTORY | ||
41 | #define O_DIRECTORY 00200000 /* must be a directory */ | ||
42 | #endif | ||
43 | #ifndef O_NOFOLLOW | ||
44 | #define O_NOFOLLOW 00400000 /* don't follow links */ | ||
45 | #endif | ||
46 | #ifndef O_NOATIME | ||
47 | #define O_NOATIME 01000000 | ||
48 | #endif | ||
49 | #ifndef O_NDELAY | ||
50 | #define O_NDELAY O_NONBLOCK | ||
51 | #endif | ||
8 | 52 | ||
9 | #define F_DUPFD 0 /* dup */ | 53 | #define F_DUPFD 0 /* dup */ |
10 | #define F_GETFD 1 /* get close_on_exec */ | 54 | #define F_GETFD 1 /* get close_on_exec */ |