]> Git Repo - linux.git/blob - include/linux/hypervisor.h
Merge tag 'drm-misc-next-2017-11-30' of git://anongit.freedesktop.org/drm/drm-misc...
[linux.git] / include / linux / hypervisor.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __LINUX_HYPEVISOR_H
3 #define __LINUX_HYPEVISOR_H
4
5 /*
6  *      Generic Hypervisor support
7  *              Juergen Gross <[email protected]>
8  */
9
10 #ifdef CONFIG_X86
11 #include <asm/x86_init.h>
12 static inline void hypervisor_pin_vcpu(int cpu)
13 {
14         x86_platform.hyper.pin_vcpu(cpu);
15 }
16 #else
17 static inline void hypervisor_pin_vcpu(int cpu)
18 {
19 }
20 #endif
21
22 #endif /* __LINUX_HYPEVISOR_H */
This page took 0.031743 seconds and 4 git commands to generate.