qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] target-i386: adds PV_SEND_IPI CPUID feature bit
@ 2018-07-02 10:22 Wanpeng Li
  2018-07-02 21:43 ` Eduardo Habkost
  0 siblings, 1 reply; 6+ messages in thread
From: Wanpeng Li @ 2018-07-02 10:22 UTC (permalink / raw)
  To: qemu-devel, kvm
  Cc: Paolo Bonzini, Radim Krčmář, Eduardo Habkost,
	Vitaly Kuznetsov

From: Wanpeng Li <wanpengli@tencent.com>

Adds PV_SEND_IPI CPUID feature bit.

Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Eduardo Habkost <ehabkost@redhat.com>
Cc: Radim Krčmář <rkrcmar@redhat.com>
Cc: Vitaly Kuznetsov <vkuznets@redhat.com>
Signed-off-by: Wanpeng Li <wanpengli@tencent.com>
---
 target/i386/cpu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target/i386/cpu.c b/target/i386/cpu.c
index 1e6a7d0..24e425a 100644
--- a/target/i386/cpu.c
+++ b/target/i386/cpu.c
@@ -870,7 +870,7 @@ static FeatureWordInfo feature_word_info[FEATURE_WORDS] = {
         .feat_names = {
             "kvmclock", "kvm-nopiodelay", "kvm-mmu", "kvmclock",
             "kvm-asyncpf", "kvm-steal-time", "kvm-pv-eoi", "kvm-pv-unhalt",
-            NULL, "kvm-pv-tlb-flush", NULL, NULL,
+            NULL, "kvm-pv-tlb-flush", NULL, "kvm-pv-ipi",
             NULL, NULL, NULL, NULL,
             NULL, NULL, NULL, NULL,
             NULL, NULL, NULL, NULL,
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] [PATCH] target-i386: adds PV_SEND_IPI CPUID feature bit
  2018-07-02 10:22 [Qemu-devel] [PATCH] target-i386: adds PV_SEND_IPI CPUID feature bit Wanpeng Li
@ 2018-07-02 21:43 ` Eduardo Habkost
  2018-07-23 10:58   ` Wanpeng Li
  2018-08-07  7:45   ` Wanpeng Li
  0 siblings, 2 replies; 6+ messages in thread
From: Eduardo Habkost @ 2018-07-02 21:43 UTC (permalink / raw)
  To: Wanpeng Li
  Cc: qemu-devel, kvm, Paolo Bonzini, Radim Krčmář,
	Vitaly Kuznetsov

On Mon, Jul 02, 2018 at 06:22:51PM +0800, Wanpeng Li wrote:
> From: Wanpeng Li <wanpengli@tencent.com>
> 
> Adds PV_SEND_IPI CPUID feature bit.
> 

Thanks!

Paolo, Radim: can I assume the bit is already reserved and queue
this patch, or should I wait until the KVM patch is merged into
kvm.git?

-- 
Eduardo

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] [PATCH] target-i386: adds PV_SEND_IPI CPUID feature bit
  2018-07-02 21:43 ` Eduardo Habkost
@ 2018-07-23 10:58   ` Wanpeng Li
  2018-08-07  7:45   ` Wanpeng Li
  1 sibling, 0 replies; 6+ messages in thread
From: Wanpeng Li @ 2018-07-23 10:58 UTC (permalink / raw)
  To: Eduardo Habkost
  Cc: qemu-devel@nongnu.org Developers, kvm, Paolo Bonzini,
	Radim Krcmar, Vitaly Kuznetsov

Ping,
On Tue, 3 Jul 2018 at 05:43, Eduardo Habkost <ehabkost@redhat.com> wrote:
>
> On Mon, Jul 02, 2018 at 06:22:51PM +0800, Wanpeng Li wrote:
> > From: Wanpeng Li <wanpengli@tencent.com>
> >
> > Adds PV_SEND_IPI CPUID feature bit.
> >
>
> Thanks!
>
> Paolo, Radim: can I assume the bit is already reserved and queue
> this patch, or should I wait until the KVM patch is merged into
> kvm.git?

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] [PATCH] target-i386: adds PV_SEND_IPI CPUID feature bit
  2018-07-02 21:43 ` Eduardo Habkost
  2018-07-23 10:58   ` Wanpeng Li
@ 2018-08-07  7:45   ` Wanpeng Li
  2018-08-07 10:07     ` Paolo Bonzini
  1 sibling, 1 reply; 6+ messages in thread
From: Wanpeng Li @ 2018-08-07  7:45 UTC (permalink / raw)
  To: Eduardo Habkost
  Cc: qemu-devel@nongnu.org Developers, kvm, Paolo Bonzini,
	Radim Krcmar, Vitaly Kuznetsov

Hi Eduardo,
On Tue, 3 Jul 2018 at 05:43, Eduardo Habkost <ehabkost@redhat.com> wrote:
>
> On Mon, Jul 02, 2018 at 06:22:51PM +0800, Wanpeng Li wrote:
> > From: Wanpeng Li <wanpengli@tencent.com>
> >
> > Adds PV_SEND_IPI CPUID feature bit.
> >
>
> Thanks!
>
> Paolo, Radim: can I assume the bit is already reserved and queue
> this patch, or should I wait until the KVM patch is merged into
> kvm.git?

I guess you can apply the qemu patch now since the kvm part is merged.
https://git.kernel.org/pub/scm/virt/kvm/kvm.git/commit/?h=queue&id=4180bf1b655a791a0a6ef93a2ffffc762722c782

Regards,
Wanpeng Li

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] [PATCH] target-i386: adds PV_SEND_IPI CPUID feature bit
  2018-08-07  7:45   ` Wanpeng Li
@ 2018-08-07 10:07     ` Paolo Bonzini
  2018-08-07 14:20       ` Eduardo Habkost
  0 siblings, 1 reply; 6+ messages in thread
From: Paolo Bonzini @ 2018-08-07 10:07 UTC (permalink / raw)
  To: Wanpeng Li, Eduardo Habkost
  Cc: qemu-devel@nongnu.org Developers, kvm, Radim Krcmar,
	Vitaly Kuznetsov

On 07/08/2018 09:45, Wanpeng Li wrote:
>>
>> Paolo, Radim: can I assume the bit is already reserved and queue
>> this patch, or should I wait until the KVM patch is merged into
>> kvm.git?
> I guess you can apply the qemu patch now since the kvm part is merged.
> https://git.kernel.org/pub/scm/virt/kvm/kvm.git/commit/?h=queue&id=4180bf1b655a791a0a6ef93a2ffffc762722c782

QEMU is in freeze, so it will have to wait for the next release.  Thanks!

Paolo

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] [PATCH] target-i386: adds PV_SEND_IPI CPUID feature bit
  2018-08-07 10:07     ` Paolo Bonzini
@ 2018-08-07 14:20       ` Eduardo Habkost
  0 siblings, 0 replies; 6+ messages in thread
From: Eduardo Habkost @ 2018-08-07 14:20 UTC (permalink / raw)
  To: Paolo Bonzini
  Cc: Wanpeng Li, qemu-devel@nongnu.org Developers, kvm, Radim Krcmar,
	Vitaly Kuznetsov

On Tue, Aug 07, 2018 at 12:07:37PM +0200, Paolo Bonzini wrote:
> On 07/08/2018 09:45, Wanpeng Li wrote:
> >>
> >> Paolo, Radim: can I assume the bit is already reserved and queue
> >> this patch, or should I wait until the KVM patch is merged into
> >> kvm.git?
> > I guess you can apply the qemu patch now since the kvm part is merged.
> > https://git.kernel.org/pub/scm/virt/kvm/kvm.git/commit/?h=queue&id=4180bf1b655a791a0a6ef93a2ffffc762722c782
> 
> QEMU is in freeze, so it will have to wait for the next release.  Thanks!

I'm queueing for 3.1, thanks!

-- 
Eduardo

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2018-08-07 14:20 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-02 10:22 [Qemu-devel] [PATCH] target-i386: adds PV_SEND_IPI CPUID feature bit Wanpeng Li
2018-07-02 21:43 ` Eduardo Habkost
2018-07-23 10:58   ` Wanpeng Li
2018-08-07  7:45   ` Wanpeng Li
2018-08-07 10:07     ` Paolo Bonzini
2018-08-07 14:20       ` Eduardo Habkost

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).