summaryrefslogtreecommitdiff
tag namerefactor-corruption-checks_2019-11-22 (343f5ecacb8a2b27535e40c72d4c98699de10f5a)
tag date2019-11-22 21:35:54 -0800
tagged byDarrick J. Wong <darrick.wong@oracle.com>
tagged objectcommit 8f92bde008...
xfs: refactor corruption checking and reporting
In this second series, we refactor the code that XFS uses to determine that it is dealing with corrupt metadata and report that to userspace. As usual, the first 4 patches perform some small cleanups to lay the groundwork for the meat of the series, which are in the last two patches. The fifth patch replaces the XFS_WANT_CORRUPT* macros with open-coded versions because it's a little strange that a thing that looks like a simple function call actually has series effects on code flow. The sixth patch cleans up all the "if (bad) { XFS_ERROR_REPORT..." code by combining that into a single XFS_CORRUPT_ON macro that does all that logging. This cleans up the error handling code blocks some more.