From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Zhang, Yanmin" Subject: Re: [PATCH] Enhance perf to collect KVM guest os statistics from host side Date: Tue, 16 Mar 2010 17:28:53 +0800 Message-ID: <1268731733.2813.54.camel@localhost> References: <1268717232.2813.36.camel@localhost> <4B9F19F7.6000309@redhat.com> <1268725724.2813.48.camel@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit Cc: Ingo Molnar , Peter Zijlstra , Sheng Yang , linux-kernel@vger.kernel.org, kvm@vger.kernel.org, Marcelo Tosatti , oerg Roedel , Jes Sorensen , Gleb Natapov , Zachary Amsden , zhiteng.huang@intel.com To: Avi Kivity Return-path: Received: from mga07.intel.com ([143.182.124.22]:52688 "EHLO azsmga101.ch.intel.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S965516Ab0CPJ2u (ORCPT ); Tue, 16 Mar 2010 05:28:50 -0400 In-Reply-To: <1268725724.2813.48.camel@localhost> Sender: kvm-owner@vger.kernel.org List-ID: On Tue, 2010-03-16 at 15:48 +0800, Zhang, Yanmin wrote: > On Tue, 2010-03-16 at 07:41 +0200, Avi Kivity wrote: > > On 03/16/2010 07:27 AM, Zhang, Yanmin wrote: > > > From: Zhang, Yanmin > > > > > > Based on the discussion in KVM community, I worked out the patch to support > > > perf to collect guest os statistics from host side. This patch is implemented > > > with Ingo, Peter and some other guys' kind help. Yang Sheng pointed out a > > > critical bug and provided good suggestions with other guys. I really appreciate > > > their kind help. > > > > > > The patch adds new subcommand kvm to perf. > > > > > > perf kvm top > > > perf kvm record > > > perf kvm report > > > perf kvm diff > > > > > > The new perf could profile guest os kernel except guest os user space, but it > > > could summarize guest os user space utilization per guest os. > > > > > > Below are some examples. > > > 1) perf kvm top > > > [root@lkp-ne01 norm]# perf kvm --host --guest --guestkallsyms=/home/ymzhang/guest/kallsyms > > > --guestmodules=/home/ymzhang/guest/modules top > > > > > > > > > Thanks for your kind comments. > > > Excellent, support for guest kernel != host kernel is critical (I can't > > remember the last time I ran same kernels). > > > > How would we support multiple guests with different kernels? > With the patch, 'perf kvm report --sort pid" could show > summary statistics for all guest os instances. Then, use > parameter --pid of 'perf kvm record' to collect single problematic instance data. Sorry. I found currently --pid isn't process but a thread (main thread). Ingo, Is it possible to support a new parameter or extend --inherit, so 'perf record' and 'perf top' could collect data on all threads of a process when the process is running? If not, I need add a new ugly parameter which is similar to --pid to filter out process data in userspace. Yanmin