mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 04:40:51 +07:00
f2fs: do not use duplicate names in a macro
A macro should not use duplicate parameter names. Reviewed-by: Namjae Jeon <namjae.jeon@samsung.com> Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
This commit is contained in:
parent
79b5793be4
commit
5c773ba33a
@ -23,13 +23,13 @@
|
||||
((t == CURSEG_HOT_NODE) || (t == CURSEG_COLD_NODE) || \
|
||||
(t == CURSEG_WARM_NODE))
|
||||
|
||||
#define IS_CURSEG(sbi, segno) \
|
||||
((segno == CURSEG_I(sbi, CURSEG_HOT_DATA)->segno) || \
|
||||
(segno == CURSEG_I(sbi, CURSEG_WARM_DATA)->segno) || \
|
||||
(segno == CURSEG_I(sbi, CURSEG_COLD_DATA)->segno) || \
|
||||
(segno == CURSEG_I(sbi, CURSEG_HOT_NODE)->segno) || \
|
||||
(segno == CURSEG_I(sbi, CURSEG_WARM_NODE)->segno) || \
|
||||
(segno == CURSEG_I(sbi, CURSEG_COLD_NODE)->segno))
|
||||
#define IS_CURSEG(sbi, seg) \
|
||||
((seg == CURSEG_I(sbi, CURSEG_HOT_DATA)->segno) || \
|
||||
(seg == CURSEG_I(sbi, CURSEG_WARM_DATA)->segno) || \
|
||||
(seg == CURSEG_I(sbi, CURSEG_COLD_DATA)->segno) || \
|
||||
(seg == CURSEG_I(sbi, CURSEG_HOT_NODE)->segno) || \
|
||||
(seg == CURSEG_I(sbi, CURSEG_WARM_NODE)->segno) || \
|
||||
(seg == CURSEG_I(sbi, CURSEG_COLD_NODE)->segno))
|
||||
|
||||
#define IS_CURSEC(sbi, secno) \
|
||||
((secno == CURSEG_I(sbi, CURSEG_HOT_DATA)->segno / \
|
||||
|
Loading…
Reference in New Issue
Block a user