aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/xfs/xfs_alloc.c')
-rw-r--r--fs/xfs/xfs_alloc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/xfs/xfs_alloc.c b/fs/xfs/xfs_alloc.c
index d12bbedf6fe5..545a6c4c2366 100644
--- a/fs/xfs/xfs_alloc.c
+++ b/fs/xfs/xfs_alloc.c
@@ -465,14 +465,14 @@ xfs_agfl_verify(
465#endif 465#endif
466} 466}
467 467
468static void 468void
469xfs_agfl_write_verify( 469xfs_agfl_write_verify(
470 struct xfs_buf *bp) 470 struct xfs_buf *bp)
471{ 471{
472 xfs_agfl_verify(bp); 472 xfs_agfl_verify(bp);
473} 473}
474 474
475void 475static void
476xfs_agfl_read_verify( 476xfs_agfl_read_verify(
477 struct xfs_buf *bp) 477 struct xfs_buf *bp)
478{ 478{
@@ -2181,14 +2181,14 @@ xfs_agf_verify(
2181 } 2181 }
2182} 2182}
2183 2183
2184static void 2184void
2185xfs_agf_write_verify( 2185xfs_agf_write_verify(
2186 struct xfs_buf *bp) 2186 struct xfs_buf *bp)
2187{ 2187{
2188 xfs_agf_verify(bp); 2188 xfs_agf_verify(bp);
2189} 2189}
2190 2190
2191void 2191static void
2192xfs_agf_read_verify( 2192xfs_agf_read_verify(
2193 struct xfs_buf *bp) 2193 struct xfs_buf *bp)
2194{ 2194{