From: Johannes Weiner <hannes@cmpxchg.org>
To: Minchan Kim <barrioskmc@gmail.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>,
MinChan Kim <minchan.kim@gmail.com>,
Andrew Morton <akpm@linux-foundation.org>,
LKML <linux-kernel@vger.kernel.org>,
linux-mm <linux-mm@kvack.org>, Rik van Riel <riel@redhat.com>
Subject: Re: [PATCH] mmtom: Prevent shrinking of active anon lru list in case of no swap space V3
Date: Thu, 14 May 2009 18:22:01 +0200 [thread overview]
Message-ID: <20090514162201.GA2361@cmpxchg.org> (raw)
In-Reply-To: <44c63dc40905140739n271d3d2w2e0cc364c0012d71@mail.gmail.com>
On Thu, May 14, 2009 at 11:39:49PM +0900, Minchan Kim wrote:
> On Thu, May 14, 2009 at 11:27 PM, KOSAKI Motohiro
> <kosaki.motohiro@jp.fujitsu.com> wrote:
> >> mm/vmscan.c | 2 +-
> >> 1 files changed, 1 insertions(+), 1 deletions(-)
> >>
> >> diff --git a/mm/vmscan.c b/mm/vmscan.c
> >> index 2f9d555..621708f 100644
> >> --- a/mm/vmscan.c
> >> +++ b/mm/vmscan.c
> >> @@ -1577,7 +1577,7 @@ static void shrink_zone(int priority, struct zone *zone,
> >> * Even if we did not try to evict anon pages at all, we want to
> >> * rebalance the anon lru active/inactive ratio.
> >> */
> >> - if (inactive_anon_is_low(zone, sc))
> >> + if (inactive_anon_is_low(zone, sc) && nr_swap_pages > 0)
> >> shrink_active_list(SWAP_CLUSTER_MAX, zone, sc, priority, 0);
> >
> >
> > if (nr_swap_pages > 0 && inactive_anon_is_low(zone, sc))
> >
> > is better?
> > compiler can't swap evaluate order around &&.
>
> If GCC optimizes away that branch with CONFIG_SWAP=n as Rik mentioned,
> we don't have a concern.
It can only optimize it away when the condition is a compile time
constant.
But inactive_anon_is_low() contains atomic operations which the
compiler is not allowed to drop and so the && semantics lead to
atomic_read() && 0
emitting the read while still knowing the whole expression is 0 at
compile-time, optimizing away only the branch itself but leaving the
read in place!
Compared to
0 && atomic_read()
where the && short-circuitry leads to atomic_read() not being
executed. And since the 0 is a compile time constant, no code has to
be emitted for the read.
So KOSAKI-san's is right. Your version results in bigger object code.
Hannes
WARNING: multiple messages have this Message-ID (diff)
From: Johannes Weiner <hannes@cmpxchg.org>
To: Minchan Kim <barrioskmc@gmail.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>,
MinChan Kim <minchan.kim@gmail.com>,
Andrew Morton <akpm@linux-foundation.org>,
LKML <linux-kernel@vger.kernel.org>,
linux-mm <linux-mm@kvack.org>, Rik van Riel <riel@redhat.com>
Subject: Re: [PATCH] mmtom: Prevent shrinking of active anon lru list in case of no swap space V3
Date: Thu, 14 May 2009 18:22:01 +0200 [thread overview]
Message-ID: <20090514162201.GA2361@cmpxchg.org> (raw)
In-Reply-To: <44c63dc40905140739n271d3d2w2e0cc364c0012d71@mail.gmail.com>
On Thu, May 14, 2009 at 11:39:49PM +0900, Minchan Kim wrote:
> On Thu, May 14, 2009 at 11:27 PM, KOSAKI Motohiro
> <kosaki.motohiro@jp.fujitsu.com> wrote:
> >> A mm/vmscan.c | A A 2 +-
> >> A 1 files changed, 1 insertions(+), 1 deletions(-)
> >>
> >> diff --git a/mm/vmscan.c b/mm/vmscan.c
> >> index 2f9d555..621708f 100644
> >> --- a/mm/vmscan.c
> >> +++ b/mm/vmscan.c
> >> @@ -1577,7 +1577,7 @@ static void shrink_zone(int priority, struct zone *zone,
> >> A A A A * Even if we did not try to evict anon pages at all, we want to
> >> A A A A * rebalance the anon lru active/inactive ratio.
> >> A A A A */
> >> - A A A if (inactive_anon_is_low(zone, sc))
> >> + A A A if (inactive_anon_is_low(zone, sc) && nr_swap_pages > 0)
> >> A A A A A A A A shrink_active_list(SWAP_CLUSTER_MAX, zone, sc, priority, 0);
> >
> >
> > A A A if (nr_swap_pages > 0 && inactive_anon_is_low(zone, sc))
> >
> > is better?
> > compiler can't swap evaluate order around &&.
>
> If GCC optimizes away that branch with CONFIG_SWAP=n as Rik mentioned,
> we don't have a concern.
It can only optimize it away when the condition is a compile time
constant.
But inactive_anon_is_low() contains atomic operations which the
compiler is not allowed to drop and so the && semantics lead to
atomic_read() && 0
emitting the read while still knowing the whole expression is 0 at
compile-time, optimizing away only the branch itself but leaving the
read in place!
Compared to
0 && atomic_read()
where the && short-circuitry leads to atomic_read() not being
executed. And since the 0 is a compile time constant, no code has to
be emitted for the read.
So KOSAKI-san's is right. Your version results in bigger object code.
Hannes
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2009-05-14 16:24 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-05-14 14:15 [PATCH] mmtom: Prevent shrinking of active anon lru list in case of no swap space V3 MinChan Kim
2009-05-14 14:15 ` MinChan Kim
2009-05-14 14:27 ` KOSAKI Motohiro
2009-05-14 14:27 ` KOSAKI Motohiro
2009-05-14 14:39 ` Minchan Kim
2009-05-14 14:39 ` Minchan Kim
2009-05-14 14:54 ` KOSAKI Motohiro
2009-05-14 14:54 ` KOSAKI Motohiro
2009-05-14 16:22 ` Johannes Weiner [this message]
2009-05-14 16:22 ` Johannes Weiner
2009-05-15 1:28 ` Minchan Kim
2009-05-15 1:28 ` Minchan Kim
2009-05-14 15:25 ` Rik van Riel
2009-05-14 15:25 ` Rik van Riel
2009-05-14 16:30 ` Andrew Morton
2009-05-14 16:30 ` Andrew Morton
2009-05-14 17:26 ` Rik van Riel
2009-05-14 17:26 ` Rik van Riel
2009-05-18 2:34 ` Wu Fengguang
2009-05-18 2:34 ` Wu Fengguang
2009-05-18 2:40 ` Minchan Kim
2009-05-18 2:40 ` Minchan Kim
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090514162201.GA2361@cmpxchg.org \
--to=hannes@cmpxchg.org \
--cc=akpm@linux-foundation.org \
--cc=barrioskmc@gmail.com \
--cc=kosaki.motohiro@jp.fujitsu.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=minchan.kim@gmail.com \
--cc=riel@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.