Re: [Qemu-devel] [PATCH 3/4] kvm: Common device control API functions

2013-09-06 Thread Peter Maydell
On 23 August 2013 20:41, Christoffer Dall wrote: > Introduces two simple functions: > int kvm_device_ioctl(int fd, int type, ...); > int kvm_create_device(KVMState *s, uint64_t type, bool test); > > These functions wrap the basic ioctl-based interactions with KVM in a > way similar to othe

[Qemu-devel] [PATCH 3/4] kvm: Common device control API functions

2013-08-23 Thread Christoffer Dall
Introduces two simple functions: int kvm_device_ioctl(int fd, int type, ...); int kvm_create_device(KVMState *s, uint64_t type, bool test); These functions wrap the basic ioctl-based interactions with KVM in a way similar to other KVM ioctl wrappers. Signed-off-by: Christoffer Dall ---