diff options
author | Xiao Guangrong <xiaoguangrong@cn.fujitsu.com> | 2011-07-12 03:32:54 +0800 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2011-07-24 11:50:39 +0300 |
commit | dd3bfd59dbc69fd970394ab354cfca5f959d5755 (patch) | |
tree | d104ca93456989d1dc3a8abd8154a71c02581add /arch/x86/kvm | |
parent | c2a2ac2b563ccc3a69540965b5a994c19e3817d7 (diff) | |
download | linux-3.10-dd3bfd59dbc69fd970394ab354cfca5f959d5755.tar.gz linux-3.10-dd3bfd59dbc69fd970394ab354cfca5f959d5755.tar.bz2 linux-3.10-dd3bfd59dbc69fd970394ab354cfca5f959d5755.zip |
KVM: MMU: reorganize struct kvm_shadow_walk_iterator
Reorganize it for good using the cache
Signed-off-by: Xiao Guangrong <xiaoguangrong@cn.fujitsu.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm')
-rw-r--r-- | arch/x86/kvm/mmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c index 374530a478a..4b1aa677214 100644 --- a/arch/x86/kvm/mmu.c +++ b/arch/x86/kvm/mmu.c @@ -172,8 +172,8 @@ struct pte_list_desc { struct kvm_shadow_walk_iterator { u64 addr; hpa_t shadow_addr; - int level; u64 *sptep; + int level; unsigned index; }; |