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