We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77c0e74 commit 14ed868Copy full SHA for 14ed868
fs/xfs/xfs_buf.c
@@ -2097,7 +2097,7 @@ xfs_verify_magic(
2097
int idx;
2098
2099
idx = xfs_sb_version_hascrc(&mp->m_sb);
2100
- if (unlikely(WARN_ON(!bp->b_ops || !bp->b_ops->magic[idx])))
+ if (WARN_ON(!bp->b_ops || !bp->b_ops->magic[idx]))
2101
return false;
2102
return dmagic == bp->b_ops->magic[idx];
2103
}
@@ -2115,7 +2115,7 @@ xfs_verify_magic16(
2115
2116
2117
2118
- if (unlikely(WARN_ON(!bp->b_ops || !bp->b_ops->magic16[idx])))
+ if (WARN_ON(!bp->b_ops || !bp->b_ops->magic16[idx]))
2119
2120
return dmagic == bp->b_ops->magic16[idx];
2121
0 commit comments