diff options
author | Namjae Jeon <[email protected]> | 2013-06-16 09:49:11 +0900 |
---|---|---|
committer | Jaegeuk Kim <[email protected]> | 2013-07-02 08:48:14 +0900 |
commit | 8736fbf00372dcc0bc7b04b86d737eb5db31fff6 (patch) | |
tree | 32daf73a5157e2a72cae11fb9fdace1f78488cac /tools/perf/scripts/python/check-perf-trace.py | |
parent | 060dd67b3c0d451ea2c41e6a87811b4736a984e4 (diff) |
f2fs: optimize the init_dirty_segmap function
Optimize the while loop condition
Since this condition will always be true and while loop will
be terminated by the following condition in code:
if (segno >= TOTAL_SEGS(sbi))
break;
Hence we can replace the while loop condition with while(1)
instead of always checking for segno to be less than Total segs.
Also we do not need to use TOTAL_SEGS() everytime. We can store
this value in a local variable since this value is constant.
Signed-off-by: Namjae Jeon <[email protected]>
Signed-off-by: Pankaj Kumar <[email protected]>
Signed-off-by: Jaegeuk Kim <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python/check-perf-trace.py')
0 files changed, 0 insertions, 0 deletions