|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen staging] x86/shadow: cosmetics to sh_unshadow_for_p2m_change()
commit 1806d0875daebe600061fc94451401b19f5b6f2a
Author: Jan Beulich <jbeulich@xxxxxxxx>
AuthorDate: Fri Jan 8 16:50:47 2021 +0100
Commit: Jan Beulich <jbeulich@xxxxxxxx>
CommitDate: Fri Jan 8 16:50:47 2021 +0100
x86/shadow: cosmetics to sh_unshadow_for_p2m_change()
Besides the adjustments for style
- use switch(),
- widen scope of commonly used variables,
- narrow scope of other variables.
Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx>
Acked-by: Tim Deegan <tim@xxxxxxx>
---
xen/arch/x86/mm/shadow/common.c | 64 +++++++++++++++++++++++------------------
1 file changed, 36 insertions(+), 28 deletions(-)
diff --git a/xen/arch/x86/mm/shadow/common.c b/xen/arch/x86/mm/shadow/common.c
index e2ed049f14..d09c940585 100644
--- a/xen/arch/x86/mm/shadow/common.c
+++ b/xen/arch/x86/mm/shadow/common.c
@@ -3089,7 +3089,9 @@ static void sh_unshadow_for_p2m_change(struct domain *d,
unsigned long gfn,
l1_pgentry_t old, l1_pgentry_t new,
unsigned int level)
{
+ mfn_t omfn = l1e_get_mfn(old);
unsigned int oflags = l1e_get_flags(old);
+ p2m_type_t p2mt = p2m_flags_to_type(oflags);
/*
* If there are any shadows, update them. But if shadow_teardown()
@@ -3098,53 +3100,57 @@ static void sh_unshadow_for_p2m_change(struct domain
*d, unsigned long gfn,
if ( unlikely(!d->arch.paging.shadow.total_pages) )
return;
- /* The following assertion is to make sure we don't step on 1GB host
- * page support of HVM guest. */
- ASSERT(!(level > 2 && (oflags & _PAGE_PRESENT) && (oflags & _PAGE_PSE)));
-
- /* If we're removing an MFN from the p2m, remove it from the shadows too */
- if ( level == 1 )
+ switch ( level )
{
- mfn_t mfn = l1e_get_mfn(old);
- p2m_type_t p2mt = p2m_flags_to_type(oflags);
+ default:
+ /*
+ * The following assertion is to make sure we don't step on 1GB host
+ * page support of HVM guest.
+ */
+ ASSERT(!((oflags & _PAGE_PRESENT) && (oflags & _PAGE_PSE)));
+ break;
- if ( (p2m_is_valid(p2mt) || p2m_is_grant(p2mt)) && mfn_valid(mfn) )
+ /* If we're removing an MFN from the p2m, remove it from the shadows too */
+ case 1:
+ if ( (p2m_is_valid(p2mt) || p2m_is_grant(p2mt)) && mfn_valid(omfn) )
{
- sh_remove_all_shadows_and_parents(d, mfn);
- if ( sh_remove_all_mappings(d, mfn, _gfn(gfn)) )
+ sh_remove_all_shadows_and_parents(d, omfn);
+ if ( sh_remove_all_mappings(d, omfn, _gfn(gfn)) )
guest_flush_tlb_mask(d, d->dirty_cpumask);
}
- }
+ break;
- /* If we're removing a superpage mapping from the p2m, we need to check
+ /*
+ * If we're removing a superpage mapping from the p2m, we need to check
* all the pages covered by it. If they're still there in the new
- * scheme, that's OK, but otherwise they must be unshadowed. */
- if ( level == 2 && (oflags & _PAGE_PRESENT) && (oflags & _PAGE_PSE) )
- {
- unsigned int i;
- cpumask_t flushmask;
- mfn_t omfn = l1e_get_mfn(old);
- mfn_t nmfn = l1e_get_mfn(new);
- l1_pgentry_t *npte = NULL;
- p2m_type_t p2mt = p2m_flags_to_type(oflags);
+ * scheme, that's OK, but otherwise they must be unshadowed.
+ */
+ case 2:
+ if ( !(oflags & _PAGE_PRESENT) || !(oflags & _PAGE_PSE) )
+ break;
if ( p2m_is_valid(p2mt) && mfn_valid(omfn) )
{
+ unsigned int i;
+ cpumask_t flushmask;
+ mfn_t nmfn = l1e_get_mfn(new);
+ l1_pgentry_t *npte = NULL;
+
cpumask_clear(&flushmask);
/* If we're replacing a superpage with a normal L1 page, map it */
- if ( (l1e_get_flags(new) & _PAGE_PRESENT)
- && !(l1e_get_flags(new) & _PAGE_PSE)
- && mfn_valid(nmfn) )
+ if ( (l1e_get_flags(new) & _PAGE_PRESENT) &&
+ !(l1e_get_flags(new) & _PAGE_PSE) &&
+ mfn_valid(nmfn) )
npte = map_domain_page(nmfn);
gfn &= ~(L1_PAGETABLE_ENTRIES - 1);
for ( i = 0; i < L1_PAGETABLE_ENTRIES; i++ )
{
- if ( !npte
- || !p2m_is_ram(p2m_flags_to_type(l1e_get_flags(npte[i])))
- || !mfn_eq(l1e_get_mfn(npte[i]), omfn) )
+ if ( !npte ||
+ !p2m_is_ram(p2m_flags_to_type(l1e_get_flags(npte[i]))) ||
+ !mfn_eq(l1e_get_mfn(npte[i]), omfn) )
{
/* This GFN->MFN mapping has gone away */
sh_remove_all_shadows_and_parents(d, omfn);
@@ -3158,6 +3164,8 @@ static void sh_unshadow_for_p2m_change(struct domain *d,
unsigned long gfn,
if ( npte )
unmap_domain_page(npte);
}
+
+ break;
}
}
--
generated by git-patchbot for /home/xen/git/xen.git#staging
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |