Skip to content

Commit

Permalink
[XFS] Fix merge failure
Browse files Browse the repository at this point in the history
  • Loading branch information
Lachlan McIlroy committed Apr 18, 2008
1 parent 3b2816b commit 65e67f5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions fs/xfs/linux-2.6/xfs_ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -1090,10 +1090,12 @@ xfs_ioctl(
return xfs_ioc_fsgetxattr(ip, 0, arg);
case XFS_IOC_FSGETXATTRA:
return xfs_ioc_fsgetxattr(ip, 1, arg);
case XFS_IOC_FSSETXATTR:
return xfs_ioc_fssetxattr(ip, filp, arg);
case XFS_IOC_GETXFLAGS:
return xfs_ioc_getxflags(ip, arg);
case XFS_IOC_SETXFLAGS:
case XFS_IOC_FSSETXATTR:
return xfs_ioc_xattr(ip, filp, cmd, arg);
return xfs_ioc_setxflags(ip, filp, arg);

case XFS_IOC_FSSETDM: {
struct fsdmidata dmi;
Expand Down

0 comments on commit 65e67f5

Please sign in to comment.