summaryrefslogtreecommitdiff
path: root/fs/xfs/xfs_mount.h
diff options
context:
space:
mode:
authorDarrick J. Wong <darrick.wong@oracle.com>2020-10-25 17:16:18 -0700
committerDarrick J. Wong <darrick.wong@oracle.com>2020-10-26 18:32:36 -0700
commitc1bbd7ed124391796b92e0c33b19cb248869fc3b (patch)
tree1338504d6729f6e8b014e030473bd95d62c045a1 /fs/xfs/xfs_mount.h
parent28b0e24a0a55b991cf5a6c4bbf6376669de5fb5a (diff)
xfs: widen per-ag reservation structures to 64-bits
Widen all of the fields in the per-ag reservation structure to be 64-bit fields in preparation for using it with the rt metadata btrees. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs/xfs/xfs_mount.h')
-rw-r--r--fs/xfs/xfs_mount.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/xfs_mount.h b/fs/xfs/xfs_mount.h
index be355c5a1414..b9e6c8e7f85b 100644
--- a/fs/xfs/xfs_mount.h
+++ b/fs/xfs/xfs_mount.h
@@ -315,11 +315,11 @@ xfs_daddr_to_agbno(struct xfs_mount *mp, xfs_daddr_t d)
/* per-AG block reservation data structures*/
struct xfs_ag_resv {
/* number of blocks originally reserved here */
- xfs_extlen_t ar_orig_reserved;
+ xfs_filblks_t ar_orig_reserved;
/* number of blocks reserved here */
- xfs_extlen_t ar_reserved;
+ xfs_filblks_t ar_reserved;
/* number of blocks originally asked for */
- xfs_extlen_t ar_asked;
+ xfs_filblks_t ar_asked;
};
/*