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@petalogix.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@petalogix.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@petalogix.com> 596S: Maintained 597F: hw/ssi/* 598F: hw/block/m25p80.c 599 600USB 601M: Gerd Hoffmann <kraxel@redhat.com> 602S: Maintained 603F: hw/usb/* 604 605VFIO 606M: Alex Williamson <alex.williamson@redhat.com> 607S: Supported 608F: hw/misc/vfio.c 609 610vhost 611M: Michael S. Tsirkin <mst@redhat.com> 612S: Supported 613F: hw/*/*vhost* 614 615virtio 616M: Anthony Liguori <aliguori@amazon.com> 617M: Michael S. Tsirkin <mst@redhat.com> 618S: Supported 619F: hw/*/virtio* 620 621virtio-9p 622M: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> 623S: Supported 624F: hw/9pfs/ 625F: fsdev/ 626T: git git://github.com/kvaneesh/QEMU.git 627 628virtio-blk 629M: Kevin Wolf <kwolf@redhat.com> 630M: Stefan Hajnoczi <stefanha@redhat.com> 631S: Supported 632F: hw/block/virtio-blk.c 633 634virtio-ccw 635M: Cornelia Huck <cornelia.huck@de.ibm.com> 636M: Christian Borntraeger <borntraeger@de.ibm.com> 637S: Supported 638F: hw/s390x/virtio-ccw.[hc] 639T: git git://github.com/cohuck/qemu virtio-ccw-upstr 640 641virtio-serial 642M: Amit Shah <amit.shah@redhat.com> 643S: Supported 644F: hw/char/virtio-serial-bus.c 645F: hw/char/virtio-console.c 646 647nvme 648M: Keith Busch <keith.busch@intel.com> 649S: Supported 650F: hw/block/nvme* 651 652Xilinx EDK 653M: Peter Crosthwaite <peter.crosthwaite@petalogix.com> 654M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 655S: Maintained 656F: hw/*/xilinx_* 657F: include/hw/xilinx.h 658 659Subsystems 660---------- 661Audio 662M: Vassili Karpov (malc) <av1474@comtv.ru> 663M: Gerd Hoffmann <kraxel@redhat.com> 664S: Maintained 665F: audio/ 666F: hw/audio/ 667 668Block 669M: Kevin Wolf <kwolf@redhat.com> 670M: Stefan Hajnoczi <stefanha@redhat.com> 671S: Supported 672F: block* 673F: block/ 674F: hw/block/ 675T: git git://repo.or.cz/qemu/kevin.git block 676T: git git://github.com/stefanha/qemu.git block 677 678Character Devices 679M: Anthony Liguori <aliguori@amazon.com> 680S: Maintained 681F: qemu-char.c 682 683CPU 684M: Andreas Färber <afaerber@suse.de> 685S: Supported 686F: qom/cpu.c 687F: include/qom/cpu.h 688F: target-i386/cpu.c 689 690ICC Bus 691M: Igor Mammedov <imammedo@redhat.com> 692S: Supported 693F: include/hw/cpu/icc_bus.h 694F: hw/cpu/icc_bus.c 695 696Device Tree 697M: Peter Crosthwaite <peter.crosthwaite@petalogix.com> 698M: Alexander Graf <agraf@suse.de> 699S: Maintained 700F: device_tree.[ch] 701 702GDB stub 703M: qemu-devel@nongnu.org 704S: Odd Fixes 705F: gdbstub* 706F: gdb-xml/ 707 708SPICE 709M: Gerd Hoffmann <kraxel@redhat.com> 710S: Supported 711F: include/ui/qemu-spice.h 712F: ui/spice-*.c 713F: audio/spiceaudio.c 714F: hw/display/qxl* 715 716Graphics 717M: Anthony Liguori <aliguori@amazon.com> 718S: Maintained 719F: ui/ 720 721Cocoa graphics 722M: Andreas Färber <andreas.faerber@web.de> 723M: Peter Maydell <peter.maydell@linaro.org> 724S: Odd Fixes 725F: ui/cocoa.m 726 727Main loop 728M: Anthony Liguori <aliguori@amazon.com> 729S: Supported 730F: vl.c 731 732Human Monitor (HMP) 733M: Luiz Capitulino <lcapitulino@redhat.com> 734S: Maintained 735F: monitor.c 736F: hmp.c 737F: hmp-commands.hx 738T: git git://repo.or.cz/qemu/qmp-unstable.git queue/qmp 739 740Network device layer 741M: Anthony Liguori <aliguori@amazon.com> 742M: Stefan Hajnoczi <stefanha@redhat.com> 743S: Maintained 744F: net/ 745T: git git://github.com/stefanha/qemu.git net 746 747Netmap network backend 748M: Luigi Rizzo <rizzo@iet.unipi.it> 749M: Giuseppe Lettieri <g.lettieri@iet.unipi.it> 750M: Vincenzo Maffione <v.maffione@gmail.com> 751W: http://info.iet.unipi.it/~luigi/netmap/ 752S: Maintained 753F: net/netmap.c 754 755Network Block Device (NBD) 756M: Paolo Bonzini <pbonzini@redhat.com> 757S: Odd Fixes 758F: block/nbd.c 759F: nbd.* 760F: qemu-nbd.c 761T: git git://github.com/bonzini/qemu.git nbd-next 762 763QAPI 764M: Luiz Capitulino <lcapitulino@redhat.com> 765M: Michael Roth <mdroth@linux.vnet.ibm.com> 766S: Maintained 767F: qapi/ 768T: git git://repo.or.cz/qemu/qmp-unstable.git queue/qmp 769 770QAPI Schema 771M: Eric Blake <eblake@redhat.com> 772M: Luiz Capitulino <lcapitulino@redhat.com> 773M: Markus Armbruster <armbru@redhat.com> 774S: Supported 775F: qapi-schema.json 776T: git git://repo.or.cz/qemu/qmp-unstable.git queue/qmp 777 778QMP 779M: Luiz Capitulino <lcapitulino@redhat.com> 780S: Maintained 781F: qmp.c 782F: monitor.c 783F: qmp-commands.hx 784F: QMP/ 785T: git git://repo.or.cz/qemu/qmp-unstable.git queue/qmp 786 787SLIRP 788M: Jan Kiszka <jan.kiszka@siemens.com> 789S: Maintained 790F: slirp/ 791T: git git://git.kiszka.org/qemu.git queues/slirp 792 793Tracing 794M: Stefan Hajnoczi <stefanha@redhat.com> 795S: Maintained 796F: trace/ 797F: scripts/tracetool.py 798F: scripts/tracetool/ 799F: docs/tracing.txt 800T: git git://github.com/stefanha/qemu.git tracing 801 802Checkpatch 803M: Blue Swirl <blauwirbel@gmail.com> 804S: Odd Fixes 805F: scripts/checkpatch.pl 806 807Seccomp 808M: Eduardo Otubo <otubo@linux.vnet.ibm.com> 809S: Supported 810F: qemu-seccomp.c 811F: include/sysemu/seccomp.h 812 813Usermode Emulation 814------------------ 815BSD user 816M: Blue Swirl <blauwirbel@gmail.com> 817S: Maintained 818F: bsd-user/ 819 820Linux user 821M: Riku Voipio <riku.voipio@iki.fi> 822S: Maintained 823F: linux-user/ 824 825Tiny Code Generator (TCG) 826------------------------- 827Common code 828M: qemu-devel@nongnu.org 829M: Richard Henderson <rth@twiddle.net> 830S: Maintained 831F: tcg/ 832 833AArch64 target 834M: Claudio Fontana <claudio.fontana@huawei.com> 835M: Claudio Fontana <claudio.fontana@gmail.com> 836S: Maintained 837F: tcg/aarch64/ 838 839ARM target 840M: Andrzej Zaborowski <balrogg@gmail.com> 841S: Maintained 842F: tcg/arm/ 843 844i386 target 845M: qemu-devel@nongnu.org 846S: Maintained 847F: tcg/i386/ 848 849IA64 target 850M: Aurelien Jarno <aurelien@aurel32.net> 851S: Maintained 852F: tcg/ia64/ 853 854MIPS target 855M: Aurelien Jarno <aurelien@aurel32.net> 856S: Maintained 857F: tcg/mips/ 858 859PPC 860M: Vassili Karpov (malc) <av1474@comtv.ru> 861S: Maintained 862F: tcg/ppc/ 863 864PPC64 target 865M: Vassili Karpov (malc) <av1474@comtv.ru> 866S: Maintained 867F: tcg/ppc64/ 868 869S390 target 870M: Alexander Graf <agraf@suse.de> 871M: Richard Henderson <rth@twiddle.net> 872S: Maintained 873F: tcg/s390/ 874 875SPARC target 876M: Blue Swirl <blauwirbel@gmail.com> 877S: Maintained 878F: tcg/sparc/ 879 880TCI target 881M: Stefan Weil <sw@weilnetz.de> 882S: Maintained 883F: tcg/tci/ 884F: tci.c 885 886Stable branches 887--------------- 888Stable 1.0 889L: qemu-stable@nongnu.org 890T: git git://git.qemu-project.org/qemu-stable-1.0.git 891S: Orphan 892 893Stable 0.15 894L: qemu-stable@nongnu.org 895M: Andreas Färber <afaerber@suse.de> 896T: git git://git.qemu-project.org/qemu-stable-0.15.git 897S: Supported 898 899Stable 0.14 900L: qemu-stable@nongnu.org 901T: git git://git.qemu-project.org/qemu-stable-0.14.git 902S: Orphan 903 904Stable 0.10 905L: qemu-stable@nongnu.org 906T: git git://git.qemu-project.org/qemu-stable-0.10.git 907S: Orphan 908 909Block drivers 910------------- 911VMDK 912M: Fam Zheng <famz@redhat.com> 913S: Supported 914F: block/vmdk.c 915 916RBD 917M: Josh Durgin <josh.durgin@inktank.com> 918S: Supported 919F: block/rbd.c 920 921Sheepdog 922M: MORITA Kazutaka <morita.kazutaka@lab.ntt.co.jp> 923M: Liu Yuan <namei.unix@gmail.com> 924L: sheepdog@lists.wpkg.org 925S: Supported 926F: block/sheepdog.c 927 928VHDX 929M: Jeff Cody <jcody@redhat.com> 930S: Supported 931F: block/vhdx* 932 933VDI 934M: Stefan Weil <sw@weilnetz.de> 935S: Maintained 936F: block/vdi.c 937 938iSCSI 939M: Ronnie Sahlberg <ronniesahlberg@gmail.com> 940M: Paolo Bonzini <pbonzini@redhat.com> 941M: Peter Lieven <pl@kamp.de> 942S: Supported 943F: block/iscsi.c 944 945NFS 946M: Peter Lieven <pl@kamp.de> 947S: Maintained 948F: block/nfs.c 949 950SSH 951M: Richard W.M. Jones <rjones@redhat.com> 952S: Supported 953F: block/ssh.c 954