diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2019-08-31 02:30:22 +0300 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2019-09-04 07:07:25 +0300 |
commit | 76f1793359db07205b9aefba66c7acbac988aaac (patch) | |
tree | 845e9ddd16ae5bf4f7824bdb2079014a20bd7d54 /fs/xfs/libxfs/xfs_fs.h | |
parent | eb77b23b565e7e1d2cc3a7d9e4cc186fb54e81a8 (diff) | |
download | linux-76f1793359db07205b9aefba66c7acbac988aaac.tar.xz |
xfs: define a flags field for the AG geometry ioctl structure
Define a flags field for the AG geometry ioctl structure.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Diffstat (limited to 'fs/xfs/libxfs/xfs_fs.h')
-rw-r--r-- | fs/xfs/libxfs/xfs_fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/libxfs/xfs_fs.h b/fs/xfs/libxfs/xfs_fs.h index 52d03a3a02a4..39dd2b908106 100644 --- a/fs/xfs/libxfs/xfs_fs.h +++ b/fs/xfs/libxfs/xfs_fs.h @@ -287,7 +287,7 @@ struct xfs_ag_geometry { uint32_t ag_ifree; /* o: inodes free */ uint32_t ag_sick; /* o: sick things in ag */ uint32_t ag_checked; /* o: checked metadata in ag */ - uint32_t ag_reserved32; /* o: zero */ + uint32_t ag_flags; /* i/o: flags for this ag */ uint64_t ag_reserved[12];/* o: zero */ }; #define XFS_AG_GEOM_SICK_SB (1 << 0) /* superblock */ |