diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2017-11-09 18:34:28 +0100 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2017-11-10 00:50:29 +0100 |
commit | 65a7935ddc9a1f0c723842776259d76394b4bd11 (patch) | |
tree | b005cc780bed87531976c54df011d25bf5088c93 /fs/xfs/xfs_ioctl.h | |
parent | xfs: handle zero entries case in xfs_iext_rebalance_leaf (diff) | |
download | linux-65a7935ddc9a1f0c723842776259d76394b4bd11.tar.xz linux-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.h')
-rw-r--r-- | fs/xfs/xfs_ioctl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_ioctl.h b/fs/xfs/xfs_ioctl.h index e86c3ea137d2..8de879f0c7d5 100644 --- a/fs/xfs/xfs_ioctl.h +++ b/fs/xfs/xfs_ioctl.h @@ -86,7 +86,7 @@ xfs_file_compat_ioctl( extern int xfs_set_dmattrs( struct xfs_inode *ip, - u_int evmask, - u_int16_t state); + uint evmask, + uint16_t state); #endif |