diff options
author | Chandan Babu R <chandan.babu@oracle.com> | 2022-03-09 13:58:37 +0100 |
---|---|---|
committer | Chandan Babu R <chandan.babu@oracle.com> | 2022-04-13 09:02:45 +0200 |
commit | c3c4ecb529c5a1f0590cffb70649d407ee79b8a8 (patch) | |
tree | ab980fbbcd460bfb26e8e79ed49b99e5e3acc77d /fs/xfs/xfs_itable.h | |
parent | xfs: Decouple XFS_IBULK flags from XFS_IWALK flags (diff) | |
download | linux-c3c4ecb529c5a1f0590cffb70649d407ee79b8a8.tar.xz linux-c3c4ecb529c5a1f0590cffb70649d407ee79b8a8.zip |
xfs: Enable bulkstat ioctl to support 64-bit per-inode extent counters
The following changes are made to enable userspace to obtain 64-bit extent
counters,
1. Carve out a new 64-bit field xfs_bulkstat->bs_extents64 from
xfs_bulkstat->bs_pad[] to hold 64-bit extent counter.
2. Define the new flag XFS_BULK_IREQ_BULKSTAT for userspace to indicate that
it is capable of receiving 64-bit extent counters.
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Suggested-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Chandan Babu R <chandan.babu@oracle.com>
Diffstat (limited to 'fs/xfs/xfs_itable.h')
-rw-r--r-- | fs/xfs/xfs_itable.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/xfs/xfs_itable.h b/fs/xfs/xfs_itable.h index 5ee1d3f44ce9..e2d0eba43f35 100644 --- a/fs/xfs/xfs_itable.h +++ b/fs/xfs/xfs_itable.h @@ -19,6 +19,9 @@ struct xfs_ibulk { /* Only iterate within the same AG as startino */ #define XFS_IBULK_SAME_AG (1U << 0) +/* Fill out the bs_extents64 field if set. */ +#define XFS_IBULK_NREXT64 (1U << 1) + /* * Advance the user buffer pointer by one record of the given size. If the * buffer is now full, return the appropriate error code. |