All of lore.kernel.org
 help / color / mirror / Atom feed
From: Marcelo Tosatti <mtosatti@redhat.com>
To: kvm@vger.kernel.org, qemu-devel@nongnu.org
Cc: Marcelo Tosatti <mtosatti@redhat.com>
Subject: [patch 2/2] qemu: kvm: support RT_PRIO_HC hypercall
Date: Thu, 21 Sep 2017 09:03:43 -0300	[thread overview]
Message-ID: <20170921120415.241151389@redhat.com> (raw)
In-Reply-To: 20170921120341.590850215@redhat.com

[-- Attachment #1: qemu-toggle-kvmrt-prio --]
[-- Type: text/plain, Size: 3062 bytes --]

Add the following CPU options:

allow-rt-prio-hc: allow guest to execute hypercall to change vcpu 
thread priority.

rt-prio: SCHED_FIFO priority to be used when that hypercall is invoked.

See kernel patchset for details about this hypercall.

Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>

---
 target/i386/cpu.c |    2 ++
 target/i386/cpu.h |    4 ++++
 target/i386/kvm.c |   23 +++++++++++++++++++++++
 3 files changed, 29 insertions(+)

Index: qemu-fifoprio/target/i386/cpu.c
===================================================================
--- qemu-fifoprio.orig/target/i386/cpu.c
+++ qemu-fifoprio/target/i386/cpu.c
@@ -4106,6 +4106,8 @@ static Property x86_cpu_properties[] = {
                      false),
     DEFINE_PROP_BOOL("vmware-cpuid-freq", X86CPU, vmware_cpuid_freq, true),
     DEFINE_PROP_BOOL("tcg-cpuid", X86CPU, expose_tcg, true),
+    DEFINE_PROP_BOOL("allow-rt-prio-hc", X86CPU, allow_rt_prio_hc, false),
+    DEFINE_PROP_UINT32("rt-prio", X86CPU, rt_prio_hc, 0),
     DEFINE_PROP_END_OF_LIST()
 };
 
Index: qemu-fifoprio/target/i386/cpu.h
===================================================================
--- qemu-fifoprio.orig/target/i386/cpu.h
+++ qemu-fifoprio/target/i386/cpu.h
@@ -1215,6 +1215,7 @@ struct X86CPU {
     bool hyperv_runtime;
     bool hyperv_synic;
     bool hyperv_stimer;
+    bool allow_rt_prio_hc;
     bool check_cpuid;
     bool enforce_cpuid;
     bool expose_kvm;
@@ -1270,6 +1271,9 @@ struct X86CPU {
     /* Number of physical address bits supported */
     uint32_t phys_bits;
 
+    /* RT priority of VCPU thread, when hypercall is invoked by guest */
+    uint32_t rt_prio_hc;
+
     /* in order to simplify APIC support, we leave this pointer to the
        user */
     struct DeviceState *apic_state;
Index: qemu-fifoprio/target/i386/kvm.c
===================================================================
--- qemu-fifoprio.orig/target/i386/kvm.c
+++ qemu-fifoprio/target/i386/kvm.c
@@ -673,6 +673,28 @@ static int hyperv_handle_properties(CPUS
 
 static Error *invtsc_mig_blocker;
 
+static int enable_allow_rt_prio_hc(CPUState *cs)
+{
+    int ret;
+    struct kvm_vcpu_rt_prio rt_prio;
+    X86CPU *cpu = X86_CPU(cs);
+
+    if (!kvm_check_extension(kvm_state, KVM_CAP_VCPU_RT_PRIO_HC)) {
+        fprintf(stderr, "RT prio hypercall not supported by kernel\n");
+        return -ENOSYS;
+    }
+
+    rt_prio.sched_priority = cpu->rt_prio_hc;
+    rt_prio.enabled = 1;
+
+    ret = kvm_vcpu_ioctl(cs, KVM_ENABLE_VCPU_RT_PRIO_HC, &rt_prio);
+    if (ret) {
+        fprintf(stderr, "RT prio hypercall failed, ret=%d\n", ret);
+    }
+
+    return ret;
+}
+
 #define KVM_MAX_CPUID_ENTRIES  100
 
 int kvm_arch_init_vcpu(CPUState *cs)
@@ -758,6 +780,12 @@ int kvm_arch_init_vcpu(CPUState *cs)
         has_msr_hv_hypercall = true;
     }
 
+    if (cpu->allow_rt_prio_hc) {
+        if (enable_allow_rt_prio_hc(cs)) {
+            abort();
+        }
+    }
+
     if (cpu->expose_kvm) {
         memcpy(signature, "KVMKVMKVM\0\0\0", 12);
         c = &cpuid_data.entries[cpuid_i++];

WARNING: multiple messages have this Message-ID (diff)
From: Marcelo Tosatti <mtosatti@redhat.com>
To: kvm@vger.kernel.org, qemu-devel@nongnu.org
Cc: Marcelo Tosatti <mtosatti@redhat.com>
Subject: [Qemu-devel] [patch 2/2] qemu: kvm: support RT_PRIO_HC hypercall
Date: Thu, 21 Sep 2017 09:03:43 -0300	[thread overview]
Message-ID: <20170921120415.241151389@redhat.com> (raw)
In-Reply-To: 20170921120341.590850215@redhat.com

[-- Attachment #1: qemu-toggle-kvmrt-prio --]
[-- Type: text/plain, Size: 3062 bytes --]

Add the following CPU options:

allow-rt-prio-hc: allow guest to execute hypercall to change vcpu 
thread priority.

rt-prio: SCHED_FIFO priority to be used when that hypercall is invoked.

See kernel patchset for details about this hypercall.

Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>

---
 target/i386/cpu.c |    2 ++
 target/i386/cpu.h |    4 ++++
 target/i386/kvm.c |   23 +++++++++++++++++++++++
 3 files changed, 29 insertions(+)

Index: qemu-fifoprio/target/i386/cpu.c
===================================================================
--- qemu-fifoprio.orig/target/i386/cpu.c
+++ qemu-fifoprio/target/i386/cpu.c
@@ -4106,6 +4106,8 @@ static Property x86_cpu_properties[] = {
                      false),
     DEFINE_PROP_BOOL("vmware-cpuid-freq", X86CPU, vmware_cpuid_freq, true),
     DEFINE_PROP_BOOL("tcg-cpuid", X86CPU, expose_tcg, true),
+    DEFINE_PROP_BOOL("allow-rt-prio-hc", X86CPU, allow_rt_prio_hc, false),
+    DEFINE_PROP_UINT32("rt-prio", X86CPU, rt_prio_hc, 0),
     DEFINE_PROP_END_OF_LIST()
 };
 
Index: qemu-fifoprio/target/i386/cpu.h
===================================================================
--- qemu-fifoprio.orig/target/i386/cpu.h
+++ qemu-fifoprio/target/i386/cpu.h
@@ -1215,6 +1215,7 @@ struct X86CPU {
     bool hyperv_runtime;
     bool hyperv_synic;
     bool hyperv_stimer;
+    bool allow_rt_prio_hc;
     bool check_cpuid;
     bool enforce_cpuid;
     bool expose_kvm;
@@ -1270,6 +1271,9 @@ struct X86CPU {
     /* Number of physical address bits supported */
     uint32_t phys_bits;
 
+    /* RT priority of VCPU thread, when hypercall is invoked by guest */
+    uint32_t rt_prio_hc;
+
     /* in order to simplify APIC support, we leave this pointer to the
        user */
     struct DeviceState *apic_state;
Index: qemu-fifoprio/target/i386/kvm.c
===================================================================
--- qemu-fifoprio.orig/target/i386/kvm.c
+++ qemu-fifoprio/target/i386/kvm.c
@@ -673,6 +673,28 @@ static int hyperv_handle_properties(CPUS
 
 static Error *invtsc_mig_blocker;
 
+static int enable_allow_rt_prio_hc(CPUState *cs)
+{
+    int ret;
+    struct kvm_vcpu_rt_prio rt_prio;
+    X86CPU *cpu = X86_CPU(cs);
+
+    if (!kvm_check_extension(kvm_state, KVM_CAP_VCPU_RT_PRIO_HC)) {
+        fprintf(stderr, "RT prio hypercall not supported by kernel\n");
+        return -ENOSYS;
+    }
+
+    rt_prio.sched_priority = cpu->rt_prio_hc;
+    rt_prio.enabled = 1;
+
+    ret = kvm_vcpu_ioctl(cs, KVM_ENABLE_VCPU_RT_PRIO_HC, &rt_prio);
+    if (ret) {
+        fprintf(stderr, "RT prio hypercall failed, ret=%d\n", ret);
+    }
+
+    return ret;
+}
+
 #define KVM_MAX_CPUID_ENTRIES  100
 
 int kvm_arch_init_vcpu(CPUState *cs)
@@ -758,6 +780,12 @@ int kvm_arch_init_vcpu(CPUState *cs)
         has_msr_hv_hypercall = true;
     }
 
+    if (cpu->allow_rt_prio_hc) {
+        if (enable_allow_rt_prio_hc(cs)) {
+            abort();
+        }
+    }
+
     if (cpu->expose_kvm) {
         memcpy(signature, "KVMKVMKVM\0\0\0", 12);
         c = &cpuid_data.entries[cpuid_i++];

  parent reply	other threads:[~2017-09-21 12:05 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-21 12:03 [patch 0/2] support RT_PRIO_HC hypercall Marcelo Tosatti
2017-09-21 12:03 ` [Qemu-devel] " Marcelo Tosatti
2017-09-21 12:03 ` [patch 1/2] qemu: sync linux-headers with KVM Marcelo Tosatti
2017-09-21 12:03   ` [Qemu-devel] " Marcelo Tosatti
2017-09-21 12:03 ` Marcelo Tosatti [this message]
2017-09-21 12:03   ` [Qemu-devel] [patch 2/2] qemu: kvm: support RT_PRIO_HC hypercall Marcelo Tosatti

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=20170921120415.241151389@redhat.com \
    --to=mtosatti@redhat.com \
    --cc=kvm@vger.kernel.org \
    --cc=qemu-devel@nongnu.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 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.