mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-10 04:48:04 +09:00
x86/kvm: Always inline vmload() / vmsave()
vmlinux.o: warning: objtool: svm_vcpu_enter_exit()+0xea: call to vmload() leaves .noinstr.text section vmlinux.o: warning: objtool: svm_vcpu_enter_exit()+0x133: call to vmsave() leaves .noinstr.text section Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Link: https://lore.kernel.org/r/20210624095147.942250748@infradead.org
This commit is contained in:
@@ -56,12 +56,12 @@ static inline void invlpga(unsigned long addr, u32 asid)
|
||||
* VMSAVE, VMLOAD, etc... is still controlled by the effective address size,
|
||||
* hence 'unsigned long' instead of 'hpa_t'.
|
||||
*/
|
||||
static inline void vmsave(unsigned long pa)
|
||||
static __always_inline void vmsave(unsigned long pa)
|
||||
{
|
||||
svm_asm1(vmsave, "a" (pa), "memory");
|
||||
}
|
||||
|
||||
static inline void vmload(unsigned long pa)
|
||||
static __always_inline void vmload(unsigned long pa)
|
||||
{
|
||||
svm_asm1(vmload, "a" (pa), "memory");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user