diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2018-07-19 21:29:12 +0200 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2018-07-23 18:08:00 +0200 |
commit | 1d8a748a8aa94a7da8f3d4fac1892037890d3cff (patch) | |
tree | f8698e3a17ccf281ad14eb47b8bef8cbfa751c97 /fs/xfs/scrub/refcount.c | |
parent | xfs: shorten xfs_repair_ prefix to xrep_ (diff) | |
download | linux-1d8a748a8aa94a7da8f3d4fac1892037890d3cff.tar.xz linux-1d8a748a8aa94a7da8f3d4fac1892037890d3cff.zip |
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/refcount.c')
-rw-r--r-- | fs/xfs/scrub/refcount.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/fs/xfs/scrub/refcount.c b/fs/xfs/scrub/refcount.c index 274febc49b23..c1162d408987 100644 --- a/fs/xfs/scrub/refcount.c +++ b/fs/xfs/scrub/refcount.c @@ -29,7 +29,7 @@ */ int xchk_setup_ag_refcountbt( - struct xfs_scrub_context *sc, + struct xfs_scrub *sc, struct xfs_inode *ip) { return xchk_setup_ag_btree(sc, ip, false); @@ -79,7 +79,7 @@ struct xchk_refcnt_frag { }; struct xchk_refcnt_check { - struct xfs_scrub_context *sc; + struct xfs_scrub *sc; struct list_head fragments; /* refcount extent we're examining */ @@ -278,7 +278,7 @@ done: /* Use the rmap entries covering this extent to verify the refcount. */ STATIC void xchk_refcountbt_xref_rmap( - struct xfs_scrub_context *sc, + struct xfs_scrub *sc, xfs_agblock_t bno, xfs_extlen_t len, xfs_nlink_t refcount) @@ -325,7 +325,7 @@ out_free: /* Cross-reference with the other btrees. */ STATIC void xchk_refcountbt_xref( - struct xfs_scrub_context *sc, + struct xfs_scrub *sc, xfs_agblock_t agbno, xfs_extlen_t len, xfs_nlink_t refcount) @@ -382,7 +382,7 @@ xchk_refcountbt_rec( /* Make sure we have as many refc blocks as the rmap says. */ STATIC void xchk_refcount_xref_rmap( - struct xfs_scrub_context *sc, + struct xfs_scrub *sc, struct xfs_owner_info *oinfo, xfs_filblks_t cow_blocks) { @@ -417,7 +417,7 @@ xchk_refcount_xref_rmap( /* Scrub the refcount btree for some AG. */ int xchk_refcountbt( - struct xfs_scrub_context *sc) + struct xfs_scrub *sc) { struct xfs_owner_info oinfo; xfs_agblock_t cow_blocks = 0; @@ -437,7 +437,7 @@ xchk_refcountbt( /* xref check that a cow staging extent is marked in the refcountbt. */ void xchk_xref_is_cow_staging( - struct xfs_scrub_context *sc, + struct xfs_scrub *sc, xfs_agblock_t agbno, xfs_extlen_t len) { @@ -483,7 +483,7 @@ xchk_xref_is_cow_staging( */ void xchk_xref_is_not_shared( - struct xfs_scrub_context *sc, + struct xfs_scrub *sc, xfs_agblock_t agbno, xfs_extlen_t len) { |