diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2018-07-19 12:29:12 -0700 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2018-07-23 09:08:00 -0700 |
commit | 1d8a748a8aa94a7da8f3d4fac1892037890d3cff (patch) | |
tree | f8698e3a17ccf281ad14eb47b8bef8cbfa751c97 /fs/xfs/scrub/rmap.c | |
parent | b5e2196e9c7217387bab2ab4231ad9f4585f55c5 (diff) | |
download | linux-rt-1d8a748a8aa94a7da8f3d4fac1892037890d3cff.tar.gz |
xfs: shorten struct xfs_scrub_context to struct xfs_scrub
Shorten the name of the online fsck context structure. Whitespace
damage will be fixed by a subsequent patch. There are no functional
changes.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Diffstat (limited to 'fs/xfs/scrub/rmap.c')
-rw-r--r-- | fs/xfs/scrub/rmap.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/fs/xfs/scrub/rmap.c b/fs/xfs/scrub/rmap.c index 4b75fc2f31f3..dc9c91a706ff 100644 --- a/fs/xfs/scrub/rmap.c +++ b/fs/xfs/scrub/rmap.c @@ -30,7 +30,7 @@ */ int xchk_setup_ag_rmapbt( - struct xfs_scrub_context *sc, + struct xfs_scrub *sc, struct xfs_inode *ip) { return xchk_setup_ag_btree(sc, ip, false); @@ -41,7 +41,7 @@ xchk_setup_ag_rmapbt( /* Cross-reference a rmap against the refcount btree. */ STATIC void xchk_rmapbt_xref_refc( - struct xfs_scrub_context *sc, + struct xfs_scrub *sc, struct xfs_rmap_irec *irec) { xfs_agblock_t fbno; @@ -72,7 +72,7 @@ xchk_rmapbt_xref_refc( /* Cross-reference with the other btrees. */ STATIC void xchk_rmapbt_xref( - struct xfs_scrub_context *sc, + struct xfs_scrub *sc, struct xfs_rmap_irec *irec) { xfs_agblock_t agbno = irec->rm_startblock; @@ -172,7 +172,7 @@ out: /* Scrub the rmap btree for some AG. */ int xchk_rmapbt( - struct xfs_scrub_context *sc) + struct xfs_scrub *sc) { struct xfs_owner_info oinfo; @@ -184,7 +184,7 @@ xchk_rmapbt( /* xref check that the extent is owned by a given owner */ static inline void xchk_xref_check_owner( - struct xfs_scrub_context *sc, + struct xfs_scrub *sc, xfs_agblock_t bno, xfs_extlen_t len, struct xfs_owner_info *oinfo, @@ -207,7 +207,7 @@ xchk_xref_check_owner( /* xref check that the extent is owned by a given owner */ void xchk_xref_is_owned_by( - struct xfs_scrub_context *sc, + struct xfs_scrub *sc, xfs_agblock_t bno, xfs_extlen_t len, struct xfs_owner_info *oinfo) @@ -218,7 +218,7 @@ xchk_xref_is_owned_by( /* xref check that the extent is not owned by a given owner */ void xchk_xref_is_not_owned_by( - struct xfs_scrub_context *sc, + struct xfs_scrub *sc, xfs_agblock_t bno, xfs_extlen_t len, struct xfs_owner_info *oinfo) @@ -229,7 +229,7 @@ xchk_xref_is_not_owned_by( /* xref check that the extent has no reverse mapping at all */ void xchk_xref_has_no_owner( - struct xfs_scrub_context *sc, + struct xfs_scrub *sc, xfs_agblock_t bno, xfs_extlen_t len) { |