From: Scott Wood <scottwood@freescale.com>
To: Hemant Kumar <hemant@linux.vnet.ibm.com>
Cc: linux-kernel@vger.kernel.org, maddy@linux.vnet.ibm.com,
srikar@linux.vnet.ibm.com, mpe@ellerman.id.au, agraf@suse.de,
kvm-ppc@vger.kernel.org, paulus@samba.org,
warrier@linux.vnet.ibm.com, linuxppc-dev@lists.ozlabs.org,
acme@kernel.org, mingo@redhat.com, peterz@infradead.org
Subject: Re: [PATCH v3 3/3] kvm/powerpc: Export HCALL reason codes
Date: Wed, 13 May 2015 03:21:39 +0000 [thread overview]
Message-ID: <1431487299.3868.1.camel@freescale.com> (raw)
In-Reply-To: <55522774.5030400@linux.vnet.ibm.com>
On Tue, 2015-05-12 at 21:46 +0530, Hemant Kumar wrote:
> On 05/12/2015 03:44 AM, Scott Wood wrote:
> > On Fri, 2015-05-08 at 06:23 +0530, Hemant Kumar wrote:
> >> For perf to analyze the KVM events like hcalls, we need the
> >> hypervisor calls and their codes to be exported through uapi.
> >>
> >> This patch moves most of the pSeries hcall codes from
> >> arch/powerpc/include/asm/hvcall.h to
> >> arch/powerpc/include/uapi/asm/hcall_codes.h.
> >> It also moves the mapping <hcall_code-to-hcall_reason> from
> >> arch/powerpc/kvm/trace_hv.h to
> >> arch/powerpc/include/uapi/asm/trace_hcall.h.
> >>
> >> Signed-off-by: Hemant Kumar <hemant@linux.vnet.ibm.com>
> >> ---
> >> arch/powerpc/include/asm/hvcall.h | 120 +--------------------------
> >> arch/powerpc/include/uapi/asm/hcall_codes.h | 123 ++++++++++++++++++++++++++++
> >> arch/powerpc/include/uapi/asm/trace_hcall.h | 122 +++++++++++++++++++++++++++
> >> arch/powerpc/kvm/trace_hv.h | 117 +-------------------------
> > When moving to uapi please add proper namespacing to indicate that this
> > is pseries specific.
> >
>
> Sure, will add that.
Thanks.
> >> diff --git a/arch/powerpc/include/uapi/asm/trace_hcall.h b/arch/powerpc/include/uapi/asm/trace_hcall.h
> >> new file mode 100644
> >> index 0000000..00eac01
> >> --- /dev/null
> >> +++ b/arch/powerpc/include/uapi/asm/trace_hcall.h
> >> @@ -0,0 +1,122 @@
> >> +#ifndef _KVM_TRACE_HCALL_MAP_H
> >> +#define _KVM_TRACE_HCALL_MAP_H
> >> +
> >> +#include "hcall_codes.h"
> >> +
> >> +#define kvm_trace_symbol_hcall\
> >> + {H_REMOVE,"H_REMOVE"}, \
> >> + {H_ENTER,"H_ENTER"}, \
> >> + {H_READ,"H_READ"}, \
> >> + {H_CLEAR_MOD,"H_CLEAR_MOD"}, \
> > This is a rather odd way of exposing an array to userspace...
> >
>
> Didn't get you here. Can you please elaborate?
>
> I see some other files like arch/x86/include/uapi/asm/vmx.h exposing the
> reasons in a similar way.
It just seemed like sloppy API to not have any typing associated with it
and require the user to wrap it in an actual array; I wasn't aware there
was precedent for this construction in uapi. I also would have expected
a macro that doesn't behave like a normal element of C syntax (function,
variable name, type, etc) to have been capitalized.
-Scott
WARNING: multiple messages have this Message-ID (diff)
From: Scott Wood <scottwood@freescale.com>
To: Hemant Kumar <hemant@linux.vnet.ibm.com>
Cc: maddy@linux.vnet.ibm.com, srikar@linux.vnet.ibm.com,
peterz@infradead.org, agraf@suse.de, kvm-ppc@vger.kernel.org,
linux-kernel@vger.kernel.org, mingo@redhat.com, paulus@samba.org,
acme@kernel.org, warrier@linux.vnet.ibm.com,
linuxppc-dev@lists.ozlabs.org
Subject: Re: [PATCH v3 3/3] kvm/powerpc: Export HCALL reason codes
Date: Tue, 12 May 2015 22:21:39 -0500 [thread overview]
Message-ID: <1431487299.3868.1.camel@freescale.com> (raw)
In-Reply-To: <55522774.5030400@linux.vnet.ibm.com>
On Tue, 2015-05-12 at 21:46 +0530, Hemant Kumar wrote:
> On 05/12/2015 03:44 AM, Scott Wood wrote:
> > On Fri, 2015-05-08 at 06:23 +0530, Hemant Kumar wrote:
> >> For perf to analyze the KVM events like hcalls, we need the
> >> hypervisor calls and their codes to be exported through uapi.
> >>
> >> This patch moves most of the pSeries hcall codes from
> >> arch/powerpc/include/asm/hvcall.h to
> >> arch/powerpc/include/uapi/asm/hcall_codes.h.
> >> It also moves the mapping <hcall_code-to-hcall_reason> from
> >> arch/powerpc/kvm/trace_hv.h to
> >> arch/powerpc/include/uapi/asm/trace_hcall.h.
> >>
> >> Signed-off-by: Hemant Kumar <hemant@linux.vnet.ibm.com>
> >> ---
> >> arch/powerpc/include/asm/hvcall.h | 120 +--------------------------
> >> arch/powerpc/include/uapi/asm/hcall_codes.h | 123 ++++++++++++++++++++++++++++
> >> arch/powerpc/include/uapi/asm/trace_hcall.h | 122 +++++++++++++++++++++++++++
> >> arch/powerpc/kvm/trace_hv.h | 117 +-------------------------
> > When moving to uapi please add proper namespacing to indicate that this
> > is pseries specific.
> >
>
> Sure, will add that.
Thanks.
> >> diff --git a/arch/powerpc/include/uapi/asm/trace_hcall.h b/arch/powerpc/include/uapi/asm/trace_hcall.h
> >> new file mode 100644
> >> index 0000000..00eac01
> >> --- /dev/null
> >> +++ b/arch/powerpc/include/uapi/asm/trace_hcall.h
> >> @@ -0,0 +1,122 @@
> >> +#ifndef _KVM_TRACE_HCALL_MAP_H
> >> +#define _KVM_TRACE_HCALL_MAP_H
> >> +
> >> +#include "hcall_codes.h"
> >> +
> >> +#define kvm_trace_symbol_hcall\
> >> + {H_REMOVE,"H_REMOVE"}, \
> >> + {H_ENTER,"H_ENTER"}, \
> >> + {H_READ,"H_READ"}, \
> >> + {H_CLEAR_MOD,"H_CLEAR_MOD"}, \
> > This is a rather odd way of exposing an array to userspace...
> >
>
> Didn't get you here. Can you please elaborate?
>
> I see some other files like arch/x86/include/uapi/asm/vmx.h exposing the
> reasons in a similar way.
It just seemed like sloppy API to not have any typing associated with it
and require the user to wrap it in an actual array; I wasn't aware there
was precedent for this construction in uapi. I also would have expected
a macro that doesn't behave like a normal element of C syntax (function,
variable name, type, etc) to have been capitalized.
-Scott
WARNING: multiple messages have this Message-ID (diff)
From: Scott Wood <scottwood@freescale.com>
To: Hemant Kumar <hemant@linux.vnet.ibm.com>
Cc: <linux-kernel@vger.kernel.org>, <maddy@linux.vnet.ibm.com>,
<srikar@linux.vnet.ibm.com>, <mpe@ellerman.id.au>,
<agraf@suse.de>, <kvm-ppc@vger.kernel.org>, <paulus@samba.org>,
<warrier@linux.vnet.ibm.com>, <linuxppc-dev@lists.ozlabs.org>,
<acme@kernel.org>, <mingo@redhat.com>, <peterz@infradead.org>
Subject: Re: [PATCH v3 3/3] kvm/powerpc: Export HCALL reason codes
Date: Tue, 12 May 2015 22:21:39 -0500 [thread overview]
Message-ID: <1431487299.3868.1.camel@freescale.com> (raw)
In-Reply-To: <55522774.5030400@linux.vnet.ibm.com>
On Tue, 2015-05-12 at 21:46 +0530, Hemant Kumar wrote:
> On 05/12/2015 03:44 AM, Scott Wood wrote:
> > On Fri, 2015-05-08 at 06:23 +0530, Hemant Kumar wrote:
> >> For perf to analyze the KVM events like hcalls, we need the
> >> hypervisor calls and their codes to be exported through uapi.
> >>
> >> This patch moves most of the pSeries hcall codes from
> >> arch/powerpc/include/asm/hvcall.h to
> >> arch/powerpc/include/uapi/asm/hcall_codes.h.
> >> It also moves the mapping <hcall_code-to-hcall_reason> from
> >> arch/powerpc/kvm/trace_hv.h to
> >> arch/powerpc/include/uapi/asm/trace_hcall.h.
> >>
> >> Signed-off-by: Hemant Kumar <hemant@linux.vnet.ibm.com>
> >> ---
> >> arch/powerpc/include/asm/hvcall.h | 120 +--------------------------
> >> arch/powerpc/include/uapi/asm/hcall_codes.h | 123 ++++++++++++++++++++++++++++
> >> arch/powerpc/include/uapi/asm/trace_hcall.h | 122 +++++++++++++++++++++++++++
> >> arch/powerpc/kvm/trace_hv.h | 117 +-------------------------
> > When moving to uapi please add proper namespacing to indicate that this
> > is pseries specific.
> >
>
> Sure, will add that.
Thanks.
> >> diff --git a/arch/powerpc/include/uapi/asm/trace_hcall.h b/arch/powerpc/include/uapi/asm/trace_hcall.h
> >> new file mode 100644
> >> index 0000000..00eac01
> >> --- /dev/null
> >> +++ b/arch/powerpc/include/uapi/asm/trace_hcall.h
> >> @@ -0,0 +1,122 @@
> >> +#ifndef _KVM_TRACE_HCALL_MAP_H
> >> +#define _KVM_TRACE_HCALL_MAP_H
> >> +
> >> +#include "hcall_codes.h"
> >> +
> >> +#define kvm_trace_symbol_hcall\
> >> + {H_REMOVE,"H_REMOVE"}, \
> >> + {H_ENTER,"H_ENTER"}, \
> >> + {H_READ,"H_READ"}, \
> >> + {H_CLEAR_MOD,"H_CLEAR_MOD"}, \
> > This is a rather odd way of exposing an array to userspace...
> >
>
> Didn't get you here. Can you please elaborate?
>
> I see some other files like arch/x86/include/uapi/asm/vmx.h exposing the
> reasons in a similar way.
It just seemed like sloppy API to not have any typing associated with it
and require the user to wrap it in an actual array; I wasn't aware there
was precedent for this construction in uapi. I also would have expected
a macro that doesn't behave like a normal element of C syntax (function,
variable name, type, etc) to have been capitalized.
-Scott
next prev parent reply other threads:[~2015-05-13 3:21 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-08 0:53 [PATCH v3 1/3] kvm/powerpc: Export kvm exit reasons Hemant Kumar
2015-05-08 0:54 ` Hemant Kumar
2015-05-08 0:53 ` Hemant Kumar
2015-05-08 0:53 ` [PATCH v3 2/3] kvm/powerpc: Add exit reason for return code 0x0 Hemant Kumar
2015-05-08 0:54 ` Hemant Kumar
2015-05-08 0:53 ` Hemant Kumar
2015-05-08 0:53 ` [PATCH v3 3/3] kvm/powerpc: Export HCALL reason codes Hemant Kumar
2015-05-08 0:54 ` Hemant Kumar
2015-05-08 0:53 ` Hemant Kumar
2015-05-11 22:14 ` Scott Wood
2015-05-11 22:14 ` Scott Wood
2015-05-11 22:14 ` Scott Wood
2015-05-12 16:16 ` Hemant Kumar
2015-05-12 16:28 ` Hemant Kumar
2015-05-12 16:16 ` Hemant Kumar
2015-05-13 3:21 ` Scott Wood [this message]
2015-05-13 3:21 ` Scott Wood
2015-05-13 3:21 ` Scott Wood
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1431487299.3868.1.camel@freescale.com \
--to=scottwood@freescale.com \
--cc=acme@kernel.org \
--cc=agraf@suse.de \
--cc=hemant@linux.vnet.ibm.com \
--cc=kvm-ppc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=maddy@linux.vnet.ibm.com \
--cc=mingo@redhat.com \
--cc=mpe@ellerman.id.au \
--cc=paulus@samba.org \
--cc=peterz@infradead.org \
--cc=srikar@linux.vnet.ibm.com \
--cc=warrier@linux.vnet.ibm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.