aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-cris/fcntl.h
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2005-09-06 18:17:57 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2005-09-07 19:57:37 -0400
commit9317259ead88fe6c05120ae1e3ace99738e2c698 (patch)
treeb899748ca57a96d59003945f97ceae01b5fdc48c /include/asm-cris/fcntl.h
parent5ba4d46dc44c5399bc4e7a39239de5a1690848a4 (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-cris/fcntl.h')
-rw-r--r--include/asm-cris/fcntl.h26
1 files changed, 1 insertions, 25 deletions
diff --git a/include/asm-cris/fcntl.h b/include/asm-cris/fcntl.h
index 61c563242b51..edde3cc65604 100644
--- a/include/asm-cris/fcntl.h
+++ b/include/asm-cris/fcntl.h
@@ -5,10 +5,6 @@
5 5
6/* open/fcntl - O_SYNC is only implemented on blocks devices and on files 6/* open/fcntl - O_SYNC is only implemented on blocks devices and on files
7 located on an ext2 file system */ 7 located on an ext2 file system */
8#define O_ACCMODE 0003
9#define O_RDONLY 00
10#define O_WRONLY 01
11#define O_RDWR 02
12#define O_CREAT 0100 /* not fcntl */ 8#define O_CREAT 0100 /* not fcntl */
13#define O_EXCL 0200 /* not fcntl */ 9#define O_EXCL 0200 /* not fcntl */
14#define O_NOCTTY 0400 /* not fcntl */ 10#define O_NOCTTY 0400 /* not fcntl */
@@ -24,11 +20,6 @@
24#define O_NOFOLLOW 0400000 /* don't follow links */ 20#define O_NOFOLLOW 0400000 /* don't follow links */
25#define O_NOATIME 01000000 21#define O_NOATIME 01000000
26 22
27#define F_DUPFD 0 /* dup */
28#define F_GETFD 1 /* get f_flags */
29#define F_SETFD 2 /* set f_flags */
30#define F_GETFL 3 /* more flags (cloexec) */
31#define F_SETFL 4
32#define F_GETLK 5 23#define F_GETLK 5
33#define F_SETLK 6 24#define F_SETLK 6
34#define F_SETLKW 7 25#define F_SETLKW 7
@@ -42,9 +33,6 @@
42#define F_SETLK64 13 33#define F_SETLK64 13
43#define F_SETLKW64 14 34#define F_SETLKW64 14
44 35
45/* for F_[GET|SET]FL */
46#define FD_CLOEXEC 1 /* actually anything with low bit set goes */
47
48/* for posix fcntl() and lockf() */ 36/* for posix fcntl() and lockf() */
49#define F_RDLCK 0 37#define F_RDLCK 0
50#define F_WRLCK 1 38#define F_WRLCK 1
@@ -57,18 +45,6 @@
57/* for leases */ 45/* for leases */
58#define F_INPROGRESS 16 46#define F_INPROGRESS 16
59 47
60/* operations for bsd flock(), also used by the kernel implementation */
61#define LOCK_SH 1 /* shared lock */
62#define LOCK_EX 2 /* exclusive lock */
63#define LOCK_NB 4 /* or'd with one of the above to prevent
64 blocking */
65#define LOCK_UN 8 /* remove lock */
66
67#define LOCK_MAND 32 /* This is a mandatory flock */
68#define LOCK_READ 64 /* ... Which allows concurrent read operations */
69#define LOCK_WRITE 128 /* ... Which allows concurrent write operations */
70#define LOCK_RW 192 /* ... Which allows concurrent read & write ops */
71
72struct flock { 48struct flock {
73 short l_type; 49 short l_type;
74 short l_whence; 50 short l_whence;
@@ -85,6 +61,6 @@ struct flock64 {
85 pid_t l_pid; 61 pid_t l_pid;
86}; 62};
87 63
88#define F_LINUX_SPECIFIC_BASE 1024 64#include <asm-generic/fcntl.h>
89 65
90#endif 66#endif