diff options
author | Gao Xiang <hsiangkao@redhat.com> | 2021-02-02 18:24:06 -0800 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2021-02-03 09:18:50 -0800 |
commit | 07aabd9c4a881276cf9b7b2d3a7f1d14dd832ed0 (patch) | |
tree | b5c2e84ce6e49589e0d3ae8405f0ab79a4f8aacb /fs/xfs/xfs_fsops.h | |
parent | ce5e1062e2539c7f7d311548494ea2705184c784 (diff) | |
download | linux-07aabd9c4a881276cf9b7b2d3a7f1d14dd832ed0.tar.gz linux-07aabd9c4a881276cf9b7b2d3a7f1d14dd832ed0.tar.bz2 linux-07aabd9c4a881276cf9b7b2d3a7f1d14dd832ed0.zip |
xfs: get rid of xfs_growfs_{data,log}_t
Such usage isn't encouraged by the kernel coding style. Leave the
definitions alone in case of userspace users.
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: Gao Xiang <hsiangkao@redhat.com>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Diffstat (limited to 'fs/xfs/xfs_fsops.h')
-rw-r--r-- | fs/xfs/xfs_fsops.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_fsops.h b/fs/xfs/xfs_fsops.h index 92869f6ec8d3..2cffe51a31e8 100644 --- a/fs/xfs/xfs_fsops.h +++ b/fs/xfs/xfs_fsops.h @@ -6,8 +6,8 @@ #ifndef __XFS_FSOPS_H__ #define __XFS_FSOPS_H__ -extern int xfs_growfs_data(xfs_mount_t *mp, xfs_growfs_data_t *in); -extern int xfs_growfs_log(xfs_mount_t *mp, xfs_growfs_log_t *in); +extern int xfs_growfs_data(struct xfs_mount *mp, struct xfs_growfs_data *in); +extern int xfs_growfs_log(struct xfs_mount *mp, struct xfs_growfs_log *in); extern void xfs_fs_counts(xfs_mount_t *mp, xfs_fsop_counts_t *cnt); extern int xfs_reserve_blocks(xfs_mount_t *mp, uint64_t *inval, xfs_fsop_resblks_t *outval); |