]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
xfs: scrub: convert comma to semicolon
authorYan Zhen <yanzhen@vivo.com>
Tue, 10 Sep 2024 12:28:42 +0000 (20:28 +0800)
committerCarlos Maiolino <cem@kernel.org>
Mon, 7 Oct 2024 06:00:11 +0000 (08:00 +0200)
Replace a comma between expression statements by a semicolon.

Signed-off-by: Yan Zhen <yanzhen@vivo.com>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Carlos Maiolino <cem@kernel.org>
fs/xfs/scrub/ialloc_repair.c

index a00ec7ae17925d9c38066764014fee7d91491e7b..c8d2196a04e15bd8a8348c2a51acb5e94b28189c 100644 (file)
@@ -657,7 +657,7 @@ xrep_ibt_build_new_trees(
         * Start by setting up the inobt staging cursor.
         */
        fsbno = XFS_AGB_TO_FSB(sc->mp, sc->sa.pag->pag_agno,
-                       XFS_IBT_BLOCK(sc->mp)),
+                       XFS_IBT_BLOCK(sc->mp));
        xrep_newbt_init_ag(&ri->new_inobt, sc, &XFS_RMAP_OINFO_INOBT, fsbno,
                        XFS_AG_RESV_NONE);
        ri->new_inobt.bload.claim_block = xrep_ibt_claim_block;
@@ -678,7 +678,7 @@ xrep_ibt_build_new_trees(
                        resv = XFS_AG_RESV_NONE;
 
                fsbno = XFS_AGB_TO_FSB(sc->mp, sc->sa.pag->pag_agno,
-                               XFS_FIBT_BLOCK(sc->mp)),
+                               XFS_FIBT_BLOCK(sc->mp));
                xrep_newbt_init_ag(&ri->new_finobt, sc, &XFS_RMAP_OINFO_INOBT,
                                fsbno, resv);
                ri->new_finobt.bload.claim_block = xrep_fibt_claim_block;