xref: /openbmc/qemu/MAINTAINERS (revision 93977402)
1QEMU Maintainers
2================
3
4The intention of this file is not to establish who owns what portions of the
5code base, but to provide a set of names that developers can consult when they
6have a question about a particular subset and also to provide a set of names
7to be CC'd when submitting a patch to obtain appropriate review.
8
9In general, if you have a question about inclusion of a patch, you should
10consult qemu-devel and not any specific individual privately.
11
12Descriptions of section entries:
13
14	M: Mail patches to: FullName <address@domain>
15	L: Mailing list that is relevant to this area
16	W: Web-page with status/info
17	Q: Patchwork web based patch tracking system site
18	T: SCM tree type and location.  Type is one of: git, hg, quilt, stgit.
19	S: Status, one of the following:
20	   Supported:	Someone is actually paid to look after this.
21	   Maintained:	Someone actually looks after it.
22	   Odd Fixes:	It has a maintainer but they don't have time to do
23			much other than throw the odd patch in. See below.
24	   Orphan:	No current maintainer [but maybe you could take the
25			role as you write your new code].
26	   Obsolete:	Old code. Something tagged obsolete generally means
27			it has been replaced by a better system and you
28			should be using that.
29	F: Files and directories with wildcard patterns.
30	   A trailing slash includes all files and subdirectory files.
31	   F:	drivers/net/	all files in and below drivers/net
32	   F:	drivers/net/*	all files in drivers/net, but not below
33	   F:	*/net/*		all files in "any top level directory"/net
34	   One pattern per line.  Multiple F: lines acceptable.
35	X: Files and directories that are NOT maintained, same rules as F:
36	   Files exclusions are tested before file matches.
37	   Can be useful for excluding a specific subdirectory, for instance:
38	   F:	net/
39	   X:	net/ipv6/
40	   matches all files in and below net excluding net/ipv6/
41	K: Keyword perl extended regex pattern to match content in a
42	   patch or file.  For instance:
43	   K: of_get_profile
44	      matches patches or files that contain "of_get_profile"
45	   K: \b(printk|pr_(info|err))\b
46	      matches patches or files that contain one or more of the words
47	      printk, pr_info or pr_err
48	   One regex pattern per line.  Multiple K: lines acceptable.
49
50
51General Project Administration
52------------------------------
53M: Peter Maydell <peter.maydell@linaro.org>
54
55All patches CC here
56L: qemu-devel@nongnu.org
57F: *
58F: */
59
60Responsible Disclosure, Reporting Security Issues
61------------------------------
62W: http://wiki.qemu.org/SecurityProcess
63M: Michael S. Tsirkin <mst@redhat.com>
64L: secalert@redhat.com
65
66Guest CPU cores (TCG):
67----------------------
68Overall
69L: qemu-devel@nongnu.org
70M: Paolo Bonzini <pbonzini@redhat.com>
71M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
72M: Richard Henderson <rth@twiddle.net>
73S: Maintained
74F: cpu-exec.c
75F: cpu-exec-common.c
76F: cpus.c
77F: cputlb.c
78F: exec.c
79F: softmmu_template.h
80F: translate-all.*
81F: translate-common.c
82F: include/exec/cpu*.h
83F: include/exec/exec-all.h
84F: include/exec/helper*.h
85F: include/exec/tb-hash.h
86F: include/sysemu/cpus.h
87
88FPU emulation
89M: Aurelien Jarno <aurelien@aurel32.net>
90M: Peter Maydell <peter.maydell@linaro.org>
91S: Odd Fixes
92F: fpu/
93F: include/fpu/
94
95Alpha
96M: Richard Henderson <rth@twiddle.net>
97S: Maintained
98F: target-alpha/
99F: hw/alpha/
100F: tests/tcg/alpha/
101F: disas/alpha.c
102
103ARM
104M: Peter Maydell <peter.maydell@linaro.org>
105L: qemu-arm@nongnu.org
106S: Maintained
107F: target-arm/
108F: hw/arm/
109F: hw/cpu/a*mpcore.c
110F: disas/arm.c
111F: disas/arm-a64.cc
112F: disas/libvixl/
113
114CRIS
115M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
116S: Maintained
117F: target-cris/
118F: hw/cris/
119F: include/hw/cris/
120F: tests/tcg/cris/
121F: disas/cris.c
122
123LM32
124M: Michael Walle <michael@walle.cc>
125S: Maintained
126F: target-lm32/
127F: disas/lm32.c
128F: hw/lm32/
129F: hw/*/lm32_*
130F: hw/*/milkymist-*
131F: include/hw/char/lm32_juart.h
132F: include/hw/lm32/
133F: tests/tcg/lm32/
134
135M68K
136S: Orphan
137F: target-m68k/
138F: hw/m68k/
139
140MicroBlaze
141M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
142S: Maintained
143F: target-microblaze/
144F: hw/microblaze/
145F: disas/microblaze.c
146
147MIPS
148M: Aurelien Jarno <aurelien@aurel32.net>
149M: Yongbok Kim <yongbok.kim@imgtec.com>
150S: Maintained
151F: target-mips/
152F: hw/mips/
153F: hw/misc/mips_*
154F: hw/intc/mips_gic.c
155F: hw/timer/mips_gictimer.c
156F: include/hw/mips/
157F: include/hw/misc/mips_*
158F: include/hw/intc/mips_gic.h
159F: include/hw/timer/mips_gictimer.h
160F: tests/tcg/mips/
161F: disas/mips.c
162
163Moxie
164M: Anthony Green <green@moxielogic.com>
165S: Maintained
166F: target-moxie/
167F: disas/moxie.c
168F: hw/moxie/
169F: default-configs/moxie-softmmu.mak
170
171OpenRISC
172M: Jia Liu <proljc@gmail.com>
173S: Maintained
174F: target-openrisc/
175F: hw/openrisc/
176F: tests/tcg/openrisc/
177
178PowerPC
179M: David Gibson <david@gibson.dropbear.id.au>
180M: Alexander Graf <agraf@suse.de>
181L: qemu-ppc@nongnu.org
182S: Maintained
183F: target-ppc/
184F: hw/ppc/
185F: include/hw/ppc/
186F: disas/ppc.c
187
188S390
189M: Richard Henderson <rth@twiddle.net>
190M: Alexander Graf <agraf@suse.de>
191S: Maintained
192F: target-s390x/
193F: hw/s390x/
194F: disas/s390.c
195
196SH4
197M: Aurelien Jarno <aurelien@aurel32.net>
198S: Odd Fixes
199F: target-sh4/
200F: hw/sh4/
201F: disas/sh4.c
202F: include/hw/sh4/
203
204SPARC
205M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
206M: Artyom Tarasenko <atar4qemu@gmail.com>
207S: Maintained
208F: target-sparc/
209F: hw/sparc/
210F: hw/sparc64/
211F: disas/sparc.c
212
213UniCore32
214M: Guan Xuetao <gxt@mprc.pku.edu.cn>
215S: Maintained
216F: target-unicore32/
217F: hw/unicore32/
218F: include/hw/unicore32/
219
220X86
221M: Paolo Bonzini <pbonzini@redhat.com>
222M: Richard Henderson <rth@twiddle.net>
223M: Eduardo Habkost <ehabkost@redhat.com>
224S: Maintained
225F: target-i386/
226F: hw/i386/
227F: disas/i386.c
228
229Xtensa
230M: Max Filippov <jcmvbkbc@gmail.com>
231W: http://wiki.osll.spb.ru/doku.php?id=etc:users:jcmvbkbc:qemu-target-xtensa
232S: Maintained
233F: target-xtensa/
234F: hw/xtensa/
235F: tests/tcg/xtensa/
236
237TriCore
238M: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
239S: Maintained
240F: target-tricore/
241F: hw/tricore/
242F: include/hw/tricore/
243
244Guest CPU Cores (KVM):
245----------------------
246
247Overall
248M: Paolo Bonzini <pbonzini@redhat.com>
249L: kvm@vger.kernel.org
250S: Supported
251F: kvm-*
252F: */kvm.*
253F: include/sysemu/kvm*.h
254
255ARM
256M: Peter Maydell <peter.maydell@linaro.org>
257L: qemu-arm@nongnu.org
258S: Maintained
259F: target-arm/kvm.c
260
261MIPS
262M: James Hogan <james.hogan@imgtec.com>
263S: Maintained
264F: target-mips/kvm.c
265
266PPC
267M: Alexander Graf <agraf@suse.de>
268S: Maintained
269F: target-ppc/kvm.c
270
271S390
272M: Christian Borntraeger <borntraeger@de.ibm.com>
273M: Cornelia Huck <cornelia.huck@de.ibm.com>
274M: Alexander Graf <agraf@suse.de>
275S: Maintained
276F: target-s390x/kvm.c
277F: target-s390x/ioinst.[ch]
278F: target-s390x/machine.c
279F: hw/intc/s390_flic.c
280F: hw/intc/s390_flic_kvm.c
281F: include/hw/s390x/s390_flic.h
282F: gdb-xml/s390*.xml
283T: git git://github.com/cohuck/qemu.git s390-next
284T: git git://github.com/borntraeger/qemu.git s390-next
285
286X86
287M: Paolo Bonzini <pbonzini@redhat.com>
288M: Marcelo Tosatti <mtosatti@redhat.com>
289L: kvm@vger.kernel.org
290S: Supported
291F: target-i386/kvm.c
292
293Guest CPU Cores (Xen):
294----------------------
295
296X86
297M: Stefano Stabellini <sstabellini@kernel.org>
298M: Anthony Perard <anthony.perard@citrix.com>
299L: xen-devel@lists.xensource.com
300S: Supported
301F: xen-*
302F: */xen*
303F: hw/char/xen_console.c
304F: hw/display/xenfb.c
305F: hw/net/xen_nic.c
306F: hw/block/xen_*
307F: hw/xen/
308F: hw/xenpv/
309F: hw/i386/xen/
310F: include/hw/xen/
311F: include/sysemu/xen-mapcache.h
312
313Hosts:
314------
315
316LINUX
317L: qemu-devel@nongnu.org
318S: Maintained
319F: linux-*
320F: linux-headers/
321
322POSIX
323L: qemu-devel@nongnu.org
324S: Maintained
325F: *posix*
326
327W32, W64
328L: qemu-devel@nongnu.org
329M: Stefan Weil <sw@weilnetz.de>
330S: Maintained
331F: *win32*
332F: */*win32*
333F: include/*/*win32*
334X: qga/*win32*
335F: qemu.nsi
336
337ARM Machines
338------------
339Allwinner-a10
340M: Beniamino Galvani <b.galvani@gmail.com>
341L: qemu-arm@nongnu.org
342S: Maintained
343F: hw/*/allwinner*
344F: include/hw/*/allwinner*
345F: hw/arm/cubieboard.c
346
347ARM PrimeCell
348M: Peter Maydell <peter.maydell@linaro.org>
349L: qemu-arm@nongnu.org
350S: Maintained
351F: hw/char/pl011.c
352F: hw/display/pl110*
353F: hw/dma/pl080.c
354F: hw/dma/pl330.c
355F: hw/gpio/pl061.c
356F: hw/input/pl050.c
357F: hw/intc/pl190.c
358F: hw/sd/pl181.c
359F: hw/timer/pl031.c
360F: include/hw/arm/primecell.h
361
362ARM cores
363M: Peter Maydell <peter.maydell@linaro.org>
364L: qemu-arm@nongnu.org
365S: Maintained
366F: hw/intc/arm*
367F: hw/intc/gic_internal.h
368F: hw/misc/a9scu.c
369F: hw/misc/arm11scu.c
370F: hw/timer/a9gtimer*
371F: hw/timer/arm_*
372F: include/hw/arm/arm.h
373F: include/hw/intc/arm*
374F: include/hw/misc/a9scu.h
375F: include/hw/misc/arm11scu.h
376F: include/hw/timer/a9gtimer.h
377F: include/hw/timer/arm_mptimer.h
378
379Exynos
380M: Igor Mitsyanko <i.mitsyanko@gmail.com>
381L: qemu-arm@nongnu.org
382S: Maintained
383F: hw/*/exynos*
384F: include/hw/arm/exynos4210.h
385
386Calxeda Highbank
387M: Rob Herring <robh@kernel.org>
388L: qemu-arm@nongnu.org
389S: Maintained
390F: hw/arm/highbank.c
391F: hw/net/xgmac.c
392
393Canon DIGIC
394M: Antony Pavlov <antonynpavlov@gmail.com>
395L: qemu-arm@nongnu.org
396S: Maintained
397F: include/hw/arm/digic.h
398F: hw/*/digic*
399
400Gumstix
401L: qemu-devel@nongnu.org
402L: qemu-arm@nongnu.org
403S: Orphan
404F: hw/arm/gumstix.c
405
406i.MX31
407M: Peter Chubb <peter.chubb@nicta.com.au>
408L: qemu-arm@nongnu.org
409S: Odd fixes
410F: hw/*/imx*
411F: hw/arm/kzm.c
412F: include/hw/arm/fsl-imx31.h
413
414Integrator CP
415M: Peter Maydell <peter.maydell@linaro.org>
416L: qemu-arm@nongnu.org
417S: Maintained
418F: hw/arm/integratorcp.c
419
420Musicpal
421M: Jan Kiszka <jan.kiszka@web.de>
422L: qemu-arm@nongnu.org
423S: Maintained
424F: hw/arm/musicpal.c
425
426nSeries
427M: Andrzej Zaborowski <balrogg@gmail.com>
428L: qemu-arm@nongnu.org
429S: Maintained
430F: hw/arm/nseries.c
431
432Palm
433M: Andrzej Zaborowski <balrogg@gmail.com>
434L: qemu-arm@nongnu.org
435S: Maintained
436F: hw/arm/palm.c
437
438Real View
439M: Peter Maydell <peter.maydell@linaro.org>
440L: qemu-arm@nongnu.org
441S: Maintained
442F: hw/arm/realview*
443F: hw/intc/realview_gic.c
444F: include/hw/intc/realview_gic.h
445
446PXA2XX
447M: Andrzej Zaborowski <balrogg@gmail.com>
448L: qemu-arm@nongnu.org
449S: Maintained
450F: hw/arm/mainstone.c
451F: hw/arm/spitz.c
452F: hw/arm/tosa.c
453F: hw/arm/z2.c
454F: hw/*/pxa2xx*
455F: include/hw/arm/pxa.h
456
457Stellaris
458M: Peter Maydell <peter.maydell@linaro.org>
459L: qemu-arm@nongnu.org
460S: Maintained
461F: hw/*/stellaris*
462
463Versatile PB
464M: Peter Maydell <peter.maydell@linaro.org>
465L: qemu-arm@nongnu.org
466S: Maintained
467F: hw/*/versatile*
468
469Xilinx Zynq
470M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
471M: Alistair Francis <alistair.francis@xilinx.com>
472L: qemu-arm@nongnu.org
473S: Maintained
474F: hw/*/xilinx_*
475F: hw/*/cadence_*
476F: hw/misc/zynq_slcr.c
477X: hw/ssi/xilinx_*
478
479Xilinx ZynqMP
480M: Alistair Francis <alistair.francis@xilinx.com>
481M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
482L: qemu-arm@nongnu.org
483S: Maintained
484F: hw/*/xlnx*.c
485F: include/hw/*/xlnx*.h
486
487ARM ACPI Subsystem
488M: Shannon Zhao <zhaoshenglong@huawei.com>
489M: Shannon Zhao <shannon.zhao@linaro.org>
490L: qemu-arm@nongnu.org
491S: Maintained
492F: hw/arm/virt-acpi-build.c
493F: include/hw/arm/virt-acpi-build.h
494
495STM32F205
496M: Alistair Francis <alistair@alistair23.me>
497S: Maintained
498F: hw/arm/stm32f205_soc.c
499F: hw/misc/stm32f2xx_syscfg.c
500F: hw/char/stm32f2xx_usart.c
501F: hw/timer/stm32f2xx_timer.c
502F: hw/adc/*
503F: hw/ssi/stm32f2xx_spi.c
504
505Netduino 2
506M: Alistair Francis <alistair@alistair23.me>
507S: Maintained
508F: hw/arm/netduino2.c
509
510CRIS Machines
511-------------
512Axis Dev88
513M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
514S: Maintained
515F: hw/cris/axis_dev88.c
516F: hw/*/etraxfs_*.c
517
518LM32 Machines
519-------------
520EVR32 and uclinux BSP
521M: Michael Walle <michael@walle.cc>
522S: Maintained
523F: hw/lm32/lm32_boards.c
524
525milkymist
526M: Michael Walle <michael@walle.cc>
527S: Maintained
528F: hw/lm32/milkymist.c
529
530M68K Machines
531-------------
532an5206
533S: Orphan
534F: hw/m68k/an5206.c
535
536dummy_m68k
537S: Orphan
538F: hw/m68k/dummy_m68k.c
539
540mcf5208
541S: Orphan
542F: hw/m68k/mcf5208.c
543
544MicroBlaze Machines
545-------------------
546petalogix_s3adsp1800
547M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
548S: Maintained
549F: hw/microblaze/petalogix_s3adsp1800_mmu.c
550
551petalogix_ml605
552M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
553S: Maintained
554F: hw/microblaze/petalogix_ml605_mmu.c
555
556MIPS Machines
557-------------
558Jazz
559M: Hervé Poussineau <hpoussin@reactos.org>
560S: Maintained
561F: hw/mips/mips_jazz.c
562
563Malta
564M: Aurelien Jarno <aurelien@aurel32.net>
565S: Maintained
566F: hw/mips/mips_malta.c
567
568Mipssim
569L: qemu-devel@nongnu.org
570S: Orphan
571F: hw/mips/mips_mipssim.c
572
573R4000
574M: Aurelien Jarno <aurelien@aurel32.net>
575S: Maintained
576F: hw/mips/mips_r4k.c
577
578OpenRISC Machines
579-----------------
580or1k-sim
581M: Jia Liu <proljc@gmail.com>
582S: Maintained
583F: hw/openrisc/openrisc_sim.c
584
585PowerPC Machines
586----------------
587405
588M: Alexander Graf <agraf@suse.de>
589L: qemu-ppc@nongnu.org
590S: Odd Fixes
591F: hw/ppc/ppc405_boards.c
592
593Bamboo
594M: Alexander Graf <agraf@suse.de>
595L: qemu-ppc@nongnu.org
596S: Odd Fixes
597F: hw/ppc/ppc440_bamboo.c
598
599e500
600M: Alexander Graf <agraf@suse.de>
601M: Scott Wood <scottwood@freescale.com>
602L: qemu-ppc@nongnu.org
603S: Supported
604F: hw/ppc/e500.[hc]
605F: hw/ppc/e500plat.c
606F: include/hw/ppc/ppc_e500.h
607F: include/hw/pci-host/ppce500.h
608F: pc-bios/u-boot.e500
609
610mpc8544ds
611M: Alexander Graf <agraf@suse.de>
612M: Scott Wood <scottwood@freescale.com>
613L: qemu-ppc@nongnu.org
614S: Supported
615F: hw/ppc/mpc8544ds.c
616F: hw/ppc/mpc8544_guts.c
617
618New World
619M: Alexander Graf <agraf@suse.de>
620L: qemu-ppc@nongnu.org
621S: Maintained
622F: hw/ppc/mac_newworld.c
623F: hw/pci-host/uninorth.c
624F: hw/pci-bridge/dec.[hc]
625F: hw/misc/macio/
626F: include/hw/ppc/mac_dbdma.h
627F: hw/nvram/mac_nvram.c
628
629Old World
630M: Alexander Graf <agraf@suse.de>
631L: qemu-ppc@nongnu.org
632S: Maintained
633F: hw/ppc/mac_oldworld.c
634F: hw/pci-host/grackle.c
635F: hw/misc/macio/
636F: hw/intc/heathrow_pic.c
637
638PReP
639L: qemu-devel@nongnu.org
640L: qemu-ppc@nongnu.org
641S: Odd Fixes
642F: hw/ppc/prep.c
643F: hw/pci-host/prep.[hc]
644F: hw/isa/pc87312.[hc]
645F: pc-bios/ppc_rom.bin
646
647sPAPR
648M: David Gibson <david@gibson.dropbear.id.au>
649M: Alexander Graf <agraf@suse.de>
650L: qemu-ppc@nongnu.org
651S: Supported
652F: hw/*/spapr*
653F: include/hw/*/spapr*
654F: hw/*/xics*
655F: include/hw/*/xics*
656F: pc-bios/spapr-rtas/*
657F: pc-bios/spapr-rtas.bin
658F: pc-bios/slof.bin
659F: docs/specs/ppc-spapr-hcalls.txt
660F: docs/specs/ppc-spapr-hotplug.txt
661F: tests/spapr*
662F: tests/libqos/*spapr*
663F: tests/rtas*
664F: tests/libqos/rtas*
665
666virtex_ml507
667M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
668L: qemu-ppc@nongnu.org
669S: Odd Fixes
670F: hw/ppc/virtex_ml507.c
671
672SH4 Machines
673------------
674R2D
675M: Magnus Damm <magnus.damm@gmail.com>
676S: Maintained
677F: hw/sh4/r2d.c
678F: hw/intc/sh_intc.c
679F: hw/timer/sh_timer.c
680
681Shix
682M: Magnus Damm <magnus.damm@gmail.com>
683S: Odd Fixes
684F: hw/sh4/shix.c
685
686SPARC Machines
687--------------
688Sun4m
689M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
690S: Maintained
691F: hw/sparc/sun4m.c
692F: hw/dma/sparc32_dma.c
693F: hw/dma/sun4m_iommu.c
694F: include/hw/sparc/sparc32_dma.h
695F: include/hw/sparc/sun4m.h
696F: pc-bios/openbios-sparc32
697
698Sun4u
699M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
700S: Maintained
701F: hw/sparc64/sun4u.c
702F: pc-bios/openbios-sparc64
703
704Leon3
705M: Fabien Chouteau <chouteau@adacore.com>
706S: Maintained
707F: hw/sparc/leon3.c
708F: hw/*/grlib*
709F: include/hw/sparc/grlib.h
710
711S390 Machines
712-------------
713S390 Virtio-ccw
714M: Cornelia Huck <cornelia.huck@de.ibm.com>
715M: Christian Borntraeger <borntraeger@de.ibm.com>
716M: Alexander Graf <agraf@suse.de>
717S: Supported
718F: hw/char/sclp*.[hc]
719F: hw/s390x/
720F: include/hw/s390x/
721F: pc-bios/s390-ccw/
722F: hw/watchdog/wdt_diag288.c
723F: include/hw/watchdog/wdt_diag288.h
724F: pc-bios/s390-ccw.img
725F: default-configs/s390x-softmmu.mak
726T: git git://github.com/cohuck/qemu.git s390-next
727T: git git://github.com/borntraeger/qemu.git s390-next
728
729UniCore32 Machines
730-------------
731PKUnity-3 SoC initramfs-with-busybox
732M: Guan Xuetao <gxt@mprc.pku.edu.cn>
733S: Maintained
734F: hw/*/puv3*
735F: hw/unicore32/
736
737X86 Machines
738------------
739PC
740M: Michael S. Tsirkin <mst@redhat.com>
741S: Supported
742F: include/hw/i386/
743F: hw/i386/
744F: hw/pci-host/piix.c
745F: hw/pci-host/q35.c
746F: hw/pci-host/pam.c
747F: include/hw/pci-host/q35.h
748F: include/hw/pci-host/pam.h
749F: hw/isa/piix4.c
750F: hw/isa/lpc_ich9.c
751F: hw/i2c/smbus_ich9.c
752F: hw/acpi/piix4.c
753F: hw/acpi/ich9.c
754F: include/hw/acpi/ich9.h
755F: include/hw/acpi/piix4.h
756F: hw/misc/sga.c
757
758PC Chipset
759M: Michael S. Tsirkin <mst@redhat.com>
760M: Paolo Bonzini <pbonzini@redhat.com>
761S: Support
762F: hw/char/debugcon.c
763F: hw/char/parallel.c
764F: hw/char/serial*
765F: hw/dma/i8257*
766F: hw/i2c/pm_smbus.c
767F: hw/intc/apic*
768F: hw/intc/ioapic*
769F: hw/intc/i8259*
770F: hw/misc/debugexit.c
771F: hw/misc/pc-testdev.c
772F: hw/timer/hpet*
773F: hw/timer/i8254*
774F: hw/timer/mc146818rtc*
775F: include/hw/i2c/pm_smbus.h
776F: include/hw/timer/hpet.h
777F: include/hw/timer/i8254*
778F: include/hw/timer/mc146818rtc*
779
780Machine core
781M: Eduardo Habkost <ehabkost@redhat.com>
782M: Marcel Apfelbaum <marcel@redhat.com>
783S: Supported
784F: hw/core/machine.c
785F: include/hw/boards.h
786
787Xtensa Machines
788---------------
789sim
790M: Max Filippov <jcmvbkbc@gmail.com>
791S: Maintained
792F: hw/xtensa/sim.c
793
794XTFPGA (LX60, LX200, ML605, KC705)
795M: Max Filippov <jcmvbkbc@gmail.com>
796S: Maintained
797F: hw/xtensa/xtfpga.c
798F: hw/net/opencores_eth.c
799
800Devices
801-------
802EDU
803M: Jiri Slaby <jslaby@suse.cz>
804S: Maintained
805F: hw/misc/edu.c
806
807IDE
808M: John Snow <jsnow@redhat.com>
809L: qemu-block@nongnu.org
810S: Supported
811F: include/hw/ide.h
812F: include/hw/ide/
813F: hw/ide/
814F: hw/block/block.c
815F: hw/block/cdrom.c
816F: hw/block/hd-geometry.c
817F: tests/ide-test.c
818F: tests/ahci-test.c
819F: tests/libqos/ahci*
820T: git git://github.com/jnsnow/qemu.git ide
821
822Floppy
823M: John Snow <jsnow@redhat.com>
824L: qemu-block@nongnu.org
825S: Supported
826F: hw/block/fdc.c
827F: include/hw/block/fdc.h
828F: tests/fdc-test.c
829T: git git://github.com/jnsnow/qemu.git ide
830
831OMAP
832M: Peter Maydell <peter.maydell@linaro.org>
833S: Maintained
834F: hw/*/omap*
835F: include/hw/arm/omap.h
836
837IPack
838M: Alberto Garcia <berto@igalia.com>
839S: Odd Fixes
840F: hw/char/ipoctal232.c
841F: hw/ipack/
842
843PCI
844M: Michael S. Tsirkin <mst@redhat.com>
845M: Marcel Apfelbaum <marcel@redhat.com>
846S: Supported
847F: include/hw/pci/*
848F: hw/misc/pci-testdev.c
849F: hw/pci/*
850F: hw/pci-bridge/*
851
852ACPI/SMBIOS
853M: Michael S. Tsirkin <mst@redhat.com>
854M: Igor Mammedov <imammedo@redhat.com>
855S: Supported
856F: include/hw/acpi/*
857F: include/hw/smbios/*
858F: hw/mem/*
859F: hw/acpi/*
860F: hw/smbios/*
861F: hw/i386/acpi-build.[hc]
862F: hw/arm/virt-acpi-build.c
863F: include/hw/arm/virt-acpi-build.h
864
865ppc4xx
866M: Alexander Graf <agraf@suse.de>
867L: qemu-ppc@nongnu.org
868S: Odd Fixes
869F: hw/ppc/ppc4*.c
870F: include/hw/ppc/ppc4xx.h
871
872ppce500
873M: Alexander Graf <agraf@suse.de>
874M: Scott Wood <scottwood@freescale.com>
875L: qemu-ppc@nongnu.org
876S: Supported
877F: hw/ppc/e500*
878F: hw/pci-host/ppce500.c
879F: hw/net/fsl_etsec/
880
881Character devices
882M: Paolo Bonzini <pbonzini@redhat.com>
883S: Odd Fixes
884F: hw/char/
885
886Network devices
887M: Jason Wang <jasowang@redhat.com>
888S: Odd Fixes
889F: hw/net/
890F: tests/virtio-net-test.c
891T: git git://github.com/jasowang/qemu.git net
892
893SCSI
894M: Paolo Bonzini <pbonzini@redhat.com>
895S: Supported
896F: include/hw/scsi/*
897F: hw/scsi/*
898F: tests/virtio-scsi-test.c
899T: git git://github.com/bonzini/qemu.git scsi-next
900
901LSI53C895A
902S: Orphan
903F: hw/scsi/lsi53c895a.c
904
905SSI
906M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
907S: Maintained
908F: hw/ssi/*
909F: hw/block/m25p80.c
910X: hw/ssi/xilinx_*
911
912Xilinx SPI
913M: Alistair Francis <alistair.francis@xilinx.com>
914M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
915S: Maintained
916F: hw/ssi/xilinx_*
917
918USB
919M: Gerd Hoffmann <kraxel@redhat.com>
920S: Maintained
921F: hw/usb/*
922F: tests/usb-*-test.c
923F: docs/usb2.txt
924F: docs/usb-storage.txt
925F: include/hw/usb.h
926F: include/hw/usb/
927
928USB (serial adapter)
929M: Gerd Hoffmann <kraxel@redhat.com>
930M: Samuel Thibault <samuel.thibault@ens-lyon.org>
931S: Maintained
932F: hw/usb/dev-serial.c
933
934VFIO
935M: Alex Williamson <alex.williamson@redhat.com>
936S: Supported
937F: hw/vfio/*
938F: include/hw/vfio/
939
940vhost
941M: Michael S. Tsirkin <mst@redhat.com>
942S: Supported
943F: hw/*/*vhost*
944
945virtio
946M: Michael S. Tsirkin <mst@redhat.com>
947S: Supported
948F: hw/*/virtio*
949F: hw/virtio/Makefile.objs
950F: hw/virtio/trace-events
951F: net/vhost-user.c
952F: include/hw/virtio/
953F: tests/virtio-balloon-test.c
954
955virtio-9p
956M: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
957M: Greg Kurz <groug@kaod.org>
958S: Supported
959F: hw/9pfs/
960F: fsdev/
961F: tests/virtio-9p-test.c
962T: git git://github.com/kvaneesh/QEMU.git
963T: git git://github.com/gkurz/qemu.git 9p-next
964
965virtio-blk
966M: Stefan Hajnoczi <stefanha@redhat.com>
967L: qemu-block@nongnu.org
968S: Supported
969F: hw/block/virtio-blk.c
970F: hw/block/dataplane/*
971F: tests/virtio-blk-test.c
972T: git git://github.com/stefanha/qemu.git block
973
974virtio-ccw
975M: Cornelia Huck <cornelia.huck@de.ibm.com>
976M: Christian Borntraeger <borntraeger@de.ibm.com>
977S: Supported
978F: hw/s390x/virtio-ccw.[hc]
979T: git git://github.com/cohuck/qemu.git s390-next
980T: git git://github.com/borntraeger/qemu.git s390-next
981
982virtio-input
983M: Gerd Hoffmann <kraxel@redhat.com>
984S: Maintained
985F: hw/input/virtio-input*.c
986F: include/hw/virtio/virtio-input.h
987
988virtio-serial
989M: Amit Shah <amit.shah@redhat.com>
990S: Supported
991F: hw/char/virtio-serial-bus.c
992F: hw/char/virtio-console.c
993F: include/hw/virtio/virtio-serial.h
994F: tests/virtio-console-test.c
995F: tests/virtio-serial-test.c
996
997virtio-rng
998M: Amit Shah <amit.shah@redhat.com>
999S: Supported
1000F: hw/virtio/virtio-rng.c
1001F: include/hw/virtio/virtio-rng.h
1002F: include/sysemu/rng*.h
1003F: backends/rng*.c
1004F: tests/virtio-rng-test.c
1005
1006nvme
1007M: Keith Busch <keith.busch@intel.com>
1008L: qemu-block@nongnu.org
1009S: Supported
1010F: hw/block/nvme*
1011F: tests/nvme-test.c
1012
1013megasas
1014M: Hannes Reinecke <hare@suse.de>
1015L: qemu-block@nongnu.org
1016S: Supported
1017F: hw/scsi/megasas.c
1018F: hw/scsi/mfi.h
1019
1020Network packet abstractions
1021M: Dmitry Fleytman <dmitry@daynix.com>
1022S: Maintained
1023F: include/net/eth.h
1024F: net/eth.c
1025F: hw/net/net_rx_pkt*
1026F: hw/net/net_tx_pkt*
1027
1028Vmware
1029M: Dmitry Fleytman <dmitry@daynix.com>
1030S: Maintained
1031F: hw/net/vmxnet*
1032F: hw/scsi/vmw_pvscsi*
1033
1034Rocker
1035M: Jiri Pirko <jiri@resnulli.us>
1036S: Maintained
1037F: hw/net/rocker/
1038F: tests/rocker/
1039F: docs/specs/rocker.txt
1040
1041NVDIMM
1042M: Xiao Guangrong <guangrong.xiao@linux.intel.com>
1043S: Maintained
1044F: hw/acpi/nvdimm.c
1045F: hw/mem/nvdimm.c
1046F: include/hw/mem/nvdimm.h
1047
1048e1000x
1049M: Dmitry Fleytman <dmitry@daynix.com>
1050S: Maintained
1051F: hw/net/e1000x*
1052
1053e1000e
1054M: Dmitry Fleytman <dmitry@daynix.com>
1055S: Maintained
1056F: hw/net/e1000e*
1057
1058Generic Loader
1059M: Alistair Francis <alistair.francis@xilinx.com>
1060S: Maintained
1061F: hw/core/generic-loader.c
1062F: include/hw/core/generic-loader.h
1063
1064Subsystems
1065----------
1066Audio
1067M: Gerd Hoffmann <kraxel@redhat.com>
1068S: Maintained
1069F: audio/
1070F: hw/audio/
1071F: include/hw/audio/
1072F: tests/ac97-test.c
1073F: tests/es1370-test.c
1074F: tests/intel-hda-test.c
1075
1076Block layer core
1077M: Kevin Wolf <kwolf@redhat.com>
1078M: Max Reitz <mreitz@redhat.com>
1079L: qemu-block@nongnu.org
1080S: Supported
1081F: block*
1082F: block/
1083F: hw/block/
1084F: include/block/
1085F: qemu-img*
1086F: qemu-io*
1087F: tests/qemu-iotests/
1088T: git git://repo.or.cz/qemu/kevin.git block
1089
1090Block I/O path
1091M: Stefan Hajnoczi <stefanha@redhat.com>
1092M: Fam Zheng <famz@redhat.com>
1093L: qemu-block@nongnu.org
1094S: Supported
1095F: async.c
1096F: aio-*.c
1097F: block/io.c
1098F: migration/block*
1099F: include/block/aio.h
1100T: git git://github.com/stefanha/qemu.git block
1101
1102Block Jobs
1103M: Jeff Cody <jcody@redhat.com>
1104L: qemu-block@nongnu.org
1105S: Supported
1106F: blockjob.c
1107F: include/block/blockjob.h
1108F: block/backup.c
1109F: block/commit.c
1110F: block/stream.c
1111F: block/mirror.c
1112T: git git://github.com/codyprime/qemu-kvm-jtc.git block
1113
1114Block QAPI, monitor, command line
1115M: Markus Armbruster <armbru@redhat.com>
1116S: Supported
1117F: blockdev.c
1118F: block/qapi.c
1119F: qapi/block*.json
1120T: git git://repo.or.cz/qemu/armbru.git block-next
1121
1122Character device backends
1123M: Paolo Bonzini <pbonzini@redhat.com>
1124S: Maintained
1125F: qemu-char.c
1126F: backends/msmouse.c
1127F: backends/testdev.c
1128
1129Character Devices (Braille)
1130M: Samuel Thibault <samuel.thibault@ens-lyon.org>
1131S: Maintained
1132F: backends/baum.c
1133
1134Coverity model
1135M: Markus Armbruster <armbru@redhat.com>
1136S: Supported
1137F: scripts/coverity-model.c
1138
1139CPU
1140L: qemu-devel@nongnu.org
1141S: Supported
1142F: qom/cpu.c
1143F: include/qom/cpu.h
1144
1145Device Tree
1146M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
1147M: Alexander Graf <agraf@suse.de>
1148S: Maintained
1149F: device_tree.c
1150F: include/sysemu/device_tree.h
1151
1152Error reporting
1153M: Markus Armbruster <armbru@redhat.com>
1154S: Supported
1155F: include/qapi/error.h
1156F: include/qemu/error-report.h
1157F: util/error.c
1158F: util/qemu-error.c
1159
1160GDB stub
1161L: qemu-devel@nongnu.org
1162S: Odd Fixes
1163F: gdbstub*
1164F: gdb-xml/
1165
1166Memory API
1167M: Paolo Bonzini <pbonzini@redhat.com>
1168S: Supported
1169F: include/exec/ioport.h
1170F: ioport.c
1171F: include/exec/memory.h
1172F: include/exec/ram_addr.h
1173F: memory.c
1174F: include/exec/memory-internal.h
1175F: exec.c
1176
1177SPICE
1178M: Gerd Hoffmann <kraxel@redhat.com>
1179S: Supported
1180F: include/ui/qemu-spice.h
1181F: include/ui/spice-display.h
1182F: ui/spice-*.c
1183F: audio/spiceaudio.c
1184F: hw/display/qxl*
1185
1186Graphics
1187M: Gerd Hoffmann <kraxel@redhat.com>
1188S: Odd Fixes
1189F: ui/
1190F: include/ui/
1191
1192Cocoa graphics
1193M: Peter Maydell <peter.maydell@linaro.org>
1194S: Odd Fixes
1195F: ui/cocoa.m
1196
1197Main loop
1198M: Paolo Bonzini <pbonzini@redhat.com>
1199S: Maintained
1200F: cpus.c
1201F: main-loop.c
1202F: qemu-timer.c
1203F: vl.c
1204
1205Human Monitor (HMP)
1206M: Dr. David Alan Gilbert <dgilbert@redhat.com>
1207S: Maintained
1208F: monitor.c
1209F: hmp.[ch]
1210F: hmp-commands*.hx
1211F: include/monitor/hmp-target.h
1212
1213Network device backends
1214M: Jason Wang <jasowang@redhat.com>
1215S: Maintained
1216F: net/
1217F: include/net/
1218T: git git://github.com/jasowang/qemu.git net
1219
1220Netmap network backend
1221M: Luigi Rizzo <rizzo@iet.unipi.it>
1222M: Giuseppe Lettieri <g.lettieri@iet.unipi.it>
1223M: Vincenzo Maffione <v.maffione@gmail.com>
1224W: http://info.iet.unipi.it/~luigi/netmap/
1225S: Maintained
1226F: net/netmap.c
1227
1228Network Block Device (NBD)
1229M: Paolo Bonzini <pbonzini@redhat.com>
1230S: Odd Fixes
1231F: block/nbd*
1232F: nbd/
1233F: include/block/nbd*
1234F: qemu-nbd.c
1235T: git git://github.com/bonzini/qemu.git nbd-next
1236
1237NUMA
1238M: Eduardo Habkost <ehabkost@redhat.com>
1239S: Maintained
1240F: numa.c
1241F: include/sysemu/numa.h
1242T: git git://github.com/ehabkost/qemu.git numa
1243
1244Host Memory Backends
1245M: Eduardo Habkost <ehabkost@redhat.com>
1246M: Igor Mammedov <imammedo@redhat.com>
1247S: Maintained
1248F: backends/hostmem*.c
1249F: include/sysemu/hostmem.h
1250
1251QAPI
1252M: Markus Armbruster <armbru@redhat.com>
1253M: Michael Roth <mdroth@linux.vnet.ibm.com>
1254S: Supported
1255F: qapi/
1256X: qapi/*.json
1257F: include/qapi/
1258X: include/qapi/qmp/
1259F: include/qapi/qmp/dispatch.h
1260F: tests/qapi-schema/
1261F: tests/test-*-visitor.c
1262F: tests/test-qmp-*.c
1263F: scripts/qapi*
1264F: docs/qapi*
1265T: git git://repo.or.cz/qemu/armbru.git qapi-next
1266
1267QAPI Schema
1268M: Eric Blake <eblake@redhat.com>
1269M: Markus Armbruster <armbru@redhat.com>
1270S: Supported
1271F: qapi-schema.json
1272F: qapi/*.json
1273T: git git://repo.or.cz/qemu/armbru.git qapi-next
1274
1275QObject
1276M: Markus Armbruster <armbru@redhat.com>
1277S: Supported
1278F: qobject/
1279F: include/qapi/qmp/
1280X: include/qapi/qmp/dispatch.h
1281F: tests/check-qdict.c
1282F: tests/check-qfloat.c
1283F: tests/check-qint.c
1284F: tests/check-qjson.c
1285F: tests/check-qlist.c
1286F: tests/check-qstring.c
1287T: git git://repo.or.cz/qemu/armbru.git qapi-next
1288
1289QEMU Guest Agent
1290M: Michael Roth <mdroth@linux.vnet.ibm.com>
1291S: Maintained
1292F: qga/
1293T: git git://github.com/mdroth/qemu.git qga
1294
1295QOM
1296M: Andreas Färber <afaerber@suse.de>
1297S: Supported
1298T: git git://github.com/afaerber/qemu-cpu.git qom-next
1299F: include/qom/
1300X: include/qom/cpu.h
1301F: qom/
1302X: qom/cpu.c
1303F: tests/check-qom-interface.c
1304F: tests/check-qom-proplist.c
1305F: tests/qom-test.c
1306
1307QMP
1308M: Markus Armbruster <armbru@redhat.com>
1309S: Supported
1310F: qmp.c
1311F: monitor.c
1312F: docs/*qmp-*
1313F: scripts/qmp/
1314T: git git://repo.or.cz/qemu/armbru.git qapi-next
1315
1316Register API
1317M: Alistair Francis <alistair.francis@xilinx.com>
1318S: Maintained
1319F: hw/core/register.c
1320F: include/hw/register.h
1321
1322SLIRP
1323M: Samuel Thibault <samuel.thibault@ens-lyon.org>
1324M: Jan Kiszka <jan.kiszka@siemens.com>
1325S: Maintained
1326F: slirp/
1327F: net/slirp.c
1328F: include/net/slirp.h
1329T: git git://git.kiszka.org/qemu.git queues/slirp
1330
1331Stubs
1332M: Paolo Bonzini <pbonzini@redhat.com>
1333S: Maintained
1334F: stubs/
1335
1336Tracing
1337M: Stefan Hajnoczi <stefanha@redhat.com>
1338S: Maintained
1339F: trace/
1340F: scripts/tracetool.py
1341F: scripts/tracetool/
1342F: docs/tracing.txt
1343T: git git://github.com/stefanha/qemu.git tracing
1344
1345Checkpatch
1346S: Odd Fixes
1347F: scripts/checkpatch.pl
1348
1349Migration
1350M: Juan Quintela <quintela@redhat.com>
1351M: Amit Shah <amit.shah@redhat.com>
1352S: Maintained
1353F: include/migration/
1354F: migration/
1355F: scripts/vmstate-static-checker.py
1356F: tests/vmstate-static-checker-data/
1357F: docs/migration.txt
1358
1359Seccomp
1360M: Eduardo Otubo <eduardo.otubo@profitbricks.com>
1361S: Supported
1362F: qemu-seccomp.c
1363F: include/sysemu/seccomp.h
1364
1365Cryptography
1366M: Daniel P. Berrange <berrange@redhat.com>
1367S: Maintained
1368F: crypto/
1369F: include/crypto/
1370F: tests/test-crypto-*
1371
1372Coroutines
1373M: Stefan Hajnoczi <stefanha@redhat.com>
1374M: Kevin Wolf <kwolf@redhat.com>
1375F: util/*coroutine*
1376F: include/qemu/coroutine*
1377F: tests/test-coroutine.c
1378
1379Buffers
1380M: Daniel P. Berrange <berrange@redhat.com>
1381S: Odd fixes
1382F: util/buffer.c
1383F: include/qemu/buffer.h
1384
1385I/O Channels
1386M: Daniel P. Berrange <berrange@redhat.com>
1387S: Maintained
1388F: io/
1389F: include/io/
1390F: tests/test-io-*
1391
1392Sockets
1393M: Daniel P. Berrange <berrange@redhat.com>
1394M: Gerd Hoffmann <kraxel@redhat.com>
1395M: Paolo Bonzini <pbonzini@redhat.com>
1396S: Maintained
1397F: include/qemu/sockets.h
1398F: util/qemu-sockets.c
1399
1400Throttling infrastructure
1401M: Alberto Garcia <berto@igalia.com>
1402S: Supported
1403F: block/throttle-groups.c
1404F: include/block/throttle-groups.h
1405F: include/qemu/throttle.h
1406F: util/throttle.c
1407L: qemu-block@nongnu.org
1408
1409UUID
1410M: Fam Zheng <famz@redhat.com>
1411S: Supported
1412F: util/uuid.c
1413F: include/qemu/uuid.h
1414F: tests/test-uuid.c
1415
1416COLO Proxy
1417M: Zhang Chen <zhangchen.fnst@cn.fujitsu.com>
1418M: Li Zhijian <lizhijian@cn.fujitsu.com>
1419S: Supported
1420F: docs/colo-proxy.txt
1421F: net/colo*
1422F: net/filter-rewriter.c
1423F: net/filter-mirror.c
1424
1425Usermode Emulation
1426------------------
1427Overall
1428M: Riku Voipio <riku.voipio@iki.fi>
1429S: Maintained
1430F: thunk.c
1431F: user-exec.c
1432
1433BSD user
1434S: Orphan
1435F: bsd-user/
1436F: default-configs/*-bsd-user.mak
1437
1438Linux user
1439M: Riku Voipio <riku.voipio@iki.fi>
1440S: Maintained
1441F: linux-user/
1442F: default-configs/*-linux-user.mak
1443
1444Tiny Code Generator (TCG)
1445-------------------------
1446Common code
1447M: Richard Henderson <rth@twiddle.net>
1448S: Maintained
1449F: tcg/
1450
1451AArch64 target
1452M: Claudio Fontana <claudio.fontana@huawei.com>
1453M: Claudio Fontana <claudio.fontana@gmail.com>
1454S: Maintained
1455L: qemu-arm@nongnu.org
1456F: tcg/aarch64/
1457F: disas/arm-a64.cc
1458F: disas/libvixl/
1459
1460ARM target
1461M: Andrzej Zaborowski <balrogg@gmail.com>
1462S: Maintained
1463L: qemu-arm@nongnu.org
1464F: tcg/arm/
1465F: disas/arm.c
1466
1467i386 target
1468L: qemu-devel@nongnu.org
1469S: Maintained
1470F: tcg/i386/
1471F: disas/i386.c
1472
1473IA64 target
1474M: Aurelien Jarno <aurelien@aurel32.net>
1475S: Maintained
1476F: tcg/ia64/
1477F: disas/ia64.c
1478
1479MIPS target
1480M: Aurelien Jarno <aurelien@aurel32.net>
1481S: Maintained
1482F: tcg/mips/
1483F: disas/mips.c
1484
1485PPC
1486M: Vassili Karpov (malc) <av1474@comtv.ru>
1487S: Maintained
1488F: tcg/ppc/
1489F: disas/ppc.c
1490
1491S390 target
1492M: Alexander Graf <agraf@suse.de>
1493M: Richard Henderson <rth@twiddle.net>
1494S: Maintained
1495F: tcg/s390/
1496F: disas/s390.c
1497
1498SPARC target
1499S: Odd Fixes
1500F: tcg/sparc/
1501F: disas/sparc.c
1502
1503TCI target
1504M: Stefan Weil <sw@weilnetz.de>
1505S: Maintained
1506F: tcg/tci/
1507F: tci.c
1508F: disas/tci.c
1509
1510Stable branches
1511---------------
1512Stable 1.0
1513L: qemu-stable@nongnu.org
1514T: git git://git.qemu-project.org/qemu-stable-1.0.git
1515S: Orphan
1516
1517Stable 0.15
1518L: qemu-stable@nongnu.org
1519T: git git://git.qemu-project.org/qemu-stable-0.15.git
1520S: Orphan
1521
1522Stable 0.14
1523L: qemu-stable@nongnu.org
1524T: git git://git.qemu-project.org/qemu-stable-0.14.git
1525S: Orphan
1526
1527Stable 0.10
1528L: qemu-stable@nongnu.org
1529T: git git://git.qemu-project.org/qemu-stable-0.10.git
1530S: Orphan
1531
1532Block drivers
1533-------------
1534VMDK
1535M: Fam Zheng <famz@redhat.com>
1536L: qemu-block@nongnu.org
1537S: Supported
1538F: block/vmdk.c
1539
1540RBD
1541M: Josh Durgin <jdurgin@redhat.com>
1542M: Jeff Cody <jcody@redhat.com>
1543L: qemu-block@nongnu.org
1544S: Supported
1545F: block/rbd.c
1546T: git git://github.com/codyprime/qemu-kvm-jtc.git block
1547
1548Sheepdog
1549M: Hitoshi Mitake <mitake.hitoshi@lab.ntt.co.jp>
1550M: Liu Yuan <namei.unix@gmail.com>
1551M: Jeff Cody <jcody@redhat.com>
1552L: qemu-block@nongnu.org
1553L: sheepdog@lists.wpkg.org
1554S: Supported
1555F: block/sheepdog.c
1556T: git git://github.com/codyprime/qemu-kvm-jtc.git block
1557
1558VHDX
1559M: Jeff Cody <jcody@redhat.com>
1560L: qemu-block@nongnu.org
1561S: Supported
1562F: block/vhdx*
1563T: git git://github.com/codyprime/qemu-kvm-jtc.git block
1564
1565VDI
1566M: Stefan Weil <sw@weilnetz.de>
1567L: qemu-block@nongnu.org
1568S: Maintained
1569F: block/vdi.c
1570
1571iSCSI
1572M: Ronnie Sahlberg <ronniesahlberg@gmail.com>
1573M: Paolo Bonzini <pbonzini@redhat.com>
1574M: Peter Lieven <pl@kamp.de>
1575L: qemu-block@nongnu.org
1576S: Supported
1577F: block/iscsi.c
1578
1579NFS
1580M: Jeff Cody <jcody@redhat.com>
1581M: Peter Lieven <pl@kamp.de>
1582L: qemu-block@nongnu.org
1583S: Maintained
1584F: block/nfs.c
1585T: git git://github.com/codyprime/qemu-kvm-jtc.git block
1586
1587SSH
1588M: Richard W.M. Jones <rjones@redhat.com>
1589M: Jeff Cody <jcody@redhat.com>
1590L: qemu-block@nongnu.org
1591S: Supported
1592F: block/ssh.c
1593T: git git://github.com/codyprime/qemu-kvm-jtc.git block
1594
1595ARCHIPELAGO
1596M: Chrysostomos Nanakos <chris@include.gr>
1597M: Jeff Cody <jcody@redhat.com>
1598L: qemu-block@nongnu.org
1599S: Maintained
1600F: block/archipelago.c
1601T: git git://github.com/codyprime/qemu-kvm-jtc.git block
1602
1603CURL
1604M: Jeff Cody <jcody@redhat.com>
1605L: qemu-block@nongnu.org
1606S: Supported
1607F: block/curl.c
1608T: git git://github.com/codyprime/qemu-kvm-jtc.git block
1609
1610GLUSTER
1611M: Jeff Cody <jcody@redhat.com>
1612L: qemu-block@nongnu.org
1613S: Supported
1614F: block/gluster.c
1615T: git git://github.com/codyprime/qemu-kvm-jtc.git block
1616
1617Null Block Driver
1618M: Fam Zheng <famz@redhat.com>
1619L: qemu-block@nongnu.org
1620S: Supported
1621F: block/null.c
1622
1623Bootdevice
1624M: Gonglei <arei.gonglei@huawei.com>
1625S: Maintained
1626F: bootdevice.c
1627
1628Quorum
1629M: Alberto Garcia <berto@igalia.com>
1630S: Supported
1631F: block/quorum.c
1632L: qemu-block@nongnu.org
1633
1634blkverify
1635M: Stefan Hajnoczi <stefanha@redhat.com>
1636L: qemu-block@nongnu.org
1637S: Supported
1638F: block/blkverify.c
1639
1640bochs
1641M: Stefan Hajnoczi <stefanha@redhat.com>
1642L: qemu-block@nongnu.org
1643S: Supported
1644F: block/bochs.c
1645
1646cloop
1647M: Stefan Hajnoczi <stefanha@redhat.com>
1648L: qemu-block@nongnu.org
1649S: Supported
1650F: block/cloop.c
1651
1652dmg
1653M: Stefan Hajnoczi <stefanha@redhat.com>
1654L: qemu-block@nongnu.org
1655S: Supported
1656F: block/dmg.c
1657
1658parallels
1659M: Stefan Hajnoczi <stefanha@redhat.com>
1660M: Denis V. Lunev <den@openvz.org>
1661L: qemu-block@nongnu.org
1662S: Supported
1663F: block/parallels.c
1664F: docs/specs/parallels.txt
1665
1666qed
1667M: Stefan Hajnoczi <stefanha@redhat.com>
1668L: qemu-block@nongnu.org
1669S: Supported
1670F: block/qed.c
1671
1672raw
1673M: Kevin Wolf <kwolf@redhat.com>
1674L: qemu-block@nongnu.org
1675S: Supported
1676F: block/linux-aio.c
1677F: include/block/raw-aio.h
1678F: block/raw-posix.c
1679F: block/raw-win32.c
1680F: block/raw_bsd.c
1681F: block/win32-aio.c
1682
1683qcow2
1684M: Kevin Wolf <kwolf@redhat.com>
1685M: Max Reitz <mreitz@redhat.com>
1686L: qemu-block@nongnu.org
1687S: Supported
1688F: block/qcow2*
1689
1690qcow
1691M: Kevin Wolf <kwolf@redhat.com>
1692L: qemu-block@nongnu.org
1693S: Supported
1694F: block/qcow.c
1695
1696blkdebug
1697M: Kevin Wolf <kwolf@redhat.com>
1698M: Max Reitz <mreitz@redhat.com>
1699L: qemu-block@nongnu.org
1700S: Supported
1701F: block/blkdebug.c
1702
1703vpc
1704M: Kevin Wolf <kwolf@redhat.com>
1705L: qemu-block@nongnu.org
1706S: Supported
1707F: block/vpc.c
1708
1709vvfat
1710M: Kevin Wolf <kwolf@redhat.com>
1711L: qemu-block@nongnu.org
1712S: Supported
1713F: block/vvfat.c
1714
1715Image format fuzzer
1716M: Stefan Hajnoczi <stefanha@redhat.com>
1717L: qemu-block@nongnu.org
1718S: Supported
1719F: tests/image-fuzzer/
1720
1721Replication
1722M: Wen Congyang <wency@cn.fujitsu.com>
1723M: Changlong Xie <xiecl.fnst@cn.fujitsu.com>
1724S: Supported
1725F: replication*
1726F: block/replication.c
1727F: tests/test-replication.c
1728F: docs/block-replication.txt
1729
1730Build and test automation
1731-------------------------
1732M: Alex Bennée <alex.bennee@linaro.org>
1733L: qemu-devel@nongnu.org
1734S: Supported
1735F: .travis.yml
1736
1737Documentation
1738-------------
1739Build system architecture
1740M: Daniel P. Berrange <berrange@redhat.com>
1741S: Odd Fixes
1742F: docs/build-system.txt
1743
1744Docker testing
1745--------------
1746Docker based testing framework and cases
1747M: Fam Zheng <famz@redhat.com>
1748S: Maintained
1749F: tests/docker/
1750