Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 215656
b: refs/heads/master
c: 8672b72
h: refs/heads/master
v: v3
  • Loading branch information
Xiao Guangrong authored and Avi Kivity committed Oct 24, 2010
1 parent fe521b9 commit 10a9467
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 251464c464cf7df7d6d548f1065f49a3ecd08118
refs/heads/master: 8672b7217a234c41d425a63b171af809e1169842
20 changes: 17 additions & 3 deletions trunk/arch/x86/kvm/mmu.c
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,20 @@ static u64 __xchg_spte(u64 *sptep, u64 new_spte)
#endif
}

static bool spte_has_volatile_bits(u64 spte)
{
if (!shadow_accessed_mask)
return false;

if (!is_shadow_present_pte(spte))
return false;

if (spte & shadow_accessed_mask)
return false;

return true;
}

static void update_spte(u64 *sptep, u64 new_spte)
{
u64 old_spte;
Expand Down Expand Up @@ -679,14 +693,14 @@ static void set_spte_track_bits(u64 *sptep, u64 new_spte)
pfn_t pfn;
u64 old_spte = *sptep;

if (!shadow_accessed_mask || !is_shadow_present_pte(old_spte) ||
old_spte & shadow_accessed_mask) {
if (!spte_has_volatile_bits(old_spte))
__set_spte(sptep, new_spte);
} else
else
old_spte = __xchg_spte(sptep, new_spte);

if (!is_rmap_spte(old_spte))
return;

pfn = spte_to_pfn(old_spte);
if (!shadow_accessed_mask || old_spte & shadow_accessed_mask)
kvm_set_pfn_accessed(pfn);
Expand Down

0 comments on commit 10a9467

Please sign in to comment.