aboutsummaryrefslogtreecommitdiffstats
path: root/arch/s390/include/asm/kvm.h
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2013-01-22 10:38:37 -0500
committerJonathan Herman <hermanjl@cs.unc.edu>2013-01-22 10:38:37 -0500
commitfcc9d2e5a6c89d22b8b773a64fb4ad21ac318446 (patch)
treea57612d1888735a2ec7972891b68c1ac5ec8faea /arch/s390/include/asm/kvm.h
parent8dea78da5cee153b8af9c07a2745f6c55057fe12 (diff)
Added missing tegra files.HEADmaster
Diffstat (limited to 'arch/s390/include/asm/kvm.h')
-rw-r--r--arch/s390/include/asm/kvm.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/arch/s390/include/asm/kvm.h b/arch/s390/include/asm/kvm.h
new file mode 100644
index 00000000000..82b32a100c7
--- /dev/null
+++ b/arch/s390/include/asm/kvm.h
@@ -0,0 +1,44 @@
1#ifndef __LINUX_KVM_S390_H
2#define __LINUX_KVM_S390_H
3/*
4 * asm-s390/kvm.h - KVM s390 specific structures and definitions
5 *
6 * Copyright IBM Corp. 2008
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License (version 2 only)
10 * as published by the Free Software Foundation.
11 *
12 * Author(s): Carsten Otte <cotte@de.ibm.com>
13 * Christian Borntraeger <borntraeger@de.ibm.com>
14 */
15#include <linux/types.h>
16
17#define __KVM_S390
18
19/* for KVM_GET_REGS and KVM_SET_REGS */
20struct kvm_regs {
21 /* general purpose regs for s390 */
22 __u64 gprs[16];
23};
24
25/* for KVM_GET_SREGS and KVM_SET_SREGS */
26struct kvm_sregs {
27 __u32 acrs[16];
28 __u64 crs[16];
29};
30
31/* for KVM_GET_FPU and KVM_SET_FPU */
32struct kvm_fpu {
33 __u32 fpc;
34 __u64 fprs[16];
35};
36
37struct kvm_debug_exit_arch {
38};
39
40/* for KVM_SET_GUEST_DEBUG */
41struct kvm_guest_debug_arch {
42};
43
44#endif