xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v5 00/17] xen/arm: Use the typesafes gfn and mfn
@ 2016-06-28 16:17 Julien Grall
  2016-06-28 16:17 ` [PATCH v5 01/17] xen: Use typesafe gfn/mfn in guest_physmap_* helpers Julien Grall
                   ` (17 more replies)
  0 siblings, 18 replies; 49+ messages in thread
From: Julien Grall @ 2016-06-28 16:17 UTC (permalink / raw)
  To: xen-devel
  Cc: Wei Liu, Kevin Tian, sstabellini, Feng Wu, Jun Nakajima,
	George Dunlap, Andrew Cooper, Christoph Egger, Ian Jackson,
	Tim Deegan, Julien Grall, Paul Durrant, Shannon Zhao,
	Jan Beulich, Liu Jinsong, Suravee Suthikulpanit, Boris Ostrovsky,
	Mukesh Rathor

Hello all,

Some of the ARM functions are mixing gfn vs mfn and even physical vs frame.

To avoid more confusion, this patch series makes use of the terminology
described in xen/include/xen/mm.h and the associated typesafe.

This series requires the patch [1] to be applied beforehand. I pushed a
branch with this patch and this series applied on xenbits:
git://xenbits.xen.org/people/julieng/xen-unstable.git branch typesafe-v4

For all the changes see in each patch.

Yours sincerely,

[1] http://lists.xenproject.org/archives/html/xen-devel/2016-06/msg01744.html

Cc: Andrew Cooper <andrew.cooper3@citrix.com>
Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: Christoph Egger <chegger@amazon.de>
Cc: Feng Wu <feng.wu@intel.com>
Cc: George Dunlap <george.dunlap@eu.citrix.com>
Cc: Ian Jackson <ian.jackson@eu.citrix.com>
Cc: Jan Beulich <jbeulich@suse.com>
Cc: Jun Nakajima <jun.nakajima@intel.com>
Cc: Kevin Tian <kevin.tian@intel.com>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Liu Jinsong <jinsong.liu@alibaba-inc.com>
Cc: Mukesh Rathor <mukesh.rathor@oracle.com>
Cc: Paul Durrant <paul.durrant@citrix.com>
Cc: Shannon Zhao <shannon.zhao@linaro.org>
Cc: Stefano Stabellini <sstabellini@kernel.org>
Cc: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
Cc: Tim Deegan <tim@xen.org>
Cc: Wei Liu <wei.liu2@citrix.com>

Julien Grall (17):
  xen: Use typesafe gfn/mfn in guest_physmap_* helpers
  xen: Use typesafe gfn in xenmem_add_to_physmap_one
  xen/arm: Rename grant_table_gfpn into grant_table_gfn and use the
    typesafe gfn
  xen: Use the typesafe mfn and gfn in map_mmio_regions...
  xen/passthrough: x86: Use INVALID_GFN rather than INVALID_MFN
  xen: Use a typesafe to define INVALID_MFN
  xen: Use a typesafe to define INVALID_GFN
  xen/arm: Rework the interface of p2m_lookup and use typesafe gfn and
    mfn
  xen/arm: Rework the interface of p2m_cache_flush and use typesafe gfn
  xen/arm: map_regions_rw_cache: Map the region with p2m->default_access
  xen/arm: dom0_build: Remove dead code in allocate_memory
  xen/arm: p2m: Remove unused operation ALLOCATE
  xen/arm: Use the typesafes mfn and gfn in map_dev_mmio_region...
  xen/arm: Use the typesafes mfn and gfn in map_regions_rw_cache ...
  xen/arm: p2m: Introduce helpers to insert and remove mapping
  xen/arm: p2m: Use typesafe gfn for {max,lowest}_mapped_gfn
  xen/arm: p2m: Rework the interface of apply_p2m_changes and use
    typesafe

 xen/arch/arm/domain.c                   |   4 +-
 xen/arch/arm/domain_build.c             |  72 ++-------
 xen/arch/arm/domctl.c                   |   2 +-
 xen/arch/arm/gic-v2.c                   |   4 +-
 xen/arch/arm/mm.c                       |  20 +--
 xen/arch/arm/p2m.c                      | 269 ++++++++++++--------------------
 xen/arch/arm/platforms/exynos5.c        |   8 +-
 xen/arch/arm/platforms/omap5.c          |  16 +-
 xen/arch/arm/traps.c                    |  21 +--
 xen/arch/arm/vgic-v2.c                  |   4 +-
 xen/arch/x86/cpu/mcheck/mce.c           |   2 +-
 xen/arch/x86/debug.c                    |  64 ++++----
 xen/arch/x86/domain.c                   |   7 +-
 xen/arch/x86/domain_build.c             |   6 +-
 xen/arch/x86/hvm/emulate.c              |   7 +-
 xen/arch/x86/hvm/hvm.c                  |  12 +-
 xen/arch/x86/hvm/ioreq.c                |  16 +-
 xen/arch/x86/hvm/svm/nestedsvm.c        |   2 +-
 xen/arch/x86/hvm/viridian.c             |   6 +-
 xen/arch/x86/hvm/vmx/vmx.c              |   8 +-
 xen/arch/x86/mm.c                       |  21 +--
 xen/arch/x86/mm/altp2m.c                |   2 +-
 xen/arch/x86/mm/guest_walk.c            |   4 +-
 xen/arch/x86/mm/hap/guest_walk.c        |  10 +-
 xen/arch/x86/mm/hap/hap.c               |   4 +-
 xen/arch/x86/mm/hap/nested_ept.c        |   2 +-
 xen/arch/x86/mm/p2m-ept.c               |   6 +-
 xen/arch/x86/mm/p2m-pod.c               |  24 +--
 xen/arch/x86/mm/p2m-pt.c                |  18 +--
 xen/arch/x86/mm/p2m.c                   | 164 ++++++++++---------
 xen/arch/x86/mm/paging.c                |  12 +-
 xen/arch/x86/mm/shadow/common.c         |  46 +++---
 xen/arch/x86/mm/shadow/multi.c          |  38 ++---
 xen/arch/x86/mm/shadow/private.h        |   2 +-
 xen/common/domain.c                     |   6 +-
 xen/common/domctl.c                     |   4 +-
 xen/common/grant_table.c                |  13 +-
 xen/common/memory.c                     |  38 ++---
 xen/drivers/passthrough/amd/iommu_map.c |   2 +-
 xen/drivers/passthrough/arm/smmu.c      |   4 +-
 xen/drivers/passthrough/vtd/iommu.c     |   4 +-
 xen/drivers/passthrough/x86/iommu.c     |   2 +-
 xen/include/asm-arm/domain.h            |   2 +-
 xen/include/asm-arm/grant_table.h       |   2 +-
 xen/include/asm-arm/p2m.h               |  44 +++---
 xen/include/asm-x86/guest_pt.h          |   4 +-
 xen/include/asm-x86/p2m.h               |  13 +-
 xen/include/xen/mm.h                    |   8 +-
 xen/include/xen/p2m-common.h            |   8 +-
 49 files changed, 481 insertions(+), 576 deletions(-)

-- 
1.9.1


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

^ permalink raw reply	[flat|nested] 49+ messages in thread

end of thread, other threads:[~2016-07-06 15:39 UTC | newest]

Thread overview: 49+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-28 16:17 [PATCH v5 00/17] xen/arm: Use the typesafes gfn and mfn Julien Grall
2016-06-28 16:17 ` [PATCH v5 01/17] xen: Use typesafe gfn/mfn in guest_physmap_* helpers Julien Grall
2016-06-28 16:17 ` [PATCH v5 02/17] xen: Use typesafe gfn in xenmem_add_to_physmap_one Julien Grall
2016-06-28 16:17 ` [PATCH v5 03/17] xen/arm: Rename grant_table_gfpn into grant_table_gfn and use the typesafe gfn Julien Grall
2016-06-28 16:17 ` [PATCH v5 04/17] xen: Use the typesafe mfn and gfn in map_mmio_regions Julien Grall
2016-07-06 10:23   ` Stefano Stabellini
2016-06-28 16:17 ` [PATCH v5 05/17] xen/passthrough: x86: Use INVALID_GFN rather than INVALID_MFN Julien Grall
2016-06-28 16:43   ` Andrew Cooper
2016-06-28 16:47     ` Juergen Gross
2016-06-28 17:04       ` Julien Grall
2016-06-29  9:39   ` Jan Beulich
2016-06-28 16:17 ` [PATCH v5 06/17] xen: Use a typesafe to define INVALID_MFN Julien Grall
2016-06-28 17:05   ` Andrew Cooper
2016-07-06 10:27   ` Stefano Stabellini
2016-06-28 16:17 ` [PATCH v5 07/17] xen: Use a typesafe to define INVALID_GFN Julien Grall
2016-06-28 17:12   ` Andrew Cooper
2016-07-06 10:28   ` Stefano Stabellini
2016-06-28 16:17 ` [PATCH v5 08/17] xen/arm: Rework the interface of p2m_lookup and use typesafe gfn and mfn Julien Grall
2016-07-06 10:32   ` Stefano Stabellini
2016-06-28 16:17 ` [PATCH v5 09/17] xen/arm: Rework the interface of p2m_cache_flush and use typesafe gfn Julien Grall
2016-07-06 10:35   ` Stefano Stabellini
2016-06-28 16:17 ` [PATCH v5 10/17] xen/arm: map_regions_rw_cache: Map the region with p2m->default_access Julien Grall
2016-07-06 10:43   ` Stefano Stabellini
2016-07-06 11:10     ` Julien Grall
2016-07-06 11:17       ` Stefano Stabellini
2016-07-06 11:22         ` Julien Grall
2016-07-06 11:44           ` Julien Grall
2016-07-06 15:39       ` Tamas K Lengyel
2016-06-28 16:17 ` [PATCH v5 11/17] xen/arm: dom0_build: Remove dead code in allocate_memory Julien Grall
2016-07-06 10:46   ` Stefano Stabellini
2016-06-28 16:17 ` [PATCH v5 12/17] xen/arm: p2m: Remove unused operation ALLOCATE Julien Grall
2016-07-06 10:49   ` Stefano Stabellini
2016-06-28 16:17 ` [PATCH v5 13/17] xen/arm: Use the typesafes mfn and gfn in map_dev_mmio_region Julien Grall
2016-06-28 17:21   ` Andrew Cooper
2016-06-29 12:20     ` Julien Grall
2016-06-28 16:17 ` [PATCH v5 14/17] xen/arm: Use the typesafes mfn and gfn in map_regions_rw_cache Julien Grall
2016-07-06 10:54   ` Stefano Stabellini
2016-06-28 16:17 ` [PATCH v5 15/17] xen/arm: p2m: Introduce helpers to insert and remove mapping Julien Grall
2016-06-28 17:23   ` Andrew Cooper
2016-07-06 10:59   ` Stefano Stabellini
2016-07-06 11:20     ` Julien Grall
2016-06-28 16:17 ` [PATCH v5 16/17] xen/arm: p2m: Use typesafe gfn for {max, lowest}_mapped_gfn Julien Grall
2016-07-06 11:07   ` Stefano Stabellini
2016-06-28 16:17 ` [PATCH v5 17/17] xen/arm: p2m: Rework the interface of apply_p2m_changes and use typesafe Julien Grall
2016-07-06 11:06   ` Stefano Stabellini
2016-07-06 11:56     ` Julien Grall
2016-07-06 12:45       ` Andrew Cooper
2016-06-28 18:32 ` [PATCH v5 00/17] xen/arm: Use the typesafes gfn and mfn Andrew Cooper
2016-06-29  9:24   ` Jan Beulich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).