[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 1/2] VT-d: re-phrase logic in vtd_set_hwdom_mapping() for clarity
It is hard to reconcile the comment at the top of the loop in vtd_set_hwdom_mapping() with the if statement following it. This patch re-phrases the logic, preserving the semantics, but making it easier to read. The patch also modifies the Xen command line documentation to make it clear that iommu_inclusive_mapping only applies to pages up to and including the 4GB boundary. Signed-off-by: Paul Durrant <paul.durrant@xxxxxxxxxx> --- Cc: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Cc: George Dunlap <George.Dunlap@xxxxxxxxxxxxx> Cc: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> Cc: Jan Beulich <jbeulich@xxxxxxxx> Cc: Julien Grall <julien.grall@xxxxxxx> Cc: Konrad Rzeszutek Wilk <konrad.wilk@xxxxxxxxxx> Cc: Stefano Stabellini <sstabellini@xxxxxxxxxx> Cc: Tim Deegan <tim@xxxxxxx> Cc: Wei Liu <wei.liu2@xxxxxxxxxx> Cc: Kevin Tian <kevin.tian@xxxxxxxxx> --- docs/misc/xen-command-line.markdown | 4 ++-- xen/drivers/passthrough/vtd/x86/vtd.c | 26 +++++++++++++++----------- 2 files changed, 17 insertions(+), 13 deletions(-) diff --git a/docs/misc/xen-command-line.markdown b/docs/misc/xen-command-line.markdown index 8712a833a2..6beb28dada 100644 --- a/docs/misc/xen-command-line.markdown +++ b/docs/misc/xen-command-line.markdown @@ -1212,8 +1212,8 @@ wait descriptor timed out', try increasing this value. Use this to work around firmware issues providing incorrect RMRR entries. Rather than only mapping RAM pages for IOMMU accesses for Dom0, with this -option all pages not marked as unusable in the E820 table will get a mapping -established. +option all pages up to and including 4GB, not marked as unusable in the +E820 table, will get a mapping established. ### irq\_ratelimit (x86) > `= <integer>` diff --git a/xen/drivers/passthrough/vtd/x86/vtd.c b/xen/drivers/passthrough/vtd/x86/vtd.c index 88a60b3307..5c440ba183 100644 --- a/xen/drivers/passthrough/vtd/x86/vtd.c +++ b/xen/drivers/passthrough/vtd/x86/vtd.c @@ -118,22 +118,26 @@ void __hwdom_init vtd_set_hwdom_mapping(struct domain *d) for ( i = 0; i < top; i++ ) { + unsigned long pfn = pdx_to_pfn(i); + bool map; int rc = 0; /* - * Set up 1:1 mapping for dom0. Default to use only conventional RAM - * areas and let RMRRs include needed reserved regions. When set, the - * inclusive mapping maps in everything below 4GB except unusable - * ranges. + * Set up 1:1 mapping for dom0. Default to include only + * conventional RAM areas and let RMRRs include needed reserved + * regions. When set, the inclusive mapping maps in every pfn up + * to and including 4GB except those that fall in unusable ranges. */ - unsigned long pfn = pdx_to_pfn(i); + if ( iommu_inclusive_mapping && + pfn <= (0xffffffffUL >> PAGE_SHIFT) ) + map = !page_is_ram_type(pfn, RAM_TYPE_UNUSABLE); + else + map = page_is_ram_type(pfn, RAM_TYPE_CONVENTIONAL); + + if ( !map ) + continue; - if ( pfn > (0xffffffffUL >> PAGE_SHIFT) ? - (!mfn_valid(_mfn(pfn)) || - !page_is_ram_type(pfn, RAM_TYPE_CONVENTIONAL)) : - iommu_inclusive_mapping ? - page_is_ram_type(pfn, RAM_TYPE_UNUSABLE) : - !page_is_ram_type(pfn, RAM_TYPE_CONVENTIONAL) ) + if ( pfn > (0xffffffffUL >> PAGE_SHIFT) && !mfn_valid(_mfn(pfn)) ) continue; /* Exclude Xen bits */ -- 2.11.0 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |