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: Anthony Liguori <aliguori@amazon.com> 54 55Guest CPU cores (TCG): 56---------------------- 57Alpha 58M: Richard Henderson <rth@twiddle.net> 59S: Maintained 60F: target-alpha/ 61F: hw/alpha/ 62 63ARM 64M: Peter Maydell <peter.maydell@linaro.org> 65S: Maintained 66F: target-arm/ 67F: hw/arm/ 68F: hw/cpu/a*mpcore.c 69 70CRIS 71M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 72S: Maintained 73F: target-cris/ 74F: hw/cris/ 75 76LM32 77M: Michael Walle <michael@walle.cc> 78S: Maintained 79F: target-lm32/ 80F: hw/lm32/ 81F: hw/char/lm32_* 82 83M68K 84S: Orphan 85F: target-m68k/ 86F: hw/m68k/ 87 88MicroBlaze 89M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 90S: Maintained 91F: target-microblaze/ 92F: hw/microblaze/ 93 94MIPS 95M: Aurelien Jarno <aurelien@aurel32.net> 96S: Odd Fixes 97F: target-mips/ 98F: hw/mips/ 99 100Moxie 101M: Anthony Green <green@moxielogic.com> 102S: Maintained 103F: target-moxie/ 104 105OpenRISC 106M: Jia Liu <proljc@gmail.com> 107S: Maintained 108F: target-openrisc/ 109F: hw/openrisc/ 110 111PowerPC 112M: Alexander Graf <agraf@suse.de> 113L: qemu-ppc@nongnu.org 114S: Maintained 115F: target-ppc/ 116F: hw/ppc/ 117 118S390 119M: Richard Henderson <rth@twiddle.net> 120M: Alexander Graf <agraf@suse.de> 121S: Maintained 122F: target-s390x/ 123F: hw/s390x/ 124 125SH4 126M: Aurelien Jarno <aurelien@aurel32.net> 127S: Odd Fixes 128F: target-sh4/ 129F: hw/sh4/ 130 131SPARC 132M: Blue Swirl <blauwirbel@gmail.com> 133S: Maintained 134F: target-sparc/ 135F: hw/sparc/ 136F: hw/sparc64/ 137 138UniCore32 139M: Guan Xuetao <gxt@mprc.pku.edu.cn> 140S: Maintained 141F: target-unicore32/ 142F: hw/unicore32/ 143 144X86 145M: qemu-devel@nongnu.org 146S: Odd Fixes 147F: target-i386/ 148F: hw/i386/ 149 150Xtensa 151M: Max Filippov <jcmvbkbc@gmail.com> 152W: http://wiki.osll.spb.ru/doku.php?id=etc:users:jcmvbkbc:qemu-target-xtensa 153S: Maintained 154F: target-xtensa/ 155F: hw/xtensa/ 156 157Guest CPU Cores (KVM): 158---------------------- 159 160Overall 161M: Paolo Bonzini <pbonzini@redhat.com> 162L: kvm@vger.kernel.org 163S: Supported 164F: kvm-* 165F: */kvm.* 166 167ARM 168M: Peter Maydell <peter.maydell@linaro.org> 169S: Maintained 170F: target-arm/kvm.c 171 172PPC 173M: Alexander Graf <agraf@suse.de> 174S: Maintained 175F: target-ppc/kvm.c 176 177S390 178M: Christian Borntraeger <borntraeger@de.ibm.com> 179M: Cornelia Huck <cornelia.huck@de.ibm.com> 180M: Alexander Graf <agraf@suse.de> 181S: Maintained 182F: target-s390x/kvm.c 183F: hw/intc/s390_flic.[hc] 184 185X86 186M: Marcelo Tosatti <mtosatti@redhat.com> 187L: kvm@vger.kernel.org 188S: Supported 189F: target-i386/kvm.c 190 191Guest CPU Cores (Xen): 192---------------------- 193 194X86 195M: Stefano Stabellini <stefano.stabellini@eu.citrix.com> 196L: xen-devel@lists.xensource.com 197S: Supported 198F: xen-* 199F: */xen* 200 201Hosts: 202------ 203 204LINUX 205L: qemu-devel@nongnu.org 206S: Maintained 207F: linux-* 208F: linux-headers/ 209 210POSIX 211L: qemu-devel@nongnu.org 212S: Maintained 213F: *posix* 214 215W32, W64 216L: qemu-devel@nongnu.org 217M: Stefan Weil <sw@weilnetz.de> 218S: Maintained 219F: *win32* 220 221ARM Machines 222------------ 223Allwinner-a10 224M: Li Guang <lig.fnst@cn.fujitsu.com> 225S: Maintained 226F: hw/*/allwinner-a10* 227F: include/hw/*/allwinner-a10* 228F: hw/arm/cubieboard.c 229 230Exynos 231M: Evgeny Voevodin <e.voevodin@samsung.com> 232M: Maksim Kozlov <m.kozlov@samsung.com> 233M: Igor Mitsyanko <i.mitsyanko@gmail.com> 234M: Dmitry Solodkiy <d.solodkiy@samsung.com> 235S: Maintained 236F: hw/*/exynos* 237 238Calxeda Highbank 239M: Mark Langsdorf <mark.langsdorf@calxeda.com> 240S: Supported 241F: hw/arm/highbank.c 242F: hw/net/xgmac.c 243 244Canon DIGIC 245M: Antony Pavlov <antonynpavlov@gmail.com> 246S: Maintained 247F: include/hw/arm/digic.h 248F: hw/*/digic* 249 250Gumstix 251M: qemu-devel@nongnu.org 252S: Orphan 253F: hw/arm/gumstix.c 254 255i.MX31 256M: Peter Chubb <peter.chubb@nicta.com.au> 257S: Odd fixes 258F: hw/*/imx* 259F: hw/arm/kzm.c 260 261Integrator CP 262M: Peter Maydell <peter.maydell@linaro.org> 263S: Maintained 264F: hw/arm/integratorcp.c 265 266Mainstone 267M: qemu-devel@nongnu.org 268S: Orphan 269F: hw/arm/mainstone.c 270 271Musicpal 272M: Jan Kiszka <jan.kiszka@web.de> 273S: Maintained 274F: hw/arm/musicpal.c 275 276nSeries 277M: Andrzej Zaborowski <balrogg@gmail.com> 278S: Maintained 279F: hw/arm/nseries.c 280 281Palm 282M: Andrzej Zaborowski <balrogg@gmail.com> 283S: Maintained 284F: hw/arm/palm.c 285 286Real View 287M: Peter Maydell <peter.maydell@linaro.org> 288S: Maintained 289F: hw/arm/realview* 290 291Spitz 292M: Andrzej Zaborowski <balrogg@gmail.com> 293S: Maintained 294F: hw/arm/spitz.c 295 296Stellaris 297M: Peter Maydell <peter.maydell@linaro.org> 298S: Maintained 299F: hw/*/stellaris* 300 301Versatile PB 302M: Peter Maydell <peter.maydell@linaro.org> 303S: Maintained 304F: hw/*/versatile* 305 306Xilinx Zynq 307M: Peter Crosthwaite <peter.crosthwaite@xilinx.com> 308S: Maintained 309F: hw/arm/xilinx_zynq.c 310F: hw/misc/zynq_slcr.c 311F: hw/*/cadence_* 312F: hw/ssi/xilinx_spips.c 313 314CRIS Machines 315------------- 316Axis Dev88 317M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 318S: Maintained 319F: hw/cris/axis_dev88.c 320F: hw/*/etraxfs_*.c 321 322LM32 Machines 323------------- 324EVR32 and uclinux BSP 325M: Michael Walle <michael@walle.cc> 326S: Maintained 327F: hw/lm32/lm32_boards.c 328 329milkymist 330M: Michael Walle <michael@walle.cc> 331S: Maintained 332F: hw/lm32/milkymist.c 333 334M68K Machines 335------------- 336an5206 337S: Orphan 338F: hw/m68k/an5206.c 339 340dummy_m68k 341S: Orphan 342F: hw/m68k/dummy_m68k.c 343 344mcf5208 345S: Orphan 346F: hw/m68k/mcf5208.c 347 348MicroBlaze Machines 349------------------- 350petalogix_s3adsp1800 351M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 352S: Maintained 353F: hw/microblaze/petalogix_s3adsp1800_mmu.c 354 355petalogix_ml605 356M: Peter Crosthwaite <peter.crosthwaite@xilinx.com> 357S: Maintained 358F: hw/microblaze/petalogix_ml605_mmu.c 359 360MIPS Machines 361------------- 362Jazz 363M: Hervé Poussineau <hpoussin@reactos.org> 364S: Maintained 365F: hw/mips/mips_jazz.c 366 367Malta 368M: Aurelien Jarno <aurelien@aurel32.net> 369S: Maintained 370F: hw/mips/mips_malta.c 371 372Mipssim 373M: qemu-devel@nongnu.org 374S: Orphan 375F: hw/mips/mips_mipssim.c 376 377R4000 378M: Aurelien Jarno <aurelien@aurel32.net> 379S: Maintained 380F: hw/mips/mips_r4k.c 381 382OpenRISC Machines 383----------------- 384or1k-sim 385M: Jia Liu <proljc@gmail.com> 386S: Maintained 387F: hw/openrisc/openrisc_sim.c 388 389PowerPC Machines 390---------------- 391405 392M: Alexander Graf <agraf@suse.de> 393L: qemu-ppc@nongnu.org 394S: Odd Fixes 395F: hw/ppc/ppc405_boards.c 396 397Bamboo 398M: Alexander Graf <agraf@suse.de> 399L: qemu-ppc@nongnu.org 400S: Odd Fixes 401F: hw/ppc/ppc440_bamboo.c 402 403e500 404M: Alexander Graf <agraf@suse.de> 405M: Scott Wood <scottwood@freescale.com> 406L: qemu-ppc@nongnu.org 407S: Supported 408F: hw/ppc/e500.[hc] 409F: hw/ppc/e500plat.c 410 411mpc8544ds 412M: Alexander Graf <agraf@suse.de> 413M: Scott Wood <scottwood@freescale.com> 414L: qemu-ppc@nongnu.org 415S: Supported 416F: hw/ppc/mpc8544ds.c 417F: hw/ppc/mpc8544_guts.c 418 419New World 420M: Alexander Graf <agraf@suse.de> 421L: qemu-ppc@nongnu.org 422S: Maintained 423F: hw/ppc/mac_newworld.c 424F: hw/pci-host/uninorth.c 425F: hw/pci-bridge/dec.[hc] 426F: hw/misc/macio/ 427 428Old World 429M: Alexander Graf <agraf@suse.de> 430L: qemu-ppc@nongnu.org 431S: Maintained 432F: hw/ppc/mac_oldworld.c 433F: hw/pci-host/grackle.c 434F: hw/misc/macio/ 435 436PReP 437M: Andreas Färber <andreas.faerber@web.de> 438L: qemu-ppc@nongnu.org 439S: Odd Fixes 440F: hw/ppc/prep.c 441F: hw/pci-host/prep.[hc] 442F: hw/isa/pc87312.[hc] 443 444sPAPR 445M: Alexander Graf <agraf@suse.de> 446L: qemu-ppc@nongnu.org 447S: Supported 448F: hw/*/spapr* 449F: include/hw/*/spapr* 450F: hw/*/xics* 451F: include/hw/*/xics* 452F: pc-bios/spapr-rtas/* 453 454virtex_ml507 455M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 456L: qemu-ppc@nongnu.org 457S: Odd Fixes 458F: hw/ppc/virtex_ml507.c 459 460SH4 Machines 461------------ 462R2D 463M: Magnus Damm <magnus.damm@gmail.com> 464S: Maintained 465F: hw/sh4/r2d.c 466 467Shix 468M: Magnus Damm <magnus.damm@gmail.com> 469S: Orphan 470F: hw/sh4/shix.c 471 472SPARC Machines 473-------------- 474Sun4m 475M: Blue Swirl <blauwirbel@gmail.com> 476S: Maintained 477F: hw/sparc/sun4m.c 478 479Sun4u 480M: Blue Swirl <blauwirbel@gmail.com> 481S: Maintained 482F: hw/sparc64/sun4u.c 483 484Leon3 485M: Fabien Chouteau <chouteau@adacore.com> 486S: Maintained 487F: hw/sparc/leon3.c 488F: hw/*/grlib* 489 490S390 Machines 491------------- 492S390 Virtio 493M: Alexander Graf <agraf@suse.de> 494S: Maintained 495F: hw/s390x/s390-*.c 496 497S390 Virtio-ccw 498M: Cornelia Huck <cornelia.huck@de.ibm.com> 499M: Christian Borntraeger <borntraeger@de.ibm.com> 500M: Alexander Graf <agraf@suse.de> 501S: Supported 502F: hw/s390x/s390-virtio-ccw.c 503F: hw/s390x/css.[hc] 504F: hw/s390x/sclp*.[hc] 505F: hw/s390x/ipl*.[hc] 506T: git git://github.com/cohuck/qemu virtio-ccw-upstr 507 508UniCore32 Machines 509------------- 510PKUnity-3 SoC initramfs-with-busybox 511M: Guan Xuetao <gxt@mprc.pku.edu.cn> 512S: Maintained 513F: hw/*/puv3* 514F: hw/unicore32/ 515 516X86 Machines 517------------ 518PC 519M: Anthony Liguori <aliguori@amazon.com> 520M: Michael S. Tsirkin <mst@redhat.com> 521S: Supported 522F: include/hw/i386/ 523F: hw/i386/ 524F: hw/pci-host/piix.c 525F: hw/pci-host/q35.c 526F: hw/pci-host/pam.c 527F: include/hw/pci-host/q35.h 528F: include/hw/pci-host/pam.h 529F: hw/isa/piix4.c 530F: hw/isa/lpc_ich9.c 531F: hw/i2c/smbus_ich9.c 532F: hw/acpi/piix4.c 533F: hw/acpi/ich9.c 534F: include/hw/acpi/ich9.h 535F: include/hw/acpi/piix.h 536 537 538Xtensa Machines 539--------------- 540sim 541M: Max Filippov <jcmvbkbc@gmail.com> 542S: Maintained 543F: hw/xtensa/xtensa_sim.c 544 545Avnet LX60 546M: Max Filippov <jcmvbkbc@gmail.com> 547S: Maintained 548F: hw/xtensa/xtensa_lx60.c 549 550Devices 551------- 552IDE 553M: Kevin Wolf <kwolf@redhat.com> 554S: Odd Fixes 555F: include/hw/ide.h 556F: hw/ide/ 557 558OMAP 559M: Peter Maydell <peter.maydell@linaro.org> 560S: Maintained 561F: hw/*/omap* 562 563PCI 564M: Michael S. Tsirkin <mst@redhat.com> 565S: Supported 566F: include/hw/pci/* 567F: hw/pci/* 568F: hw/acpi/* 569 570ppc4xx 571M: Alexander Graf <agraf@suse.de> 572L: qemu-ppc@nongnu.org 573S: Odd Fixes 574F: hw/ppc/ppc4*.c 575 576ppce500 577M: Alexander Graf <agraf@suse.de> 578M: Scott Wood <scottwood@freescale.com> 579L: qemu-ppc@nongnu.org 580S: Supported 581F: hw/ppc/e500* 582 583SCSI 584M: Paolo Bonzini <pbonzini@redhat.com> 585S: Supported 586F: include/hw/scsi* 587F: hw/scsi/* 588T: git git://github.com/bonzini/qemu.git scsi-next 589 590LSI53C895A 591S: Orphan 592F: hw/scsi/lsi53c895a.c 593 594SSI 595M: Peter Crosthwaite <peter.crosthwaite@xilinx.com> 596S: Maintained 597F: hw/ssi/* 598F: hw/block/m25p80.c 599 600USB 601M: Gerd Hoffmann <kraxel@redhat.com> 602S: Maintained 603F: hw/usb/* 604F: tests/usb-hcd-ehci-test.c 605 606VFIO 607M: Alex Williamson <alex.williamson@redhat.com> 608S: Supported 609F: hw/misc/vfio.c 610 611vhost 612M: Michael S. Tsirkin <mst@redhat.com> 613S: Supported 614F: hw/*/*vhost* 615 616virtio 617M: Anthony Liguori <aliguori@amazon.com> 618M: Michael S. Tsirkin <mst@redhat.com> 619S: Supported 620F: hw/*/virtio* 621 622virtio-9p 623M: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> 624S: Supported 625F: hw/9pfs/ 626F: fsdev/ 627F: tests/virtio-9p-test.c 628T: git git://github.com/kvaneesh/QEMU.git 629 630virtio-blk 631M: Kevin Wolf <kwolf@redhat.com> 632M: Stefan Hajnoczi <stefanha@redhat.com> 633S: Supported 634F: hw/block/virtio-blk.c 635 636virtio-ccw 637M: Cornelia Huck <cornelia.huck@de.ibm.com> 638M: Christian Borntraeger <borntraeger@de.ibm.com> 639S: Supported 640F: hw/s390x/virtio-ccw.[hc] 641T: git git://github.com/cohuck/qemu virtio-ccw-upstr 642 643virtio-serial 644M: Amit Shah <amit.shah@redhat.com> 645S: Supported 646F: hw/char/virtio-serial-bus.c 647F: hw/char/virtio-console.c 648 649nvme 650M: Keith Busch <keith.busch@intel.com> 651S: Supported 652F: hw/block/nvme* 653F: tests/nvme-test.c 654 655Xilinx EDK 656M: Peter Crosthwaite <peter.crosthwaite@xilinx.com> 657M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 658S: Maintained 659F: hw/*/xilinx_* 660F: include/hw/xilinx.h 661 662Subsystems 663---------- 664Audio 665M: Vassili Karpov (malc) <av1474@comtv.ru> 666M: Gerd Hoffmann <kraxel@redhat.com> 667S: Maintained 668F: audio/ 669F: hw/audio/ 670F: tests/ac97-test.c 671F: tests/es1370-test.c 672F: tests/intel-hda-test.c 673 674Block 675M: Kevin Wolf <kwolf@redhat.com> 676M: Stefan Hajnoczi <stefanha@redhat.com> 677S: Supported 678F: block* 679F: block/ 680F: hw/block/ 681F: qemu-img* 682F: qemu-io* 683T: git git://repo.or.cz/qemu/kevin.git block 684T: git git://github.com/stefanha/qemu.git block 685 686Character Devices 687M: Anthony Liguori <aliguori@amazon.com> 688S: Maintained 689F: qemu-char.c 690 691CPU 692M: Andreas Färber <afaerber@suse.de> 693S: Supported 694F: qom/cpu.c 695F: include/qom/cpu.h 696F: target-i386/cpu.c 697 698ICC Bus 699M: Igor Mammedov <imammedo@redhat.com> 700S: Supported 701F: include/hw/cpu/icc_bus.h 702F: hw/cpu/icc_bus.c 703 704Device Tree 705M: Peter Crosthwaite <peter.crosthwaite@xilinx.com> 706M: Alexander Graf <agraf@suse.de> 707S: Maintained 708F: device_tree.[ch] 709 710GDB stub 711M: qemu-devel@nongnu.org 712S: Odd Fixes 713F: gdbstub* 714F: gdb-xml/ 715 716SPICE 717M: Gerd Hoffmann <kraxel@redhat.com> 718S: Supported 719F: include/ui/qemu-spice.h 720F: ui/spice-*.c 721F: audio/spiceaudio.c 722F: hw/display/qxl* 723 724Graphics 725M: Anthony Liguori <aliguori@amazon.com> 726M: Gerd Hoffmann <kraxel@redhat.com> 727S: Odd Fixes 728F: ui/ 729 730Cocoa graphics 731M: Andreas Färber <andreas.faerber@web.de> 732M: Peter Maydell <peter.maydell@linaro.org> 733S: Odd Fixes 734F: ui/cocoa.m 735 736Main loop 737M: Anthony Liguori <aliguori@amazon.com> 738S: Supported 739F: vl.c 740 741Human Monitor (HMP) 742M: Luiz Capitulino <lcapitulino@redhat.com> 743S: Maintained 744F: monitor.c 745F: hmp.c 746F: hmp-commands.hx 747T: git git://repo.or.cz/qemu/qmp-unstable.git queue/qmp 748 749Network device layer 750M: Anthony Liguori <aliguori@amazon.com> 751M: Stefan Hajnoczi <stefanha@redhat.com> 752S: Maintained 753F: net/ 754T: git git://github.com/stefanha/qemu.git net 755 756Netmap network backend 757M: Luigi Rizzo <rizzo@iet.unipi.it> 758M: Giuseppe Lettieri <g.lettieri@iet.unipi.it> 759M: Vincenzo Maffione <v.maffione@gmail.com> 760W: http://info.iet.unipi.it/~luigi/netmap/ 761S: Maintained 762F: net/netmap.c 763 764Network Block Device (NBD) 765M: Paolo Bonzini <pbonzini@redhat.com> 766S: Odd Fixes 767F: block/nbd.c 768F: nbd.* 769F: qemu-nbd.c 770T: git git://github.com/bonzini/qemu.git nbd-next 771 772QAPI 773M: Luiz Capitulino <lcapitulino@redhat.com> 774M: Michael Roth <mdroth@linux.vnet.ibm.com> 775S: Maintained 776F: qapi/ 777T: git git://repo.or.cz/qemu/qmp-unstable.git queue/qmp 778 779QAPI Schema 780M: Eric Blake <eblake@redhat.com> 781M: Luiz Capitulino <lcapitulino@redhat.com> 782M: Markus Armbruster <armbru@redhat.com> 783S: Supported 784F: qapi-schema.json 785T: git git://repo.or.cz/qemu/qmp-unstable.git queue/qmp 786 787QOM 788M: Anthony Liguori <aliguori@amazon.com> 789M: Andreas Färber <afaerber@suse.de> 790S: Supported 791T: git git://github.com/afaerber/qemu-cpu.git qom-next 792F: include/qom/ 793X: include/qom/cpu.h 794F: qom/ 795X: qom/cpu.c 796F: tests/qom-test.c 797 798QMP 799M: Luiz Capitulino <lcapitulino@redhat.com> 800S: Maintained 801F: qmp.c 802F: monitor.c 803F: qmp-commands.hx 804F: QMP/ 805T: git git://repo.or.cz/qemu/qmp-unstable.git queue/qmp 806 807SLIRP 808M: Jan Kiszka <jan.kiszka@siemens.com> 809S: Maintained 810F: slirp/ 811T: git git://git.kiszka.org/qemu.git queues/slirp 812 813Tracing 814M: Stefan Hajnoczi <stefanha@redhat.com> 815S: Maintained 816F: trace/ 817F: scripts/tracetool.py 818F: scripts/tracetool/ 819F: docs/tracing.txt 820T: git git://github.com/stefanha/qemu.git tracing 821 822Checkpatch 823M: Blue Swirl <blauwirbel@gmail.com> 824S: Odd Fixes 825F: scripts/checkpatch.pl 826 827Seccomp 828M: Eduardo Otubo <otubo@linux.vnet.ibm.com> 829S: Supported 830F: qemu-seccomp.c 831F: include/sysemu/seccomp.h 832 833Usermode Emulation 834------------------ 835BSD user 836M: Blue Swirl <blauwirbel@gmail.com> 837S: Maintained 838F: bsd-user/ 839 840Linux user 841M: Riku Voipio <riku.voipio@iki.fi> 842S: Maintained 843F: linux-user/ 844 845Tiny Code Generator (TCG) 846------------------------- 847Common code 848M: qemu-devel@nongnu.org 849M: Richard Henderson <rth@twiddle.net> 850S: Maintained 851F: tcg/ 852 853AArch64 target 854M: Claudio Fontana <claudio.fontana@huawei.com> 855M: Claudio Fontana <claudio.fontana@gmail.com> 856S: Maintained 857F: tcg/aarch64/ 858 859ARM target 860M: Andrzej Zaborowski <balrogg@gmail.com> 861S: Maintained 862F: tcg/arm/ 863 864i386 target 865M: qemu-devel@nongnu.org 866S: Maintained 867F: tcg/i386/ 868 869IA64 target 870M: Aurelien Jarno <aurelien@aurel32.net> 871S: Maintained 872F: tcg/ia64/ 873 874MIPS target 875M: Aurelien Jarno <aurelien@aurel32.net> 876S: Maintained 877F: tcg/mips/ 878 879PPC 880M: Vassili Karpov (malc) <av1474@comtv.ru> 881S: Maintained 882F: tcg/ppc/ 883 884PPC64 target 885M: Vassili Karpov (malc) <av1474@comtv.ru> 886S: Maintained 887F: tcg/ppc64/ 888 889S390 target 890M: Alexander Graf <agraf@suse.de> 891M: Richard Henderson <rth@twiddle.net> 892S: Maintained 893F: tcg/s390/ 894 895SPARC target 896M: Blue Swirl <blauwirbel@gmail.com> 897S: Maintained 898F: tcg/sparc/ 899 900TCI target 901M: Stefan Weil <sw@weilnetz.de> 902S: Maintained 903F: tcg/tci/ 904F: tci.c 905 906Stable branches 907--------------- 908Stable 1.0 909L: qemu-stable@nongnu.org 910T: git git://git.qemu-project.org/qemu-stable-1.0.git 911S: Orphan 912 913Stable 0.15 914L: qemu-stable@nongnu.org 915M: Andreas Färber <afaerber@suse.de> 916T: git git://git.qemu-project.org/qemu-stable-0.15.git 917S: Supported 918 919Stable 0.14 920L: qemu-stable@nongnu.org 921T: git git://git.qemu-project.org/qemu-stable-0.14.git 922S: Orphan 923 924Stable 0.10 925L: qemu-stable@nongnu.org 926T: git git://git.qemu-project.org/qemu-stable-0.10.git 927S: Orphan 928 929Block drivers 930------------- 931VMDK 932M: Fam Zheng <famz@redhat.com> 933S: Supported 934F: block/vmdk.c 935 936RBD 937M: Josh Durgin <josh.durgin@inktank.com> 938S: Supported 939F: block/rbd.c 940 941Sheepdog 942M: MORITA Kazutaka <morita.kazutaka@lab.ntt.co.jp> 943M: Liu Yuan <namei.unix@gmail.com> 944L: sheepdog@lists.wpkg.org 945S: Supported 946F: block/sheepdog.c 947 948VHDX 949M: Jeff Cody <jcody@redhat.com> 950S: Supported 951F: block/vhdx* 952 953VDI 954M: Stefan Weil <sw@weilnetz.de> 955S: Maintained 956F: block/vdi.c 957 958iSCSI 959M: Ronnie Sahlberg <ronniesahlberg@gmail.com> 960M: Paolo Bonzini <pbonzini@redhat.com> 961M: Peter Lieven <pl@kamp.de> 962S: Supported 963F: block/iscsi.c 964 965NFS 966M: Peter Lieven <pl@kamp.de> 967S: Maintained 968F: block/nfs.c 969 970SSH 971M: Richard W.M. Jones <rjones@redhat.com> 972S: Supported 973F: block/ssh.c 974