diff options
author | Peter Zijlstra <[email protected]> | 2021-06-24 11:41:21 +0200 |
---|---|---|
committer | Peter Zijlstra <[email protected]> | 2021-09-17 13:20:25 +0200 |
commit | 847d9317b2b9c7ecc14b953e6ecf9c12bcdb42e9 (patch) | |
tree | 2212fb18540cc2e8a06612970e69f02af69a7a4f /arch/x86/include/asm/xen/hypercall.h | |
parent | 09c413071e2de71d1f28813c560ae0c06b344520 (diff) |
x86/xen: Mark xen_force_evtchn_callback() noinstr
vmlinux.o: warning: objtool: check_events()+0xd: call to xen_force_evtchn_callback() leaves .noinstr.text section
Signed-off-by: Peter Zijlstra (Intel) <[email protected]>
Reviewed-by: Juergen Gross <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'arch/x86/include/asm/xen/hypercall.h')
-rw-r--r-- | arch/x86/include/asm/xen/hypercall.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/xen/hypercall.h b/arch/x86/include/asm/xen/hypercall.h index 990b8aa179c8..4a7ff8b0db20 100644 --- a/arch/x86/include/asm/xen/hypercall.h +++ b/arch/x86/include/asm/xen/hypercall.h @@ -358,7 +358,7 @@ HYPERVISOR_event_channel_op(int cmd, void *arg) return _hypercall2(int, event_channel_op, cmd, arg); } -static inline int +static __always_inline int HYPERVISOR_xen_version(int cmd, void *arg) { return _hypercall2(int, xen_version, cmd, arg); |