linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH -next v2] mm/vmscan: fix some -Wenum-conversion warnings
@ 2019-11-15 20:11 Qian Cai
  2019-11-18 18:25 ` Johannes Weiner
  0 siblings, 1 reply; 5+ messages in thread
From: Qian Cai @ 2019-11-15 20:11 UTC (permalink / raw)
  To: akpm; +Cc: hannes, surenb, linux-mm, linux-kernel, Qian Cai

The -next commit "mm: vmscan: enforce inactive:active ratio at the
reclaim root" [1] introduced some Clang -Wenum-conversion warnings,

mm/vmscan.c:2216:39: warning: implicit conversion from enumeration type
'enum lru_list' to different enumeration type 'enum node_stat_item'
[-Wenum-conversion]
        inactive = lruvec_page_state(lruvec, inactive_lru);
                   ~~~~~~~~~~~~~~~~~         ^~~~~~~~~~~~
mm/vmscan.c:2217:37: warning: implicit conversion from enumeration type
'enum lru_list' to different enumeration type 'enum node_stat_item'
[-Wenum-conversion]
        active = lruvec_page_state(lruvec, active_lru);
                 ~~~~~~~~~~~~~~~~~         ^~~~~~~~~~
mm/vmscan.c:2746:42: warning: implicit conversion from enumeration type
'enum lru_list' to different enumeration type 'enum node_stat_item'
[-Wenum-conversion]
        file = lruvec_page_state(target_lruvec, LRU_INACTIVE_FILE);
               ~~~~~~~~~~~~~~~~~                ^~~~~~~~~~~~~~~~~

Since it guarantees the relative order between the LRU items, fix it by
using NR_LRU_BASE for the translation.

[1] http://lkml.kernel.org/r/20191107205334.158354-4-hannes@cmpxchg.org

Signed-off-by: Qian Cai <cai@lca.pw>
---

v2: use NR_LRU_BASE/NR_INACTIVE_FILE per Johannes.

 mm/vmscan.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/mm/vmscan.c b/mm/vmscan.c
index 122b3920aaa4..c8e88f4d9932 100644
--- a/mm/vmscan.c
+++ b/mm/vmscan.c
@@ -2213,8 +2213,8 @@ static bool inactive_is_low(struct lruvec *lruvec, enum lru_list inactive_lru)
 	unsigned long inactive_ratio;
 	unsigned long gb;
 
-	inactive = lruvec_page_state(lruvec, inactive_lru);
-	active = lruvec_page_state(lruvec, active_lru);
+	inactive = lruvec_page_state(lruvec, NR_LRU_BASE + inactive_lru);
+	active = lruvec_page_state(lruvec, NR_LRU_BASE + active_lru);
 
 	gb = (inactive + active) >> (30 - PAGE_SHIFT);
 	if (gb)
@@ -2743,7 +2743,7 @@ static bool shrink_node(pg_data_t *pgdat, struct scan_control *sc)
 	 * thrashing, try to reclaim those first before touching
 	 * anonymous pages.
 	 */
-	file = lruvec_page_state(target_lruvec, LRU_INACTIVE_FILE);
+	file = lruvec_page_state(target_lruvec, NR_INACTIVE_FILE);
 	if (file >> sc->priority && !(sc->may_deactivate & DEACTIVATE_FILE))
 		sc->cache_trim_mode = 1;
 	else
-- 
1.8.3.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH -next v2] mm/vmscan: fix some -Wenum-conversion warnings
  2019-11-15 20:11 [PATCH -next v2] mm/vmscan: fix some -Wenum-conversion warnings Qian Cai
@ 2019-11-18 18:25 ` Johannes Weiner
  2019-11-18 18:28   ` Johannes Weiner
  0 siblings, 1 reply; 5+ messages in thread
From: Johannes Weiner @ 2019-11-18 18:25 UTC (permalink / raw)
  To: Qian Cai; +Cc: akpm, surenb, linux-mm, linux-kernel

On Fri, Nov 15, 2019 at 03:11:37PM -0500, Qian Cai wrote:
> The -next commit "mm: vmscan: enforce inactive:active ratio at the
> reclaim root" [1] introduced some Clang -Wenum-conversion warnings,
> 
> mm/vmscan.c:2216:39: warning: implicit conversion from enumeration type
> 'enum lru_list' to different enumeration type 'enum node_stat_item'
> [-Wenum-conversion]
>         inactive = lruvec_page_state(lruvec, inactive_lru);
>                    ~~~~~~~~~~~~~~~~~         ^~~~~~~~~~~~
> mm/vmscan.c:2217:37: warning: implicit conversion from enumeration type
> 'enum lru_list' to different enumeration type 'enum node_stat_item'
> [-Wenum-conversion]
>         active = lruvec_page_state(lruvec, active_lru);
>                  ~~~~~~~~~~~~~~~~~         ^~~~~~~~~~
> mm/vmscan.c:2746:42: warning: implicit conversion from enumeration type
> 'enum lru_list' to different enumeration type 'enum node_stat_item'
> [-Wenum-conversion]
>         file = lruvec_page_state(target_lruvec, LRU_INACTIVE_FILE);
>                ~~~~~~~~~~~~~~~~~                ^~~~~~~~~~~~~~~~~
> 
> Since it guarantees the relative order between the LRU items, fix it by
> using NR_LRU_BASE for the translation.
> 
> [1] http://lkml.kernel.org/r/20191107205334.158354-4-hannes@cmpxchg.org
> 
> Signed-off-by: Qian Cai <cai@lca.pw>

Acked-by: Johannes Weiner <hannes@cmpxchg.org>

Thanks Qian!

Andrew, this is a fix for "mm: vmscan: enforce inactive:active ratio
at the reclaim root". Could you please fold this into that?

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH -next v2] mm/vmscan: fix some -Wenum-conversion warnings
  2019-11-18 18:25 ` Johannes Weiner
@ 2019-11-18 18:28   ` Johannes Weiner
  2019-11-18 20:52     ` Qian Cai
  0 siblings, 1 reply; 5+ messages in thread
From: Johannes Weiner @ 2019-11-18 18:28 UTC (permalink / raw)
  To: Qian Cai; +Cc: akpm, surenb, linux-mm, linux-kernel

On Mon, Nov 18, 2019 at 01:25:49PM -0500, Johannes Weiner wrote:
> On Fri, Nov 15, 2019 at 03:11:37PM -0500, Qian Cai wrote:
> > The -next commit "mm: vmscan: enforce inactive:active ratio at the
> > reclaim root" [1] introduced some Clang -Wenum-conversion warnings,
> > 
> > mm/vmscan.c:2216:39: warning: implicit conversion from enumeration type
> > 'enum lru_list' to different enumeration type 'enum node_stat_item'
> > [-Wenum-conversion]
> >         inactive = lruvec_page_state(lruvec, inactive_lru);
> >                    ~~~~~~~~~~~~~~~~~         ^~~~~~~~~~~~
> > mm/vmscan.c:2217:37: warning: implicit conversion from enumeration type
> > 'enum lru_list' to different enumeration type 'enum node_stat_item'
> > [-Wenum-conversion]
> >         active = lruvec_page_state(lruvec, active_lru);
> >                  ~~~~~~~~~~~~~~~~~         ^~~~~~~~~~
> > mm/vmscan.c:2746:42: warning: implicit conversion from enumeration type
> > 'enum lru_list' to different enumeration type 'enum node_stat_item'
> > [-Wenum-conversion]
> >         file = lruvec_page_state(target_lruvec, LRU_INACTIVE_FILE);
> >                ~~~~~~~~~~~~~~~~~                ^~~~~~~~~~~~~~~~~
> > 
> > Since it guarantees the relative order between the LRU items, fix it by
> > using NR_LRU_BASE for the translation.
> > 
> > [1] http://lkml.kernel.org/r/20191107205334.158354-4-hannes@cmpxchg.org
> > 
> > Signed-off-by: Qian Cai <cai@lca.pw>
> 
> Acked-by: Johannes Weiner <hannes@cmpxchg.org>
> 
> Thanks Qian!
> 
> Andrew, this is a fix for "mm: vmscan: enforce inactive:active ratio
> at the reclaim root". Could you please fold this into that?

nvm, I see you already picked it up. Thank you!

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH -next v2] mm/vmscan: fix some -Wenum-conversion warnings
  2019-11-18 18:28   ` Johannes Weiner
@ 2019-11-18 20:52     ` Qian Cai
  2019-11-18 20:56       ` Qian Cai
  0 siblings, 1 reply; 5+ messages in thread
From: Qian Cai @ 2019-11-18 20:52 UTC (permalink / raw)
  To: Johannes Weiner; +Cc: akpm, surenb, linux-mm, linux-kernel

On Mon, 2019-11-18 at 13:28 -0500, Johannes Weiner wrote:
> On Mon, Nov 18, 2019 at 01:25:49PM -0500, Johannes Weiner wrote:
> > On Fri, Nov 15, 2019 at 03:11:37PM -0500, Qian Cai wrote:
> > > The -next commit "mm: vmscan: enforce inactive:active ratio at the
> > > reclaim root" [1] introduced some Clang -Wenum-conversion warnings,
> > > 
> > > mm/vmscan.c:2216:39: warning: implicit conversion from enumeration type
> > > 'enum lru_list' to different enumeration type 'enum node_stat_item'
> > > [-Wenum-conversion]
> > >         inactive = lruvec_page_state(lruvec, inactive_lru);
> > >                    ~~~~~~~~~~~~~~~~~         ^~~~~~~~~~~~
> > > mm/vmscan.c:2217:37: warning: implicit conversion from enumeration type
> > > 'enum lru_list' to different enumeration type 'enum node_stat_item'
> > > [-Wenum-conversion]
> > >         active = lruvec_page_state(lruvec, active_lru);
> > >                  ~~~~~~~~~~~~~~~~~         ^~~~~~~~~~
> > > mm/vmscan.c:2746:42: warning: implicit conversion from enumeration type
> > > 'enum lru_list' to different enumeration type 'enum node_stat_item'
> > > [-Wenum-conversion]
> > >         file = lruvec_page_state(target_lruvec, LRU_INACTIVE_FILE);
> > >                ~~~~~~~~~~~~~~~~~                ^~~~~~~~~~~~~~~~~
> > > 
> > > Since it guarantees the relative order between the LRU items, fix it by
> > > using NR_LRU_BASE for the translation.
> > > 
> > > [1] http://lkml.kernel.org/r/20191107205334.158354-4-hannes@cmpxchg.org
> > > 
> > > Signed-off-by: Qian Cai <cai@lca.pw>
> > 
> > Acked-by: Johannes Weiner <hannes@cmpxchg.org>
> > 
> > Thanks Qian!
> > 
> > Andrew, this is a fix for "mm: vmscan: enforce inactive:active ratio
> > at the reclaim root". Could you please fold this into that?
> 
> nvm, I see you already picked it up. Thank you!

Hmm, I don't see Andrew picked it yet.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH -next v2] mm/vmscan: fix some -Wenum-conversion warnings
  2019-11-18 20:52     ` Qian Cai
@ 2019-11-18 20:56       ` Qian Cai
  0 siblings, 0 replies; 5+ messages in thread
From: Qian Cai @ 2019-11-18 20:56 UTC (permalink / raw)
  To: Johannes Weiner; +Cc: akpm, surenb, linux-mm, linux-kernel

On Mon, 2019-11-18 at 15:52 -0500, Qian Cai wrote:
> On Mon, 2019-11-18 at 13:28 -0500, Johannes Weiner wrote:
> > On Mon, Nov 18, 2019 at 01:25:49PM -0500, Johannes Weiner wrote:
> > > On Fri, Nov 15, 2019 at 03:11:37PM -0500, Qian Cai wrote:
> > > > The -next commit "mm: vmscan: enforce inactive:active ratio at the
> > > > reclaim root" [1] introduced some Clang -Wenum-conversion warnings,
> > > > 
> > > > mm/vmscan.c:2216:39: warning: implicit conversion from enumeration type
> > > > 'enum lru_list' to different enumeration type 'enum node_stat_item'
> > > > [-Wenum-conversion]
> > > >         inactive = lruvec_page_state(lruvec, inactive_lru);
> > > >                    ~~~~~~~~~~~~~~~~~         ^~~~~~~~~~~~
> > > > mm/vmscan.c:2217:37: warning: implicit conversion from enumeration type
> > > > 'enum lru_list' to different enumeration type 'enum node_stat_item'
> > > > [-Wenum-conversion]
> > > >         active = lruvec_page_state(lruvec, active_lru);
> > > >                  ~~~~~~~~~~~~~~~~~         ^~~~~~~~~~
> > > > mm/vmscan.c:2746:42: warning: implicit conversion from enumeration type
> > > > 'enum lru_list' to different enumeration type 'enum node_stat_item'
> > > > [-Wenum-conversion]
> > > >         file = lruvec_page_state(target_lruvec, LRU_INACTIVE_FILE);
> > > >                ~~~~~~~~~~~~~~~~~                ^~~~~~~~~~~~~~~~~
> > > > 
> > > > Since it guarantees the relative order between the LRU items, fix it by
> > > > using NR_LRU_BASE for the translation.
> > > > 
> > > > [1] http://lkml.kernel.org/r/20191107205334.158354-4-hannes@cmpxchg.org
> > > > 
> > > > Signed-off-by: Qian Cai <cai@lca.pw>
> > > 
> > > Acked-by: Johannes Weiner <hannes@cmpxchg.org>
> > > 
> > > Thanks Qian!
> > > 
> > > Andrew, this is a fix for "mm: vmscan: enforce inactive:active ratio
> > > at the reclaim root". Could you please fold this into that?
> > 
> > nvm, I see you already picked it up. Thank you!
> 
> Hmm, I don't see Andrew picked it yet.

Ah, I saw it now. Too many emails, so I'll setup a filter.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-11-18 20:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-15 20:11 [PATCH -next v2] mm/vmscan: fix some -Wenum-conversion warnings Qian Cai
2019-11-18 18:25 ` Johannes Weiner
2019-11-18 18:28   ` Johannes Weiner
2019-11-18 20:52     ` Qian Cai
2019-11-18 20:56       ` Qian Cai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).