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>
This commit is contained in:
Xiao Guangrong 2011-07-12 03:32:54 +08:00 committed by Avi Kivity
parent c2a2ac2b56
commit dd3bfd59db
1 changed files with 1 additions and 1 deletions

View File

@ -172,8 +172,8 @@ struct pte_list_desc {
struct kvm_shadow_walk_iterator { struct kvm_shadow_walk_iterator {
u64 addr; u64 addr;
hpa_t shadow_addr; hpa_t shadow_addr;
int level;
u64 *sptep; u64 *sptep;
int level;
unsigned index; unsigned index;
}; };