Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S964805AbbHKJNm (ORCPT ); Tue, 11 Aug 2015 05:13:42 -0400 Received: from mx2.suse.de ([195.135.220.15]:38657 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933855AbbHKJNk (ORCPT ); Tue, 11 Aug 2015 05:13:40 -0400 Subject: Re: [PATCH] perf script/python: add new compaction-times script To: Tony Jones , acme@kernel.org References: <1438902116-9320-1-git-send-email-tonyj@suse.com> Cc: linux-kernel@vger.kernel.org, linux-perf-users@vger.kernel.org, Mel Gorman From: Vlastimil Babka Message-ID: <55C9BCC1.4030202@suse.cz> Date: Tue, 11 Aug 2015 11:13:37 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.1.0 MIME-Version: 1.0 In-Reply-To: <1438902116-9320-1-git-send-email-tonyj@suse.com> 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: 2943 Lines: 66 On 08/07/2015 01:01 AM, Tony Jones wrote: > This patch creates a new script (compaction-times) to report time > spent in mm compaction. Report times in nanoseconds (default) or > microseconds (-u). Option -p will break down times by process id, > -pv will further decompose by each compaction entry/exit. > Entries may be further filtered by pid, pid-range or comm (regex). > > The script is useful when analysing workloads that compact memory. > The most common example will be THP allocations on systems with a > lot of uptime that has fragmented memory. This is an example of > using the script to analyse a thpscale from mmtests which > deliberately fragments memory and allocates THP in 4 separate > threads > > # Recording step, one of the following; > $ perf record -e 'compaction:mm_compaction_*' ./workload > $ perf script record compaction-times > > # Reporting: basic > $ perf script report compaction-times > total: 15825912302ns (1416084 migrated 160674 failed) > > # Reporting: Per task stall times > $ perf script report compaction-times -- -p > total: 15825912302ns (1416084 migrated 160674 failed) > 5024[thpscale]: 2588338168ns (476189 migrated 32 failed) > 5025[thpscale]: 2469205861ns (460767 migrated 7 failed) > 5026[thpscale]: 8246032631ns (659 migrated 160621 failed) > 5023[thpscale]: 2522335642ns (478469 migrated 14 failed) > > # Reporting: Per-compaction attempt broken down by task > $ perf script report compaction-times -- -pv > total: 15825912302ns (1416084 migrated 160674 failed) > 5024[thpscale]: 2588338168ns (476189 migrated 32 failed) > 5024[thpscale].1: 3549721ns (352 migrated 0 failed) > 5024[thpscale].2: 173091ns (32 migrated 0 failed) > 5024[thpscale].3: 695548ns (160 migrated 0 failed) > 5024[thpscale].4: 138561ns (32 migrated 0 failed) > 5024[thpscale].5: 1123068ns (224 migrated 0 failed) > 5024[thpscale].6: 163610ns (32 migrated 0 failed) > ..... output continues ... > > Signed-off-by: Tony Jones Tested-by: Vlastimil Babka It would be nice, if the script also reported number of pages scanned and isolated by the compaction migration and free scanners. This would provide the same metrics as vmstat, but possible to break down per process, which is useful. You would need to process two extra tracepoints: mm_compaction_isolate_migratepages mm_compaction_isolate_freepages Note that vmstat lumps the pages isolated in either of those into a shared counter COMPACTISOLATED, but for determining efficiency of each of the scanners, it would be better if the script reported them separately. Thanks, Vlastimil -- 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/