summaryrefslogtreecommitdiff
path: root/kvm_x86host.h
diff options
context:
space:
mode:
authormax <max@maxpad.(none)>2010-12-16 18:34:38 +0100
committermax <max@maxpad.(none)>2010-12-16 18:34:38 +0100
commit094929b6d182feedf60878fb2785ac970312bb65 (patch)
tree6fca3b53e622d85e06c42cb5793c7864091a6f7f /kvm_x86host.h
parentf3ff339837444a6e9cc74d0a749ef3e0a5ccf961 (diff)
downloadillumos-kvm-094929b6d182feedf60878fb2785ac970312bb65.tar.gz
panics after kvm_load_gs
Diffstat (limited to 'kvm_x86host.h')
-rw-r--r--kvm_x86host.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kvm_x86host.h b/kvm_x86host.h
index e19cf3c..a9956c7 100644
--- a/kvm_x86host.h
+++ b/kvm_x86host.h
@@ -161,7 +161,7 @@ struct kvm_mmu_memory_cache {
struct kvm_pte_chain {
uint64_t *parent_ptes[NR_PTE_CHAIN_ENTRIES];
- list_t link;
+ struct list_node link;
};
/*
@@ -190,12 +190,12 @@ union kvm_mmu_page_role {
};
struct kvm_mmu_page {
- list_t link;
- list_t hash_link;
+ struct list_node link;
+ struct list_node hash_link;
- list_t oos_link;
+ struct list_node oos_link;
- hpa_t kvm__mmu_page_hpa;
+ hpa_t hpa;
/*
* The following two entries are used to key the shadow page in the
* hash table.