2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License.
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
11 * You should have received a copy of the GNU General Public License
12 * along with this program; if not, write to the Free Software
13 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 #ifndef __KVM_TYPES_H__
18 #define __KVM_TYPES_H__
22 struct kvm_device_ops
;
24 struct kvm_irq_routing_table
;
25 struct kvm_memory_slot
;
28 struct kvm_userspace_memory_region
;
35 #include <asm/types.h>
40 * gva - guest virtual address
41 * gpa - guest physical address
42 * gfn - guest frame number
43 * hva - host virtual address
44 * hpa - host physical address
45 * hfn - host frame number
48 typedef unsigned long gva_t
;
52 typedef unsigned long hva_t
;
56 typedef hfn_t kvm_pfn_t
;
58 struct gfn_to_hva_cache
{
63 struct kvm_memory_slot
*memslot
;
66 #endif /* __KVM_TYPES_H__ */