Skip to content

Commit

Permalink
KVM: Use kernel-standard types
Browse files Browse the repository at this point in the history
Noted by Joerg Roedel.

Signed-off-by: Avi Kivity <avi@qumranet.com>
  • Loading branch information
Avi Kivity committed May 3, 2007
1 parent 80b7706 commit 5008fdf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/kvm/svm.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ struct kvm_ldttss_desc {
struct svm_cpu_data {
int cpu;

uint64_t asid_generation;
uint32_t max_asid;
uint32_t next_asid;
u64 asid_generation;
u32 max_asid;
u32 next_asid;
struct kvm_ldttss_desc *tss_desc;

struct page *save_area;
Expand Down

0 comments on commit 5008fdf

Please sign in to comment.