All of lore.kernel.org
 help / color / mirror / Atom feed
* [Xen-devel] [PATCH v8 0/6] add per-domain IOMMU control
@ 2019-09-02 14:50 Paul Durrant
  2019-09-02 14:50 ` [Xen-devel] [PATCH v8 1/6] x86/domain: remove the 'oos_off' flag Paul Durrant
                   ` (5 more replies)
  0 siblings, 6 replies; 29+ messages in thread
From: Paul Durrant @ 2019-09-02 14:50 UTC (permalink / raw)
  To: xen-devel
  Cc: Petre Pircalabu, Stefano Stabellini, Jun Nakajima, Wei Liu,
	Konrad Rzeszutek Wilk, George Dunlap, Andrew Cooper, Ian Jackson,
	Tim Deegan, Julien Grall, Paul Durrant, Tamas K Lengyel,
	Christian Lindig, Jan Beulich, David Scott, Anthony PERARD,
	Volodymyr Babchuk, Suravee Suthikulpanit, Roger Pau Monné

These are revisions of the remaining uncommitted patches from my
previous series:

https://lists.xenproject.org/archives/html/xen-devel/2019-08/msg01737.html

Paul Durrant (6):
  x86/domain: remove the 'oos_off' flag
  domain: introduce XEN_DOMCTL_CDF_iommu flag
  use is_iommu_enabled() where appropriate...
  remove late (on-demand) construction of IOMMU page tables
  iommu: tidy up iommu_use_hap_pt() and need_iommu_pt_sync() macros
  introduce a 'passthrough' configuration option to xl.cfg...

 docs/man/xl.cfg.5.pod.in                  |  52 +++++++
 tools/libxl/libxl.h                       |   5 +
 tools/libxl/libxl_create.c                |   9 ++
 tools/libxl/libxl_mem.c                   |   6 +-
 tools/libxl/libxl_types.idl               |   8 +
 tools/libxl/libxl_utils.c                 |  15 ++
 tools/libxl/libxl_utils.h                 |   1 +
 tools/ocaml/libs/xc/xenctrl.ml            |  12 +-
 tools/ocaml/libs/xc/xenctrl.mli           |  12 +-
 tools/ocaml/libs/xc/xenctrl_stubs.c       |  15 +-
 tools/xl/xl_parse.c                       | 145 +++++++++++------
 xen/arch/arm/domain.c                     |  10 +-
 xen/arch/arm/p2m.c                        |   4 +-
 xen/arch/arm/setup.c                      |   3 +
 xen/arch/x86/dom0_build.c                 |   4 +-
 xen/arch/x86/domain.c                     |   9 +-
 xen/arch/x86/domctl.c                     |   4 +-
 xen/arch/x86/hvm/hvm.c                    |   6 +-
 xen/arch/x86/hvm/mtrr.c                   |   5 +-
 xen/arch/x86/hvm/vioapic.c                |   2 +-
 xen/arch/x86/hvm/vmx/vmcs.c               |   2 +-
 xen/arch/x86/hvm/vmx/vmx.c                |   2 +-
 xen/arch/x86/mm/mem_sharing.c             |   2 +-
 xen/arch/x86/mm/p2m-ept.c                 |   4 +-
 xen/arch/x86/mm/p2m.c                     |   4 +-
 xen/arch/x86/mm/paging.c                  |   4 +-
 xen/arch/x86/mm/shadow/common.c           |   7 +-
 xen/arch/x86/mm/shadow/none.c             |   2 +-
 xen/arch/x86/setup.c                      |   3 +
 xen/arch/x86/x86_64/mm.c                  |   2 +-
 xen/common/domain.c                       |  16 +-
 xen/common/memory.c                       |   4 +-
 xen/common/vm_event.c                     |   2 +-
 xen/drivers/passthrough/amd/iommu_guest.c |   2 +-
 xen/drivers/passthrough/device_tree.c     |  18 +--
 xen/drivers/passthrough/io.c              |   8 +-
 xen/drivers/passthrough/iommu.c           | 180 +++++++---------------
 xen/drivers/passthrough/pci.c             |  28 +---
 xen/drivers/passthrough/vtd/iommu.c       |  12 +-
 xen/drivers/passthrough/vtd/x86/hvm.c     |   2 +-
 xen/drivers/passthrough/x86/iommu.c       |  99 +-----------
 xen/include/asm-arm/iommu.h               |   3 -
 xen/include/asm-x86/domain.h              |   1 -
 xen/include/asm-x86/iommu.h               |  17 +-
 xen/include/asm-x86/shadow.h              |   2 +-
 xen/include/public/domctl.h               |  10 +-
 xen/include/xen/iommu.h                   |  48 +++---
 xen/include/xen/sched.h                   |  13 +-
 xen/xsm/flask/hooks.c                     |  18 +--
 49 files changed, 433 insertions(+), 409 deletions(-)
---
Cc: Andrew Cooper <andrew.cooper3@citrix.com>
Cc: Anthony PERARD <anthony.perard@citrix.com>
Cc: Christian Lindig <christian.lindig@citrix.com>
Cc: David Scott <dave@recoil.org>
Cc: George Dunlap <george.dunlap@eu.citrix.com>
Cc: Ian Jackson <ian.jackson@eu.citrix.com>
Cc: Jan Beulich <jbeulich@suse.com>
Cc: Julien Grall <julien.grall@arm.com>
Cc: Jun Nakajima <jun.nakajima@intel.com>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Petre Pircalabu <ppircalabu@bitdefender.com>
Cc: "Roger Pau Monné" <roger.pau@citrix.com>
Cc: Stefano Stabellini <sstabellini@kernel.org>
Cc: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
Cc: Tamas K Lengyel <tamas@tklengyel.com>
Cc: Tim Deegan <tim@xen.org>
Cc: Volodymyr Babchuk <Volodymyr_Babchuk@epam.com>
Cc: Wei Liu <wl@xen.org>
-- 
2.20.1.2.gb21ebb671


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

end of thread, other threads:[~2019-09-06 10:54 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-02 14:50 [Xen-devel] [PATCH v8 0/6] add per-domain IOMMU control Paul Durrant
2019-09-02 14:50 ` [Xen-devel] [PATCH v8 1/6] x86/domain: remove the 'oos_off' flag Paul Durrant
2019-09-02 15:08   ` Jan Beulich
2019-09-05 20:08     ` Julien Grall
2019-09-03  7:23   ` Tim Deegan
2019-09-02 14:50 ` [Xen-devel] [PATCH v8 2/6] domain: introduce XEN_DOMCTL_CDF_iommu flag Paul Durrant
2019-09-03 12:47   ` Christian Lindig
2019-09-05 19:28   ` Julien Grall
2019-09-06 10:54     ` Paul Durrant
2019-09-05 20:05   ` Julien Grall
2019-09-06  7:50     ` Paul Durrant
2019-09-02 14:50 ` [Xen-devel] [PATCH v8 3/6] use is_iommu_enabled() where appropriate Paul Durrant
2019-09-05 19:31   ` Julien Grall
2019-09-02 14:50 ` [Xen-devel] [PATCH v8 4/6] remove late (on-demand) construction of IOMMU page tables Paul Durrant
2019-09-05 14:30   ` Jan Beulich
2019-09-05 14:34     ` Paul Durrant
2019-09-05 20:21   ` Julien Grall
2019-09-06  7:56     ` Paul Durrant
2019-09-02 14:50 ` [Xen-devel] [PATCH v8 5/6] iommu: tidy up iommu_use_hap_pt() and need_iommu_pt_sync() macros Paul Durrant
2019-09-05 19:38   ` Julien Grall
2019-09-06  7:59     ` Paul Durrant
2019-09-06  8:48       ` Julien Grall
2019-09-02 14:50 ` [Xen-devel] [PATCH v8 6/6] introduce a 'passthrough' configuration option to xl.cfg Paul Durrant
2019-09-05 19:59   ` Julien Grall
2019-09-06  8:01     ` Paul Durrant
2019-09-05 20:28   ` Julien Grall
2019-09-06  8:08     ` Paul Durrant
2019-09-06  9:06       ` Julien Grall
2019-09-06  9:26         ` Paul Durrant

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.