xfs: actually enable the swapext compat handler

Fix a small typo in the compat ioctl handler that cause the swapext
compat handler to never be called.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Torsten Kaiser <just.for.lkml@googlemail.com>
Tested-by: Torsten Kaiser <just.for.lkml@googlemail.com>
Reviewed-by: Eric Sandeen <sandeen@sandeen.net>
Reviewed-by: Felix Blyakher <felixb@sgi.com>
Signed-off-by: Felix Blyakher <felixb@sgi.com>

authored by Christoph Hellwig and committed by Felix Blyakher 3725867d bc990f5c

+1 -1
+1 -1
fs/xfs/linux-2.6/xfs_ioctl32.c
··· 619 619 case XFS_IOC_GETVERSION_32: 620 620 cmd = _NATIVE_IOC(cmd, long); 621 621 return xfs_file_ioctl(filp, cmd, p); 622 - case XFS_IOC_SWAPEXT: { 622 + case XFS_IOC_SWAPEXT_32: { 623 623 struct xfs_swapext sxp; 624 624 struct compat_xfs_swapext __user *sxu = arg; 625 625