You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
257 B

#ifndef BIT
/*
* Workaround a bug in kernel headers fixed by linux commit v4.7-rc1~32^2~42.
*/
# define BIT(nr_) (1UL << (nr_))
#endif
KVM_CPUID_FLAG_SIGNIFCANT_INDEX (1 << 0)
KVM_CPUID_FLAG_STATEFUL_FUNC (1 << 1)
KVM_CPUID_FLAG_STATE_READ_NEXT (1 << 2)