# HG changeset patch
# User Tim Deegan <tim.deegan@xxxxxxxxxxxxx>
# Node ID 5f42b4824e455c6350a06c4e3061f663e2d2f39e
# Parent 14111cab38fd95f7cf93c5fe24a488ff0944f481
[XEN] Fix interaction between tlbflush timestamp and shadow flags
Signed-off-by: Tim Deegan <Tim.Deegan@xxxxxxxxxxxxx>
---
xen/arch/x86/mm.c | 17 +++++++++++------
xen/arch/x86/mm/shadow/common.c | 4 ++++
xen/include/asm-x86/shadow.h | 5 +++++
3 files changed, 20 insertions(+), 6 deletions(-)
diff -r 14111cab38fd -r 5f42b4824e45 xen/arch/x86/mm.c
--- a/xen/arch/x86/mm.c Thu Sep 28 13:45:49 2006 +0100
+++ b/xen/arch/x86/mm.c Thu Sep 28 17:09:11 2006 +0100
@@ -1544,9 +1544,7 @@ void free_page_type(struct page_info *pa
gmfn = mfn_to_gmfn(owner, page_to_mfn(page));
ASSERT(VALID_M2P(gmfn));
- shadow_lock(owner);
shadow_remove_all_shadows(owner->vcpu[0], _mfn(gmfn));
- shadow_unlock(owner);
}
}
@@ -1618,8 +1616,8 @@ void put_page_type(struct page_info *pag
* 2. Shadow mode reuses this field for shadowed page tables to
* store flags info -- we don't want to conflict with that.
*/
- if ( !shadow_mode_enabled(page_get_owner(page)) ||
- ((nx & PGT_type_mask) == PGT_writable_page) )
+ if ( !(shadow_mode_enabled(page_get_owner(page)) &&
+ (page->count_info & PGC_page_table)) )
page->tlbflush_timestamp = tlbflush_current_time();
}
}
@@ -1644,6 +1642,12 @@ int get_page_type(struct page_info *page
}
else if ( unlikely((x & PGT_count_mask) == 0) )
{
+ struct domain *d = page_get_owner(page);
+
+ /* Never allow a shadowed frame to go from type count 0 to 1 */
+ if ( d && shadow_mode_enabled(d) )
+ shadow_remove_all_shadows(d->vcpu[0], _mfn(page_to_mfn(page)));
+
ASSERT(!(x & PGT_pae_xen_l2));
if ( (x & PGT_type_mask) != type )
{
@@ -1652,8 +1656,9 @@ int get_page_type(struct page_info *page
* may be unnecessary (e.g., page was GDT/LDT) but those
* circumstances should be very rare.
*/
- cpumask_t mask =
- page_get_owner(page)->domain_dirty_cpumask;
+ cpumask_t mask = d->domain_dirty_cpumask;
+
+ /* Don't flush if the timestamp is old enough */
tlbflush_filter(mask, page->tlbflush_timestamp);
if ( unlikely(!cpus_empty(mask)) &&
diff -r 14111cab38fd -r 5f42b4824e45 xen/arch/x86/mm/shadow/common.c
--- a/xen/arch/x86/mm/shadow/common.c Thu Sep 28 13:45:49 2006 +0100
+++ b/xen/arch/x86/mm/shadow/common.c Thu Sep 28 17:09:11 2006 +0100
@@ -256,7 +256,11 @@ void shadow_demote(struct vcpu *v, mfn_t
clear_bit(type >> PGC_SH_type_shift, &page->shadow_flags);
if ( (page->shadow_flags & SHF_page_type_mask) == 0 )
+ {
+ /* tlbflush timestamp field is valid again */
+ page->tlbflush_timestamp = tlbflush_current_time();
clear_bit(_PGC_page_table, &page->count_info);
+ }
}
/**************************************************************************/
diff -r 14111cab38fd -r 5f42b4824e45 xen/include/asm-x86/shadow.h
--- a/xen/include/asm-x86/shadow.h Thu Sep 28 13:45:49 2006 +0100
+++ b/xen/include/asm-x86/shadow.h Thu Sep 28 17:09:11 2006 +0100
@@ -481,7 +481,12 @@ extern void sh_remove_shadows(struct vcp
extern void sh_remove_shadows(struct vcpu *v, mfn_t gmfn, int all);
static inline void shadow_remove_all_shadows(struct vcpu *v, mfn_t gmfn)
{
+ int was_locked = shadow_lock_is_acquired(v->domain);
+ if ( !was_locked )
+ shadow_lock(v->domain);
sh_remove_shadows(v, gmfn, 1);
+ if ( !was_locked )
+ shadow_unlock(v->domain);
}
/* Add a page to a domain */
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|