Commit e321d7c9 authored by Hao Ge's avatar Hao Ge Committed by Andrew Morton

mm/vmscan: change the type of file from int to bool

Change the type of file from int to bool because is_file_lru return bool

Link: https://lkml.kernel.org/r/20240131103802.122920-1-gehao@kylinos.cnSigned-off-by: default avatarHao Ge <gehao@kylinos.cn>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent ab755bf4
...@@ -1998,7 +1998,7 @@ static void shrink_active_list(unsigned long nr_to_scan, ...@@ -1998,7 +1998,7 @@ static void shrink_active_list(unsigned long nr_to_scan,
LIST_HEAD(l_inactive); LIST_HEAD(l_inactive);
unsigned nr_deactivate, nr_activate; unsigned nr_deactivate, nr_activate;
unsigned nr_rotated = 0; unsigned nr_rotated = 0;
int file = is_file_lru(lru); bool file = is_file_lru(lru);
struct pglist_data *pgdat = lruvec_pgdat(lruvec); struct pglist_data *pgdat = lruvec_pgdat(lruvec);
lru_add_drain(); lru_add_drain();
...@@ -2412,7 +2412,7 @@ static void get_scan_count(struct lruvec *lruvec, struct scan_control *sc, ...@@ -2412,7 +2412,7 @@ static void get_scan_count(struct lruvec *lruvec, struct scan_control *sc,
denominator = ap + fp; denominator = ap + fp;
out: out:
for_each_evictable_lru(lru) { for_each_evictable_lru(lru) {
int file = is_file_lru(lru); bool file = is_file_lru(lru);
unsigned long lruvec_size; unsigned long lruvec_size;
unsigned long low, min; unsigned long low, min;
unsigned long scan; unsigned long scan;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment