diff options
| author | Dave Chinner <david@fromorbit.com> | 2022-04-21 16:45:03 +1000 | 
|---|---|---|
| committer | Dave Chinner <david@fromorbit.com> | 2022-04-21 16:45:03 +1000 | 
| commit | 898a768f54bf3c910392eb7987b47ebddc28e444 (patch) | |
| tree | 82bcd41e84ada3f0861c1ac2a5d9d3e8a0a6a5e2 /fs/xfs/libxfs/xfs_alloc.c | |
| parent | 1499b8a3a37baf5a78ee8044e9a8fa0471268d74 (diff) | |
| parent | c60d13ea657f69a0f90c7ba131c16e0a25598488 (diff) | |
Merge branch 'guilt/xfs-unsigned-flags-5.18' into xfs-5.19-for-next
Diffstat (limited to 'fs/xfs/libxfs/xfs_alloc.c')
| -rw-r--r-- | fs/xfs/libxfs/xfs_alloc.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/xfs/libxfs/xfs_alloc.c b/fs/xfs/libxfs/xfs_alloc.c index b52ed339727f..1ff3fa67d4c9 100644 --- a/fs/xfs/libxfs/xfs_alloc.c +++ b/fs/xfs/libxfs/xfs_alloc.c @@ -2777,7 +2777,7 @@ xfs_alloc_get_freelist(  	xfs_agblock_t		bno;  	__be32			*agfl_bno;  	int			error; -	int			logflags; +	uint32_t		logflags;  	struct xfs_mount	*mp = tp->t_mountp;  	struct xfs_perag	*pag; @@ -2830,9 +2830,9 @@ xfs_alloc_get_freelist(   */  void  xfs_alloc_log_agf( -	xfs_trans_t	*tp,	/* transaction pointer */ -	struct xfs_buf	*bp,	/* buffer for a.g. freelist header */ -	int		fields)	/* mask of fields to be logged (XFS_AGF_...) */ +	struct xfs_trans	*tp, +	struct xfs_buf		*bp, +	uint32_t		fields)  {  	int	first;		/* first byte offset */  	int	last;		/* last byte offset */ @@ -2902,7 +2902,7 @@ xfs_alloc_put_freelist(  	struct xfs_perag	*pag;  	__be32			*blockp;  	int			error; -	int			logflags; +	uint32_t		logflags;  	__be32			*agfl_bno;  	int			startoff;  | 
