kvm_para.h 245 B

1234567891011
  1. #ifndef __LINUX_KVM_PARA_H
  2. #define __LINUX_KVM_PARA_H
  3. #include <uapi/linux/kvm_para.h>
  4. static inline bool kvm_para_has_feature(unsigned int feature)
  5. {
  6. return !!(kvm_arch_para_features() & (1UL << feature));
  7. }
  8. #endif /* __LINUX_KVM_PARA_H */