On Sat, Feb 6, 2021 at 11:00 PM Jing Liu <jing2.liu@xxxxxxxxxxxxxxx> wrote: > > The static xstate buffer kvm_xsave contains the extended register > states, but it is not enough for dynamic features with large state. > > Introduce a new capability called KVM_CAP_X86_XSAVE_EXTENSION to > detect if hardware has XSAVE extension (XFD). Meanwhile, add two > new ioctl interfaces to get/set the whole xstate using struct > kvm_xsave_extension buffer containing both static and dynamic > xfeatures. Reuse fill_xsave and load_xsave for both cases. > > Signed-off-by: Jing Liu <jing2.liu@xxxxxxxxxxxxxxx> > --- > +#define KVM_GET_XSAVE_EXTENSION _IOW(KVMIO, 0xa4, struct kvm_xsave_extension) > +#define KVM_SET_XSAVE_EXTENSION _IOW(KVMIO, 0xa5, struct kvm_xsave_extension) Isn't the convention to call these KVM_GET_XSAVE2 and KVM_SET_XSAVE2? Do you have any documentation to add to Documentation/virt/kvm/api.rst?