[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20220712123852.813904-1-sunliming@kylinos.cn>
Date: Tue, 12 Jul 2022 20:38:52 +0800
From: sunliming <sunliming@...inos.cn>
To: hch@....de, djwong@...nel.org, dchinner@...hat.com
Cc: sunliming@...inos.cn, kelulanainsley@...il.com,
linux-xfs@...r.kernel.org, linux-kernel@...r.kernel.org,
kernel test robot <lkp@...el.com>
Subject: [PATCH] xfs: fix for variable set but not used warning
Fix below kernel warning:
fs/xfs/scrub/repair.c:539:19: warning: variable 'agno' set but not used [-Wunused-but-set-variable]
Reported-by: kernel test robot <lkp@...el.com>
Signed-off-by: sunliming <sunliming@...inos.cn>
---
fs/xfs/scrub/repair.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/fs/xfs/scrub/repair.c b/fs/xfs/scrub/repair.c
index a02ec8fbc8ac..2c8d7e7ef9af 100644
--- a/fs/xfs/scrub/repair.c
+++ b/fs/xfs/scrub/repair.c
@@ -533,14 +533,11 @@ xrep_reap_block(
{
struct xfs_btree_cur *cur;
struct xfs_buf *agf_bp = NULL;
- xfs_agnumber_t agno;
xfs_agblock_t agbno;
bool has_other_rmap;
int error;
- agno = XFS_FSB_TO_AGNO(sc->mp, fsbno);
agbno = XFS_FSB_TO_AGBNO(sc->mp, fsbno);
- ASSERT(agno == sc->sa.pag->pag_agno);
/*
* If we are repairing per-inode metadata, we need to read in the AGF
--
2.25.1
Powered by blists - more mailing lists