diff options
Diffstat (limited to 'include/asm-s390')
-rw-r--r-- | include/asm-s390/fcntl.h | 9 | ||||
-rw-r--r-- | include/asm-s390/resource.h | 4 | ||||
-rw-r--r-- | include/asm-s390/uaccess.h | 4 |
3 files changed, 12 insertions, 5 deletions
diff --git a/include/asm-s390/fcntl.h b/include/asm-s390/fcntl.h index 3631627a4..c1987889a 100644 --- a/include/asm-s390/fcntl.h +++ b/include/asm-s390/fcntl.h @@ -54,6 +54,9 @@ #define F_EXLCK 4 /* or 3 */ #define F_SHLCK 8 /* or 4 */ +/* for leases */ +#define F_INPROGRESS 16 + /* operations for bsd flock(), also used by the kernel implementation */ #define LOCK_SH 1 /* shared lock */ #define LOCK_EX 2 /* exclusive lock */ @@ -61,6 +64,11 @@ blocking */ #define LOCK_UN 8 /* remove lock */ +#define LOCK_MAND 32 /* This is a mandatory flock */ +#define LOCK_READ 64 /* ... Which allows concurrent read operations */ +#define LOCK_WRITE 128 /* ... Which allows concurrent write operations */ +#define LOCK_RW 192 /* ... Which allows concurrent read & write ops */ + struct flock { short l_type; short l_whence; @@ -69,4 +77,5 @@ struct flock { pid_t l_pid; }; +#define F_LINUX_SPECIFIC_BASE 1024 #endif diff --git a/include/asm-s390/resource.h b/include/asm-s390/resource.h index 9cf7a4993..4e5d91143 100644 --- a/include/asm-s390/resource.h +++ b/include/asm-s390/resource.h @@ -23,8 +23,9 @@ #define RLIMIT_NOFILE 7 /* max number of open files */ #define RLIMIT_MEMLOCK 8 /* max locked-in-memory address space */ #define RLIMIT_AS 9 /* address space limit */ +#define RLIMIT_AS 10 /* maximum file locks held */ -#define RLIM_NLIMITS 10 +#define RLIM_NLIMITS 11 /* * SuS says limits have to be unsigned. @@ -46,6 +47,7 @@ { INR_OPEN, INR_OPEN }, \ { LONG_MAX, LONG_MAX }, \ { LONG_MAX, LONG_MAX }, \ + { LONG_MAX, LONG_MAX }, \ } #endif /* __KERNEL__ */ diff --git a/include/asm-s390/uaccess.h b/include/asm-s390/uaccess.h index 9f448fc50..a19cfa29f 100644 --- a/include/asm-s390/uaccess.h +++ b/include/asm-s390/uaccess.h @@ -407,10 +407,6 @@ __copy_from_user_asm(void* to, const void* from, long n) err; \ }) -#define copy_from_user_ret(to,from,n,retval) ({ if (copy_from_user(to,from,n)) return retval; }) - -#define copy_to_user_ret(to,from,n,retval) ({ if (copy_to_user(to,from,n)) return retval; }) - /* * Copy a null terminated string from userspace. */ |