Searched hist:b1c57c1caa753cec299e62bb4272da0e85a01ef0 (Results 1 – 4 of 4) sorted by relevance
/openbmc/linux/fs/f2fs/ |
H A D | gc.h | diff b1c57c1caa753cec299e62bb4272da0e85a01ef0 Tue Jan 07 22:45:08 CST 2014 Jaegeuk Kim <jaegeuk.kim@samsung.com> f2fs: add a sysfs entry to control max_victim_search
Previously during SSR and GC, the maximum number of retrials to find a victim segment was hard-coded by MAX_VICTIM_SEARCH, 4096 by default.
This number makes an effect on IO locality, when SSR mode is activated, which results in performance fluctuation on some low-end devices.
If max_victim_search = 4, the victim will be searched like below. ("D" represents a dirty segment, and "*" indicates a selected victim segment.)
D1 D2 D3 D4 D5 D6 D7 D8 D9 [ * ] [ * ] [ * ] [ ....]
This patch adds a sysfs entry to control the number dynamically through: /sys/fs/f2fs/$dev/max_victim_search
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
|
H A D | gc.c | diff b1c57c1caa753cec299e62bb4272da0e85a01ef0 Tue Jan 07 22:45:08 CST 2014 Jaegeuk Kim <jaegeuk.kim@samsung.com> f2fs: add a sysfs entry to control max_victim_search
Previously during SSR and GC, the maximum number of retrials to find a victim segment was hard-coded by MAX_VICTIM_SEARCH, 4096 by default.
This number makes an effect on IO locality, when SSR mode is activated, which results in performance fluctuation on some low-end devices.
If max_victim_search = 4, the victim will be searched like below. ("D" represents a dirty segment, and "*" indicates a selected victim segment.)
D1 D2 D3 D4 D5 D6 D7 D8 D9 [ * ] [ * ] [ * ] [ ....]
This patch adds a sysfs entry to control the number dynamically through: /sys/fs/f2fs/$dev/max_victim_search
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
|
H A D | super.c | diff b1c57c1caa753cec299e62bb4272da0e85a01ef0 Tue Jan 07 22:45:08 CST 2014 Jaegeuk Kim <jaegeuk.kim@samsung.com> f2fs: add a sysfs entry to control max_victim_search
Previously during SSR and GC, the maximum number of retrials to find a victim segment was hard-coded by MAX_VICTIM_SEARCH, 4096 by default.
This number makes an effect on IO locality, when SSR mode is activated, which results in performance fluctuation on some low-end devices.
If max_victim_search = 4, the victim will be searched like below. ("D" represents a dirty segment, and "*" indicates a selected victim segment.)
D1 D2 D3 D4 D5 D6 D7 D8 D9 [ * ] [ * ] [ * ] [ ....]
This patch adds a sysfs entry to control the number dynamically through: /sys/fs/f2fs/$dev/max_victim_search
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
|
H A D | f2fs.h | diff b1c57c1caa753cec299e62bb4272da0e85a01ef0 Tue Jan 07 22:45:08 CST 2014 Jaegeuk Kim <jaegeuk.kim@samsung.com> f2fs: add a sysfs entry to control max_victim_search
Previously during SSR and GC, the maximum number of retrials to find a victim segment was hard-coded by MAX_VICTIM_SEARCH, 4096 by default.
This number makes an effect on IO locality, when SSR mode is activated, which results in performance fluctuation on some low-end devices.
If max_victim_search = 4, the victim will be searched like below. ("D" represents a dirty segment, and "*" indicates a selected victim segment.)
D1 D2 D3 D4 D5 D6 D7 D8 D9 [ * ] [ * ] [ * ] [ ....]
This patch adds a sysfs entry to control the number dynamically through: /sys/fs/f2fs/$dev/max_victim_search
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
|