]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/asm-mips/fcntl.h
[MIPS] SMTC: Make ack_bad_irq() safe with no IM backstop.
[mirror_ubuntu-artful-kernel.git] / include / asm-mips / fcntl.h
CommitLineData
1da177e4
LT
1/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
b4f8c423 6 * Copyright (C) 1995, 96, 97, 98, 99, 2003, 05 Ralf Baechle
1da177e4
LT
7 */
8#ifndef _ASM_FCNTL_H
9#define _ASM_FCNTL_H
10
b4f8c423 11
1da177e4
LT
12#define O_APPEND 0x0008
13#define O_SYNC 0x0010
14#define O_NONBLOCK 0x0080
15#define O_CREAT 0x0100 /* not fcntl */
1da177e4
LT
16#define O_EXCL 0x0400 /* not fcntl */
17#define O_NOCTTY 0x0800 /* not fcntl */
18#define FASYNC 0x1000 /* fcntl, for BSD compatibility */
19#define O_LARGEFILE 0x2000 /* allow large file opens */
20#define O_DIRECT 0x8000 /* direct disk access hint */
1da177e4 21
1da177e4
LT
22#define F_GETLK 14
23#define F_SETLK 6
24#define F_SETLKW 7
25
26#define F_SETOWN 24 /* for sockets. */
27#define F_GETOWN 23 /* for sockets. */
1da177e4
LT
28
29#ifndef __mips64
30#define F_GETLK64 33 /* using 'struct flock64' */
31#define F_SETLK64 34
32#define F_SETLKW64 35
33#endif
34
1da177e4
LT
35/*
36 * The flavours of struct flock. "struct flock" is the ABI compliant
37 * variant. Finally struct flock64 is the LFS variant of struct flock. As
38 * a historic accident and inconsistence with the ABI definition it doesn't
39 * contain all the same fields as struct flock.
40 */
41
b4f8c423 42#ifdef CONFIG_32BIT
1da177e4 43
9317259e 44struct flock {
1da177e4
LT
45 short l_type;
46 short l_whence;
b4f8c423
RB
47 off_t l_start;
48 off_t l_len;
1da177e4
LT
49 long l_sysid;
50 __kernel_pid_t l_pid;
51 long pad[4];
5ac353f9 52};
1da177e4 53
5ac353f9 54#define HAVE_ARCH_STRUCT_FLOCK
1da177e4 55
b4f8c423 56#endif /* CONFIG_32BIT */
1da177e4 57
9317259e 58#include <asm-generic/fcntl.h>
1da177e4
LT
59
60#endif /* _ASM_FCNTL_H */