Commit 65a7935d authored by Darrick J. Wong's avatar Darrick J. Wong

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: default avatarDarrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: default avatarDave Chinner <dchinner@redhat.com>
parent ae82968e
...@@ -1147,7 +1147,7 @@ static inline void xfs_dinode_put_rdev(struct xfs_dinode *dip, xfs_dev_t rdev) ...@@ -1147,7 +1147,7 @@ static inline void xfs_dinode_put_rdev(struct xfs_dinode *dip, xfs_dev_t rdev)
* Dquot and dquot block format definitions * Dquot and dquot block format definitions
*/ */
#define XFS_DQUOT_MAGIC 0x4451 /* 'DQ' */ #define XFS_DQUOT_MAGIC 0x4451 /* 'DQ' */
#define XFS_DQUOT_VERSION (u_int8_t)0x01 /* latest version number */ #define XFS_DQUOT_VERSION (uint8_t)0x01 /* latest version number */
/* /*
* This is the main portion of the on-disk representation of quota * This is the main portion of the on-disk representation of quota
......
...@@ -546,8 +546,8 @@ xfs_attr_list_int( ...@@ -546,8 +546,8 @@ xfs_attr_list_int(
#define ATTR_ENTBASESIZE /* minimum bytes used by an attr */ \ #define ATTR_ENTBASESIZE /* minimum bytes used by an attr */ \
(((struct attrlist_ent *) 0)->a_name - (char *) 0) (((struct attrlist_ent *) 0)->a_name - (char *) 0)
#define ATTR_ENTSIZE(namelen) /* actual bytes used by an attr */ \ #define ATTR_ENTSIZE(namelen) /* actual bytes used by an attr */ \
((ATTR_ENTBASESIZE + (namelen) + 1 + sizeof(u_int32_t)-1) \ ((ATTR_ENTBASESIZE + (namelen) + 1 + sizeof(uint32_t)-1) \
& ~(sizeof(u_int32_t)-1)) & ~(sizeof(uint32_t)-1))
/* /*
* Format an attribute and copy it out to the user's buffer. * Format an attribute and copy it out to the user's buffer.
......
...@@ -311,8 +311,8 @@ xfs_readlink_by_handle( ...@@ -311,8 +311,8 @@ xfs_readlink_by_handle(
int int
xfs_set_dmattrs( xfs_set_dmattrs(
xfs_inode_t *ip, xfs_inode_t *ip,
u_int evmask, uint evmask,
u_int16_t state) uint16_t state)
{ {
xfs_mount_t *mp = ip->i_mount; xfs_mount_t *mp = ip->i_mount;
xfs_trans_t *tp; xfs_trans_t *tp;
......
...@@ -86,7 +86,7 @@ xfs_file_compat_ioctl( ...@@ -86,7 +86,7 @@ xfs_file_compat_ioctl(
extern int extern int
xfs_set_dmattrs( xfs_set_dmattrs(
struct xfs_inode *ip, struct xfs_inode *ip,
u_int evmask, uint evmask,
u_int16_t state); uint16_t state);
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment