mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 14:40:12 -04:00
xfs: remove the crc variable in __xfs_btree_check_lblock
crc is only used once, just use the xfs_has_crc check directly. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Darrick J. Wong <djwong@kernel.org> Signed-off-by: Darrick J. Wong <djwong@kernel.org>
This commit is contained in:
committed by
Darrick J. Wong
parent
43be09192c
commit
bd45019d9a
@@ -106,11 +106,10 @@ __xfs_btree_check_lblock(
|
||||
struct xfs_buf *bp)
|
||||
{
|
||||
struct xfs_mount *mp = cur->bc_mp;
|
||||
bool crc = xfs_has_crc(mp);
|
||||
xfs_failaddr_t fa;
|
||||
xfs_fsblock_t fsb = NULLFSBLOCK;
|
||||
|
||||
if (crc) {
|
||||
if (xfs_has_crc(mp)) {
|
||||
if (!uuid_equal(&block->bb_u.l.bb_uuid, &mp->m_sb.sb_meta_uuid))
|
||||
return __this_address;
|
||||
if (block->bb_u.l.bb_blkno !=
|
||||
|
||||
Reference in New Issue
Block a user