Re: [PATCH v3 2/3] x86/svm: Drop the suffix _guest from vmcb bit

2024-03-18 Thread Vaishali Thakkar
On 3/14/24 17:04, Jan Beulich wrote: On 13.03.2024 17:41, Vaishali Thakkar wrote: The suffix _guest is redundant for asid bit. Drop it to avoid adding extra code volume. While we're here, replace 0/1 with false/true and use VMCB accessors instead of open coding. Suggested-by: Andrew Cooper Si

Re: [PATCH v3 2/3] x86/svm: Drop the suffix _guest from vmcb bit

2024-03-14 Thread Jan Beulich
On 13.03.2024 17:41, Vaishali Thakkar wrote: > The suffix _guest is redundant for asid bit. Drop it > to avoid adding extra code volume. > > While we're here, replace 0/1 with false/true and use > VMCB accessors instead of open coding. > > Suggested-by: Andrew Cooper > Signed-off-by: Vaishali Th

[PATCH v3 2/3] x86/svm: Drop the suffix _guest from vmcb bit

2024-03-13 Thread Vaishali Thakkar
The suffix _guest is redundant for asid bit. Drop it to avoid adding extra code volume. While we're here, replace 0/1 with false/true and use VMCB accessors instead of open coding. Suggested-by: Andrew Cooper Signed-off-by: Vaishali Thakkar --- Changes since v1: - This patch wasn't part