Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755797AbbHGHo0 (ORCPT ); Fri, 7 Aug 2015 03:44:26 -0400 Received: from mail-wi0-f181.google.com ([209.85.212.181]:35486 "EHLO mail-wi0-f181.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752633AbbHGHoZ (ORCPT ); Fri, 7 Aug 2015 03:44:25 -0400 Date: Fri, 7 Aug 2015 09:44:22 +0200 From: Michal Hocko To: Pintu Kumar Cc: akpm@linux-foundation.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org, minchan@kernel.org, dave@stgolabs.net, koct9i@gmail.com, mgorman@suse.de, vbabka@suse.cz, js1304@gmail.com, hannes@cmpxchg.org, alexander.h.duyck@redhat.com, sasha.levin@oracle.com, cl@linux.com, fengguang.wu@intel.com, cpgs@samsung.com, pintu_agarwal@yahoo.com, pintu.k@outlook.com, vishnu.ps@samsung.com, rohit.kr@samsung.com Subject: Re: [PATCH 1/1] mm: vmstat: introducing vm counter for slowpath Message-ID: <20150807074422.GE26566@dhcp22.suse.cz> References: <1438931334-25894-1-git-send-email-pintu.k@samsung.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1438931334-25894-1-git-send-email-pintu.k@samsung.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1752 Lines: 48 On Fri 07-08-15 12:38:54, Pintu Kumar wrote: > This patch add new counter slowpath_entered in /proc/vmstat to > track how many times the system entered into slowpath after > first allocation attempt is failed. This is too lowlevel to be exported in the regular user visible interface IMO. > This is useful to know the rate of allocation success within > the slowpath. What would be that information good for? Is a regular administrator expected to consume this value or this is aimed more to kernel developers? If the later then I think a trace point sounds like a better interface. > This patch is tested on ARM with 512MB RAM. > A sample output is shown below after successful boot-up: > shell> cat /proc/vmstat > nr_free_pages 4712 > pgalloc_normal 1319432 > pgalloc_movable 0 > pageoutrun 379 > allocstall 0 > slowpath_entered 585 > compact_stall 0 > compact_fail 0 > compact_success 0 > > >From the above output we can see that the system entered > slowpath 585 times. > But the existing counter kswapd(pageoutrun), direct_reclaim(allocstall), > direct_compact(compact_stall) does not tell this value. > >From the above value, it clearly indicates that the system have > entered slowpath 585 times. Out of which 379 times allocation passed > through kswapd, without performing direct reclaim/compaction. > That means the remaining 206 times the allocation would have succeeded > using the alloc_pages_high_priority. > > Signed-off-by: Pintu Kumar -- Michal Hocko SUSE Labs -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/