aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLachlan McIlroy <lachlan@redback.melbourne.sgi.com>2008-04-17 22:59:45 -0400
committerLachlan McIlroy <lachlan@redback.melbourne.sgi.com>2008-04-17 22:59:45 -0400
commit65e67f5165c8a156b34ee7adf65d5ed3b16a910d (patch)
tree6b2e82205ae59b2304d38880c15e62a229d70691
parent3b2816be271b8b364294a5b48721a3e68af46cfa (diff)
[XFS] Fix merge failure
-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;