Re: [PATCH v2 1/3] x86: Move SVM features exposed to guest into hvm_max_cpu_policy

2024-03-18 Thread Jan Beulich
On 13.03.2024 13:24, George Dunlap wrote: > Currently (nested) SVM features we're willing to expose to the guest > are defined in calculate_host_policy, and stored in host_cpu_policy. > This is the wrong place for this; move it into > calculate_hvm_max_policy(), and store it in hvm_max_cpu_policy.

[PATCH v2 1/3] x86: Move SVM features exposed to guest into hvm_max_cpu_policy

2024-03-13 Thread George Dunlap
Currently (nested) SVM features we're willing to expose to the guest are defined in calculate_host_policy, and stored in host_cpu_policy. This is the wrong place for this; move it into calculate_hvm_max_policy(), and store it in hvm_max_cpu_policy. Signed-off-by: George Dunlap --- v2: - New ---