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