diff options
Diffstat (limited to 'include/asm-s390/kvm_para.h')
-rw-r--r-- | include/asm-s390/kvm_para.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/include/asm-s390/kvm_para.h b/include/asm-s390/kvm_para.h new file mode 100644 index 000000000000..e9bd3fbe878c --- /dev/null +++ b/include/asm-s390/kvm_para.h | |||
@@ -0,0 +1,30 @@ | |||
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 | |||
13 | #ifndef __S390_KVM_PARA_H | ||
14 | #define __S390_KVM_PARA_H | ||
15 | |||
16 | /* | ||
17 | * No hypercalls for KVM on s390 | ||
18 | */ | ||
19 | |||
20 | static inline int kvm_para_available(void) | ||
21 | { | ||
22 | return 0; | ||
23 | } | ||
24 | |||
25 | static inline unsigned int kvm_arch_para_features(void) | ||
26 | { | ||
27 | return 0; | ||
28 | } | ||
29 | |||
30 | #endif /* __S390_KVM_PARA_H */ | ||