summaryrefslogtreecommitdiffstats
path: root/fs/xfs/scrub/bitmap.h
Commit message (Collapse)AuthorAgeFilesLines
* xfs: repair the AGFLDarrick J. Wong2018-08-101-0/+4
| | | | | | | Repair the AGFL from the rmap data. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Reviewed-by: Brian Foster <bfoster@redhat.com>
* xfs: refactor the xrep_extent_list into xfs_bitmapDarrick J. Wong2018-07-311-20/+15
| | | | | | | | | | As mentioned previously, the xrep_extent_list basically implements a bitmap with two functions: set and disjoint union. Rename all these functions to xfs_bitmap to shorten the name and make it more obvious what we're doing. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Reviewed-by: Brian Foster <bfoster@redhat.com>
* xfs: move the repair extent list into its own fileDarrick J. Wong2018-07-291-0/+37
Move the xrep_extent_list code into a separate file. Logically, this data structure is really just a clumsy bitmap, and in the next patch we'll make this more obvious. No functional changes. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Reviewed-by: Brian Foster <bfoster@redhat.com>