From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752402Ab1JYTP4 (ORCPT ); Tue, 25 Oct 2011 15:15:56 -0400 Received: from claw.goop.org ([74.207.240.146]:46305 "EHLO claw.goop.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751019Ab1JYTPz (ORCPT ); Tue, 25 Oct 2011 15:15:55 -0400 Message-ID: <4EA7003D.8050506@goop.org> Date: Tue, 25 Oct 2011 11:30:21 -0700 From: Jeremy Fitzhardinge User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:7.0.1) Gecko/20110930 Thunderbird/7.0.1 MIME-Version: 1.0 To: Avi Kivity CC: Raghavendra K T , Greg Kroah-Hartman , KVM , Sedat Dilek , Ingo Molnar , Virtualization , "x86@kernel.org" , "H. Peter Anvin" , Dave Jiang , Thomas Gleixner , Stefano Stabellini , Gleb Natapov , Yinghai Lu , Marcelo Tosatti , Xen , Rik van Riel , Konrad Rzeszutek Wilk , LKML , Suzuki Poulose , Srivatsa Vaddagiri , Peter Zijlstra Subject: Re: [PATCH RFC V2 4/5] kvm guest : Added configuration support to enable debug information for KVM Guests References: <20111023190307.16364.35381.sendpatchset@oc5400248562.ibm.com> <20111023190700.16364.7548.sendpatchset@oc5400248562.ibm.com> <4EA53AB2.9050805@redhat.com> In-Reply-To: <4EA53AB2.9050805@redhat.com> X-Enigmail-Version: 1.3.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 10/24/2011 03:15 AM, Avi Kivity wrote: > On 10/23/2011 09:07 PM, Raghavendra K T wrote: >> Added configuration support to enable debug information >> for KVM Guests in debugfs >> >> Signed-off-by: Srivatsa Vaddagiri >> Signed-off-by: Suzuki Poulose >> Signed-off-by: Raghavendra K T >> --- >> diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig >> index 1f03f82..ed34269 100644 >> --- a/arch/x86/Kconfig >> +++ b/arch/x86/Kconfig >> @@ -562,6 +562,15 @@ config KVM_GUEST >> This option enables various optimizations for running under the KVM >> hypervisor. >> >> +config KVM_DEBUG_FS >> + bool "Enable debug information for KVM Guests in debugfs" >> + depends on KVM_GUEST >> + default n >> + ---help--- >> + This option enables collection of various statistics for KVM guest. >> + Statistics are displayed in debugfs filesystem. Enabling this option >> + may incur significant overhead. >> + >> source "arch/x86/lguest/Kconfig" >> >> > This might be better implemented through tracepoints, which an be > enabled dynamically. Tracepoints use spinlocks, so that could get awkward. J