diff options
Diffstat (limited to 'include/asm-mips/fcntl.h')
-rw-r--r-- | include/asm-mips/fcntl.h | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/include/asm-mips/fcntl.h b/include/asm-mips/fcntl.h index 06c5d13faf66..43d047a9a6af 100644 --- a/include/asm-mips/fcntl.h +++ b/include/asm-mips/fcntl.h | |||
@@ -3,11 +3,13 @@ | |||
3 | * License. See the file "COPYING" in the main directory of this archive | 3 | * License. See the file "COPYING" in the main directory of this archive |
4 | * for more details. | 4 | * for more details. |
5 | * | 5 | * |
6 | * Copyright (C) 1995, 96, 97, 98, 99, 2003 Ralf Baechle | 6 | * Copyright (C) 1995, 96, 97, 98, 99, 2003, 05 Ralf Baechle |
7 | */ | 7 | */ |
8 | #ifndef _ASM_FCNTL_H | 8 | #ifndef _ASM_FCNTL_H |
9 | #define _ASM_FCNTL_H | 9 | #define _ASM_FCNTL_H |
10 | 10 | ||
11 | #include <linux/config.h> | ||
12 | |||
11 | #define O_APPEND 0x0008 | 13 | #define O_APPEND 0x0008 |
12 | #define O_SYNC 0x0010 | 14 | #define O_SYNC 0x0010 |
13 | #define O_NONBLOCK 0x0080 | 15 | #define O_NONBLOCK 0x0080 |
@@ -40,13 +42,13 @@ | |||
40 | * contain all the same fields as struct flock. | 42 | * contain all the same fields as struct flock. |
41 | */ | 43 | */ |
42 | 44 | ||
43 | #ifndef __mips64 | 45 | #ifdef CONFIG_32BIT |
44 | 46 | ||
45 | struct flock { | 47 | struct flock { |
46 | short l_type; | 48 | short l_type; |
47 | short l_whence; | 49 | short l_whence; |
48 | __kernel_off_t l_start; | 50 | off_t l_start; |
49 | __kernel_off_t l_len; | 51 | off_t l_len; |
50 | long l_sysid; | 52 | long l_sysid; |
51 | __kernel_pid_t l_pid; | 53 | __kernel_pid_t l_pid; |
52 | long pad[4]; | 54 | long pad[4]; |
@@ -54,13 +56,8 @@ struct flock { | |||
54 | 56 | ||
55 | #define HAVE_ARCH_STRUCT_FLOCK | 57 | #define HAVE_ARCH_STRUCT_FLOCK |
56 | 58 | ||
57 | #endif | 59 | #endif /* CONFIG_32BIT */ |
58 | 60 | ||
59 | #include <asm-generic/fcntl.h> | 61 | #include <asm-generic/fcntl.h> |
60 | 62 | ||
61 | typedef struct flock flock_t; | ||
62 | #ifndef __mips64 | ||
63 | typedef struct flock64 flock64_t; | ||
64 | #endif | ||
65 | |||
66 | #endif /* _ASM_FCNTL_H */ | 63 | #endif /* _ASM_FCNTL_H */ |