aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_alloc.c
diff options
context:
space:
mode:
authorDave Chinner <dchinner@redhat.com>2012-11-14 01:52:32 -0500
committerBen Myers <bpm@sgi.com>2012-11-15 22:35:02 -0500
commit612cfbfe174a89d565363fff7f3961a2dda5fb71 (patch)
tree46c44b5965ca17d8e47b1418158b2985ad12359e /fs/xfs/xfs_alloc.c
parentcfb02852226aa449fe27075caffe88726507668c (diff)
xfs: add pre-write metadata buffer verifier callbacks
These verifiers are essentially the same code as the read verifiers, but do not require ioend processing. Hence factor the read verifier functions and add a new write verifier wrapper that is used as the callback. This is done as one large patch for all verifiers rather than one patch per verifier as the change is largely mechanical. This includes hooking up the write verifier via the read verifier function. Hooking up the write verifier for buffers obtained via xfs_trans_get_buf() will be done in a separate patch as that touches code in many different places rather than just the verifier functions. Signed-off-by: Dave Chinner <dchinner@redhat.com> Reviewed-by: Mark Tinguely <tinguely@sgi.com> Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_alloc.c')
-rw-r--r--fs/xfs/xfs_alloc.c35
1 files changed, 32 insertions, 3 deletions
diff --git a/fs/xfs/xfs_alloc.c b/fs/xfs/xfs_alloc.c
index 38b4ab8957ff..d12bbedf6fe5 100644
--- a/fs/xfs/xfs_alloc.c
+++ b/fs/xfs/xfs_alloc.c
@@ -430,8 +430,8 @@ xfs_alloc_fixup_trees(
430 return 0; 430 return 0;
431} 431}
432 432
433void 433static void
434xfs_agfl_read_verify( 434xfs_agfl_verify(
435 struct xfs_buf *bp) 435 struct xfs_buf *bp)
436{ 436{
437#ifdef WHEN_CRCS_COME_ALONG 437#ifdef WHEN_CRCS_COME_ALONG
@@ -463,6 +463,21 @@ xfs_agfl_read_verify(
463 xfs_buf_ioerror(bp, EFSCORRUPTED); 463 xfs_buf_ioerror(bp, EFSCORRUPTED);
464 } 464 }
465#endif 465#endif
466}
467
468static void
469xfs_agfl_write_verify(
470 struct xfs_buf *bp)
471{
472 xfs_agfl_verify(bp);
473}
474
475void
476xfs_agfl_read_verify(
477 struct xfs_buf *bp)
478{
479 xfs_agfl_verify(bp);
480 bp->b_pre_io = xfs_agfl_write_verify;
466 bp->b_iodone = NULL; 481 bp->b_iodone = NULL;
467 xfs_buf_ioend(bp, 0); 482 xfs_buf_ioend(bp, 0);
468} 483}
@@ -2129,7 +2144,7 @@ xfs_alloc_put_freelist(
2129} 2144}
2130 2145
2131static void 2146static void
2132xfs_agf_read_verify( 2147xfs_agf_verify(
2133 struct xfs_buf *bp) 2148 struct xfs_buf *bp)
2134 { 2149 {
2135 struct xfs_mount *mp = bp->b_target->bt_mount; 2150 struct xfs_mount *mp = bp->b_target->bt_mount;
@@ -2164,7 +2179,21 @@ xfs_agf_read_verify(
2164 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, agf); 2179 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, agf);
2165 xfs_buf_ioerror(bp, EFSCORRUPTED); 2180 xfs_buf_ioerror(bp, EFSCORRUPTED);
2166 } 2181 }
2182}
2183
2184static void
2185xfs_agf_write_verify(
2186 struct xfs_buf *bp)
2187{
2188 xfs_agf_verify(bp);
2189}
2167 2190
2191void
2192xfs_agf_read_verify(
2193 struct xfs_buf *bp)
2194{
2195 xfs_agf_verify(bp);
2196 bp->b_pre_io = xfs_agf_write_verify;
2168 bp->b_iodone = NULL; 2197 bp->b_iodone = NULL;
2169 xfs_buf_ioend(bp, 0); 2198 xfs_buf_ioend(bp, 0);
2170} 2199}