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__
20 #include <asm/types.h>
25 * gva - guest virtual address
26 * gpa - guest physical address
27 * gfn - guest frame number
28 * hva - host virtual address
29 * hpa - host physical address
30 * hfn - host frame number
33 typedef unsigned long gva_t
;
37 typedef unsigned long hva_t
;
43 union kvm_ioapic_redirect_entry
{
60 struct kvm_lapic_irq
{
70 struct gfn_to_hva_cache
{
75 struct kvm_memory_slot
*memslot
;
78 #endif /* __KVM_TYPES_H__ */