diff options
author | Zhang Xiantao <xiantao.zhang@intel.com> | 2007-12-13 20:45:31 -0500 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2008-01-30 10:58:09 -0500 |
commit | d17fbbf7384d3b639f3c3299b5248ec4c4404556 (patch) | |
tree | e647268a494a14134c64bf8472541131b26fdfca /drivers/kvm/kvm.h | |
parent | d657a98e3c20537d8b4d44aef51cf4311d96f2b0 (diff) |
KVM: Portability: Expand the KVM_VCPU_COMM in kvm_vcpu structure.
This patches removes KVM_COMM macro, original it is hold
kvm_vcpu common fields.
Signed-off-by: Zhang Xiantao <xiantao.zhang@intel.com>
Acked-by: Carsten Otte <cotte@de.ibm.com>
Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'drivers/kvm/kvm.h')
-rw-r--r-- | drivers/kvm/kvm.h | 53 |
1 files changed, 22 insertions, 31 deletions
diff --git a/drivers/kvm/kvm.h b/drivers/kvm/kvm.h index 53717be80bbe..039faa766c57 100644 --- a/drivers/kvm/kvm.h +++ b/drivers/kvm/kvm.h | |||
@@ -87,41 +87,32 @@ struct kvm_io_device *kvm_io_bus_find_dev(struct kvm_io_bus *bus, gpa_t addr); | |||
87 | void kvm_io_bus_register_dev(struct kvm_io_bus *bus, | 87 | void kvm_io_bus_register_dev(struct kvm_io_bus *bus, |
88 | struct kvm_io_device *dev); | 88 | struct kvm_io_device *dev); |
89 | 89 | ||
90 | struct kvm_vcpu { | ||
91 | struct kvm *kvm; | ||
92 | struct preempt_notifier preempt_notifier; | ||
93 | int vcpu_id; | ||
94 | struct mutex mutex; | ||
95 | int cpu; | ||
96 | struct kvm_run *run; | ||
97 | int guest_mode; | ||
98 | unsigned long requests; | ||
99 | struct kvm_guest_debug guest_debug; | ||
100 | int fpu_active; | ||
101 | int guest_fpu_loaded; | ||
102 | wait_queue_head_t wq; | ||
103 | int sigset_active; | ||
104 | sigset_t sigset; | ||
105 | struct kvm_vcpu_stat stat; | ||
106 | |||
90 | #ifdef CONFIG_HAS_IOMEM | 107 | #ifdef CONFIG_HAS_IOMEM |
91 | #define KVM_VCPU_MMIO \ | 108 | int mmio_needed; |
92 | int mmio_needed; \ | 109 | int mmio_read_completed; |
93 | int mmio_read_completed; \ | 110 | int mmio_is_write; |
94 | int mmio_is_write; \ | 111 | int mmio_size; |
95 | int mmio_size; \ | 112 | unsigned char mmio_data[8]; |
96 | unsigned char mmio_data[8]; \ | ||
97 | gpa_t mmio_phys_addr; | 113 | gpa_t mmio_phys_addr; |
98 | |||
99 | #else | ||
100 | #define KVM_VCPU_MMIO | ||
101 | |||
102 | #endif | 114 | #endif |
103 | 115 | ||
104 | #define KVM_VCPU_COMM \ | ||
105 | struct kvm *kvm; \ | ||
106 | struct preempt_notifier preempt_notifier; \ | ||
107 | int vcpu_id; \ | ||
108 | struct mutex mutex; \ | ||
109 | int cpu; \ | ||
110 | struct kvm_run *run; \ | ||
111 | int guest_mode; \ | ||
112 | unsigned long requests; \ | ||
113 | struct kvm_guest_debug guest_debug; \ | ||
114 | int fpu_active; \ | ||
115 | int guest_fpu_loaded; \ | ||
116 | wait_queue_head_t wq; \ | ||
117 | int sigset_active; \ | ||
118 | sigset_t sigset; \ | ||
119 | struct kvm_vcpu_stat stat; \ | ||
120 | KVM_VCPU_MMIO | ||
121 | |||
122 | struct kvm_vcpu { | ||
123 | KVM_VCPU_COMM; | ||
124 | |||
125 | struct kvm_vcpu_arch arch; | 116 | struct kvm_vcpu_arch arch; |
126 | }; | 117 | }; |
127 | 118 | ||