Commit 818d5a91 authored by Xiao Yang's avatar Xiao Yang Committed by Darrick J. Wong

fs/xfs: Support that ioctl(SETXFLAGS/GETXFLAGS) can set/get inode DAX on XFS.

1) FS_DAX_FL has been introduced by commit b383a73f.
2) In future, chattr/lsattr command from e2fsprogs can set/get
   inode DAX on XFS by calling ioctl(SETXFLAGS/GETXFLAGS).
Signed-off-by: default avatarXiao Yang <yangx.jy@cn.fujitsu.com>
Reviewed-by: default avatarDarrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: default avatarDarrick J. Wong <darrick.wong@oracle.com>
parent 0f89edcd
...@@ -1075,13 +1075,18 @@ xfs_merge_ioc_xflags( ...@@ -1075,13 +1075,18 @@ xfs_merge_ioc_xflags(
xflags |= FS_XFLAG_NODUMP; xflags |= FS_XFLAG_NODUMP;
else else
xflags &= ~FS_XFLAG_NODUMP; xflags &= ~FS_XFLAG_NODUMP;
if (flags & FS_DAX_FL)
xflags |= FS_XFLAG_DAX;
else
xflags &= ~FS_XFLAG_DAX;
return xflags; return xflags;
} }
STATIC unsigned int STATIC unsigned int
xfs_di2lxflags( xfs_di2lxflags(
uint16_t di_flags) uint16_t di_flags,
uint64_t di_flags2)
{ {
unsigned int flags = 0; unsigned int flags = 0;
...@@ -1095,6 +1100,9 @@ xfs_di2lxflags( ...@@ -1095,6 +1100,9 @@ xfs_di2lxflags(
flags |= FS_NOATIME_FL; flags |= FS_NOATIME_FL;
if (di_flags & XFS_DIFLAG_NODUMP) if (di_flags & XFS_DIFLAG_NODUMP)
flags |= FS_NODUMP_FL; flags |= FS_NODUMP_FL;
if (di_flags2 & XFS_DIFLAG2_DAX) {
flags |= FS_DAX_FL;
}
return flags; return flags;
} }
...@@ -1565,7 +1573,7 @@ xfs_ioc_getxflags( ...@@ -1565,7 +1573,7 @@ xfs_ioc_getxflags(
{ {
unsigned int flags; unsigned int flags;
flags = xfs_di2lxflags(ip->i_d.di_flags); flags = xfs_di2lxflags(ip->i_d.di_flags, ip->i_d.di_flags2);
if (copy_to_user(arg, &flags, sizeof(flags))) if (copy_to_user(arg, &flags, sizeof(flags)))
return -EFAULT; return -EFAULT;
return 0; return 0;
...@@ -1588,7 +1596,7 @@ xfs_ioc_setxflags( ...@@ -1588,7 +1596,7 @@ xfs_ioc_setxflags(
if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \ if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
FS_NOATIME_FL | FS_NODUMP_FL | \ FS_NOATIME_FL | FS_NODUMP_FL | \
FS_SYNC_FL)) FS_SYNC_FL | FS_DAX_FL))
return -EOPNOTSUPP; return -EOPNOTSUPP;
fa.fsx_xflags = xfs_merge_ioc_xflags(flags, xfs_ip2xflags(ip)); fa.fsx_xflags = xfs_merge_ioc_xflags(flags, xfs_ip2xflags(ip));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment