projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e25b694
)
x86/kvm: Always inline to_svm()
author
Peter Zijlstra
<peterz@infradead.org>
Thu, 24 Jun 2021 09:41:06 +0000
(11:41 +0200)
committer
Peter Zijlstra
<peterz@infradead.org>
Wed, 15 Sep 2021 13:51:46 +0000
(15:51 +0200)
vmlinux.o: warning: objtool: svm_vcpu_enter_exit()+0x13: call to to_svm() leaves .noinstr.text section
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link:
https://lore.kernel.org/r/20210624095148.066347165@infradead.org
arch/x86/kvm/svm/svm.h
patch
|
blob
|
history
diff --git
a/arch/x86/kvm/svm/svm.h
b/arch/x86/kvm/svm/svm.h
index 408031a312c91e6339e6cfee636d9b6485aba94e..38f12a656d9cc7400346349bfddedd4ea7c97a64 100644
(file)
--- a/
arch/x86/kvm/svm/svm.h
+++ b/
arch/x86/kvm/svm/svm.h
@@
-271,7
+271,7
@@
static inline bool vmcb_is_dirty(struct vmcb *vmcb, int bit)
return !test_bit(bit, (unsigned long *)&vmcb->control.clean);
}
-static inline struct vcpu_svm *to_svm(struct kvm_vcpu *vcpu)
+static
__always_
inline struct vcpu_svm *to_svm(struct kvm_vcpu *vcpu)
{
return container_of(vcpu, struct vcpu_svm, vcpu);
}