diff options
| author | Christoph Hellwig <hch@lst.de> | 2026-07-29 15:03:03 +0200 |
|---|---|---|
| committer | Carlos Maiolino <cem@kernel.org> | 2026-09-07 07:51:51 +0200 |
| commit | 2e9b75546a69d6a56c40d30e8afd6c920c03ca03 (patch) | |
| tree | 3758216e80e9b241d75c9b0adb54c971f789d128 | |
| parent | b076be93abb3913e061827455dceb135c5cbe37b (diff) | |
| download | linux-next-2e9b75546a69d6a56c40d30e8afd6c920c03ca03.tar.gz linux-next-2e9b75546a69d6a56c40d30e8afd6c920c03ca03.zip | |
xfs: rename xfs_ioctl_getset_resblocks to xfs_ioc_getset_resblocks
Match the naming scheme of most other ioctl handlers.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: "Darrick J. Wong" <djwong@kernel.org>
Signed-off-by: Carlos Maiolino <cem@kernel.org>
| -rw-r--r-- | fs/xfs/xfs_ioctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_ioctl.c b/fs/xfs/xfs_ioctl.c index e0da8dfc9ae6..479947456b1f 100644 --- a/fs/xfs/xfs_ioctl.c +++ b/fs/xfs/xfs_ioctl.c @@ -1144,7 +1144,7 @@ xfs_fs_eofblocks_from_user( } static int -xfs_ioctl_getset_resblocks( +xfs_ioc_getset_resblocks( struct file *filp, unsigned int cmd, void __user *arg) @@ -1351,7 +1351,7 @@ xfs_file_ioctl( case XFS_IOC_SET_RESBLKS: case XFS_IOC_GET_RESBLKS: - return xfs_ioctl_getset_resblocks(filp, cmd, arg); + return xfs_ioc_getset_resblocks(filp, cmd, arg); case XFS_IOC_FSGROWFSDATA: { struct xfs_growfs_data in; |
