#include <linux/compat.h>      /* compat_ptr() */
 #include <linux/mount.h>       /* mnt_want_write_file(), mnt_drop_write_file() */
 #include <linux/buffer_head.h>
+#include <linux/fileattr.h>
 #include "nilfs.h"
 #include "segment.h"
 #include "bmap.h"
 }
 
 /**
- * nilfs_ioctl_getflags - ioctl to support lsattr
+ * nilfs_fileattr_get - ioctl to support lsattr
  */
-static int nilfs_ioctl_getflags(struct inode *inode, void __user *argp)
+int nilfs_fileattr_get(struct dentry *dentry, struct fileattr *fa)
 {
-       unsigned int flags = NILFS_I(inode)->i_flags & FS_FL_USER_VISIBLE;
+       struct inode *inode = d_inode(dentry);
 
-       return put_user(flags, (int __user *)argp);
+       fileattr_fill_flags(fa, NILFS_I(inode)->i_flags & FS_FL_USER_VISIBLE);
+
+       return 0;
 }
 
 /**
- * nilfs_ioctl_setflags - ioctl to support chattr
+ * nilfs_fileattr_set - ioctl to support chattr
  */
-static int nilfs_ioctl_setflags(struct inode *inode, struct file *filp,
-                               void __user *argp)
+int nilfs_fileattr_set(struct user_namespace *mnt_userns,
+                      struct dentry *dentry, struct fileattr *fa)
 {
+       struct inode *inode = d_inode(dentry);
        struct nilfs_transaction_info ti;
        unsigned int flags, oldflags;
        int ret;
 
-       if (!inode_owner_or_capable(&init_user_ns, inode))
-               return -EACCES;
-
-       if (get_user(flags, (int __user *)argp))
-               return -EFAULT;
-
-       ret = mnt_want_write_file(filp);
-       if (ret)
-               return ret;
-
-       flags = nilfs_mask_flags(inode->i_mode, flags);
-
-       inode_lock(inode);
-
-       oldflags = NILFS_I(inode)->i_flags;
+       if (fileattr_has_fsx(fa))
+               return -EOPNOTSUPP;
 
-       ret = vfs_ioc_setflags_prepare(inode, oldflags, flags);
-       if (ret)
-               goto out;
+       flags = nilfs_mask_flags(inode->i_mode, fa->flags);
 
        ret = nilfs_transaction_begin(inode->i_sb, &ti, 0);
        if (ret)
-               goto out;
+               return ret;
 
-       NILFS_I(inode)->i_flags = (oldflags & ~FS_FL_USER_MODIFIABLE) |
-               (flags & FS_FL_USER_MODIFIABLE);
+       oldflags = NILFS_I(inode)->i_flags & ~FS_FL_USER_MODIFIABLE;
+       NILFS_I(inode)->i_flags = oldflags | (flags & FS_FL_USER_MODIFIABLE);
 
        nilfs_set_inode_flags(inode);
        inode->i_ctime = current_time(inode);
                nilfs_set_transaction_flag(NILFS_TI_SYNC);
 
        nilfs_mark_inode_dirty(inode);
-       ret = nilfs_transaction_commit(inode->i_sb);
-out:
-       inode_unlock(inode);
-       mnt_drop_write_file(filp);
-       return ret;
+       return nilfs_transaction_commit(inode->i_sb);
 }
 
 /**
        void __user *argp = (void __user *)arg;
 
        switch (cmd) {
-       case FS_IOC_GETFLAGS:
-               return nilfs_ioctl_getflags(inode, argp);
-       case FS_IOC_SETFLAGS:
-               return nilfs_ioctl_setflags(inode, filp, argp);
        case FS_IOC_GETVERSION:
                return nilfs_ioctl_getversion(inode, argp);
        case NILFS_IOCTL_CHANGE_CPMODE:
 long nilfs_compat_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
 {
        switch (cmd) {
-       case FS_IOC32_GETFLAGS:
-               cmd = FS_IOC_GETFLAGS;
-               break;
-       case FS_IOC32_SETFLAGS:
-               cmd = FS_IOC_SETFLAGS;
-               break;
        case FS_IOC32_GETVERSION:
                cmd = FS_IOC_GETVERSION;
                break;
 
 extern int nilfs_sync_file(struct file *, loff_t, loff_t, int);
 
 /* ioctl.c */
+int nilfs_fileattr_get(struct dentry *dentry, struct fileattr *m);
+int nilfs_fileattr_set(struct user_namespace *mnt_userns,
+                      struct dentry *dentry, struct fileattr *fa);
 long nilfs_ioctl(struct file *, unsigned int, unsigned long);
 long nilfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
 int nilfs_ioctl_prepare_clean_segments(struct the_nilfs *, struct nilfs_argv *,