From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752896AbcD0Mx1 (ORCPT ); Wed, 27 Apr 2016 08:53:27 -0400 Received: from mx2.suse.de ([195.135.220.15]:58339 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752262AbcD0Mx0 (ORCPT ); Wed, 27 Apr 2016 08:53:26 -0400 Subject: Re: [PATCH 1/3] mm, page_alloc: un-inline the bad part of free_pages_check To: Mel Gorman References: <5720A987.7060507@suse.cz> <1461758476-450-1-git-send-email-vbabka@suse.cz> <20160427123751.GI2858@techsingularity.net> Cc: Andrew Morton , linux-mm@kvack.org, linux-kernel@vger.kernel.org, Jesper Dangaard Brouer From: Vlastimil Babka Message-ID: <5720B643.6060908@suse.cz> Date: Wed, 27 Apr 2016 14:53:23 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.7.2 MIME-Version: 1.0 In-Reply-To: <20160427123751.GI2858@techsingularity.net> Content-Type: text/plain; charset=iso-8859-15; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 04/27/2016 02:37 PM, Mel Gorman wrote: > On Wed, Apr 27, 2016 at 02:01:14PM +0200, Vlastimil Babka wrote: >> !DEBUG_VM bloat-o-meter: >> >> add/remove: 1/0 grow/shrink: 0/2 up/down: 124/-383 (-259) >> function old new delta >> free_pages_check_bad - 124 +124 >> free_pcppages_bulk 1509 1403 -106 >> __free_pages_ok 1025 748 -277 >> >> DEBUG_VM: >> >> add/remove: 1/0 grow/shrink: 0/1 up/down: 124/-242 (-118) >> function old new delta >> free_pages_check_bad - 124 +124 >> free_pages_prepare 1048 806 -242 >> >> Signed-off-by: Vlastimil Babka > > This uninlines the check all right but it also introduces new function > calls into the free path. As it's the free fast path, I suspect it would > be a step in the wrong direction from a performance perspective. Oh expected this to be a non-issue as the call only happens when a bad page is actually encountered, which is rare? But if you can measure some overhead here then sure.