Blame view

include/linux/kvm_types.h 1.59 KB
d77a39d98   Hollis Blanchard   KVM: Portability:...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  /*
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License as published by
   * the Free Software Foundation; either version 2 of the License.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   *
   * You should have received a copy of the GNU General Public License
   * along with this program; if not, write to the Free Software
   * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
   *
   */
  
  #ifndef __KVM_TYPES_H__
  #define __KVM_TYPES_H__
656473003   Paolo Bonzini   KVM: forward decl...
19
20
21
22
23
24
25
26
27
28
29
  struct kvm;
  struct kvm_async_pf;
  struct kvm_device_ops;
  struct kvm_interrupt;
  struct kvm_irq_routing_table;
  struct kvm_memory_slot;
  struct kvm_one_reg;
  struct kvm_run;
  struct kvm_userspace_memory_region;
  struct kvm_vcpu;
  struct kvm_vcpu_init;
15f46015e   Paolo Bonzini   KVM: add memslots...
30
  struct kvm_memslots;
656473003   Paolo Bonzini   KVM: forward decl...
31
32
  
  enum kvm_mr_change;
d77a39d98   Hollis Blanchard   KVM: Portability:...
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
  #include <asm/types.h>
  
  /*
   * Address types:
   *
   *  gva - guest virtual address
   *  gpa - guest physical address
   *  gfn - guest frame number
   *  hva - host virtual address
   *  hpa - host physical address
   *  hfn - host frame number
   */
  
  typedef unsigned long  gva_t;
  typedef u64            gpa_t;
5689cc53f   Joerg Roedel   KVM: Use u64 for ...
48
  typedef u64            gfn_t;
d77a39d98   Hollis Blanchard   KVM: Portability:...
49
50
51
  
  typedef unsigned long  hva_t;
  typedef u64            hpa_t;
5689cc53f   Joerg Roedel   KVM: Use u64 for ...
52
  typedef u64            hfn_t;
d77a39d98   Hollis Blanchard   KVM: Portability:...
53

ba049e93a   Dan Williams   kvm: rename pfn_t...
54
  typedef hfn_t kvm_pfn_t;
35149e212   Anthony Liguori   KVM: MMU: Don't a...
55

49c7754ce   Gleb Natapov   KVM: Add memory s...
56
57
58
59
  struct gfn_to_hva_cache {
  	u64 generation;
  	gpa_t gpa;
  	unsigned long hva;
8f964525a   Andrew Honig   KVM: Allow cross ...
60
  	unsigned long len;
49c7754ce   Gleb Natapov   KVM: Add memory s...
61
62
  	struct kvm_memory_slot *memslot;
  };
d77a39d98   Hollis Blanchard   KVM: Portability:...
63
  #endif /* __KVM_TYPES_H__ */