aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
Diffstat (limited to 'fs')
-rw-r--r--fs/read_write.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/fs/read_write.c b/fs/read_write.c
index 1193ffd03565..edc5746a902a 100644
--- a/fs/read_write.c
+++ b/fs/read_write.c
@@ -964,9 +964,9 @@ out:
964 return ret; 964 return ret;
965} 965}
966 966
967COMPAT_SYSCALL_DEFINE3(readv, unsigned long, fd, 967COMPAT_SYSCALL_DEFINE3(readv, compat_ulong_t, fd,
968 const struct compat_iovec __user *,vec, 968 const struct compat_iovec __user *,vec,
969 unsigned long, vlen) 969 compat_ulong_t, vlen)
970{ 970{
971 struct fd f = fdget(fd); 971 struct fd f = fdget(fd);
972 ssize_t ret; 972 ssize_t ret;
@@ -1001,9 +1001,9 @@ COMPAT_SYSCALL_DEFINE4(preadv64, unsigned long, fd,
1001 return ret; 1001 return ret;
1002} 1002}
1003 1003
1004COMPAT_SYSCALL_DEFINE5(preadv, unsigned long, fd, 1004COMPAT_SYSCALL_DEFINE5(preadv, compat_ulong_t, fd,
1005 const struct compat_iovec __user *,vec, 1005 const struct compat_iovec __user *,vec,
1006 unsigned long, vlen, u32, pos_low, u32, pos_high) 1006 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
1007{ 1007{
1008 loff_t pos = ((loff_t)pos_high << 32) | pos_low; 1008 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1009 return compat_sys_preadv64(fd, vec, vlen, pos); 1009 return compat_sys_preadv64(fd, vec, vlen, pos);
@@ -1031,9 +1031,9 @@ out:
1031 return ret; 1031 return ret;
1032} 1032}
1033 1033
1034COMPAT_SYSCALL_DEFINE3(writev, unsigned long, fd, 1034COMPAT_SYSCALL_DEFINE3(writev, compat_ulong_t, fd,
1035 const struct compat_iovec __user *, vec, 1035 const struct compat_iovec __user *, vec,
1036 unsigned long, vlen) 1036 compat_ulong_t, vlen)
1037{ 1037{
1038 struct fd f = fdget(fd); 1038 struct fd f = fdget(fd);
1039 ssize_t ret; 1039 ssize_t ret;
@@ -1068,9 +1068,9 @@ COMPAT_SYSCALL_DEFINE4(pwritev64, unsigned long, fd,
1068 return ret; 1068 return ret;
1069} 1069}
1070 1070
1071COMPAT_SYSCALL_DEFINE5(pwritev, unsigned long, fd, 1071COMPAT_SYSCALL_DEFINE5(pwritev, compat_ulong_t, fd,
1072 const struct compat_iovec __user *,vec, 1072 const struct compat_iovec __user *,vec,
1073 unsigned long, vlen, u32, pos_low, u32, pos_high) 1073 compat_ulong_t, vlen, u32, pos_low, u32, pos_high)
1074{ 1074{
1075 loff_t pos = ((loff_t)pos_high << 32) | pos_low; 1075 loff_t pos = ((loff_t)pos_high << 32) | pos_low;
1076 return compat_sys_pwritev64(fd, vec, vlen, pos); 1076 return compat_sys_pwritev64(fd, vec, vlen, pos);