From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Ahern Subject: Re: [PATCH v2 05/11] KVM: Expose a version 1 architectural PMU to guests Date: Mon, 13 Jun 2011 12:10:05 -0600 Message-ID: <4DF6527D.7080003@cisco.com> References: <1307972106-2468-1-git-send-email-avi@redhat.com> <1307972106-2468-6-git-send-email-avi@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Marcelo Tosatti , kvm@vger.kernel.org, Ingo Molnar , Peter Zijlstra , Arnaldo Carvalho de Melo To: Avi Kivity Return-path: Received: from sj-iport-1.cisco.com ([171.71.176.70]:13790 "EHLO sj-iport-1.cisco.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754412Ab1FMSKH (ORCPT ); Mon, 13 Jun 2011 14:10:07 -0400 In-Reply-To: <1307972106-2468-6-git-send-email-avi@redhat.com> Sender: kvm-owner@vger.kernel.org List-ID: On 06/13/2011 07:35 AM, Avi Kivity wrote: > diff --git a/arch/x86/kvm/pmu.c b/arch/x86/kvm/pmu.c > new file mode 100644 > index 0000000..763e763 > --- /dev/null > +++ b/arch/x86/kvm/pmu.c > @@ -0,0 +1,255 @@ > +/* > + * Kernel-based Virtual Machine -- Performane Monitoring Unit support > + * > + * Copyright 2011 Red Hat, Inc. and/or its affiliates. > + * > + * Authors: > + * Avi Kivity > + * > + * This work is licensed under the terms of the GNU GPL, version 2. See > + * the COPYING file in the top-level directory. > + * > + */ > + > +#include > +#include > +#include > +#include "x86.h" > +#include "pmu.h" If I remove the above line the patch set compiles cleanly. Is this an old reference? kvm_pm* structs are defined in kvm_host.h. David