diff options
| author | 2017-11-09 09:34:28 -0800 | |
|---|---|---|
| committer | 2017-11-09 15:50:29 -0800 | |
| commit | 65a7935ddc9a1f0c723842776259d76394b4bd11 (patch) | |
| tree | b005cc780bed87531976c54df011d25bf5088c93 /fs/xfs/xfs_ioctl.c | |
| parent | xfs: handle zero entries case in xfs_iext_rebalance_leaf (diff) | |
| download | linux-dev-65a7935ddc9a1f0c723842776259d76394b4bd11.tar.xz linux-dev-65a7935ddc9a1f0c723842776259d76394b4bd11.zip | |
xfs: remove u_int* type usage
Use the uint* types instead of the u_int* types. This will (hopefully)
pair with an xfsprogs cleanup.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Diffstat (limited to 'fs/xfs/xfs_ioctl.c')
| -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 65a7951957c2..20dc65fef6a4 100644 --- a/fs/xfs/xfs_ioctl.c +++ b/fs/xfs/xfs_ioctl.c @@ -311,8 +311,8 @@ xfs_readlink_by_handle( int xfs_set_dmattrs( xfs_inode_t *ip, - u_int evmask, - u_int16_t state) + uint evmask, + uint16_t state) { xfs_mount_t *mp = ip->i_mount; xfs_trans_t *tp; |
