aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-s390
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2005-09-06 18:17:59 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2005-09-07 19:57:38 -0400
commit1abf62afb6e9cdc1b2618b69067a186b94281587 (patch)
treea3e3266a23d8d75bf6c302763327b60b7372a41c /include/asm-s390
parente64ca97fd80a129e538ca42d0b12c379746b83db (diff)
[PATCH] Clean up the fcntl operations
This patch puts the most popular of each fcntl operation/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-s390')
-rw-r--r--include/asm-s390/fcntl.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/include/asm-s390/fcntl.h b/include/asm-s390/fcntl.h
index ea9a75bd6c96..2974433e8ea4 100644
--- a/include/asm-s390/fcntl.h
+++ b/include/asm-s390/fcntl.h
@@ -8,33 +8,12 @@
8#ifndef _S390_FCNTL_H 8#ifndef _S390_FCNTL_H
9#define _S390_FCNTL_H 9#define _S390_FCNTL_H
10 10
11#define F_GETLK 5
12#define F_SETLK 6
13#define F_SETLKW 7
14
15#define F_SETOWN 8 /* for sockets. */
16#define F_GETOWN 9 /* for sockets. */
17#define F_SETSIG 10 /* for sockets. */
18#define F_GETSIG 11 /* for sockets. */
19
20#ifndef __s390x__ 11#ifndef __s390x__
21#define F_GETLK64 12 /* using 'struct flock64' */ 12#define F_GETLK64 12 /* using 'struct flock64' */
22#define F_SETLK64 13 13#define F_SETLK64 13
23#define F_SETLKW64 14 14#define F_SETLKW64 14
24#endif /* ! __s390x__ */ 15#endif /* ! __s390x__ */
25 16
26/* for posix fcntl() and lockf() */
27#define F_RDLCK 0
28#define F_WRLCK 1
29#define F_UNLCK 2
30
31/* for old implementation of bsd flock () */
32#define F_EXLCK 4 /* or 3 */
33#define F_SHLCK 8 /* or 4 */
34
35/* for leases */
36#define F_INPROGRESS 16
37
38struct flock { 17struct flock {
39 short l_type; 18 short l_type;
40 short l_whence; 19 short l_whence;