aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
Diffstat (limited to 'fs')
-rw-r--r--fs/xattr.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/fs/xattr.c b/fs/xattr.c
index 0367a5dae2b8..197c4fcac032 100644
--- a/fs/xattr.c
+++ b/fs/xattr.c
@@ -499,8 +499,8 @@ SYSCALL_DEFINE2(removexattr, const char __user *, pathname,
499 return error; 499 return error;
500} 500}
501 501
502asmlinkage long 502SYSCALL_DEFINE2(lremovexattr, const char __user *, pathname,
503sys_lremovexattr(const char __user *pathname, const char __user *name) 503 const char __user *, name)
504{ 504{
505 struct path path; 505 struct path path;
506 int error; 506 int error;
@@ -517,8 +517,7 @@ sys_lremovexattr(const char __user *pathname, const char __user *name)
517 return error; 517 return error;
518} 518}
519 519
520asmlinkage long 520SYSCALL_DEFINE2(fremovexattr, int, fd, const char __user *, name)
521sys_fremovexattr(int fd, const char __user *name)
522{ 521{
523 struct file *f; 522 struct file *f;
524 struct dentry *dentry; 523 struct dentry *dentry;