From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932611AbcFNTKo (ORCPT ); Tue, 14 Jun 2016 15:10:44 -0400 Received: from aserp1040.oracle.com ([141.146.126.69]:23151 "EHLO aserp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752796AbcFNTKn (ORCPT ); Tue, 14 Jun 2016 15:10:43 -0400 Subject: Re: [PATCH v2 1/7] mm/compaction: split freepages without holding the zone lock To: Joonsoo Kim References: <1464230275-25791-1-git-send-email-iamjoonsoo.kim@lge.com> <575F1813.4020700@oracle.com> <20160614055257.GA13753@js1304-P5Q-DELUXE> Cc: Andrew Morton , Vlastimil Babka , mgorman@techsingularity.net, Minchan Kim , Alexander Potapenko , Hugh Dickins , Michal Hocko , linux-kernel@vger.kernel.org, linux-mm@kvack.org From: Sasha Levin Message-ID: <5760569D.6030907@oracle.com> Date: Tue, 14 Jun 2016 15:10:21 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.6.0 MIME-Version: 1.0 In-Reply-To: <20160614055257.GA13753@js1304-P5Q-DELUXE> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-Source-IP: userv0022.oracle.com [156.151.31.74] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 06/14/2016 01:52 AM, Joonsoo Kim wrote: > On Mon, Jun 13, 2016 at 04:31:15PM -0400, Sasha Levin wrote: >> > On 05/25/2016 10:37 PM, js1304@gmail.com wrote: >>> > > From: Joonsoo Kim >>> > > >>> > > We don't need to split freepages with holding the zone lock. It will cause >>> > > more contention on zone lock so not desirable. >>> > > >>> > > Signed-off-by: Joonsoo Kim >> > >> > Hey Joonsoo, > Hello, Sasha. >> > >> > I'm seeing the following corruption/crash which seems to be related to >> > this patch: > Could you tell me why you think that following corruption is related > to this patch? list_del() in __isolate_free_page() is unchanged part. > > Before this patch, we did it by split_free_page() -> > __isolate_free_page() -> list_del(). With this patch, we do it by > calling __isolate_free_page() directly. I haven't bisected it, but it's the first time I see this issue and this commit seems to have done related changes that might cause this. I can go ahead with bisection if you don't think it's related. Thanks, Sasha