aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs
diff options
context:
space:
mode:
Diffstat (limited to 'fs/xfs')
-rw-r--r--fs/xfs/linux-2.6/xfs_ioctl.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/xfs/linux-2.6/xfs_ioctl.c b/fs/xfs/linux-2.6/xfs_ioctl.c
index 640c8b6b1956..bf7759793856 100644
--- a/fs/xfs/linux-2.6/xfs_ioctl.c
+++ b/fs/xfs/linux-2.6/xfs_ioctl.c
@@ -1090,10 +1090,12 @@ xfs_ioctl(
1090 return xfs_ioc_fsgetxattr(ip, 0, arg); 1090 return xfs_ioc_fsgetxattr(ip, 0, arg);
1091 case XFS_IOC_FSGETXATTRA: 1091 case XFS_IOC_FSGETXATTRA:
1092 return xfs_ioc_fsgetxattr(ip, 1, arg); 1092 return xfs_ioc_fsgetxattr(ip, 1, arg);
1093 case XFS_IOC_FSSETXATTR:
1094 return xfs_ioc_fssetxattr(ip, filp, arg);
1093 case XFS_IOC_GETXFLAGS: 1095 case XFS_IOC_GETXFLAGS:
1096 return xfs_ioc_getxflags(ip, arg);
1094 case XFS_IOC_SETXFLAGS: 1097 case XFS_IOC_SETXFLAGS:
1095 case XFS_IOC_FSSETXATTR: 1098 return xfs_ioc_setxflags(ip, filp, arg);
1096 return xfs_ioc_xattr(ip, filp, cmd, arg);
1097 1099
1098 case XFS_IOC_FSSETDM: { 1100 case XFS_IOC_FSSETDM: {
1099 struct fsdmidata dmi; 1101 struct fsdmidata dmi;