[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH v7 04/10] arch/arm: let map_mmio_regions() use start and count
Hi Arianna, Thank you for the patch. On 05/05/14 16:54, Arianna Avanzini wrote: Currently, the arguments given to the function map_mmio_regions() to describe the memory range to be mapped are the start and end page frame numbers of the range to be mapped. However, this could give rise to issues due to the range being inclusive or exclusive of the end gfn given as parameter. This commit changes the interface of the function to accept the start gfn and the number of gfns to be mapped. Signed-off-by: Arianna Avanzini <avanzini.arianna@xxxxxxxxx> Cc: Dario Faggioli <dario.faggioli@xxxxxxxxxx> Cc: Paolo Valente <paolo.valente@xxxxxxxxxx> Cc: Stefano Stabellini <stefano.stabellini@xxxxxxxxxxxxx> Cc: Julien Grall <julien.grall@xxxxxxxxxx> Cc: Ian Campbell <Ian.Campbell@xxxxxxxxxxxxx> Cc: Jan Beulich <JBeulich@xxxxxxxx> Cc: Keir Fraser <keir@xxxxxxx> Cc: Tim Deegan <tim@xxxxxxx> Cc: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> Cc: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Cc: Eric Trudeau <etrudeau@xxxxxxxxxxxx> Cc: Viktor Kleinik <viktor.kleinik@xxxxxxxxxxxxxxx> --- xen/arch/arm/domain_build.c | 2 +- xen/arch/arm/gic.c | 11 +++-------- xen/arch/arm/p2m.c | 4 ++-- xen/arch/arm/platforms/exynos5.c | 6 ++---- xen/arch/arm/platforms/omap5.c | 12 ++++-------- xen/arch/arm/platforms/xgene-storm.c | 2 +- xen/include/asm-arm/p2m.h | 7 ++++--- 7 files changed, 17 insertions(+), 27 deletions(-) diff --git a/xen/arch/arm/domain_build.c b/xen/arch/arm/domain_build.c index fc3f110..23874a8 100644 --- a/xen/arch/arm/domain_build.c +++ b/xen/arch/arm/domain_build.c @@ -753,7 +753,7 @@ static int map_device(struct domain *d, const struct dt_device_node *dev) } res = map_mmio_regions(d, paddr_to_pfn(addr & PAGE_MASK), - paddr_to_pfn_aligned(addr + size), + size / PAGE_SIZE + (size % PAGE_SIZE ? 1 : 0), Would not it be easier to use paddr_to_pfn(PAGE_ALIGN(size))? return 0; diff --git a/xen/arch/arm/platforms/xgene-storm.c b/xen/arch/arm/platforms/xgene-storm.c index f3662fd..a7f4c8b 100644 --- a/xen/arch/arm/platforms/xgene-storm.c +++ b/xen/arch/arm/platforms/xgene-storm.c @@ -48,7 +48,7 @@ static int map_one_mmio(struct domain *d, const char *what, printk("Additional MMIO %"PRIpaddr"-%"PRIpaddr" (%s)\n", start, end, what); ret = map_mmio_regions(d, paddr_to_pfn(start), - paddr_to_pfn_aligned(end), + paddr_to_pfn_aligned(end) - paddr_to_pfn(start) + 1, I would directly give the pfn in argument of map_one_mmio. Regards, -- Julien Grall _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |