summaryrefslogtreecommitdiff
path: root/fs/xfs/xfs_qm.c
diff options
context:
space:
mode:
authorDarrick J. Wong <darrick.wong@oracle.com>2019-04-07 10:48:41 -0700
committerDarrick J. Wong <darrick.wong@oracle.com>2019-04-15 17:02:48 -0700
commitc590608a0809cb7e83f314cb8bff5d1bd474a32c (patch)
tree6a97f947c914a2576782c87cdf9f2d658af96608 /fs/xfs/xfs_qm.c
parent3fdbe7d8b942be43fb4ac4026e6e3004df8355a0 (diff)
xfs: widen inode delalloc block counter to 64-bitswiden-idelayed_2019-04-15
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs/xfs/xfs_qm.c')
-rw-r--r--fs/xfs/xfs_qm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/xfs/xfs_qm.c b/fs/xfs/xfs_qm.c
index 116b24c980fd..33f31c666d3f 100644
--- a/fs/xfs/xfs_qm.c
+++ b/fs/xfs/xfs_qm.c
@@ -1825,7 +1825,8 @@ xfs_qm_vop_chown_reserve(
uint flags)
{
struct xfs_mount *mp = ip->i_mount;
- uint delblks, blkflags, prjflags = 0;
+ uint64_t delblks;
+ unsigned int blkflags, prjflags = 0;
struct xfs_dquot *udq_unres = NULL;
struct xfs_dquot *gdq_unres = NULL;
struct xfs_dquot *pdq_unres = NULL;