Skip to content

Commit

Permalink
[XFS] move XFS_IOC_GETVERSION to main multiplexer
Browse files Browse the repository at this point in the history
Avoids doing an unnecessary inode to vnode conversion and avoids a memory
allocation.

SGI-PV: 904196
SGI-Modid: xfs-linux-melb:xfs-kern:26492a

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Nathan Scott <nathans@sgi.com>
Signed-off-by: Tim Shimmin <tes@sgi.com>
  • Loading branch information
Alexey Dobriyan authored and Tim Shimmin committed Sep 28, 2006
1 parent 128dabc commit 87395de
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions fs/xfs/linux-2.6/xfs_ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -763,6 +763,8 @@ xfs_ioctl(
return xfs_ioc_fsgeometry(mp, arg);

case XFS_IOC_GETVERSION:
return put_user(inode->i_generation, (int __user *)arg);

case XFS_IOC_GETXFLAGS:
case XFS_IOC_SETXFLAGS:
case XFS_IOC_FSGETXATTR:
Expand Down Expand Up @@ -1264,13 +1266,6 @@ xfs_ioc_xattr(
break;
}

case XFS_IOC_GETVERSION: {
flags = vn_to_inode(vp)->i_generation;
if (copy_to_user(arg, &flags, sizeof(flags)))
error = -EFAULT;
break;
}

default:
error = -ENOTTY;
break;
Expand Down

0 comments on commit 87395de

Please sign in to comment.