|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [PATCH v2 06/14] x86/pv: remove stashing of GDT/LDT L1 page-tables
From: Roger Pau Monné <roger.pau@xxxxxxxxxx>
There are no remaining users of the stashed L1 page-tables in
pv_domain.gdt_ldt_l1tab. Remove it, and all helpers. This removes a
globally-mapped xenheap allocation, and sets the stage for per-vCPU
root page tables.
pv_create_gdt_ldt_l1tab() now passes NIL() rather than the stash
array. This will cause create_perdomain_mapping() to still eagerly
allocate the L1 tables covering the GDT/LDT range; but their addresses
are no longer handed back. Doing this is necessary because
populate_perdomain_mapping() only fills existing tables, and treats
missing structure as a bug.
Another side effect of passing NIL() rather than a pointer is that the
L1 tables move from the xenheap to the domheap. Residing in the
xenheap was only ever a requirement when the stashed pointer had to
stay usable; with that requirement dropped, we can relax the
allocation requirement as well.
Signed-off-by: Roger Pau Monné <roger.pau@xxxxxxxxxx>
Assisted-by: Claude Code:claude-fable-5
Signed-off-by: George Dunlap <gwd@xxxxxxxxxxxxxx>
---
Changes in v2:
- With "x86/mm: allocate the per-domain page-tables from the xenheap"
dropped from the series, passing NIL() now does move the GDT/LDT L1
tables to the domheap (upstream's allocation for non-capture mode);
in v1 they stayed in the xenheap in all modes. Reword the commit
message accordingly.
Changes since the previously posted version:
- Note the implications of changing from pointer to NIL() in
pv_create_gdt_ldt_l1tab(). In v2 this also changed where new
GDT/LDT L1 tables were allocated from: upstream's capture mode
takes them from the xenheap (the stashed pointer has to stay
usable), the NIL() mode from the domheap. Here they come from the
xenheap in all modes ("x86/mm: allocate the per-domain page-tables
from the xenheap"), so the switch only stops the addresses being
handed back.
---
xen/arch/x86/include/asm/domain.h | 9 ---------
xen/arch/x86/pv/domain.c | 10 +---------
2 files changed, 1 insertion(+), 18 deletions(-)
diff --git a/xen/arch/x86/include/asm/domain.h
b/xen/arch/x86/include/asm/domain.h
index 61a9fe00f0..5c7fad26a6 100644
--- a/xen/arch/x86/include/asm/domain.h
+++ b/xen/arch/x86/include/asm/domain.h
@@ -287,8 +287,6 @@ struct time_scale {
struct pv_domain
{
- l1_pgentry_t **gdt_ldt_l1tab;
-
atomic_t nr_l4_pages;
/* Is a 32-bit PV guest? */
@@ -524,13 +522,6 @@ struct arch_domain
#define has_pirq(d) (!!((d)->arch.emulation_flags & X86_EMU_USE_PIRQ))
#define has_vpci(d) (!!((d)->arch.emulation_flags & X86_EMU_VPCI))
-#define gdt_ldt_pt_idx(v) \
- ((v)->vcpu_id >> (PAGETABLE_ORDER - GDT_LDT_VCPU_SHIFT))
-#define pv_gdt_ptes(v) \
- ((v)->domain->arch.pv.gdt_ldt_l1tab[gdt_ldt_pt_idx(v)] + \
- (((v)->vcpu_id << GDT_LDT_VCPU_SHIFT) & (L1_PAGETABLE_ENTRIES - 1)))
-#define pv_ldt_ptes(v) (pv_gdt_ptes(v) + 16)
-
struct pv_vcpu
{
/* map_domain_page() mapping cache. */
diff --git a/xen/arch/x86/pv/domain.c b/xen/arch/x86/pv/domain.c
index 7ddab1949f..35d1761c9c 100644
--- a/xen/arch/x86/pv/domain.c
+++ b/xen/arch/x86/pv/domain.c
@@ -315,7 +315,7 @@ static int pv_create_gdt_ldt_l1tab(struct vcpu *v)
{
return create_perdomain_mapping(v->domain, GDT_VIRT_START(v),
1U << GDT_LDT_VCPU_SHIFT,
- v->domain->arch.pv.gdt_ldt_l1tab,
+ NIL(l1_pgentry_t *),
NULL);
}
@@ -389,8 +389,6 @@ void pv_domain_destroy(struct domain *d)
GDT_LDT_MBYTES << (20 - PAGE_SHIFT));
XFREE(d->arch.pv.cpuidmasks);
-
- FREE_XENHEAP_PAGE(d->arch.pv.gdt_ldt_l1tab);
}
void noreturn cf_check continue_pv_domain(void);
@@ -406,12 +404,6 @@ int pv_domain_initialise(struct domain *d)
pv_l1tf_domain_init(d);
- d->arch.pv.gdt_ldt_l1tab =
- alloc_xenheap_pages(0, MEMF_node(domain_to_node(d)));
- if ( !d->arch.pv.gdt_ldt_l1tab )
- goto fail;
- clear_page(d->arch.pv.gdt_ldt_l1tab);
-
if ( levelling_caps & ~LCAP_faulting &&
(d->arch.pv.cpuidmasks = xmemdup(&cpuidmask_defaults)) == NULL )
goto fail;
--
2.55.0
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |