* [PATCH v1] xfs: scrub: convert comma to semicolon
@ 2024-09-10 12:28 Yan Zhen
2024-09-16 17:00 ` Darrick J. Wong
2024-09-27 18:45 ` Carlos Maiolino
0 siblings, 2 replies; 3+ messages in thread
From: Yan Zhen @ 2024-09-10 12:28 UTC (permalink / raw)
To: chandan.babu; +Cc: djwong, linux-xfs, linux-kernel, opensource.kernel, Yan Zhen
Replace a comma between expression statements by a semicolon.
Signed-off-by: Yan Zhen <yanzhen@vivo.com>
---
fs/xfs/scrub/ialloc_repair.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fs/xfs/scrub/ialloc_repair.c b/fs/xfs/scrub/ialloc_repair.c
index a00ec7ae1..c8d2196a0 100644
--- a/fs/xfs/scrub/ialloc_repair.c
+++ b/fs/xfs/scrub/ialloc_repair.c
@@ -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;
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v1] xfs: scrub: convert comma to semicolon
2024-09-10 12:28 [PATCH v1] xfs: scrub: convert comma to semicolon Yan Zhen
@ 2024-09-16 17:00 ` Darrick J. Wong
2024-09-27 18:45 ` Carlos Maiolino
1 sibling, 0 replies; 3+ messages in thread
From: Darrick J. Wong @ 2024-09-16 17:00 UTC (permalink / raw)
To: Yan Zhen; +Cc: chandan.babu, linux-xfs, linux-kernel, opensource.kernel
On Tue, Sep 10, 2024 at 08:28:42PM +0800, Yan Zhen wrote:
> Replace a comma between expression statements by a semicolon.
>
> Signed-off-by: Yan Zhen <yanzhen@vivo.com>
Looks good,
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
--D
> ---
> fs/xfs/scrub/ialloc_repair.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/fs/xfs/scrub/ialloc_repair.c b/fs/xfs/scrub/ialloc_repair.c
> index a00ec7ae1..c8d2196a0 100644
> --- a/fs/xfs/scrub/ialloc_repair.c
> +++ b/fs/xfs/scrub/ialloc_repair.c
> @@ -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;
> --
> 2.34.1
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v1] xfs: scrub: convert comma to semicolon
2024-09-10 12:28 [PATCH v1] xfs: scrub: convert comma to semicolon Yan Zhen
2024-09-16 17:00 ` Darrick J. Wong
@ 2024-09-27 18:45 ` Carlos Maiolino
1 sibling, 0 replies; 3+ messages in thread
From: Carlos Maiolino @ 2024-09-27 18:45 UTC (permalink / raw)
To: chandan.babu, Yan Zhen; +Cc: djwong, linux-xfs, linux-kernel, opensource.kernel
On Tue, 10 Sep 2024 20:28:42 +0800, Yan Zhen wrote:
> Replace a comma between expression statements by a semicolon.
>
>
Applied to xfs-6.12-rc2, thanks!
[1/1] xfs: scrub: convert comma to semicolon
commit: 4956580c2d9ae8c81cdbe9ce19f5c8d14d56dac6
Best regards,
--
Carlos Maiolino <cem@kernel.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-09-27 18:45 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-10 12:28 [PATCH v1] xfs: scrub: convert comma to semicolon Yan Zhen
2024-09-16 17:00 ` Darrick J. Wong
2024-09-27 18:45 ` Carlos Maiolino
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox