qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: Roman Kagan <rkagan@virtuozzo.com>,
	Igor Mammedov <imammedo@redhat.com>,
	Eduardo Habkost <ehabkost@redhat.com>,
	qemu-devel@nongnu.org, Evgeny Yakovlev <eyakovlev@virtuozzo.com>,
	"Denis V . Lunev" <den@openvz.org>
Subject: Re: [Qemu-devel] [PATCH 05/23] hyperv: ensure VP index equal to QEMU cpu_index
Date: Thu, 15 Jun 2017 15:22:32 +0200	[thread overview]
Message-ID: <fd548101-8cf4-30f6-8b1b-569eba96b737@redhat.com> (raw)
In-Reply-To: <20170615124106.GA2046@rkaganb.sw.ru>



On 15/06/2017 14:41, Roman Kagan wrote:
> On Wed, Jun 14, 2017 at 03:00:27PM +0200, Igor Mammedov wrote:
>> On Wed, 14 Jun 2017 13:26:44 +0200
>> Paolo Bonzini <pbonzini@redhat.com> wrote:
>>
>>> On 14/06/2017 13:25, Roman Kagan wrote:
>>>>> The problem with that is that it will break as soon as we create
>>>>> VCPUs in a different order.  Unsolvable on hosts that don't allow
>>>>> HV_X64_MSR_VP_INDEX to be set, however.  
>>>> Right, thanks for putting together a detailed explanation.
>>>>
>>>> This was a thinko back then, not to have HV_X64_MSR_VP_INDEX maintained
>>>> by QEMU.  I'm going to post a patch to KVM fixing that.
>>>>
>>>> Meanwhile QEMU needs a way to maintain its notion of vp_index that is
>>>>   1) in sync with kernel's notion
>>>>   2) also with kernels that don't support setting the msr
>>>>   3) persistent across migrations
>>>>
>>>> cpu_index looked like a perfect candidate.
>>>>   
>>>
>>> What you want is the APIC id,
>>
>>> which _is_ cpu_index but may not be in the
>> depending on topology cpu_index won't be the same as APIC ID/vcpu_id
>> /AMDs odd core count/.
> 
> So vcpu_id can be sparse?

Yes.

> Having consulted the spec, I'm not so confident any more this is the
> right move.
> 
>> 7.8.1 Virtual Processor Index
>>
>> Virtual processors are identified by using an index (VP index). The
>> maximum number of virtual processors per partition supported by the
>> current implementation of the hypervisor can be obtained through CPUID
>> leaf 0x40000005. A virtual processor index must be less than the
>> maximum number of virtual processors per partition.
> 
> This seems to imply that VP index should be dense.  As if they use it
> directly as an index into an array whose length is equal to the max
> number of vcpus.  (BTW the value we report for it is currently hardcoded
> to 0x40 which probably needs fixing, too.)
> 
> I'm starting to drift back to adding SET_MSRS support to
> HV_X64_MSR_VP_INDEX in KVM to delegate the control to QEMU, and having
> QEMU use cpu_index as its value...  :-/

Yes, definitely.

Paolo

  reply	other threads:[~2017-06-15 13:22 UTC|newest]

Thread overview: 76+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-06 18:19 [Qemu-devel] [PATCH 00/23] hyperv fixes and enhancements Roman Kagan
2017-06-06 18:19 ` [Qemu-devel] [PATCH 01/23] hyperv: add header with protocol definitions Roman Kagan
2017-06-06 18:19 ` [Qemu-devel] [PATCH 02/23] update-linux-headers: prepare for hyperv.h removal Roman Kagan
2017-06-06 18:19 ` [Qemu-devel] [PATCH 03/23] hyperv: set partition-wide MSRs only on first vcpu Roman Kagan
2017-06-06 18:19 ` [Qemu-devel] [PATCH 04/23] hyperv: ensure msrs are inited properly Roman Kagan
2017-06-06 18:19 ` [Qemu-devel] [PATCH 05/23] hyperv: ensure VP index equal to QEMU cpu_index Roman Kagan
2017-06-13 18:57   ` Eduardo Habkost
2017-06-14 11:25     ` Roman Kagan
2017-06-14 11:26       ` Paolo Bonzini
2017-06-14 13:00         ` Igor Mammedov
2017-06-15 12:41           ` Roman Kagan
2017-06-15 13:22             ` Paolo Bonzini [this message]
2017-06-15 13:27             ` Igor Mammedov
2017-06-15 16:05               ` Roman Kagan
2017-06-18 15:29                 ` Eduardo Habkost
2017-06-14 13:01         ` Eduardo Habkost
2017-06-14 13:11           ` Igor Mammedov
2017-06-14 13:17             ` Paolo Bonzini
2017-06-14 13:22               ` Eduardo Habkost
2017-06-14 13:37                 ` Paolo Bonzini
2017-06-14 13:38                 ` Igor Mammedov
2017-06-14 13:45                   ` Eduardo Habkost
2017-06-14 18:40                     ` Roman Kagan
2017-06-14 18:59                       ` Eduardo Habkost
2017-06-15  8:26                         ` Paolo Bonzini
2017-06-15 11:40                           ` Roman Kagan
2017-06-15 11:42                             ` Paolo Bonzini
2017-06-15 12:03                               ` Roman Kagan
2017-06-14 13:19             ` Eduardo Habkost
2017-06-14 13:00       ` Eduardo Habkost
2017-06-14 13:24         ` Igor Mammedov
2017-06-14 13:35           ` Eduardo Habkost
2017-06-14 15:31             ` Igor Mammedov
2017-06-06 18:19 ` [Qemu-devel] [PATCH 06/23] hyperv: helper to find vcpu by VP index Roman Kagan
2017-06-06 18:19 ` [Qemu-devel] [PATCH 07/23] hyperv_testdev: refactor for readability Roman Kagan
2017-06-06 18:19 ` [Qemu-devel] [PATCH 08/23] hyperv: cosmetic: g_malloc -> g_new Roman Kagan
2017-06-06 18:19 ` [Qemu-devel] [PATCH 09/23] hyperv: synic: only setup ack notifier if there's a callback Roman Kagan
2017-06-06 18:19 ` [Qemu-devel] [PATCH 10/23] hyperv: allow passing arbitrary data to sint ack callback Roman Kagan
2017-06-06 18:19 ` [Qemu-devel] [PATCH 12/23] hyperv: make HvSintRoute reference-counted Roman Kagan
2017-06-14 13:53   ` Eduardo Habkost
2017-06-14 16:23     ` Roman Kagan
2017-06-23 12:44       ` Eduardo Habkost
2017-06-06 18:19 ` [Qemu-devel] [PATCH 13/23] hyperv: qdev-ify SynIC Roman Kagan
2017-06-13 18:34   ` Eduardo Habkost
2017-06-14  9:58     ` Roman Kagan
2017-06-14 12:46       ` Eduardo Habkost
2017-06-14 15:11         ` Roman Kagan
2017-06-14 15:21           ` Eduardo Habkost
2017-06-06 18:19 ` [Qemu-devel] [PATCH 14/23] kvm-all: make async_safe_run_on_cpu safe on kvm too Roman Kagan
2017-06-08 14:47   ` Paolo Bonzini
2017-06-06 18:19 ` [Qemu-devel] [PATCH 15/23] hyperv: make overlay pages for SynIC Roman Kagan
2017-06-06 18:19 ` [Qemu-devel] [PATCH 16/23] hyperv: map overlay pages after updating msrs Roman Kagan
2017-06-14 11:12   ` Paolo Bonzini
2017-06-14 11:54     ` Roman Kagan
2017-06-14 12:11       ` Paolo Bonzini
2017-06-14 12:41         ` Roman Kagan
2017-06-14 12:46           ` Paolo Bonzini
2017-06-06 18:19 ` [Qemu-devel] [PATCH 17/23] hyperv: add synic message delivery Roman Kagan
2017-06-14 15:08   ` Paolo Bonzini
2017-06-14 15:28     ` Roman Kagan
2017-06-14 15:32       ` Paolo Bonzini
2017-06-14 15:39         ` Roman Kagan
2017-06-06 18:19 ` [Qemu-devel] [PATCH 18/23] hyperv: add synic event flag signaling Roman Kagan
2017-06-14 15:07   ` Paolo Bonzini
2017-06-06 18:19 ` [Qemu-devel] [PATCH 19/23] hyperv: process SIGNAL_EVENT hypercall Roman Kagan
2017-06-06 18:19 ` [Qemu-devel] [PATCH 20/23] hyperv: process POST_MESSAGE hypercall Roman Kagan
2017-06-14 11:19   ` Paolo Bonzini
2017-06-14 14:20     ` Roman Kagan
2017-06-14 14:30       ` Paolo Bonzini
2017-06-06 18:19 ` [Qemu-devel] [PATCH 21/23] hyperv_testdev: add SynIC message and event testmodes Roman Kagan
2017-06-06 18:19 ` [Qemu-devel] [PATCH 22/23] MAINTAINERS: add myself and eyakovlev@ for hyperv* Roman Kagan
2017-06-06 18:19 ` [Qemu-devel] [PATCH 23/23] hyperv: update copyright notices Roman Kagan
     [not found] ` <20170606181948.16238-12-rkagan@virtuozzo.com>
2017-06-13 19:02   ` [Qemu-devel] [PATCH 11/23] hyperv: address HvSintRoute by X86CPU pointer Eduardo Habkost
2017-06-14 11:08     ` Paolo Bonzini
2017-06-14 12:14       ` Roman Kagan
2017-06-14 12:17         ` Paolo Bonzini

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=fd548101-8cf4-30f6-8b1b-569eba96b737@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=den@openvz.org \
    --cc=ehabkost@redhat.com \
    --cc=eyakovlev@virtuozzo.com \
    --cc=imammedo@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=rkagan@virtuozzo.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 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).