Hi gengdongjiu, On 15/11/17 09:15, gengdongjiu wrote: > On 2017/11/15 0:03, James Morse wrote: >>> Hope this helps? >> Yes, I'll go looking for a way to expose VSESR_EL2 to user-space. > > what is the purpose to expose VSESR_EL2? > do you mean set its value after migration? Yes. Ideally Qemu would know the value it supplied last, and we just need to tell it if 'the' inject SError has been delivered. But kvm_inject_vabt() makes this impossible as Qemu can't know whose injected error this is. > May be we can use similar below Mechanism > https://www.spinics.net/lists/arm-kernel/msg603525.html > when user-space sync the register status, it will get these register value. > it will reuse the IOCTL KVM_GET_ONE_REG and no need to add extra API. The maintainer NAKed "any patch that will expose _EL2 registers outside of nested virtualization": https://patchwork.kernel.org/patch/9886019/ Why? If we 'spend' VSESR_EL2's name and encoding on 'the register we will give to the guest when it can next take an SError', we will need a new name (and encoding!) for systems with nested virtualization as now the guest has an VSESR_EL2 too. The sys_reg/get_one_reg stuff is for guest registers. This thing is part of the hypervisor's state. Exposing VSESR_EL2 directly wouldn't be enough: A value of all-zeroes doesn't tell us if an SError is pending, we need HCR_EL2.VSE too. Your 'give me register' is a very raw interface, it makes it difficult to change in the future: What if we get a new way to inject SError? We may not be able to use it if user-space is poking CPU registers directly. What happens if all those RES0 bits (and there are a lot of them) mean something on future CPUs? Should we expose them? Should user-space be allowed to set them? What if we need an errata workaround, based on something user-space can't know? What about 32bit? The register names and sizes are different. User-space would need a separate implementation to drive this. This is easier for the kernel to do. We should have an API specific to the feature we are offering user-space. We are offering a way to trigger an SError, with a specified ESR if the system supports that. To be migrated it needs to be able to read this information back. This way we can change the implementation without changing the API. Thanks, James _______________________________________________ kvmarm mailing list kvmarm@xxxxxxxxxxxxxxxxxxxxx https://lists.cs.columbia.edu/mailman/listinfo/kvmarm