Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S966431AbcCPMDd (ORCPT ); Wed, 16 Mar 2016 08:03:33 -0400 Received: from mx2.suse.de ([195.135.220.15]:37509 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S966651AbcCPMD3 (ORCPT ); Wed, 16 Mar 2016 08:03:29 -0400 Subject: Re: Suspicious error for CMA stress test To: Joonsoo Kim References: <56D93ABE.9070406@huawei.com> <20160307043442.GB24602@js1304-P5Q-DELUXE> <56DD38E7.3050107@huawei.com> <56DDCB86.4030709@redhat.com> <56DE30CB.7020207@huawei.com> <56DF7B28.9060108@huawei.com> <56E2FB5C.1040602@suse.cz> <20160314064925.GA27587@js1304-P5Q-DELUXE> <56E662E8.700@suse.cz> <20160314071803.GA28094@js1304-P5Q-DELUXE> <56E6AED1.6060703@suse.cz> Cc: Joonsoo Kim , "Leizhen (ThunderTown)" , Laura Abbott , Hanjun Guo , "linux-arm-kernel@lists.infradead.org" , "linux-kernel@vger.kernel.org" , Andrew Morton , Sasha Levin , Laura Abbott , qiuxishi , Catalin Marinas , Will Deacon , Arnd Bergmann , dingtinahong , chenjie6@huawei.com, "linux-mm@kvack.org" From: Vlastimil Babka Message-ID: <56E94B89.80706@suse.cz> Date: Wed, 16 Mar 2016 13:03:21 +0100 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: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2040 Lines: 50 On 03/14/2016 03:10 PM, Joonsoo Kim wrote: > 2016-03-14 21:30 GMT+09:00 Vlastimil Babka : > > Now I see why this happen. I enabled CONFIG_DEBUG_PAGEALLOC > and it makes difference. > > I tested on x86_64, gcc (Ubuntu 4.8.4-2ubuntu1~14.04.1) 4.8.4. > > With CONFIG_CMA + CONFIG_DEBUG_PAGEALLOC > ./scripts/bloat-o-meter page_alloc_base.o page_alloc_vlastimil_orig.o > add/remove: 0/0 grow/shrink: 2/0 up/down: 510/0 (510) > function old new delta > free_one_page 1050 1334 +284 > free_pcppages_bulk 1396 1622 +226 > > ./scripts/bloat-o-meter page_alloc_base.o page_alloc_mine.o > add/remove: 0/0 grow/shrink: 2/0 up/down: 351/0 (351) > function old new delta > free_one_page 1050 1230 +180 > free_pcppages_bulk 1396 1567 +171 > > > With CONFIG_CMA + !CONFIG_DEBUG_PAGEALLOC > (pa_b is base, pa_v is yours and pa_m is mine) > > ./scripts/bloat-o-meter pa_b.o pa_v.o > add/remove: 0/0 grow/shrink: 1/1 up/down: 88/-23 (65) > function old new delta > free_one_page 761 849 +88 > free_pcppages_bulk 1117 1094 -23 > > ./scripts/bloat-o-meter pa_b.o pa_m.o > add/remove: 0/0 grow/shrink: 2/0 up/down: 329/0 (329) > function old new delta > free_one_page 761 1031 +270 > free_pcppages_bulk 1117 1176 +59 > > Still, it has difference but less than before. > Maybe, we are still using different configuration. Could you > check if CONFIG_DEBUG_VM is enabled or not? In my case, it's not It's disabled here. > enabled. And, do you think this bloat isn't acceptable? Well, it is quite significant. But given that Hanjun sees the errors still, it's not the biggest issue now :/ > Thanks. >