diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2005-09-06 18:17:57 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-07 19:57:37 -0400 |
commit | 9317259ead88fe6c05120ae1e3ace99738e2c698 (patch) | |
tree | b899748ca57a96d59003945f97ceae01b5fdc48c /include/asm-ppc64 | |
parent | 5ba4d46dc44c5399bc4e7a39239de5a1690848a4 (diff) |
[PATCH] Create asm-generic/fcntl.h
This set of patches creates asm-generic/fcntl.h and consolidates as much as
possible from the asm-*/fcntl.h files into it.
This patch just gathers all the identical bits of the asm-*/fcntl.h files into
asm-generic/fcntl.h.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Yoichi Yuasa <yuasa@hh.iij4u.or.jp>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-ppc64')
-rw-r--r-- | include/asm-ppc64/fcntl.h | 26 |
1 files changed, 1 insertions, 25 deletions
diff --git a/include/asm-ppc64/fcntl.h b/include/asm-ppc64/fcntl.h index 842560d50656..579a5292fd52 100644 --- a/include/asm-ppc64/fcntl.h +++ b/include/asm-ppc64/fcntl.h | |||
@@ -10,10 +10,6 @@ | |||
10 | 10 | ||
11 | /* open/fcntl - O_SYNC is only implemented on blocks devices and on files | 11 | /* open/fcntl - O_SYNC is only implemented on blocks devices and on files |
12 | located on an ext2 file system */ | 12 | located on an ext2 file system */ |
13 | #define O_ACCMODE 0003 | ||
14 | #define O_RDONLY 00 | ||
15 | #define O_WRONLY 01 | ||
16 | #define O_RDWR 02 | ||
17 | #define O_CREAT 0100 /* not fcntl */ | 13 | #define O_CREAT 0100 /* not fcntl */ |
18 | #define O_EXCL 0200 /* not fcntl */ | 14 | #define O_EXCL 0200 /* not fcntl */ |
19 | #define O_NOCTTY 0400 /* not fcntl */ | 15 | #define O_NOCTTY 0400 /* not fcntl */ |
@@ -29,11 +25,6 @@ | |||
29 | #define O_DIRECT 0400000 /* direct disk access hint */ | 25 | #define O_DIRECT 0400000 /* direct disk access hint */ |
30 | #define O_NOATIME 01000000 | 26 | #define O_NOATIME 01000000 |
31 | 27 | ||
32 | #define F_DUPFD 0 /* dup */ | ||
33 | #define F_GETFD 1 /* get close_on_exec */ | ||
34 | #define F_SETFD 2 /* set/clear close_on_exec */ | ||
35 | #define F_GETFL 3 /* get file->f_flags */ | ||
36 | #define F_SETFL 4 /* set file->f_flags */ | ||
37 | #define F_GETLK 5 | 28 | #define F_GETLK 5 |
38 | #define F_SETLK 6 | 29 | #define F_SETLK 6 |
39 | #define F_SETLKW 7 | 30 | #define F_SETLKW 7 |
@@ -43,9 +34,6 @@ | |||
43 | #define F_SETSIG 10 /* for sockets. */ | 34 | #define F_SETSIG 10 /* for sockets. */ |
44 | #define F_GETSIG 11 /* for sockets. */ | 35 | #define F_GETSIG 11 /* for sockets. */ |
45 | 36 | ||
46 | /* for F_[GET|SET]FL */ | ||
47 | #define FD_CLOEXEC 1 /* actually anything with low bit set goes */ | ||
48 | |||
49 | /* for posix fcntl() and lockf() */ | 37 | /* for posix fcntl() and lockf() */ |
50 | #define F_RDLCK 0 | 38 | #define F_RDLCK 0 |
51 | #define F_WRLCK 1 | 39 | #define F_WRLCK 1 |
@@ -58,18 +46,6 @@ | |||
58 | /* for leases */ | 46 | /* for leases */ |
59 | #define F_INPROGRESS 16 | 47 | #define F_INPROGRESS 16 |
60 | 48 | ||
61 | /* operations for bsd flock(), also used by the kernel implementation */ | ||
62 | #define LOCK_SH 1 /* shared lock */ | ||
63 | #define LOCK_EX 2 /* exclusive lock */ | ||
64 | #define LOCK_NB 4 /* or'd with one of the above to prevent | ||
65 | blocking */ | ||
66 | #define LOCK_UN 8 /* remove lock */ | ||
67 | |||
68 | #define LOCK_MAND 32 /* This is a mandatory flock */ | ||
69 | #define LOCK_READ 64 /* ... Which allows concurrent read operations */ | ||
70 | #define LOCK_WRITE 128 /* ... Which allows concurrent write operations */ | ||
71 | #define LOCK_RW 192 /* ... Which allows concurrent read & write ops */ | ||
72 | |||
73 | #ifdef __KERNEL__ | 49 | #ifdef __KERNEL__ |
74 | #define F_POSIX 1 | 50 | #define F_POSIX 1 |
75 | #define F_FLOCK 2 | 51 | #define F_FLOCK 2 |
@@ -84,6 +60,6 @@ struct flock { | |||
84 | pid_t l_pid; | 60 | pid_t l_pid; |
85 | }; | 61 | }; |
86 | 62 | ||
87 | #define F_LINUX_SPECIFIC_BASE 1024 | 63 | #include <asm-generic/fcntl.h> |
88 | 64 | ||
89 | #endif /* _PPC64_FCNTL_H */ | 65 | #endif /* _PPC64_FCNTL_H */ |