[Qemu-devel] Question of emulation on MSR's in KVM-mode

2014-08-04 Thread Morty Andersen
Hi I'm working on an extension to QEMU (target i386). This involves adding new MSR's. I've got it working in non-KVM mode by adding these MSR's to the state and adding extra cases to helper_wrmsr(), helper_rdmsr(). The guest can now read/write these MSR's as expected. However, it fails when runnin

Re: [Qemu-devel] Question of emulation on MSR's in KVM-mode

2014-08-04 Thread Morty Andersen
) would support all the extensions I'm making, given its purpose is to provide a faithful emulation of the host architecture. 2014-08-04 14:22 GMT+02:00 Paolo Bonzini : > Il 04/08/2014 10:37, Morty Andersen ha scritto: > > Hi > > > > I'm working on an extension to QE