From: Yu Zhao Date: Fri, 16 Oct 2020 03:09:55 +0000 (-0700) Subject: mm: use self-explanatory macros rather than "2" X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9468cddf2638b22dc3f0bf9a146331113fe20b12;p=platform%2Fkernel%2Flinux-rpi.git mm: use self-explanatory macros rather than "2" Change-Id: Ia0efe80fa2c62163b0d58a382aef1e0881cba15b Signed-off-by: Yu Zhao Signed-off-by: Andrew Morton Cc: Alex Shi Link: http://lkml.kernel.org/r/20200831175042.3527153-2-yuzhao@google.com Signed-off-by: Linus Torvalds [backport of the commit ed0173733dd468883198c3136284394320b8fad6 from mainline] Signed-off-by: Marek Szyprowski --- diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h index e88b2fd..a0b59ae 100644 --- a/include/linux/mmzone.h +++ b/include/linux/mmzone.h @@ -282,6 +282,8 @@ static inline bool is_active_lru(enum lru_list lru) return (lru == LRU_ACTIVE_ANON || lru == LRU_ACTIVE_FILE); } +#define ANON_AND_FILE 2 + struct zone_reclaim_stat { /* * The pageout code in vmscan.c keeps track of how many of the @@ -429,6 +431,8 @@ enum zone_type { #ifndef __GENERATING_BOUNDS_H +#define ASYNC_AND_SYNC 2 + struct zone { /* Read-mostly fields */ @@ -548,8 +552,8 @@ struct zone { #if defined CONFIG_COMPACTION || defined CONFIG_CMA /* pfn where compaction free scanner should start */ unsigned long compact_cached_free_pfn; - /* pfn where async and sync compaction migration scanner should start */ - unsigned long compact_cached_migrate_pfn[2]; + /* pfn where compaction migration scanner should start */ + unsigned long compact_cached_migrate_pfn[ASYNC_AND_SYNC]; unsigned long compact_init_migrate_pfn; unsigned long compact_init_free_pfn; #endif diff --git a/include/linux/vmstat.h b/include/linux/vmstat.h index bdeda4b..53c69a0 100644 --- a/include/linux/vmstat.h +++ b/include/linux/vmstat.h @@ -26,7 +26,7 @@ struct reclaim_stat { unsigned nr_congested; unsigned nr_writeback; unsigned nr_immediate; - unsigned nr_activate[2]; + unsigned nr_activate[ANON_AND_FILE]; unsigned nr_ref_keep; unsigned nr_unmap_fail; }; diff --git a/mm/vmscan.c b/mm/vmscan.c index b589866..efe221d 100644 --- a/mm/vmscan.c +++ b/mm/vmscan.c @@ -2248,7 +2248,7 @@ static void get_scan_count(struct lruvec *lruvec, struct scan_control *sc, struct mem_cgroup *memcg = lruvec_memcg(lruvec); int swappiness = mem_cgroup_swappiness(memcg); struct zone_reclaim_stat *reclaim_stat = &lruvec->reclaim_stat; - u64 fraction[2]; + u64 fraction[ANON_AND_FILE]; u64 denominator = 0; /* gcc */ struct pglist_data *pgdat = lruvec_pgdat(lruvec); unsigned long anon_prio, file_prio;