
	List of maintainers and how to submit changes
	=============================================

Please try to follow the guidelines below.  This will make things
easier on the maintainers.  Not all of these guidelines matter for every
trivial patch so apply some common sense.

1.	Always _test_ your changes, however small, on at least 4 or
	5 people, preferably many more.

2.	Make sure your changes compile correctly in multiple
	configurations. For example, both 32- and 64-bit x86.

3.	Make a patch available to the relevant maintainer in the list. Use
	'diff -u' to make the patch easy to merge. Be prepared to get your
	changes sent back with seemingly silly requests about formatting
	and variable names.  These aren't as silly as they seem. One
	job the maintainers do is to keep things looking the same.

	PLEASE see https://wiki.xenproject.org/wiki/Submitting_Xen_Patches for
	hints on how to submit a patch to xen-unstable in a suitable
	form.

	PLEASE try to include any credit lines you want added with the
	patch. It avoids people being missed off by mistake and makes
	it easier to know who wants adding and who doesn't.

	PLEASE document known bugs. If it doesn't work for everything
	or does something very odd once a month document it.

	PLEASE remember that submissions must be made under the terms
	of the "Developer's Certificate of Origin" (DCO) and should include
	a Signed-off-by: line.

4.	Make sure you have the right to send any changes you make. If you
	do changes at work you may find your employer owns the patch
	not you.

5.	Happy hacking.


	Stable Release Maintenance
	==========================

The policy for inclusion in a Xen stable release is different to that
for inclusion in xen-unstable.

Please see https://wiki.xenproject.org/wiki/Xen_Maintenance_Releases for more
information.

Backport requests should be made on the xen-devel@lists.xenproject.org
list. Remember to copy the appropriate stable branch maintainer who
will be listed in this section of the MAINTAINERS file in the
appropriate branch.

The maintainer for this branch is:

	Jan Beulich <jbeulich@suse.com>

Tools backport requests should also be copied to:

       Anthony Perard <anthony.perard@vates.tech>


	Unstable Subsystem Maintainers
	==============================

Descriptions of section entries:

	M: Maintainer: FullName <address@domain>
	   Maintainers should be CCed on patches.  At least one of them
	   needs to approve changes to the covered files.
	R: Designated reviewer: FullName <address@domain>
	   Reviewers should be CCed on patches.  However, they do not
	   have a formal governance role, and are listed here
	   simply because of their own request.
	L: Mailing list that is relevant to this area
	W: Web-page with status/info
	T: SCM tree type and location.  Type is one of: git, hg, quilt, stgit.
	S: Status, one of the following:
	   Supported:	Someone is actually paid to look after this.
	   Maintained:	Someone actually looks after it.
	   Odd Fixes:	It has a maintainer but they don't have time to do
			much other than throw the odd patch in. See below..
	   Orphan:	No current maintainer [but maybe you could take the
			role as you write your new code].
	   Obsolete:	Old code. Something tagged obsolete generally means
			it has been replaced by a better system and you
			should be using that.
	F: Files and directories with wildcard patterns.
	   A trailing slash includes all files and subdirectory files.
	   F:	drivers/net/	all files in and below drivers/net
	   F:	drivers/net/*	all files in drivers/net, but not below
	   F:	*/net/*		all files in "any top level directory"/net
	   One pattern per line.  Multiple F: lines acceptable.
	X: Files and directories that are NOT maintained, same rules as F:
	   Files exclusions are tested before file matches.
	   Can be useful for excluding a specific subdirectory, for instance:
	   F:	net/
	   X:	net/ipv6/
	   matches all files in and below net excluding net/ipv6/
	K: Keyword perl extended regex pattern to match content in a
	   patch or file.  For instance:
	   K: of_get_profile
	      matches patches or files that contain "of_get_profile"
	   K: \b(printk|pr_(info|err))\b
	      matches patches or files that contain one or more of the words
	      printk, pr_info or pr_err
	   One regex pattern per line.  Multiple K: lines acceptable.
	V: Version identifier that must be under THE REST and follows
	   the format:
	   xen-maintainers-<version format number of this file>



Maintainers List (try to look for most precise areas first)

		-----------------------------------

9PFSD
M:	Juergen Gross <jgross@suse.com>
M:	Anthony PERARD <anthony.perard@vates.tech>
S:	Supported
F:	tools/9pfsd/

ACPI
M:	Jan Beulich <jbeulich@suse.com>
S:	Supported
F:	xen/arch/x86/acpi/
F:	xen/drivers/acpi/
F:	xen/include/acpi/
F:	tools/libacpi/

ARGO
M:	Christopher Clark <christopher.w.clark@gmail.com>
S:	Maintained
F:	xen/include/public/argo.h
F:	xen/include/xen/argo.h
F:	xen/common/argo.c

ARINC653 SCHEDULER
M:	Nathan Studer <nathan.studer@dornerworks.com>
M:	Stewart Hildebrand <stewart@stew.dk>
S:	Supported
L:	xen-devel@dornerworks.com
F:	xen/common/sched/arinc653.c
F:	tools/libs/ctrl/xc_arinc653.c

ARM (W/ VIRTUALISATION EXTENSIONS) ARCHITECTURE
M:	Stefano Stabellini <sstabellini@kernel.org>
M:	Julien Grall <julien@xen.org>
M:	Bertrand Marquis <bertrand.marquis@arm.com>
M:	Michal Orzel <michal.orzel@amd.com>
R:	Volodymyr Babchuk <Volodymyr_Babchuk@epam.com>
S:	Supported
L:	xen-devel@lists.xenproject.org
F:	docs/misc/arm/
F:	xen/arch/arm/
F:	xen/drivers/char/cadence-uart.c
F:	xen/drivers/char/exynos4210-uart.c
F:	xen/drivers/char/imx-lpuart.c
F:	xen/drivers/char/meson-uart.c
F:	xen/drivers/char/mvebu-uart.c
F:	xen/drivers/char/omap-uart.c
F:	xen/drivers/char/pl011.c
F:	xen/drivers/char/scif-uart.c
F:	xen/drivers/passthrough/arm/
F:	xen/include/public/arch-arm/
F:	xen/include/public/arch-arm.h

ARM SMMU
M:	Julien Grall <julien@xen.org>
M:	Rahul Singh <rahul.singh@arm.com>
S:	Supported
F:	xen/drivers/passthrough/arm/smmu.c

ARM SMMUv3
M:	Bertrand Marquis <bertrand.marquis@arm.com>
M:	Rahul Singh <rahul.singh@arm.com>
S:	Supported
F:	xen/drivers/passthrough/arm/smmu-v3.c

Change Log
M:	Oleksii Kurochko <oleksii.kurochko@gmail.com>
R:	Community Manager <community.manager@xenproject.org>
S:	Maintained
F:	CHANGELOG.md

Continuous Integration (CI)
M:	Doug Goldstein <cardoe@cardoe.com>
M:	Stefano Stabellini <sstabellini@kernel.org>
W:	https://gitlab.com/xen-project/xen
S:	Supported
F:	.gitlab-ci.yml
F:	automation/

DEVICE TREE
M:	Stefano Stabellini <sstabellini@kernel.org>
M:	Julien Grall <julien@xen.org>
M:	Bertrand Marquis <bertrand.marquis@arm.com>
M:	Michal Orzel <michal.orzel@amd.com>
S:	Supported
F:	xen/common/libfdt/
F:	xen/common/device-tree/
F:	xen/include/xen/libfdt/
F:	xen/include/xen/bootfdt.h
F:	xen/include/xen/device_tree.h
F:	xen/drivers/passthrough/device_tree.c

ECLAIR
R:	Nicola Vetrini <nicola.vetrini@bugseng.com>
S:	Supported
F:	automation/eclair_analysis/
F:	automation/scripts/eclair

EFI
M:	Daniel P. Smith <dpsmith@apertussolutions.com>
M:	Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
R:	Jan Beulich <jbeulich@suse.com>
S:	Supported
F:	xen/arch/x86/efi/
F:	xen/arch/x86/include/asm/efi*.h
F:	xen/arch/x86/include/asm/x86_*/efi*.h
F:	xen/common/efi/
F:	xen/include/efi/

FUSA
M:	Stefano Stabellini <sstabellini@kernel.org>
M:	Bertrand Marquis <bertrand.marquis@arm.com>
M:	Michal Orzel <michal.orzel@amd.com>
M:	Ayan Kumar Halder <ayan.kumar.halder@amd.com>
M:	Artem Mygaiev <artem_mygaiev@epam.com>
S:	Supported
F:	docs/fusa/

GDBSX DEBUGGER
M:	Elena Ufimtseva <elena.ufimtseva@oracle.com>
S:	Supported
F:	xen/arch/x86/debug.c
F:	tools/debugger/gdbsx/

GOLANG BINDINGS
M:	Nick Rosbrook <rosbrookn@gmail.com>
R:	George Dunlap <gwd@xenproject.org>
S:	Maintained
F:	tools/golang

HYPFS
M:	Juergen Gross <jgross@suse.com>
S:	Supported
F:	tools/include/xenhypfs.h
F:	tools/libs/hypfs/
F:	tools/misc/xenhypfs.c
F:	xen/common/hypfs.c
F:	xen/include/xen/hypfs.h

IMX8QM/QXP SUPPORT
R:	John Ernberg <john.ernberg@actia.se>
F:	xen/arch/arm/platforms/imx8qm.c
F:	xen/drivers/char/imx-lpuart.c

INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
R:	Lukasz Hawrylko <lukasz@hawrylko.pl>
R:	Daniel P. Smith <dpsmith@apertussolutions.com>
R:	Mateusz Mówka <mateusz.mowka@intel.com>
S:	Odd Fixes
F:	xen/arch/x86/include/asm/tboot.h
F:	xen/arch/x86/tboot.c

IOMMU VENDOR INDEPENDENT CODE
M:	Jan Beulich <jbeulich@suse.com>
R:	Roger Pau Monné <roger.pau@citrix.com>
S:	Supported
F:	xen/drivers/passthrough/
X:	xen/drivers/passthrough/amd/
X:	xen/drivers/passthrough/arm/
X:	xen/drivers/passthrough/vtd/
X:	xen/drivers/passthrough/device_tree.c
F:	xen/include/xen/iommu.h

KCONFIG
M:	Doug Goldstein <cardoe@cardoe.com>
S:	Supported
F:	docs/misc/kconfig{,-language}.txt
F:	xen/tools/kconfig/

KDD DEBUGGER
M:	Tim Deegan <tim@xen.org>
S:	Odd Fixes
F:	tools/debugger/kdd/

KEXEC
M:	Andrew Cooper <andrew.cooper3@citrix.com>
S:	Supported
F:	xen/common/{kexec,kimage}.c
F:	xen/include/xen/{kexec,kimage}.h
F:	xen/arch/x86/machine_kexec.c
F:	xen/arch/x86/x86_64/kexec_reloc.S

LIBS
M:	Anthony PERARD <anthony.perard@vates.tech>
R:	Juergen Gross <jgross@suse.com>
S:	Supported
F:	tools/include/libxenvchan.h
F:	tools/include/libxl*.h
F:	tools/include/xencall.h
F:	tools/include/xenctrl*.h
F:	tools/include/xendevicemodel.h
F:	tools/include/xenevtchn.h
F:	tools/include/xenforeignmemory.h
F:	tools/include/xengnttab.h
F:	tools/include/xenguest.h
F:	tools/include/xenhypfs.h
F:	tools/include/xenstat.h
F:	tools/include/xentoolcore*.h
F:	tools/include/xentoollog.h
F:	tools/libs/

LIVEPATCH
M:	Roger Pau Monné <roger.pau@citrix.com>
M:	Ross Lagerwall <ross.lagerwall@citrix.com>
S:	Supported
F:	docs/misc/livepatch.pandoc
F:	tools/misc/xen-livepatch.c
F:	xen/arch/*/include/asm/livepatch.h
F:	xen/arch/*/livepatch*
F:	xen/arch/*/*/livepatch*
F:	xen/common/livepatch*
F:	xen/include/xen/livepatch*
F:	xen/test/livepatch/*

MINI-OS
M:	Samuel Thibault <samuel.thibault@ens-lyon.org>
M:	Juergen Gross <jgross@suse.com>
S:	Supported
L:	minios-devel@lists.xenproject.org
T:	git https://xenbits.xenproject.org/git-http/mini-os.git
F:	config/MiniOS.mk

NXP S32G3 PROCESSORS FAMILY SUPPORT
M:	Andrei Cherechesu <andrei.cherechesu@oss.nxp.com>
L:	NXP S32 Linux Team <s32@nxp.com>
F:	xen/arch/arm/include/asm/linflex-uart.h
F:	xen/drivers/char/linflex-uart.c

OCAML TOOLS
M:	Christian Lindig <christian.lindig@citrix.com>
M:	David Scott <dave@recoil.org>
S:	Supported
F:	tools/ocaml/

OVMF UPSTREAM
M:	Anthony PERARD <anthony.perard@vates.tech>
S:	Supported
T:	git https://xenbits.xenproject.org/git-http/ovmf.git

POWER MANAGEMENT
M:	Jan Beulich <jbeulich@suse.com>
S:	Supported
F:	xen/arch/x86/acpi/
X:	xen/arch/x86/acpi/boot.c
X:	xen/arch/x86/acpi/lib.c
F:	xen/drivers/cpufreq/
F:	xen/include/acpi/cpufreq/

PPC64
M:	Shawn Anastasio <sanastasio@raptorengineering.com>
F:	xen/arch/ppc/

PUBLIC I/O INTERFACES AND PV DRIVERS DESIGNS
M:	Juergen Gross <jgross@suse.com>
S:	Supported
F:	xen/include/public/io/

PYTHON BINDINGS
M:	Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
S:	Supported
F:	tools/python

QEMU-DM
S:	Supported
T:	git https://xenbits.xenproject.org/git-http/qemu-xen-traditional.git

QEMU UPSTREAM
M:	Stefano Stabellini <sstabellini@kernel.org>
M:	Anthony Perard <anthony.perard@vates.tech>
S:	Supported
T:	git https://xenbits.xenproject.org/git-http/qemu-xen.git

REMUS
S:	Orphan
F:	docs/README.remus
F:	tools/libs/light/libxl_remus_*
F:	tools/libs/light/libxl_netbuffer.c
F:	tools/libs/light/libxl_nonetbuffer.c
F:	tools/hotplug/Linux/remus-netbuf-setup
F:	tools/hotplug/Linux/block-drbd-probe

RISCV
R:	Alistair Francis <alistair.francis@wdc.com>
R:	Bob Eshleman <bobbyeshleman@gmail.com>
R:	Connor Davis <connojdavis@gmail.com>
R:	Oleksii Kurochko <oleksii.kurochko@gmail.com>
S:	Supported
F:	config/riscv64.mk
F:	xen/arch/riscv/

RTDS SCHEDULER
M:	Dario Faggioli <dfaggioli@suse.com>
M:	Meng Xu <mengxu@cis.upenn.edu>
S:	Supported
F:	xen/common/sched/rt.c

SCHEDULING
M:	Dario Faggioli <dfaggioli@suse.com>
M:	Juergen Gross <jgross@suse.com>
R:	George Dunlap <gwd@xenproject.org>
S:	Supported
F:	xen/common/sched/

SEABIOS UPSTREAM
M:	Wei Liu <wl@xen.org>
S:	Supported
T:	git https://xenbits.xenproject.org/git-http/seabios.git

STUB DOMAINS
M:	Samuel Thibault <samuel.thibault@ens-lyon.org>
S:	Supported
F:	config/Stubdom.mk.in
F:	m4/stubdom.m4
F:	stubdom/

TEE MEDIATORS
M:	Volodymyr Babchuk <volodymyr_babchuk@epam.com>
M:	Bertrand Marquis <bertrand.marquis@arm.com>
S:	Supported
F:	xen/arch/arm/include/asm/tee/
F:	xen/arch/arm/tee/

TOOLSTACK
M:	Anthony PERARD <anthony.perard@vates.tech>
S:	Supported
F:	autogen.sh
F:	config/*.in
F:	install.sh
F:	m4/
F:	configure
F:	docs/Makefile
F:	docs/man/
F:	stubdom/Makefile
F:	*.ac
F:	*/configure
F:	*/*.ac
F:	tools/

VM EVENT, MEM ACCESS and MONITOR
M:	Tamas K Lengyel <tamas@tklengyel.com>
R:	Alexandru Isaila <aisaila@bitdefender.com>
R:	Petre Pircalabu <ppircalabu@bitdefender.com>
S:	Supported
F:	tools/misc/xen-access.c
F:	xen/arch/*/*/mem_access.c
F:	xen/arch/*/*/monitor.c
F:	xen/arch/*/*/vm_event.c
F:	xen/arch/*/include/asm/*/mem_access.h
F:	xen/arch/*/include/asm/*/monitor.h
F:	xen/arch/*/include/asm/*/vm_event.h
F:	xen/arch/*/include/asm/mem_access.h
F:	xen/arch/*/include/asm/monitor.h
F:	xen/arch/*/include/asm/vm_event.h
F:	xen/arch/*/mem_access.c
F:	xen/arch/*/monitor.c
F:	xen/arch/*/vm_event.c
F:	xen/common/mem_access.c
F:	xen/common/monitor.c
F:	xen/common/vm_event.c
F:	xen/include/*/mem_access.h
F:	xen/include/*/monitor.h
F:	xen/include/*/vm_event.h

VPCI
M:	Roger Pau Monné <roger.pau@citrix.com>
S:	Supported
F:	tools/tests/vpci/
F:	xen/drivers/vpci/
F:	xen/include/xen/vpci.h

VTPM
M:	Daniel De Graaf <dgdegra@tycho.nsa.gov>
M:	Quan Xu <quan.xu0@gmail.com>
S:	Supported
F:	extras/mini-os/tpm*
F:	extras/mini-os/include/tpm*
F:	stubdom/vtpm/
F:	stubdom/vtpmmgr/
F:	docs/misc/vtpm-platforms.txt

X86 ARCHITECTURE
M:	Jan Beulich <jbeulich@suse.com>
M:	Andrew Cooper <andrew.cooper3@citrix.com>
M:	Roger Pau Monné <roger.pau@citrix.com>
S:	Supported
L:	xen-devel@lists.xenproject.org
F:	xen/arch/x86/
F:	xen/drivers/passthrough/amd/
F:	xen/drivers/passthrough/vtd/
F:	xen/include/public/arch-x86/
F:	xen/include/xen/lib/x86/
F:	xen/lib/x86/
F:	xen/tools/gen-cpuid.py
F:	tools/firmware/hvmloader/
F:	tools/firmware/rombios/
F:	tools/firmware/vgabios/
F:	tools/fuzz/cpu-policy/
F:	tools/fuzz/x86_instruction_emulator/
F:	tools/misc/xen-cpuid.c
F:	tools/tests/cpu-policy/
F:	tools/tests/x86_emulator/

X86 MEMORY PAGING
S:	Orphaned
F:	xen/arch/x86/mm/mem_paging.c

X86 MEMORY SHARING
M:	Tamas K Lengyel <tamas@tklengyel.com>
S:	Odd Fixes
F:	xen/arch/x86/mm/mem_sharing.c
F:	tools/tests/mem-sharing/

X86 SHADOW PAGETABLES
M:	Jan Beulich <jbeulich@suse.com>
M:	Andrew Cooper <andrew.cooper3@citrix.com>
R:	Tim Deegan <tim@xen.org>
S:	Maintained
F:	xen/arch/x86/mm/shadow/

X86 VIRIDIAN ENLIGHTENMENTS
M:	Paul Durrant <paul@xen.org>
S:	Supported
F:	xen/arch/x86/guest/hyperv/
F:	xen/arch/x86/hvm/viridian/
F:	xen/arch/x86/include/asm/guest/hyperv.h
F:	xen/arch/x86/include/asm/guest/hyperv-hcall.h
F:	xen/arch/x86/include/asm/guest/hyperv-tlfs.h
F:	xen/arch/x86/include/asm/hvm/viridian.h

XENSTORE
M:	Juergen Gross <jgross@suse.com>
R:	Julien Grall <julien@xen.org>
S:	Supported
F:	tools/helpers/init-xenstore-domain.c
F:	tools/include/xenstore-compat/
F:	tools/include/xenstore.h
F:	tools/include/xenstore_lib.h
F:	tools/include/xen-tools/xenstore-common.h
F:	tools/libs/store/
F:	tools/xenstored/
F:	tools/xs-clients/

XEN MISRA ANALYSIS TOOLS
M:	Luca Fancellu <luca.fancellu@arm.com>
S:	Supported
F:	xen/scripts/xen_analysis/
F:	xen/scripts/xen-analysis.py
F:	xen/scripts/diff-report.py
F:	xen/tools/cppcheck-plat/
F:	xen/tools/convert_misra_doc.py
F:	xen/tools/cppcheck-cc.sh

XSM/FLASK
M:	Daniel P. Smith <dpsmith@apertussolutions.com>
S:	Supported
F:	tools/flask/
F:	xen/include/xsm/
F:	xen/xsm/
F:	docs/misc/xsm-flask.txt
K:	xsm_.*
K:	\b(xsm|XSM)\b

THE REST
M:	Andrew Cooper <andrew.cooper3@citrix.com>
M:	Anthony PERARD <anthony.perard@vates.tech>
M:	Michal Orzel <michal.orzel@amd.com>
M:	Jan Beulich <jbeulich@suse.com>
M:	Julien Grall <julien@xen.org>
M:	Roger Pau Monné <roger.pau@citrix.com>
M:	Stefano Stabellini <sstabellini@kernel.org>
L:	xen-devel@lists.xenproject.org
S:	Supported
F:	*
F:	*/
V:	xen-maintainers-1
