From: Alex Shi <alex.shi@linux.alibaba.com>
To: Alexander Duyck <alexander.duyck@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Mel Gorman <mgorman@techsingularity.net>,
Tejun Heo <tj@kernel.org>, Hugh Dickins <hughd@google.com>,
Konstantin Khlebnikov <khlebnikov@yandex-team.ru>,
Daniel Jordan <daniel.m.jordan@oracle.com>,
Yang Shi <yang.shi@linux.alibaba.com>,
Matthew Wilcox <willy@infradead.org>,
Johannes Weiner <hannes@cmpxchg.org>,
kbuild test robot <lkp@intel.com>, linux-mm <linux-mm@kvack.org>,
LKML <linux-kernel@vger.kernel.org>,
cgroups@vger.kernel.org, Shakeel Butt <shakeelb@google.com>,
Joonsoo Kim <iamjoonsoo.kim@lge.com>,
Wei Yang <richard.weiyang@gmail.com>,
"Kirill A. Shutemov" <kirill@shutemov.name>,
Thomas Gleixner <tglx@linutronix.de>,
Andrey Ryabinin <aryabinin@virtuozzo.com>
Subject: Re: [PATCH v16 19/22] mm/lru: introduce the relock_page_lruvec function
Date: Sat, 18 Jul 2020 22:01:40 +0800 [thread overview]
Message-ID: <640e4081-3db3-c941-4b02-8a9aef26e7ba@linux.alibaba.com> (raw)
In-Reply-To: <CAKgT0UdL7ppCdszBNyY3O9d2stE0tCZ8vCzH7tBEnHG2ZwkZHg@mail.gmail.com>
在 2020/7/18 上午6:03, Alexander Duyck 写道:
>> index 129c532357a4..9fb906fbaed5 100644
>> --- a/mm/swap.c
>> +++ b/mm/swap.c
>> @@ -209,19 +209,12 @@ static void pagevec_lru_move_fn(struct pagevec *pvec,
>>
>> for (i = 0; i < pagevec_count(pvec); i++) {
>> struct page *page = pvec->pages[i];
>> - struct lruvec *new_lruvec;
>> -
>> - new_lruvec = mem_cgroup_page_lruvec(page, page_pgdat(page));
>> - if (lruvec != new_lruvec) {
>> - if (lruvec)
>> - unlock_page_lruvec_irqrestore(lruvec, flags);
>> - lruvec = lock_page_lruvec_irqsave(page, &flags);
>> - }
>>
>> /* block memcg migration during page moving between lru */
>> if (!TestClearPageLRU(page))
>> continue;
>>
>> + lruvec = relock_page_lruvec_irqsave(page, lruvec, &flags);
>> (*move_fn)(page, lruvec);
>>
>> SetPageLRU(page);
> So looking at this I realize that patch 18 probably should have
> ordered this the same way with the TestClearPageLRU happening before
> you fetched the new_lruvec. Otherwise I think you are potentially
> exposed to the original issue you were fixing the the previous patch
> that added the call to TestClearPageLRU.
Good catch. It's better to be aligned in next version.
Thanks!
>
>> @@ -866,17 +859,12 @@ void release_pages(struct page **pages, int nr)
>> }
>>
>> if (PageLRU(page)) {
>> - struct lruvec *new_lruvec;
>> -
>> - new_lruvec = mem_cgroup_page_lruvec(page,
>> - page_pgdat(page));
>> - if (new_lruvec != lruvec) {
>> - if (lruvec)
>> - unlock_page_lruvec_irqrestore(lruvec,
>> - flags);
>> + struct lruvec *pre_lruvec = lruvec;
>> +
>> + lruvec = relock_page_lruvec_irqsave(page, lruvec,
>> + &flags);
>> + if (pre_lruvec != lruvec)
> So this doesn't really read right. I suppose "pre_lruvec" should
> probably be "prev_lruvec" since I assume you mean "previous" not
> "before".
yes, it's previous, I will rename it.
Thanks
Alex
>
next prev parent reply other threads:[~2020-07-18 14:01 UTC|newest]
Thread overview: 111+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-11 0:58 [PATCH v16 00/22] per memcg lru_lock Alex Shi
2020-07-11 0:58 ` [PATCH v16 02/22] mm/page_idle: no unlikely double check for idle page counting Alex Shi
2020-07-11 0:58 ` [PATCH v16 03/22] mm/compaction: correct the comments of compact_defer_shift Alex Shi
2020-07-11 0:58 ` [PATCH v16 05/22] mm/thp: move lru_add_page_tail func to huge_memory.c Alex Shi
[not found] ` <1594429136-20002-6-git-send-email-alex.shi-KPsoFbNs7GizrGE5bRqYAgC/G2K4zDHf@public.gmane.org>
2020-07-16 8:59 ` Alex Shi
2020-07-16 8:59 ` Alex Shi
[not found] ` <924c187c-d4cb-4458-9a71-63f79e0a66c8-KPsoFbNs7GizrGE5bRqYAgC/G2K4zDHf@public.gmane.org>
2020-07-16 13:17 ` Kirill A. Shutemov
2020-07-16 13:17 ` Kirill A. Shutemov
2020-07-17 5:13 ` Alex Shi
2020-07-17 5:13 ` Alex Shi
[not found] ` <045c70c7-e4e4-c1d1-b066-c359ef9f15a5-KPsoFbNs7GizrGE5bRqYAgC/G2K4zDHf@public.gmane.org>
2020-07-20 8:37 ` Kirill A. Shutemov
2020-07-20 8:37 ` Kirill A. Shutemov
2020-07-11 0:58 ` [PATCH v16 07/22] mm/thp: remove code path which never got into Alex Shi
[not found] ` <1594429136-20002-8-git-send-email-alex.shi-KPsoFbNs7GizrGE5bRqYAgC/G2K4zDHf@public.gmane.org>
2020-07-20 8:43 ` Kirill A. Shutemov
2020-07-20 8:43 ` Kirill A. Shutemov
2020-07-11 0:58 ` [PATCH v16 08/22] mm/thp: narrow lru locking Alex Shi
[not found] ` <1594429136-20002-1-git-send-email-alex.shi-KPsoFbNs7GizrGE5bRqYAgC/G2K4zDHf@public.gmane.org>
2020-07-11 0:58 ` [PATCH v16 01/22] mm/vmscan: remove unnecessary lruvec adding Alex Shi
2020-07-11 0:58 ` Alex Shi
2020-07-11 0:58 ` [PATCH v16 04/22] mm/compaction: rename compact_deferred as compact_should_defer Alex Shi
2020-07-11 0:58 ` Alex Shi
2020-07-11 0:58 ` [PATCH v16 06/22] mm/thp: clean up lru_add_page_tail Alex Shi
2020-07-11 0:58 ` Alex Shi
[not found] ` <1594429136-20002-7-git-send-email-alex.shi-KPsoFbNs7GizrGE5bRqYAgC/G2K4zDHf@public.gmane.org>
2020-07-20 8:43 ` Kirill A. Shutemov
2020-07-20 8:43 ` Kirill A. Shutemov
2020-07-11 0:58 ` [PATCH v16 09/22] mm/memcg: add debug checking in lock_page_memcg Alex Shi
2020-07-11 0:58 ` Alex Shi
2020-07-11 0:58 ` [PATCH v16 10/22] mm/swap: fold vm event PGROTATED into pagevec_move_tail_fn Alex Shi
2020-07-11 0:58 ` Alex Shi
2020-07-11 0:58 ` [PATCH v16 11/22] mm/lru: move lru_lock holding in func lru_note_cost_page Alex Shi
2020-07-11 0:58 ` Alex Shi
2020-07-11 0:58 ` [PATCH v16 13/22] mm/lru: introduce TestClearPageLRU Alex Shi
2020-07-11 0:58 ` Alex Shi
[not found] ` <1594429136-20002-14-git-send-email-alex.shi-KPsoFbNs7GizrGE5bRqYAgC/G2K4zDHf@public.gmane.org>
2020-07-16 9:06 ` Alex Shi
2020-07-16 9:06 ` Alex Shi
2020-07-16 21:12 ` Alexander Duyck
2020-07-16 21:12 ` Alexander Duyck
[not found] ` <CAKgT0UfLbVRQ4+TOw-XnjuyZqoVmRmWb5_rbEZZ0povYv-n_Lg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-07-17 7:45 ` Alex Shi
2020-07-17 7:45 ` Alex Shi
2020-07-17 18:26 ` Alexander Duyck
[not found] ` <CAKgT0UdDQp_bptKAjG4A4fJQgS5gJuvu6D7LJfKw_wETLtLG_w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-07-19 4:45 ` Alex Shi
2020-07-19 4:45 ` Alex Shi
[not found] ` <530c222e-dfd4-f78e-e9d4-315fad6f816a-KPsoFbNs7GizrGE5bRqYAgC/G2K4zDHf@public.gmane.org>
2020-07-19 11:24 ` Alex Shi
2020-07-19 11:24 ` Alex Shi
2020-07-11 0:58 ` [PATCH v16 14/22] mm/thp: add tail pages into lru anyway in split_huge_page() Alex Shi
2020-07-11 0:58 ` Alex Shi
[not found] ` <1594429136-20002-15-git-send-email-alex.shi-KPsoFbNs7GizrGE5bRqYAgC/G2K4zDHf@public.gmane.org>
2020-07-17 9:30 ` Alex Shi
2020-07-17 9:30 ` Alex Shi
[not found] ` <d478a44b-c598-e99b-d438-9387f208ad37-KPsoFbNs7GizrGE5bRqYAgC/G2K4zDHf@public.gmane.org>
2020-07-20 8:49 ` Kirill A. Shutemov
2020-07-20 8:49 ` Kirill A. Shutemov
2020-07-20 9:04 ` Alex Shi
2020-07-20 9:04 ` Alex Shi
2020-07-11 0:58 ` [PATCH v16 18/22] mm/lru: replace pgdat lru_lock with lruvec lock Alex Shi
2020-07-11 0:58 ` Alex Shi
[not found] ` <1594429136-20002-19-git-send-email-alex.shi-KPsoFbNs7GizrGE5bRqYAgC/G2K4zDHf@public.gmane.org>
2020-07-17 21:38 ` Alexander Duyck
2020-07-17 21:38 ` Alexander Duyck
2020-07-18 14:15 ` Alex Shi
[not found] ` <62dfd262-a7ac-d18e-216a-2988c690b256-KPsoFbNs7GizrGE5bRqYAgC/G2K4zDHf@public.gmane.org>
2020-07-19 9:12 ` Alex Shi
2020-07-19 9:12 ` Alex Shi
[not found] ` <c339f46e-ae04-4e65-2713-a5c8be56051a-KPsoFbNs7GizrGE5bRqYAgC/G2K4zDHf@public.gmane.org>
2020-07-19 15:14 ` Alexander Duyck
2020-07-19 15:14 ` Alexander Duyck
[not found] ` <CAKgT0UestD7cU+3aqg3a9JT4bTXVYQpjGbwoC2-bOBHPY5xn6A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-07-20 5:47 ` Alex Shi
2020-07-20 5:47 ` Alex Shi
2020-07-11 0:58 ` [PATCH v16 19/22] mm/lru: introduce the relock_page_lruvec function Alex Shi
2020-07-11 0:58 ` Alex Shi
2020-07-17 22:03 ` Alexander Duyck
2020-07-18 14:01 ` Alex Shi [this message]
2020-07-11 1:02 ` [PATCH v16 00/22] per memcg lru_lock Alex Shi
2020-07-11 1:02 ` Alex Shi
2020-07-16 14:11 ` Alexander Duyck
2020-07-16 14:11 ` Alexander Duyck
2020-07-17 5:24 ` Alex Shi
2020-07-17 5:24 ` Alex Shi
2020-07-19 15:23 ` Hugh Dickins
[not found] ` <alpine.LSU.2.11.2007190801490.3521-fupSdm12i1nKWymIFiNcPA@public.gmane.org>
2020-07-20 3:01 ` Alex Shi
2020-07-20 3:01 ` Alex Shi
[not found] ` <5f2401d3-dd4f-cbc6-8cb4-4e92fc64998c-KPsoFbNs7GizrGE5bRqYAgC/G2K4zDHf@public.gmane.org>
2020-07-20 4:47 ` Hugh Dickins
2020-07-20 4:47 ` Hugh Dickins
2020-07-20 7:30 ` Alex Shi
2020-07-20 7:30 ` Alex Shi
2020-07-11 0:58 ` [PATCH v16 12/22] mm/lru: move lock into lru_note_cost Alex Shi
2020-07-11 0:58 ` [PATCH v16 15/22] mm/compaction: do page isolation first in compaction Alex Shi
[not found] ` <1594429136-20002-16-git-send-email-alex.shi-KPsoFbNs7GizrGE5bRqYAgC/G2K4zDHf@public.gmane.org>
2020-07-16 21:32 ` Alexander Duyck
2020-07-16 21:32 ` Alexander Duyck
[not found] ` <CAKgT0Ue72SfAmxCS+tay1NjioW9WBOvVgrhwUtVPz2aDCrcHPQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-07-17 5:09 ` Alex Shi
2020-07-17 5:09 ` Alex Shi
[not found] ` <e724c44b-4135-3302-16fa-1df624fa81fa-KPsoFbNs7GizrGE5bRqYAgC/G2K4zDHf@public.gmane.org>
2020-07-17 16:09 ` Alexander Duyck
2020-07-17 16:09 ` Alexander Duyck
[not found] ` <CAKgT0UcbvTid8RqDgsZjewdEo1wTD8BDjPHo59UX9gKQEkZUtA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-07-19 3:59 ` Alex Shi
2020-07-19 3:59 ` Alex Shi
2020-07-11 0:58 ` [PATCH v16 16/22] mm/mlock: reorder isolation sequence during munlock Alex Shi
[not found] ` <1594429136-20002-17-git-send-email-alex.shi-KPsoFbNs7GizrGE5bRqYAgC/G2K4zDHf@public.gmane.org>
2020-07-17 20:30 ` Alexander Duyck
2020-07-17 20:30 ` Alexander Duyck
[not found] ` <CAKgT0Udcry01samXT54RkurNqFKnVmv-686ZFHF+iw4b+12T_A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-07-19 3:55 ` Alex Shi
2020-07-19 3:55 ` Alex Shi
[not found] ` <6e37ee32-c6c5-fcc5-3cad-74f7ae41fb67-KPsoFbNs7GizrGE5bRqYAgC/G2K4zDHf@public.gmane.org>
2020-07-20 18:51 ` Alexander Duyck
2020-07-20 18:51 ` Alexander Duyck
[not found] ` <CAKgT0Ue2i96gL=Tqx_wFmsBj_b1cnM1KQHh8b+oYr5iRg0Tcpw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-07-21 9:26 ` Alex Shi
2020-07-21 9:26 ` Alex Shi
[not found] ` <7a931661-e096-29ee-d97d-8bf96ba6c972-KPsoFbNs7GizrGE5bRqYAgC/G2K4zDHf@public.gmane.org>
2020-07-21 13:51 ` Alex Shi
2020-07-21 13:51 ` Alex Shi
2020-07-11 0:58 ` [PATCH v16 17/22] mm/swap: serialize memcg changes during pagevec_lru_move_fn Alex Shi
2020-07-11 0:58 ` [PATCH v16 20/22] mm/vmscan: use relock for move_pages_to_lru Alex Shi
[not found] ` <1594429136-20002-21-git-send-email-alex.shi-KPsoFbNs7GizrGE5bRqYAgC/G2K4zDHf@public.gmane.org>
2020-07-17 21:44 ` Alexander Duyck
2020-07-17 21:44 ` Alexander Duyck
2020-07-18 14:15 ` Alex Shi
2020-07-11 0:58 ` [PATCH v16 21/22] mm/pgdat: remove pgdat lru_lock Alex Shi
2020-07-17 21:09 ` Alexander Duyck
[not found] ` <CAKgT0UeK3c4NjoJ7MQMxU20Bu0AZKZh73Cj4P_g5OSL6KaONhQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-07-18 14:17 ` Alex Shi
2020-07-18 14:17 ` Alex Shi
2020-07-11 0:58 ` [PATCH v16 22/22] mm/lru: revise the comments of lru_lock Alex Shi
2020-07-16 8:49 ` [PATCH v16 00/22] per memcg lru_lock Alex Shi
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=640e4081-3db3-c941-4b02-8a9aef26e7ba@linux.alibaba.com \
--to=alex.shi@linux.alibaba.com \
--cc=akpm@linux-foundation.org \
--cc=alexander.duyck@gmail.com \
--cc=aryabinin@virtuozzo.com \
--cc=cgroups@vger.kernel.org \
--cc=daniel.m.jordan@oracle.com \
--cc=hannes@cmpxchg.org \
--cc=hughd@google.com \
--cc=iamjoonsoo.kim@lge.com \
--cc=khlebnikov@yandex-team.ru \
--cc=kirill@shutemov.name \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=lkp@intel.com \
--cc=mgorman@techsingularity.net \
--cc=richard.weiyang@gmail.com \
--cc=shakeelb@google.com \
--cc=tglx@linutronix.de \
--cc=tj@kernel.org \
--cc=willy@infradead.org \
--cc=yang.shi@linux.alibaba.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.