Message ID | 1603968305-8026-13-git-send-email-alex.shi@linux.alibaba.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | per memcg lru lock | expand |
On Thu, Oct 29, 2020 at 06:44:57PM +0800, Alex Shi wrote: > A isolated page shouldn't be recharged by memcg since the memcg > migration isn't possible at the time. > So remove unnecessary regetting. > > Thanks to Alexander Duyck for pointing this out. > > Signed-off-by: Alex Shi <alex.shi@linux.alibaba.com> > Acked-by: Hugh Dickins <hughd@google.com> > Cc: Alexander Duyck <alexander.h.duyck@linux.intel.com> > Cc: Andrew Morton <akpm@linux-foundation.org> > Cc: Konstantin Khlebnikov <khlebnikov@yandex-team.ru> > Cc: Michal Hocko <mhocko@kernel.org> > Cc: Hugh Dickins <hughd@google.com> > Cc: Johannes Weiner <hannes@cmpxchg.org> > Cc: linux-mm@kvack.org > Cc: linux-kernel@vger.kernel.org > Cc: cgroups@vger.kernel.org Acked-by: Johannes Weiner <hannes@cmpxchg.org> A brief comment in the code could be good: all pages were isolated from the same lruvec (and isolation inhibits memcg migration).
在 2020/11/2 下午10:52, Johannes Weiner 写道: > Acked-by: Johannes Weiner <hannes@cmpxchg.org> > > A brief comment in the code could be good: all pages were isolated > from the same lruvec (and isolation inhibits memcg migration). Yes, I will add the words both in code and commit log. Thanks
diff --git a/mm/vmscan.c b/mm/vmscan.c index 42bac12aacb4..845733afccde 100644 --- a/mm/vmscan.c +++ b/mm/vmscan.c @@ -1887,7 +1887,8 @@ static unsigned noinline_for_stack move_pages_to_lru(struct lruvec *lruvec, continue; } - lruvec = mem_cgroup_page_lruvec(page, pgdat); + VM_BUG_ON_PAGE(mem_cgroup_page_lruvec(page, page_pgdat(page)) + != lruvec, page); lru = page_lru(page); nr_pages = thp_nr_pages(page);