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