From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40078) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wj17l-0004YK-D4 for qemu-devel@nongnu.org; Sat, 10 May 2014 02:51:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wj17f-00029i-9b for qemu-devel@nongnu.org; Sat, 10 May 2014 02:51:09 -0400 Received: from mail-ee0-x22e.google.com ([2a00:1450:4013:c00::22e]:55680) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wj17f-00029U-39 for qemu-devel@nongnu.org; Sat, 10 May 2014 02:51:03 -0400 Received: by mail-ee0-f46.google.com with SMTP id t10so3165758eei.19 for ; Fri, 09 May 2014 23:51:02 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Sat, 10 May 2014 08:50:46 +0200 Message-Id: <1399704652-6827-3-git-send-email-pbonzini@redhat.com> In-Reply-To: <1399704652-6827-1-git-send-email-pbonzini@redhat.com> References: <1399704652-6827-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PULL 2/8] kvm: add set_one_reg/get_one_reg helpers List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Alexey Kardashevskiy From: Alexey Kardashevskiy This adds QEMU wrappers for KVM_SET_ONE_REG/KVM_GET_ONE_REG ioctls. Signed-off-by: Alexey Kardashevskiy Signed-off-by: Paolo Bonzini --- include/sysemu/kvm.h | 20 ++++++++++++++++++++ kvm-all.c | 18 ++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/include/sysemu/kvm.h b/include/sysemu/kvm.h index 0bee1e8..84a4f40 100644 --- a/include/sysemu/kvm.h +++ b/include/sysemu/kvm.h @@ -343,6 +343,26 @@ void kvm_pc_setup_irq_routing(bool pci_enabled); void kvm_init_irq_routing(KVMState *s); /** + * kvm_set_one_reg - set a register value in KVM via KVM_SET_ONE_REG ioctl + * @id: The register ID + * @addr: The pointer to a value must point to a variable of the correct + * type/size for the register being accessed. + * + * Returns: 0 on success, or a negative errno on failure. + */ +int kvm_set_one_reg(CPUState *cs, uint64_t id, void *addr); + +/** + * kvm_get_one_reg - get a register value from KVM via KVM_GET_ONE_REG ioctl + * @id: The register ID + * @addr: The pointer to a value must point to a variable of the correct + * type/size for the register being accessed. + * + * Returns: 0 on success, or a negative errno on failure. + */ +int kvm_get_one_reg(CPUState *cs, uint64_t id, void *addr); + +/** * kvm_arch_irqchip_create: * @KVMState: The KVMState pointer * diff --git a/kvm-all.c b/kvm-all.c index 82a9119..724c423 100644 --- a/kvm-all.c +++ b/kvm-all.c @@ -2114,3 +2114,21 @@ int kvm_create_device(KVMState *s, uint64_t type, bool test) return test ? 0 : create_dev.fd; } + +int kvm_set_one_reg(CPUState *cs, uint64_t id, void *addr) +{ + struct kvm_one_reg reg = { + .id = id, + .addr = (uintptr_t)addr, + }; + return kvm_vcpu_ioctl(cs, KVM_SET_ONE_REG, ®); +} + +int kvm_get_one_reg(CPUState *cs, uint64_t id, void *addr) +{ + struct kvm_one_reg reg = { + .id = id, + .addr = (uintptr_t)addr, + }; + return kvm_vcpu_ioctl(cs, KVM_GET_ONE_REG, ®); +} -- 1.8.3.1