aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
Diffstat (limited to 'fs')
-rw-r--r--fs/f2fs/file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
index 8d2fce9e7e41..85b665d176a2 100644
--- a/fs/f2fs/file.c
+++ b/fs/f2fs/file.c
@@ -575,10 +575,10 @@ long f2fs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
575 int ret; 575 int ret;
576 576
577 switch (cmd) { 577 switch (cmd) {
578 case FS_IOC_GETFLAGS: 578 case F2FS_IOC_GETFLAGS:
579 flags = fi->i_flags & FS_FL_USER_VISIBLE; 579 flags = fi->i_flags & FS_FL_USER_VISIBLE;
580 return put_user(flags, (int __user *) arg); 580 return put_user(flags, (int __user *) arg);
581 case FS_IOC_SETFLAGS: 581 case F2FS_IOC_SETFLAGS:
582 { 582 {
583 unsigned int oldflags; 583 unsigned int oldflags;
584 584