diff options
Diffstat (limited to 'include/linux/syscalls.h')
-rw-r--r-- | include/linux/syscalls.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h index b299a82a05e7..18771cac2f85 100644 --- a/include/linux/syscalls.h +++ b/include/linux/syscalls.h | |||
@@ -462,9 +462,9 @@ asmlinkage long sys_pread64(unsigned int fd, char __user *buf, | |||
462 | asmlinkage long sys_pwrite64(unsigned int fd, const char __user *buf, | 462 | asmlinkage long sys_pwrite64(unsigned int fd, const char __user *buf, |
463 | size_t count, loff_t pos); | 463 | size_t count, loff_t pos); |
464 | asmlinkage long sys_preadv(unsigned long fd, const struct iovec __user *vec, | 464 | asmlinkage long sys_preadv(unsigned long fd, const struct iovec __user *vec, |
465 | unsigned long vlen, u32 pos_high, u32 pos_low); | 465 | unsigned long vlen, unsigned long pos_l, unsigned long pos_h); |
466 | asmlinkage long sys_pwritev(unsigned long fd, const struct iovec __user *vec, | 466 | asmlinkage long sys_pwritev(unsigned long fd, const struct iovec __user *vec, |
467 | unsigned long vlen, u32 pos_high, u32 pos_low); | 467 | unsigned long vlen, unsigned long pos_l, unsigned long pos_h); |
468 | asmlinkage long sys_getcwd(char __user *buf, unsigned long size); | 468 | asmlinkage long sys_getcwd(char __user *buf, unsigned long size); |
469 | asmlinkage long sys_mkdir(const char __user *pathname, int mode); | 469 | asmlinkage long sys_mkdir(const char __user *pathname, int mode); |
470 | asmlinkage long sys_chdir(const char __user *filename); | 470 | asmlinkage long sys_chdir(const char __user *filename); |