diff options
Diffstat (limited to 'fs/open.c')
-rw-r--r-- | fs/open.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -522,7 +522,7 @@ SYSCALL_DEFINE2(access, const char __user *, filename, int, mode) | |||
522 | return sys_faccessat(AT_FDCWD, filename, mode); | 522 | return sys_faccessat(AT_FDCWD, filename, mode); |
523 | } | 523 | } |
524 | 524 | ||
525 | asmlinkage long sys_chdir(const char __user * filename) | 525 | SYSCALL_DEFINE1(chdir, const char __user *, filename) |
526 | { | 526 | { |
527 | struct path path; | 527 | struct path path; |
528 | int error; | 528 | int error; |
@@ -543,7 +543,7 @@ out: | |||
543 | return error; | 543 | return error; |
544 | } | 544 | } |
545 | 545 | ||
546 | asmlinkage long sys_fchdir(unsigned int fd) | 546 | SYSCALL_DEFINE1(fchdir, unsigned int, fd) |
547 | { | 547 | { |
548 | struct file *file; | 548 | struct file *file; |
549 | struct inode *inode; | 549 | struct inode *inode; |