mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 14:26:03 -04:00
20 lines
300 B
C
20 lines
300 B
C
|
|
/* Public domain. */
|
||
|
|
|
||
|
|
#ifndef _LINUXKPI_ASM_HYPERVISOR_H
|
||
|
|
#define _LINUXKPI_ASM_HYPERVISOR_H
|
||
|
|
|
||
|
|
#if defined(__i386__) || defined(__amd64__)
|
||
|
|
|
||
|
|
#define X86_HYPER_NATIVE 1
|
||
|
|
#define X86_HYPER_MS_HYPERV 2
|
||
|
|
|
||
|
|
static inline bool
|
||
|
|
hypervisor_is_type(int type)
|
||
|
|
{
|
||
|
|
return (type == X86_HYPER_NATIVE);
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|