From mboxrd@z Thu Jan 1 00:00:00 1970 From: Wei Yang Subject: Re: [Patch v2] mm: thp: grab the lock before manipulation defer list Date: Wed, 15 Jan 2020 09:19:27 +0800 Message-ID: <20200115011927.GB4916@richard> References: <20200109143054.13203-1-richardw.yang@linux.intel.com> <20200111000352.efy6krudecpshezh@box> <20200114093122.GH19428@dhcp22.suse.cz> <20200114103112.o6ozdbkfnzdsc2ke@box> <20200114105921.eo2vdwikrvtt3gkb@box> Reply-To: Wei Yang Mime-Version: 1.0 Return-path: Content-Disposition: inline In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org List-ID: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: David Rientjes Cc: "Kirill A. Shutemov" , Michal Hocko , Wei Yang , hannes@cmpxchg.org, vdavydov.dev@gmail.com, akpm@linux-foundation.org, cgroups@vger.kernel.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org, kirill.shutemov@linux.intel.com, yang.shi@linux.alibaba.com, alexander.duyck@gmail.com On Tue, Jan 14, 2020 at 12:57:22PM -0800, David Rientjes wrote: >On Tue, 14 Jan 2020, Kirill A. Shutemov wrote: > >> split_huge_page_to_list() has page lock taken. >> >> free_transhuge_page() is in the free path and doesn't susceptible to the >> race. >> >> deferred_split_scan() is trickier. list_move() should be safe against >> list_empty() as it will not produce false-positive list_empty(). >> list_del_init() *should* (correct me if I'm wrong) be safe because the page >> is freeing and memcg will not touch the page anymore. >> >> deferred_split_huge_page() is a problematic one. It called from >> page_remove_rmap() path witch does require page lock. I don't see any >> obvious way to exclude race with mem_cgroup_move_account() here. >> Anybody else? >> >> Wei, could you rewrite the commit message with deferred_split_huge_page() >> as a race source instead of split_huge_page_to_list()? >> > >I think describing the race in terms of deferred_split_huge_page() makes >the most sense and I'd prefer a cc to stable for 5.4+. Even getting the >split_queue_len, which is unsigned long, to underflow because of a >list_empty(page_deferred_list()) check that is no longer accurate after >the lock is taken would be a significant issue for shrinkers. Oh, you are right. Even the list is not corrupted between deferred_split_scan() and mem_cgroup_move_account(), split_queue_len would be in a wrong state. Hmm... to some extend, the page lock complicates the picture a little here, even it helps in some cases. -- Wei Yang Help you, Help me