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