kvm_para.h 627 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * asm-s390/kvm_para.h - definition for paravirtual devices on s390
  3. *
  4. * Copyright IBM Corp. 2008
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License (version 2 only)
  8. * as published by the Free Software Foundation.
  9. *
  10. * Author(s): Christian Borntraeger <borntraeger@de.ibm.com>
  11. */
  12. #ifndef __S390_KVM_PARA_H
  13. #define __S390_KVM_PARA_H
  14. /*
  15. * No hypercalls for KVM on s390
  16. */
  17. static inline int kvm_para_available(void)
  18. {
  19. return 0;
  20. }
  21. static inline unsigned int kvm_arch_para_features(void)
  22. {
  23. return 0;
  24. }
  25. #endif /* __S390_KVM_PARA_H */