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/parent.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/parent.c')
-rw-r--r-- | fs/xfs/scrub/parent.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/xfs/scrub/parent.c b/fs/xfs/scrub/parent.c index 0a78d8411f23..808459ad0c35 100644 --- a/fs/xfs/scrub/parent.c +++ b/fs/xfs/scrub/parent.c @@ -28,7 +28,7 @@ /* Set us up to scrub parents. */ int xchk_setup_parent( - struct xfs_scrub_context *sc, + struct xfs_scrub *sc, struct xfs_inode *ip) { return xchk_setup_inode_contents(sc, ip, 0); @@ -65,7 +65,7 @@ xchk_parent_actor( /* Count the number of dentries in the parent dir that point to this inode. */ STATIC int xchk_parent_count_parent_dentries( - struct xfs_scrub_context *sc, + struct xfs_scrub *sc, struct xfs_inode *parent, xfs_nlink_t *nlink) { @@ -121,7 +121,7 @@ out: */ STATIC int xchk_parent_validate( - struct xfs_scrub_context *sc, + struct xfs_scrub *sc, xfs_ino_t dnum, bool *try_again) { @@ -255,7 +255,7 @@ out: /* Scrub a parent pointer. */ int xchk_parent( - struct xfs_scrub_context *sc) + struct xfs_scrub *sc) { struct xfs_mount *mp = sc->mp; xfs_ino_t dnum; |