|
@@ -1541,7 +1541,8 @@ static int get_ssr_segment(struct f2fs_sb_info *sbi, int type)
|
|
|
{
|
|
|
struct curseg_info *curseg = CURSEG_I(sbi, type);
|
|
|
const struct victim_selection *v_ops = DIRTY_I(sbi)->v_ops;
|
|
|
- int i, n;
|
|
|
+ int i, cnt;
|
|
|
+ bool reversed = false;
|
|
|
|
|
|
/* need_SSR() already forces to do this */
|
|
|
if (v_ops->get_victim(sbi, &(curseg)->next_segno, BG_GC, type, SSR))
|
|
@@ -1549,14 +1550,24 @@ static int get_ssr_segment(struct f2fs_sb_info *sbi, int type)
|
|
|
|
|
|
/* For node segments, let's do SSR more intensively */
|
|
|
if (IS_NODESEG(type)) {
|
|
|
- i = CURSEG_HOT_NODE;
|
|
|
- n = CURSEG_COLD_NODE;
|
|
|
+ if (type >= CURSEG_WARM_NODE) {
|
|
|
+ reversed = true;
|
|
|
+ i = CURSEG_COLD_NODE;
|
|
|
+ } else {
|
|
|
+ i = CURSEG_HOT_NODE;
|
|
|
+ }
|
|
|
+ cnt = NR_CURSEG_NODE_TYPE;
|
|
|
} else {
|
|
|
- i = CURSEG_HOT_DATA;
|
|
|
- n = CURSEG_COLD_DATA;
|
|
|
+ if (type >= CURSEG_WARM_DATA) {
|
|
|
+ reversed = true;
|
|
|
+ i = CURSEG_COLD_DATA;
|
|
|
+ } else {
|
|
|
+ i = CURSEG_HOT_DATA;
|
|
|
+ }
|
|
|
+ cnt = NR_CURSEG_DATA_TYPE;
|
|
|
}
|
|
|
|
|
|
- for (; i <= n; i++) {
|
|
|
+ for (; cnt-- > 0; reversed ? i-- : i++) {
|
|
|
if (i == type)
|
|
|
continue;
|
|
|
if (v_ops->get_victim(sbi, &(curseg)->next_segno,
|