linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
From: Alexander Graf <agraf@suse.de>
To: Alexey Kardashevskiy <aik@ozlabs.ru>
Cc: kvm@vger.kernel.org, linux-doc@vger.kernel.org,
	linux-kernel@vger.kernel.org, kvm-ppc@vger.kernel.org,
	Alex Williamson <alex.williamson@redhat.com>,
	Paul Mackerras <paulus@samba.org>,
	"Paul E . McKenney" <paulmck@linux.vnet.ibm.com>,
	linuxppc-dev@lists.ozlabs.org,
	David Gibson <david@gibson.dropbear.id.au>
Subject: Re: [PATCH 2/8] KVM: PPC: reserve a capability and ioctl numbers for realmode VFIO
Date: Wed, 10 Jul 2013 17:00:55 +0200	[thread overview]
Message-ID: <8E7675CE-6931-43B5-AD4F-B52EBE5D21B5@suse.de> (raw)
In-Reply-To: <51DD6CED.6080001@ozlabs.ru>


On 10.07.2013, at 16:17, Alexey Kardashevskiy wrote:

> On 07/10/2013 08:27 PM, Alexander Graf wrote:
>>=20
>> On 10.07.2013, at 01:35, Alexey Kardashevskiy wrote:
>>=20
>>> On 07/10/2013 01:35 AM, Alexander Graf wrote:
>>>> On 06/27/2013 07:02 AM, Alexey Kardashevskiy wrote:
>>>>> Signed-off-by: Alexey Kardashevskiy<aik@ozlabs.ru>
>>>>> ---
>>>>> include/uapi/linux/kvm.h |    2 ++
>>>>> 1 file changed, 2 insertions(+)
>>>>>=20
>>>>> diff --git a/include/uapi/linux/kvm.h b/include/uapi/linux/kvm.h
>>>>> index 970b1f5..0865c01 100644
>>>>> --- a/include/uapi/linux/kvm.h
>>>>> +++ b/include/uapi/linux/kvm.h
>>>>> @@ -667,6 +667,7 @@ struct kvm_ppc_smmu_info {
>>>>> #define KVM_CAP_PPC_RTAS 91
>>>>> #define KVM_CAP_IRQ_XICS 92
>>>>> #define KVM_CAP_SPAPR_MULTITCE 93
>>>>> +#define KVM_CAP_SPAPR_TCE_IOMMU 94
>>>>>=20
>>>>> #ifdef KVM_CAP_IRQ_ROUTING
>>>>>=20
>>>>> @@ -923,6 +924,7 @@ struct kvm_s390_ucas_mapping {
>>>>> /* Available with KVM_CAP_PPC_ALLOC_HTAB */
>>>>> #define KVM_PPC_ALLOCATE_HTAB      _IOWR(KVMIO, 0xa7, __u32)
>>>>> #define KVM_CREATE_SPAPR_TCE      _IOW(KVMIO,  0xa8, struct
>>>>> kvm_create_spapr_tce)
>>>>> +#define KVM_CREATE_SPAPR_TCE_IOMMU _IOW(KVMIO,  0xaf, struct
>>>>> kvm_create_spapr_tce_iommu)
>>>>=20
>>>> Please order them by number.
>>>=20
>>> Oh. Again :( We have had this discussion with Scott Wood here =
already.
>>> Where _exactly_ do you want me to put it?
>>=20
>> 8 lines further down. With a comment saying when it's available. Also =
why is it af, not ad?
>=20
>=20
> 0xad and 0xae are taken.
> Where should I have commented this? In the commit message? Or in the =
patch
> itself?

Yeah, with a comment right in between 0xad and your 0xaf entry =
explaining the gap.


Alex

>=20
>=20
>>> Many sections, not really ordered. Thank you.
>>=20
>> They should all be ordered inside of their own categories.
>=20
>=20
> --=20
> Alexey

  reply	other threads:[~2013-07-10 15:01 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-27  5:02 [PATCH 0/8 v4] KVM: PPC: IOMMU in-kernel handling Alexey Kardashevskiy
2013-06-27  5:02 ` [PATCH 1/8] KVM: PPC: reserve a capability number for multitce support Alexey Kardashevskiy
2013-06-27  5:02 ` [PATCH 2/8] KVM: PPC: reserve a capability and ioctl numbers for realmode VFIO Alexey Kardashevskiy
2013-07-09 15:35   ` Alexander Graf
2013-07-09 23:35     ` Alexey Kardashevskiy
2013-07-10 10:27       ` Alexander Graf
2013-07-10 14:17         ` Alexey Kardashevskiy
2013-07-10 15:00           ` Alexander Graf [this message]
2013-06-27  5:02 ` [PATCH 3/8] vfio: add external user support Alexey Kardashevskiy
2013-06-27  6:47   ` Stephen Rothwell
2013-06-27  7:14     ` [PATCH v2] " Alexey Kardashevskiy
2013-06-27  7:50       ` Stephen Rothwell
2013-06-27 15:44       ` Alex Williamson
2013-06-27 22:57         ` Alexey Kardashevskiy
2013-06-28  0:41           ` Alex Williamson
2013-06-28  1:38             ` Alexey Kardashevskiy
2013-06-28  2:37               ` Alex Williamson
2013-06-28  3:10                 ` Alexey Kardashevskiy
2013-06-27  6:59   ` [PATCH 3/8] " Stephen Rothwell
2013-06-27  9:42     ` Benjamin Herrenschmidt
2013-06-27 10:48       ` Alexey Kardashevskiy
2013-06-27  5:02 ` [PATCH 4/8] hashtable: add hash_for_each_possible_rcu_notrace() Alexey Kardashevskiy
2013-06-27  5:02 ` [PATCH 5/8] powerpc: Prepare to support kernel handling of IOMMU map/unmap Alexey Kardashevskiy
2013-06-27  5:02 ` [PATCH 6/8] KVM: PPC: Add support for multiple-TCE hcalls Alexey Kardashevskiy
2013-06-27  5:02 ` [PATCH 7/8] KVM: PPC: Add support for IOMMU in-kernel handling Alexey Kardashevskiy
2013-06-27  5:02 ` [PATCH 8/8] KVM: PPC: Add hugepage " Alexey Kardashevskiy
2013-06-27 18:39   ` Scott Wood
2013-07-06 15:06 [PATCH 0/8 v5] KVM: PPC: " Alexey Kardashevskiy
2013-07-06 15:07 ` [PATCH 2/8] KVM: PPC: reserve a capability and ioctl numbers for realmode VFIO Alexey Kardashevskiy

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=8E7675CE-6931-43B5-AD4F-B52EBE5D21B5@suse.de \
    --to=agraf@suse.de \
    --cc=aik@ozlabs.ru \
    --cc=alex.williamson@redhat.com \
    --cc=david@gibson.dropbear.id.au \
    --cc=kvm-ppc@vger.kernel.org \
    --cc=kvm@vger.kernel.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=paulmck@linux.vnet.ibm.com \
    --cc=paulus@samba.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).