Skip to content

Commit

Permalink
xfs: shorten xfs_repair_ prefix to xrep_
Browse files Browse the repository at this point in the history
Shorten all the metadata repair xfs_repair_* symbols to xrep_.
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>
  • Loading branch information
Darrick J. Wong committed Jul 23, 2018
1 parent c517b3a commit b5e2196
Show file tree
Hide file tree
Showing 6 changed files with 168 additions and 168 deletions.
2 changes: 1 addition & 1 deletion fs/xfs/scrub/agheader_repair.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

/* Repair the superblock. */
int
xfs_repair_superblock(
xrep_superblock(
struct xfs_scrub_context *sc)
{
struct xfs_mount *mp = sc->mp;
Expand Down
2 changes: 1 addition & 1 deletion fs/xfs/scrub/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ xchk_setup_fs(
{
uint resblks;

resblks = xfs_repair_calc_ag_resblks(sc);
resblks = xrep_calc_ag_resblks(sc);
return xchk_trans_alloc(sc, resblks);
}

Expand Down
Loading

0 comments on commit b5e2196

Please sign in to comment.