MAINTAINERS 29.8 KB
Newer Older
B
bellard 已提交
1 2 3
QEMU Maintainers
================

4 5 6 7
The intention of this file is not to establish who owns what portions of the
code base, but to provide a set of names that developers can consult when they
have a question about a particular subset and also to provide a set of names
to be CC'd when submitting a patch to obtain appropriate review.
B
update  
bellard 已提交
8

9 10
In general, if you have a question about inclusion of a patch, you should
consult qemu-devel and not any specific individual privately.
B
bellard 已提交
11

12 13 14 15 16 17 18 19 20 21 22
Descriptions of section entries:

	M: Mail patches to: FullName <address@domain>
	L: Mailing list that is relevant to this area
	W: Web-page with status/info
	Q: Patchwork web based patch tracking system site
	T: SCM tree type and location.  Type is one of: git, hg, quilt, stgit.
	S: Status, one of the following:
	   Supported:	Someone is actually paid to look after this.
	   Maintained:	Someone actually looks after it.
	   Odd Fixes:	It has a maintainer but they don't have time to do
P
Peter Maydell 已提交
23
			much other than throw the odd patch in. See below.
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
	   Orphan:	No current maintainer [but maybe you could take the
			role as you write your new code].
	   Obsolete:	Old code. Something tagged obsolete generally means
			it has been replaced by a better system and you
			should be using that.
	F: Files and directories with wildcard patterns.
	   A trailing slash includes all files and subdirectory files.
	   F:	drivers/net/	all files in and below drivers/net
	   F:	drivers/net/*	all files in drivers/net, but not below
	   F:	*/net/*		all files in "any top level directory"/net
	   One pattern per line.  Multiple F: lines acceptable.
	X: Files and directories that are NOT maintained, same rules as F:
	   Files exclusions are tested before file matches.
	   Can be useful for excluding a specific subdirectory, for instance:
	   F:	net/
	   X:	net/ipv6/
	   matches all files in and below net excluding net/ipv6/
	K: Keyword perl extended regex pattern to match content in a
	   patch or file.  For instance:
	   K: of_get_profile
	      matches patches or files that contain "of_get_profile"
	   K: \b(printk|pr_(info|err))\b
	      matches patches or files that contain one or more of the words
	      printk, pr_info or pr_err
	   One regex pattern per line.  Multiple K: lines acceptable.


General Project Administration
------------------------------
53
M: Peter Maydell <peter.maydell@linaro.org>
54

55 56 57 58 59 60
Responsible Disclosure, Reporting Security Issues
------------------------------
W: http://wiki.qemu.org/SecurityProcess
M: Michael S. Tsirkin <mst@redhat.com>
L: secalert@redhat.com

61 62
Guest CPU cores (TCG):
----------------------
P
Paolo Bonzini 已提交
63
Overall
64
L: qemu-devel@nongnu.org
P
Paolo Bonzini 已提交
65 66 67 68 69 70 71 72 73
S: Odd fixes
F: cpu-exec.c
F: cputlb.c
F: softmmu_template.h
F: translate-all.c
F: include/exec/cpu_ldst.h
F: include/exec/cpu_ldst_template.h
F: include/exec/helper*.h

74
Alpha
75 76
M: Richard Henderson <rth@twiddle.net>
S: Maintained
77
F: target-alpha/
78
F: hw/alpha/
79
F: tests/tcg/alpha/
80
F: disas/alpha.c
B
bellard 已提交
81 82

ARM
83
M: Peter Maydell <peter.maydell@linaro.org>
84
L: qemu-arm@nongnu.org
85 86
S: Maintained
F: target-arm/
87 88
F: hw/arm/
F: hw/cpu/a*mpcore.c
89 90 91
F: disas/arm.c
F: disas/arm-a64.cc
F: disas/libvixl/
92 93 94 95 96

CRIS
M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
S: Maintained
F: target-cris/
97
F: hw/cris/
98
F: tests/tcg/cris/
99
F: disas/cris.c
100

101 102 103 104
LM32
M: Michael Walle <michael@walle.cc>
S: Maintained
F: target-lm32/
105
F: disas/lm32.c
106
F: hw/lm32/
107 108 109 110
F: hw/*/lm32_*
F: hw/*/milkymist-*
F: include/hw/char/lm32_juart.h
F: include/hw/lm32/
111
F: tests/tcg/lm32/
112

113
M68K
A
Anthony Liguori 已提交
114
S: Orphan
115
F: target-m68k/
116
F: hw/m68k/
117 118 119 120 121

MicroBlaze
M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
S: Maintained
F: target-microblaze/
122
F: hw/microblaze/
123
F: disas/microblaze.c
124

B
bellard 已提交
125
MIPS
126
M: Aurelien Jarno <aurelien@aurel32.net>
127 128
M: Leon Alrae <leon.alrae@imgtec.com>
S: Maintained
129
F: target-mips/
130
F: hw/mips/
131
F: tests/tcg/mips/
132
F: disas/mips.c
133

A
Anthony Green 已提交
134 135 136 137
Moxie
M: Anthony Green <green@moxielogic.com>
S: Maintained
F: target-moxie/
138
F: disas/moxie.c
A
Anthony Green 已提交
139

140 141 142 143 144
OpenRISC
M: Jia Liu <proljc@gmail.com>
S: Maintained
F: target-openrisc/
F: hw/openrisc/
145
F: tests/tcg/openrisc/
146

B
bellard 已提交
147
PowerPC
148
M: Alexander Graf <agraf@suse.de>
149
L: qemu-ppc@nongnu.org
150 151
S: Maintained
F: target-ppc/
152
F: hw/ppc/
153
F: disas/ppc.c
154 155

S390
156
M: Richard Henderson <rth@twiddle.net>
157 158 159
M: Alexander Graf <agraf@suse.de>
S: Maintained
F: target-s390x/
160
F: hw/s390x/
161
F: disas/s390.c
162

B
bellard 已提交
163
SH4
164
M: Aurelien Jarno <aurelien@aurel32.net>
165
S: Odd Fixes
166
F: target-sh4/
167
F: hw/sh4/
168
F: disas/sh4.c
169 170 171

SPARC
M: Blue Swirl <blauwirbel@gmail.com>
172
M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
173 174
S: Maintained
F: target-sparc/
175 176
F: hw/sparc/
F: hw/sparc64/
177
F: disas/sparc.c
178

179 180 181 182
UniCore32
M: Guan Xuetao <gxt@mprc.pku.edu.cn>
S: Maintained
F: target-unicore32/
183
F: hw/unicore32/
184

185
X86
P
Paolo Bonzini 已提交
186 187
M: Paolo Bonzini <pbonzini@redhat.com>
M: Richard Henderson <rth@twiddle.net>
E
Eduardo Habkost 已提交
188
M: Eduardo Habkost <ehabkost@redhat.com>
189
S: Maintained
190
F: target-i386/
191
F: hw/i386/
192
F: disas/i386.c
193

194 195
Xtensa
M: Max Filippov <jcmvbkbc@gmail.com>
196
W: http://wiki.osll.spb.ru/doku.php?id=etc:users:jcmvbkbc:qemu-target-xtensa
197 198
S: Maintained
F: target-xtensa/
199
F: hw/xtensa/
200
F: tests/tcg/xtensa/
201

202 203 204 205 206 207
TriCore
M: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
S: Maintained
F: target-tricore/
F: hw/tricore/

208 209 210 211
Guest CPU Cores (KVM):
----------------------

Overall
212
M: Paolo Bonzini <pbonzini@redhat.com>
213 214 215 216 217
L: kvm@vger.kernel.org
S: Supported
F: kvm-*
F: */kvm.*

218 219
ARM
M: Peter Maydell <peter.maydell@linaro.org>
220
L: qemu-arm@nongnu.org
221 222 223
S: Maintained
F: target-arm/kvm.c

224 225 226 227 228
MIPS
M: James Hogan <james.hogan@imgtec.com>
S: Maintained
F: target-mips/kvm.c

229 230 231 232 233
PPC
M: Alexander Graf <agraf@suse.de>
S: Maintained
F: target-ppc/kvm.c

A
Alexander Graf 已提交
234
S390
235 236
M: Christian Borntraeger <borntraeger@de.ibm.com>
M: Cornelia Huck <cornelia.huck@de.ibm.com>
237 238 239
M: Alexander Graf <agraf@suse.de>
S: Maintained
F: target-s390x/kvm.c
240 241
F: target-s390x/ioinst.[ch]
F: target-s390x/machine.c
C
Cornelia Huck 已提交
242 243 244
F: hw/intc/s390_flic.c
F: hw/intc/s390_flic_kvm.c
F: include/hw/s390x/s390_flic.h
245
F: gdb-xml/s390*.xml
246 247

X86
P
Paolo Bonzini 已提交
248
M: Paolo Bonzini <pbonzini@redhat.com>
249 250 251 252 253
M: Marcelo Tosatti <mtosatti@redhat.com>
L: kvm@vger.kernel.org
S: Supported
F: target-i386/kvm.c

254 255 256 257 258 259 260 261 262
Guest CPU Cores (Xen):
----------------------

X86
M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
L: xen-devel@lists.xensource.com
S: Supported
F: xen-*
F: */xen*
P
Paolo Bonzini 已提交
263 264 265 266 267 268
F: hw/char/xen_console.c
F: hw/display/xenfb.c
F: hw/net/xen_nic.c
F: hw/xen/
F: hw/xenpv/
F: include/hw/xen/
269

270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
Hosts:
------

LINUX
L: qemu-devel@nongnu.org
S: Maintained
F: linux-*
F: linux-headers/

POSIX
L: qemu-devel@nongnu.org
S: Maintained
F: *posix*

W32, W64
L: qemu-devel@nongnu.org
M: Stefan Weil <sw@weilnetz.de>
S: Maintained
F: *win32*
289
F: qemu.nsi
290

291 292
ARM Machines
------------
293
Allwinner-a10
294
M: Beniamino Galvani <b.galvani@gmail.com>
295
L: qemu-arm@nongnu.org
296
S: Maintained
297 298
F: hw/*/allwinner*
F: include/hw/*/allwinner*
299 300
F: hw/arm/cubieboard.c

301 302
ARM PrimeCell
M: Peter Maydell <peter.maydell@linaro.org>
303
L: qemu-arm@nongnu.org
304 305 306 307 308 309 310 311 312 313 314 315 316 317
S: Maintained
F: hw/char/pl011.c
F: hw/display/pl110*
F: hw/dma/pl080.c
F: hw/dma/pl330.c
F: hw/gpio/pl061.c
F: hw/input/pl050.c
F: hw/intc/pl190.c
F: hw/sd/pl181.c
F: hw/timer/pl031.c
F: include/hw/arm/primecell.h

ARM cores
M: Peter Maydell <peter.maydell@linaro.org>
318
L: qemu-arm@nongnu.org
319 320 321 322 323 324 325 326 327 328 329 330 331 332
S: Maintained
F: hw/intc/arm*
F: hw/intc/gic_internal.h
F: hw/misc/a9scu.c
F: hw/misc/arm11scu.c
F: hw/timer/a9gtimer*
F: hw/timer/arm_*
F: include/hw/arm/arm.h
F: include/hw/intc/arm*
F: include/hw/misc/a9scu.h
F: include/hw/misc/arm11scu.h
F: include/hw/timer/a9gtimer.h
F: include/hw/timer/arm_mptimer.h

333 334 335
Exynos
M: Evgeny Voevodin <e.voevodin@samsung.com>
M: Maksim Kozlov <m.kozlov@samsung.com>
336
M: Igor Mitsyanko <i.mitsyanko@gmail.com>
337
M: Dmitry Solodkiy <d.solodkiy@samsung.com>
338
L: qemu-arm@nongnu.org
339
S: Maintained
340
F: hw/*/exynos*
341

342
Calxeda Highbank
343
M: Rob Herring <robh@kernel.org>
344
L: qemu-arm@nongnu.org
345
S: Maintained
346 347
F: hw/arm/highbank.c
F: hw/net/xgmac.c
348

349 350
Canon DIGIC
M: Antony Pavlov <antonynpavlov@gmail.com>
351
L: qemu-arm@nongnu.org
352 353 354 355
S: Maintained
F: include/hw/arm/digic.h
F: hw/*/digic*

356
Gumstix
357
L: qemu-devel@nongnu.org
358
L: qemu-arm@nongnu.org
359
S: Orphan
360
F: hw/arm/gumstix.c
361

362 363
i.MX31
M: Peter Chubb <peter.chubb@nicta.com.au>
364
L: qemu-arm@nongnu.org
365
S: Odd fixes
366 367
F: hw/*/imx*
F: hw/arm/kzm.c
368

369
Integrator CP
370
M: Peter Maydell <peter.maydell@linaro.org>
371
L: qemu-arm@nongnu.org
372
S: Maintained
373
F: hw/arm/integratorcp.c
374 375 376

Musicpal
M: Jan Kiszka <jan.kiszka@web.de>
377
L: qemu-arm@nongnu.org
378
S: Maintained
379
F: hw/arm/musicpal.c
380 381 382

nSeries
M: Andrzej Zaborowski <balrogg@gmail.com>
383
L: qemu-arm@nongnu.org
384
S: Maintained
385
F: hw/arm/nseries.c
386 387 388

Palm
M: Andrzej Zaborowski <balrogg@gmail.com>
389
L: qemu-arm@nongnu.org
390
S: Maintained
391
F: hw/arm/palm.c
392 393

Real View
394
M: Peter Maydell <peter.maydell@linaro.org>
395
L: qemu-arm@nongnu.org
396
S: Maintained
397
F: hw/arm/realview*
398 399
F: hw/intc/realview_gic.c
F: include/hw/intc/realview_gic.h
400

401
PXA2XX
402
M: Andrzej Zaborowski <balrogg@gmail.com>
403
L: qemu-arm@nongnu.org
404
S: Maintained
405
F: hw/arm/mainstone.c
406
F: hw/arm/spitz.c
407 408 409
F: hw/arm/tosa.c
F: hw/arm/z2.c
F: hw/*/pxa2xx*
410 411

Stellaris
412
M: Peter Maydell <peter.maydell@linaro.org>
413
L: qemu-arm@nongnu.org
414
S: Maintained
415
F: hw/*/stellaris*
416 417

Versatile PB
418
M: Peter Maydell <peter.maydell@linaro.org>
419
L: qemu-arm@nongnu.org
420
S: Maintained
421
F: hw/*/versatile*
422

423
Xilinx Zynq
424 425
M: Alistair Francis <alistair.francis@xilinx.com>
M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
426
L: qemu-arm@nongnu.org
427
S: Maintained
428 429 430 431
F: hw/arm/xilinx_zynq.c
F: hw/misc/zynq_slcr.c
F: hw/*/cadence_*
F: hw/ssi/xilinx_spips.c
432

433 434 435
Xilinx ZynqMP
M: Alistair Francis <alistair.francis@xilinx.com>
M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
436
L: qemu-arm@nongnu.org
437 438 439 440 441
S: Maintained
F: hw/arm/xlnx-zynqmp.c
F: hw/arm/xlnx-ep108.c
F: include/hw/arm/xlnx-zynqmp.h

442 443 444
ARM ACPI Subsystem
M: Shannon Zhao <zhaoshenglong@huawei.com>
M: Shannon Zhao <shannon.zhao@linaro.org>
445
L: qemu-arm@nongnu.org
446 447 448 449
S: Maintained
F: hw/arm/virt-acpi-build.c
F: include/hw/arm/virt-acpi-build.h

450 451 452 453 454
CRIS Machines
-------------
Axis Dev88
M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
S: Maintained
455
F: hw/cris/axis_dev88.c
P
Peter Maydell 已提交
456
F: hw/*/etraxfs_*.c
457

458 459 460 461 462
LM32 Machines
-------------
EVR32 and uclinux BSP
M: Michael Walle <michael@walle.cc>
S: Maintained
463
F: hw/lm32/lm32_boards.c
464

M
Michael Walle 已提交
465 466 467
milkymist
M: Michael Walle <michael@walle.cc>
S: Maintained
468
F: hw/lm32/milkymist.c
M
Michael Walle 已提交
469

A
Aurelien Jarno 已提交
470
M68K Machines
471 472
-------------
an5206
A
Anthony Liguori 已提交
473
S: Orphan
474
F: hw/m68k/an5206.c
475 476

dummy_m68k
A
Anthony Liguori 已提交
477
S: Orphan
478
F: hw/m68k/dummy_m68k.c
479 480

mcf5208
A
Anthony Liguori 已提交
481
S: Orphan
482
F: hw/m68k/mcf5208.c
483 484 485 486 487 488

MicroBlaze Machines
-------------------
petalogix_s3adsp1800
M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
S: Maintained
P
Peter Maydell 已提交
489
F: hw/microblaze/petalogix_s3adsp1800_mmu.c
490

491
petalogix_ml605
492
M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
493
S: Maintained
494
F: hw/microblaze/petalogix_ml605_mmu.c
495

496 497 498 499 500
MIPS Machines
-------------
Jazz
M: Hervé Poussineau <hpoussin@reactos.org>
S: Maintained
501
F: hw/mips/mips_jazz.c
502 503 504 505

Malta
M: Aurelien Jarno <aurelien@aurel32.net>
S: Maintained
506
F: hw/mips/mips_malta.c
507 508

Mipssim
509
L: qemu-devel@nongnu.org
510
S: Orphan
511
F: hw/mips/mips_mipssim.c
512 513 514 515

R4000
M: Aurelien Jarno <aurelien@aurel32.net>
S: Maintained
516
F: hw/mips/mips_r4k.c
517

518 519 520 521 522 523 524
OpenRISC Machines
-----------------
or1k-sim
M: Jia Liu <proljc@gmail.com>
S: Maintained
F: hw/openrisc/openrisc_sim.c

525 526 527 528
PowerPC Machines
----------------
405
M: Alexander Graf <agraf@suse.de>
529
L: qemu-ppc@nongnu.org
530
S: Odd Fixes
531
F: hw/ppc/ppc405_boards.c
532

533 534 535 536
Bamboo
M: Alexander Graf <agraf@suse.de>
L: qemu-ppc@nongnu.org
S: Odd Fixes
537
F: hw/ppc/ppc440_bamboo.c
538

539 540 541 542 543 544 545 546 547 548 549 550 551 552
e500
M: Alexander Graf <agraf@suse.de>
M: Scott Wood <scottwood@freescale.com>
L: qemu-ppc@nongnu.org
S: Supported
F: hw/ppc/e500.[hc]
F: hw/ppc/e500plat.c

mpc8544ds
M: Alexander Graf <agraf@suse.de>
M: Scott Wood <scottwood@freescale.com>
L: qemu-ppc@nongnu.org
S: Supported
F: hw/ppc/mpc8544ds.c
553
F: hw/ppc/mpc8544_guts.c
554

555 556
New World
M: Alexander Graf <agraf@suse.de>
557
L: qemu-ppc@nongnu.org
558
S: Maintained
559
F: hw/ppc/mac_newworld.c
P
Peter Maydell 已提交
560 561
F: hw/pci-host/uninorth.c
F: hw/pci-bridge/dec.[hc]
562
F: hw/misc/macio/
563 564 565

Old World
M: Alexander Graf <agraf@suse.de>
566
L: qemu-ppc@nongnu.org
567
S: Maintained
568
F: hw/ppc/mac_oldworld.c
P
Peter Maydell 已提交
569
F: hw/pci-host/grackle.c
570
F: hw/misc/macio/
571

A
Andreas Färber 已提交
572 573
PReP
M: Andreas Färber <andreas.faerber@web.de>
574
L: qemu-ppc@nongnu.org
A
Andreas Färber 已提交
575
S: Odd Fixes
576
F: hw/ppc/prep.c
P
Peter Maydell 已提交
577
F: hw/pci-host/prep.[hc]
578
F: hw/isa/pc87312.[hc]
579

580 581
sPAPR (pseries)
M: David Gibson <david@gibson.dropbear.id.au>
582 583 584
M: Alexander Graf <agraf@suse.de>
L: qemu-ppc@nongnu.org
S: Supported
585
F: hw/*/spapr*
586 587 588 589
F: include/hw/*/spapr*
F: hw/*/xics*
F: include/hw/*/xics*
F: pc-bios/spapr-rtas/*
590

591 592 593 594
virtex_ml507
M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
L: qemu-ppc@nongnu.org
S: Odd Fixes
P
Peter Maydell 已提交
595
F: hw/ppc/virtex_ml507.c
596

597 598 599 600 601
SH4 Machines
------------
R2D
M: Magnus Damm <magnus.damm@gmail.com>
S: Maintained
P
Peter Maydell 已提交
602
F: hw/sh4/r2d.c
603 604 605

Shix
M: Magnus Damm <magnus.damm@gmail.com>
A
Aurelien Jarno 已提交
606
S: Orphan
P
Peter Maydell 已提交
607
F: hw/sh4/shix.c
608 609 610 611 612

SPARC Machines
--------------
Sun4m
M: Blue Swirl <blauwirbel@gmail.com>
613
M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
614
S: Maintained
615
F: hw/sparc/sun4m.c
616 617 618

Sun4u
M: Blue Swirl <blauwirbel@gmail.com>
619
M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
620
S: Maintained
621
F: hw/sparc64/sun4u.c
622

623 624 625
Leon3
M: Fabien Chouteau <chouteau@adacore.com>
S: Maintained
626 627
F: hw/sparc/leon3.c
F: hw/*/grlib*
628

629 630 631 632 633
S390 Machines
-------------
S390 Virtio
M: Alexander Graf <agraf@suse.de>
S: Maintained
P
Peter Maydell 已提交
634
F: hw/s390x/s390-*.c
F
Frank Blaschka 已提交
635
X: hw/s390x/*pci*.[hc]
636

C
Cornelia Huck 已提交
637 638
S390 Virtio-ccw
M: Cornelia Huck <cornelia.huck@de.ibm.com>
639
M: Christian Borntraeger <borntraeger@de.ibm.com>
C
Cornelia Huck 已提交
640 641
M: Alexander Graf <agraf@suse.de>
S: Supported
P
Paolo Bonzini 已提交
642
F: hw/char/sclp*.[hc]
643 644
F: hw/s390x/
X: hw/s390x/s390-virtio-bus.[ch]
C
Cornelia Huck 已提交
645 646
F: include/hw/s390x/
F: pc-bios/s390-ccw/
647
F: hw/watchdog/wdt_diag288.c
C
Cornelia Huck 已提交
648 649
T: git git://github.com/cohuck/qemu virtio-ccw-upstr

650 651 652 653 654
UniCore32 Machines
-------------
PKUnity-3 SoC initramfs-with-busybox
M: Guan Xuetao <gxt@mprc.pku.edu.cn>
S: Maintained
655
F: hw/*/puv3*
656 657
F: hw/unicore32/

658 659 660
X86 Machines
------------
PC
661
M: Michael S. Tsirkin <mst@redhat.com>
662
S: Supported
663 664 665 666 667 668 669 670 671 672 673 674 675 676
F: include/hw/i386/
F: hw/i386/
F: hw/pci-host/piix.c
F: hw/pci-host/q35.c
F: hw/pci-host/pam.c
F: include/hw/pci-host/q35.h
F: include/hw/pci-host/pam.h
F: hw/isa/piix4.c
F: hw/isa/lpc_ich9.c
F: hw/i2c/smbus_ich9.c
F: hw/acpi/piix4.c
F: hw/acpi/ich9.c
F: include/hw/acpi/ich9.h
F: include/hw/acpi/piix.h
677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695
F: hw/misc/sga.c

PC Chipset
M: Michael S. Tsirkin <mst@redhat.com>
M: Paolo Bonzini <pbonzini@redhat.com>
S: Support
F: hw/char/debugcon.c
F: hw/char/parallel.c
F: hw/char/serial*
F: hw/dma/i8257*
F: hw/i2c/pm_smbus.c
F: hw/intc/apic*
F: hw/intc/ioapic*
F: hw/intc/i8259*
F: hw/misc/debugexit.c
F: hw/misc/pc-testdev.c
F: hw/timer/hpet*
F: hw/timer/i8254*
F: hw/timer/mc146818rtc*
696

697

698 699
Xtensa Machines
---------------
700
sim
701 702
M: Max Filippov <jcmvbkbc@gmail.com>
S: Maintained
M
Max Filippov 已提交
703
F: hw/xtensa/sim.c
704

M
Max Filippov 已提交
705
XTFPGA (LX60, LX200, ML605, KC705)
706 707
M: Max Filippov <jcmvbkbc@gmail.com>
S: Maintained
M
Max Filippov 已提交
708 709
F: hw/xtensa/xtfpga.c
F: hw/net/opencores_eth.c
710

711 712
Devices
-------
J
Jiri Slaby 已提交
713 714 715 716 717
EDU
M: Jiri Slaby <jslaby@suse.cz>
S: Maintained
F: hw/misc/edu.c

718
IDE
719 720 721
M: John Snow <jsnow@redhat.com>
L: qemu-block@nongnu.org
S: Supported
722
F: include/hw/ide.h
723
F: hw/ide/
724 725 726 727 728
F: hw/block/block.c
F: hw/block/cdrom.c
F: hw/block/hd-geometry.c
F: tests/ide-test.c
F: tests/ahci-test.c
J
John Snow 已提交
729
F: tests/libqos/ahci*
730 731 732 733 734 735 736 737
T: git git://github.com/jnsnow/qemu.git ide

Floppy
M: John Snow <jsnow@redhat.com>
L: qemu-block@nongnu.org
S: Supported
F: hw/block/fdc.c
F: include/hw/block/fdc.h
J
John Snow 已提交
738
F: tests/fdc-test.c
739
T: git git://github.com/jnsnow/qemu.git ide
740

741 742 743
OMAP
M: Peter Maydell <peter.maydell@linaro.org>
S: Maintained
744
F: hw/*/omap*
745

P
Paolo Bonzini 已提交
746 747 748 749 750 751
IPack
M: Alberto Garcia <berto@igalia.com>
S: Odd Fixes
F: hw/char/ipoctal232.c
F: hw/ipack/

752 753 754
PCI
M: Michael S. Tsirkin <mst@redhat.com>
S: Supported
755
F: include/hw/pci/*
756
F: hw/misc/pci-testdev.c
757
F: hw/pci/*
758
F: hw/pci-bridge/*
M
Michael S. Tsirkin 已提交
759

760
ACPI/SMBIOS
M
Michael S. Tsirkin 已提交
761 762 763 764
M: Michael S. Tsirkin <mst@redhat.com>
M: Igor Mammedov <imammedo@redhat.com>
S: Supported
F: include/hw/acpi/*
765
F: include/hw/smbios/*
M
Michael S. Tsirkin 已提交
766
F: hw/mem/*
767
F: hw/acpi/*
768
F: hw/smbios/*
M
Michael S. Tsirkin 已提交
769 770 771 772 773
F: hw/i386/acpi-build.[hc]
F: hw/i386/*dsl
F: hw/arm/virt-acpi-build.c
F: include/hw/arm/virt-acpi-build.h
F: scripts/acpi*py
774

775 776 777 778
ppc4xx
M: Alexander Graf <agraf@suse.de>
L: qemu-ppc@nongnu.org
S: Odd Fixes
779
F: hw/ppc/ppc4*.c
780

781 782 783 784 785
ppce500
M: Alexander Graf <agraf@suse.de>
M: Scott Wood <scottwood@freescale.com>
L: qemu-ppc@nongnu.org
S: Supported
P
Peter Maydell 已提交
786
F: hw/ppc/e500*
787 788
F: hw/pci-host/ppce500.c
F: hw/net/fsl_etsec/
789

790 791 792 793 794
Character devices
M: Paolo Bonzini <pbonzini@redhat.com>
S: Odd Fixes
F: hw/char/

795 796 797 798 799 800
Network devices
M: Jason Wang <jasowang@redhat.com>
S: Odd Fixes
F: hw/net/
T: git git://github.com/jasowang/qemu.git net

801
SCSI
802 803
M: Paolo Bonzini <pbonzini@redhat.com>
S: Supported
804 805
F: include/hw/scsi*
F: hw/scsi/*
806
T: git git://github.com/bonzini/qemu.git scsi-next
807 808

LSI53C895A
A
Anthony Liguori 已提交
809
S: Orphan
810
F: hw/scsi/lsi53c895a.c
811

812
SSI
813
M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
814
S: Maintained
815 816
F: hw/ssi/*
F: hw/block/m25p80.c
817 818 819 820 821 822 823
X: hw/ssi/xilinx_*

Xilinx SPI
M: Alistair Francis <alistair.francis@xilinx.com>
M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
S: Maintained
F: hw/ssi/xilinx_*
824

825
USB
G
Gerd Hoffmann 已提交
826 827
M: Gerd Hoffmann <kraxel@redhat.com>
S: Maintained
828
F: hw/usb/*
G
Gonglei 已提交
829
F: tests/usb-*-test.c
830

831 832 833 834 835 836
USB (serial adapter)
M: Gerd Hoffmann <kraxel@redhat.com>
M: Samuel Thibault <samuel.thibault@ens-lyon.org>
S: Maintained
F: hw/usb/dev-serial.c

837 838 839
VFIO
M: Alex Williamson <alex.williamson@redhat.com>
S: Supported
840
F: hw/vfio/*
841

842 843 844
vhost
M: Michael S. Tsirkin <mst@redhat.com>
S: Supported
845
F: hw/*/*vhost*
846 847

virtio
848
M: Michael S. Tsirkin <mst@redhat.com>
849
S: Supported
850
F: hw/*/virtio*
M
Michael S. Tsirkin 已提交
851
F: net/vhost-user.c
852 853

virtio-9p
854
M: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
855
S: Supported
856 857
F: hw/9pfs/
F: fsdev/
A
Andreas Färber 已提交
858
F: tests/virtio-9p-test.c
859
T: git git://github.com/kvaneesh/QEMU.git
860 861

virtio-blk
862
M: Stefan Hajnoczi <stefanha@redhat.com>
863
L: qemu-block@nongnu.org
864
S: Supported
865
F: hw/block/virtio-blk.c
866 867 868
F: hw/block/dataplane/*
F: hw/virtio/dataplane/*
T: git git://github.com/stefanha/qemu.git block
869

C
Cornelia Huck 已提交
870 871
virtio-ccw
M: Cornelia Huck <cornelia.huck@de.ibm.com>
872
M: Christian Borntraeger <borntraeger@de.ibm.com>
C
Cornelia Huck 已提交
873 874 875 876
S: Supported
F: hw/s390x/virtio-ccw.[hc]
T: git git://github.com/cohuck/qemu virtio-ccw-upstr

877 878 879 880 881 882
virtio-input
M: Gerd Hoffmann <kraxel@redhat.com>
S: Maintained
F: hw/input/virtio-input*.c
F: include/hw/virtio/virtio-input.h

883 884 885
virtio-serial
M: Amit Shah <amit.shah@redhat.com>
S: Supported
886 887
F: hw/char/virtio-serial-bus.c
F: hw/char/virtio-console.c
888
F: include/hw/virtio/virtio-serial.h
889

A
Amit Shah 已提交
890 891 892 893 894 895 896
virtio-rng
M: Amit Shah <amit.shah@redhat.com>
S: Supported
F: hw/virtio/virtio-rng.c
F: include/hw/virtio/virtio-rng.h
F: backends/rng*.c

897 898
nvme
M: Keith Busch <keith.busch@intel.com>
899
L: qemu-block@nongnu.org
900 901
S: Supported
F: hw/block/nvme*
A
Andreas Färber 已提交
902
F: tests/nvme-test.c
903

904 905
megasas
M: Hannes Reinecke <hare@suse.de>
906
L: qemu-block@nongnu.org
907 908 909 910
S: Supported
F: hw/scsi/megasas.c
F: hw/scsi/mfi.h

911 912
Xilinx EDK
M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
913 914
M: Alistair Francis <alistair.francis@xilinx.com>
M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
915
S: Maintained
916 917
F: hw/*/xilinx_*
F: include/hw/xilinx.h
918

919 920 921 922 923 924
Vmware
M: Dmitry Fleytman <dmitry@daynix.com>
S: Maintained
F: hw/net/vmxnet*
F: hw/scsi/vmw_pvscsi*

S
Scott Feldman 已提交
925 926 927 928 929 930
Rocker
M: Scott Feldman <sfeldma@gmail.com>
M: Jiri Pirko <jiri@resnulli.us>
S: Maintained
F: hw/net/rocker/

931 932 933
Subsystems
----------
Audio
G
Gerd Hoffmann 已提交
934
M: Gerd Hoffmann <kraxel@redhat.com>
935 936
S: Maintained
F: audio/
937
F: hw/audio/
A
Andreas Färber 已提交
938
F: tests/ac97-test.c
A
Andreas Färber 已提交
939
F: tests/es1370-test.c
A
Andreas Färber 已提交
940
F: tests/intel-hda-test.c
941

942
Block layer core
943
M: Kevin Wolf <kwolf@redhat.com>
944
L: qemu-block@nongnu.org
945 946 947
S: Supported
F: block*
F: block/
948
F: hw/block/
949
F: include/block/
950 951
F: qemu-img*
F: qemu-io*
952
F: tests/qemu-iotests/
953
T: git git://repo.or.cz/qemu/kevin.git block
954

955 956 957 958 959 960 961 962 963 964
Block I/O path
M: Stefan Hajnoczi <stefanha@redhat.com>
L: qemu-block@nongnu.org
S: Supported
F: async.c
F: aio-*.c
F: block/io.c
F: migration/block*
T: git git://github.com/stefanha/qemu.git block

965 966 967 968 969 970 971 972 973 974 975 976
Block Jobs
M: Jeff Cody <jcody@redhat.com>
L: qemu-block@nongnu.org
S: Supported
F: blockjob.c
F: include/block/blockjob.h
F: block/backup.c
F: block/commit.c
F: block/stream.h
F: block/mirror.c
T: git git://github.com/codyprime/qemu-kvm-jtc.git block

977 978 979 980 981 982 983 984
Block QAPI, monitor, command line
M: Markus Armbruster <armbru@redhat.com>
S: Supported
F: blockdev.c
F: block/qapi.c
F: qapi/block*.json
T: git git://repo.or.cz/qemu/armbru.git block-next

985
Character device backends
986
M: Paolo Bonzini <pbonzini@redhat.com>
987 988
S: Maintained
F: qemu-char.c
989 990
F: backends/msmouse.c
F: backends/testdev.c
991

992 993 994 995
Character Devices (Braille)
M: Samuel Thibault <samuel.thibault@ens-lyon.org>
S: Maintained
F: backends/baum.c
996

997 998 999 1000 1001
Coverity model
M: Markus Armbruster <armbru@redhat.com>
S: Supported
F: scripts/coverity-model.c

1002 1003 1004 1005
CPU
M: Andreas Färber <afaerber@suse.de>
S: Supported
F: qom/cpu.c
P
Peter Maydell 已提交
1006
F: include/qom/cpu.h
1007
F: target-i386/cpu.c
1008

1009 1010 1011 1012 1013 1014
ICC Bus
M: Igor Mammedov <imammedo@redhat.com>
S: Supported
F: include/hw/cpu/icc_bus.h
F: hw/cpu/icc_bus.c

1015
Device Tree
1016
M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
1017 1018
M: Alexander Graf <agraf@suse.de>
S: Maintained
P
Peter Maydell 已提交
1019
F: device_tree.[ch]
1020

1021 1022 1023 1024 1025 1026 1027 1028
Error reporting
M: Markus Armbruster <armbru@redhat.com>
S: Supported
F: include/qapi/error.h
F: include/qemu/error-report.h
F: util/error.c
F: util/qemu-error.c

1029
GDB stub
1030
L: qemu-devel@nongnu.org
1031 1032 1033 1034
S: Odd Fixes
F: gdbstub*
F: gdb-xml/

1035 1036 1037 1038 1039 1040 1041 1042 1043 1044
Memory API
M: Paolo Bonzini <pbonzini@redhat.com>
S: Supported
F: include/exec/ioport.h
F: ioport.c
F: include/exec/memory.h
F: memory.c
F: include/exec/memory-internal.h
F: exec.c

G
Gerd Hoffmann 已提交
1045 1046 1047
SPICE
M: Gerd Hoffmann <kraxel@redhat.com>
S: Supported
P
Peter Maydell 已提交
1048
F: include/ui/qemu-spice.h
G
Gerd Hoffmann 已提交
1049 1050
F: ui/spice-*.c
F: audio/spiceaudio.c
1051
F: hw/display/qxl*
G
Gerd Hoffmann 已提交
1052

1053
Graphics
G
Gerd Hoffmann 已提交
1054 1055
M: Gerd Hoffmann <kraxel@redhat.com>
S: Odd Fixes
1056 1057
F: ui/

1058 1059
Cocoa graphics
M: Andreas Färber <andreas.faerber@web.de>
1060
M: Peter Maydell <peter.maydell@linaro.org>
1061 1062 1063
S: Odd Fixes
F: ui/cocoa.m

1064
Main loop
1065 1066 1067 1068 1069
M: Paolo Bonzini <pbonzini@redhat.com>
S: Maintained
F: cpus.c
F: main-loop.c
F: qemu-timer.c
1070 1071
F: vl.c

1072
Human Monitor (HMP)
1073
M: Luiz Capitulino <lcapitulino@redhat.com>
1074
S: Maintained
1075
F: monitor.c
1076 1077
F: hmp.c
F: hmp-commands.hx
1078
T: git git://repo.or.cz/qemu/qmp-unstable.git queue/qmp
1079

1080
Network device backends
1081
M: Jason Wang <jasowang@redhat.com>
1082 1083
S: Maintained
F: net/
1084
T: git git://github.com/jasowang/qemu.git net
1085

1086 1087 1088 1089 1090 1091 1092 1093
Netmap network backend
M: Luigi Rizzo <rizzo@iet.unipi.it>
M: Giuseppe Lettieri <g.lettieri@iet.unipi.it>
M: Vincenzo Maffione <v.maffione@gmail.com>
W: http://info.iet.unipi.it/~luigi/netmap/
S: Maintained
F: net/netmap.c

P
Paolo Bonzini 已提交
1094 1095 1096 1097 1098 1099
Network Block Device (NBD)
M: Paolo Bonzini <pbonzini@redhat.com>
S: Odd Fixes
F: block/nbd.c
F: nbd.*
F: qemu-nbd.c
1100
T: git git://github.com/bonzini/qemu.git nbd-next
P
Paolo Bonzini 已提交
1101

1102 1103 1104 1105 1106 1107 1108 1109 1110
NUMA
M: Eduardo Habkost <ehabkost@redhat.com>
S: Maintained
F: numa.c
F: include/sysemu/numa.h
K: numa|NUMA
K: srat|SRAT
T: git git://github.com/ehabkost/qemu.git numa

1111
QAPI
1112
M: Markus Armbruster <armbru@redhat.com>
1113
M: Michael Roth <mdroth@linux.vnet.ibm.com>
1114
S: Supported
1115
F: qapi/
1116
X: qapi/*.json
1117 1118 1119
F: include/qapi/
X: include/qapi/qmp/
F: include/qapi/qmp/dispatch.h
1120
F: tests/qapi-schema/
1121 1122
F: tests/test-*-visitor.c
F: tests/test-qmp-*.c
1123 1124
F: scripts/qapi*
F: docs/qapi*
1125
T: git git://repo.or.cz/qemu/armbru.git qapi-next
1126

1127 1128 1129 1130 1131
QAPI Schema
M: Eric Blake <eblake@redhat.com>
M: Markus Armbruster <armbru@redhat.com>
S: Supported
F: qapi-schema.json
1132
F: qapi/*.json
1133
T: git git://repo.or.cz/qemu/armbru.git qapi-next
1134

1135 1136 1137 1138
QObject
M: Luiz Capitulino <lcapitulino@redhat.com>
S: Maintained
F: qobject/
1139 1140 1141 1142 1143 1144 1145 1146
F: include/qapi/qmp/
X: include/qapi/qmp/dispatch.h
F: tests/check-qdict.c
F: tests/check-qfloat.c
F: tests/check-qint.c
F: tests/check-qjson.c
F: tests/check-qlist.c
F: tests/check-qstring.c
1147 1148
T: git git://repo.or.cz/qemu/qmp-unstable.git queue/qmp

1149 1150 1151 1152 1153 1154
QEMU Guest Agent
M: Michael Roth <mdroth@linux.vnet.ibm.com>
S: Maintained
F: qga/
T: git git://github.com/mdroth/qemu.git qga

A
Andreas Färber 已提交
1155 1156 1157 1158 1159 1160 1161 1162 1163 1164
QOM
M: Andreas Färber <afaerber@suse.de>
S: Supported
T: git git://github.com/afaerber/qemu-cpu.git qom-next
F: include/qom/
X: include/qom/cpu.h
F: qom/
X: qom/cpu.c
F: tests/qom-test.c

1165
QMP
1166 1167
M: Markus Armbruster <armbru@redhat.com>
S: Supported
1168 1169 1170
F: qmp.c
F: monitor.c
F: qmp-commands.hx
1171
F: docs/*qmp-*
1172 1173
F: scripts/qmp/
T: git git://repo.or.cz/qemu/armbru.git qapi-next
1174

1175
SLIRP
J
Jan Kiszka 已提交
1176 1177
M: Jan Kiszka <jan.kiszka@siemens.com>
S: Maintained
1178
F: slirp/
1179
T: git git://git.kiszka.org/qemu.git queues/slirp
1180

1181
Tracing
1182
M: Stefan Hajnoczi <stefanha@redhat.com>
1183 1184
S: Maintained
F: trace/
1185 1186
F: scripts/tracetool.py
F: scripts/tracetool/
1187
F: docs/tracing.txt
1188
T: git git://github.com/stefanha/qemu.git tracing
1189

B
Blue Swirl 已提交
1190 1191 1192 1193 1194
Checkpatch
M: Blue Swirl <blauwirbel@gmail.com>
S: Odd Fixes
F: scripts/checkpatch.pl

J
Juan Quintela 已提交
1195 1196
Migration
M: Juan Quintela <quintela@redhat.com>
1197
M: Amit Shah <amit.shah@redhat.com>
J
Juan Quintela 已提交
1198 1199
S: Maintained
F: include/migration/
1200
F: migration/
1201 1202
F: scripts/vmstate-static-checker.py
F: tests/vmstate-static-checker-data/
J
Juan Quintela 已提交
1203

1204
Seccomp
1205
M: Eduardo Otubo <eduardo.otubo@profitbricks.com>
1206 1207 1208 1209
S: Supported
F: qemu-seccomp.c
F: include/sysemu/seccomp.h

1210 1211 1212 1213 1214 1215 1216
Cryptography
M: Daniel P. Berrange <berrange@redhat.com>
S: Maintained
F: crypto/
F: include/crypto/
F: tests/test-crypto-*

1217 1218 1219 1220 1221 1222 1223
Coroutines
M: Stefan Hajnoczi <stefanha@redhat.com>
M: Kevin Wolf <kwolf@redhat.com>
F: util/*coroutine*
F: include/qemu/coroutine*
F: tests/test-coroutine.c

1224 1225 1226 1227 1228 1229
Buffers
M: Daniel P. Berrange <berrange@redhat.com>
S: Odd fixes
F: util/buffer.c
F: include/qemu/buffer.h

1230 1231
Usermode Emulation
------------------
P
Paolo Bonzini 已提交
1232 1233 1234 1235 1236 1237
Overall
M: Riku Voipio <riku.voipio@iki.fi>
S: Maintained
F: thunk.c
F: user-exec.c

1238 1239 1240 1241 1242 1243 1244 1245 1246
BSD user
M: Blue Swirl <blauwirbel@gmail.com>
S: Maintained
F: bsd-user/

Linux user
M: Riku Voipio <riku.voipio@iki.fi>
S: Maintained
F: linux-user/
1247 1248 1249 1250

Tiny Code Generator (TCG)
-------------------------
Common code
1251
M: Richard Henderson <rth@twiddle.net>
1252 1253 1254
S: Maintained
F: tcg/

1255 1256 1257 1258
AArch64 target
M: Claudio Fontana <claudio.fontana@huawei.com>
M: Claudio Fontana <claudio.fontana@gmail.com>
S: Maintained
1259
L: qemu-arm@nongnu.org
1260
F: tcg/aarch64/
1261 1262
F: disas/arm-a64.cc
F: disas/libvixl/
1263

1264 1265 1266
ARM target
M: Andrzej Zaborowski <balrogg@gmail.com>
S: Maintained
1267
L: qemu-arm@nongnu.org
1268
F: tcg/arm/
1269
F: disas/arm.c
1270 1271

i386 target
1272
L: qemu-devel@nongnu.org
1273 1274
S: Maintained
F: tcg/i386/
1275
F: disas/i386.c
1276 1277 1278 1279 1280

IA64 target
M: Aurelien Jarno <aurelien@aurel32.net>
S: Maintained
F: tcg/ia64/
1281
F: disas/ia64.c
1282 1283

MIPS target
1284
M: Aurelien Jarno <aurelien@aurel32.net>
1285 1286
S: Maintained
F: tcg/mips/
1287
F: disas/mips.c
1288 1289 1290 1291 1292

PPC
M: Vassili Karpov (malc) <av1474@comtv.ru>
S: Maintained
F: tcg/ppc/
1293
F: disas/ppc.c
1294 1295 1296 1297 1298 1299

S390 target
M: Alexander Graf <agraf@suse.de>
M: Richard Henderson <rth@twiddle.net>
S: Maintained
F: tcg/s390/
1300
F: disas/s390.c
1301 1302 1303 1304 1305

SPARC target
M: Blue Swirl <blauwirbel@gmail.com>
S: Maintained
F: tcg/sparc/
1306
F: disas/sparc.c
S
Stefan Weil 已提交
1307 1308 1309 1310

TCI target
M: Stefan Weil <sw@weilnetz.de>
S: Maintained
1311
F: tcg/tci/
1312
F: tci.c
1313
F: disas/tci.c
1314 1315 1316 1317 1318

Stable branches
---------------
Stable 1.0
L: qemu-stable@nongnu.org
S
Stefan Hajnoczi 已提交
1319
T: git git://git.qemu-project.org/qemu-stable-1.0.git
1320 1321 1322 1323
S: Orphan

Stable 0.15
L: qemu-stable@nongnu.org
1324
M: Andreas Färber <afaerber@suse.de>
S
Stefan Hajnoczi 已提交
1325
T: git git://git.qemu-project.org/qemu-stable-0.15.git
1326
S: Supported
1327 1328 1329

Stable 0.14
L: qemu-stable@nongnu.org
S
Stefan Hajnoczi 已提交
1330
T: git git://git.qemu-project.org/qemu-stable-0.14.git
1331 1332 1333 1334
S: Orphan

Stable 0.10
L: qemu-stable@nongnu.org
S
Stefan Hajnoczi 已提交
1335
T: git git://git.qemu-project.org/qemu-stable-0.10.git
1336
S: Orphan
1337 1338 1339 1340 1341

Block drivers
-------------
VMDK
M: Fam Zheng <famz@redhat.com>
1342
L: qemu-block@nongnu.org
1343 1344 1345 1346
S: Supported
F: block/vmdk.c

RBD
J
Josh Durgin 已提交
1347
M: Josh Durgin <jdurgin@redhat.com>
1348 1349
M: Jeff Cody <jcody@redhat.com>
L: qemu-block@nongnu.org
1350 1351
S: Supported
F: block/rbd.c
1352
T: git git://github.com/codyprime/qemu-kvm-jtc.git block
1353 1354

Sheepdog
1355
M: Hitoshi Mitake <mitake.hitoshi@lab.ntt.co.jp>
1356
M: Liu Yuan <namei.unix@gmail.com>
1357 1358
M: Jeff Cody <jcody@redhat.com>
L: qemu-block@nongnu.org
1359
L: sheepdog@lists.wpkg.org
1360 1361
S: Supported
F: block/sheepdog.c
1362
T: git git://github.com/codyprime/qemu-kvm-jtc.git block
1363 1364 1365

VHDX
M: Jeff Cody <jcody@redhat.com>
1366
L: qemu-block@nongnu.org
1367 1368
S: Supported
F: block/vhdx*
1369
T: git git://github.com/codyprime/qemu-kvm-jtc.git block
1370 1371 1372

VDI
M: Stefan Weil <sw@weilnetz.de>
1373
L: qemu-block@nongnu.org
1374 1375 1376 1377 1378 1379 1380
S: Maintained
F: block/vdi.c

iSCSI
M: Ronnie Sahlberg <ronniesahlberg@gmail.com>
M: Paolo Bonzini <pbonzini@redhat.com>
M: Peter Lieven <pl@kamp.de>
1381
L: qemu-block@nongnu.org
1382 1383 1384
S: Supported
F: block/iscsi.c

P
Peter Lieven 已提交
1385
NFS
1386
M: Jeff Cody <jcody@redhat.com>
P
Peter Lieven 已提交
1387
M: Peter Lieven <pl@kamp.de>
1388
L: qemu-block@nongnu.org
P
Peter Lieven 已提交
1389 1390
S: Maintained
F: block/nfs.c
1391
T: git git://github.com/codyprime/qemu-kvm-jtc.git block
P
Peter Lieven 已提交
1392

1393 1394
SSH
M: Richard W.M. Jones <rjones@redhat.com>
1395 1396
M: Jeff Cody <jcody@redhat.com>
L: qemu-block@nongnu.org
1397 1398
S: Supported
F: block/ssh.c
1399
T: git git://github.com/codyprime/qemu-kvm-jtc.git block
1400 1401 1402

ARCHIPELAGO
M: Chrysostomos Nanakos <chris@include.gr>
1403 1404
M: Jeff Cody <jcody@redhat.com>
L: qemu-block@nongnu.org
1405 1406
S: Maintained
F: block/archipelago.c
1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421
T: git git://github.com/codyprime/qemu-kvm-jtc.git block

CURL
M: Jeff Cody <jcody@redhat.com>
L: qemu-block@nongnu.org
S: Supported
F: block/curl.c
T: git git://github.com/codyprime/qemu-kvm-jtc.git block

GLUSTER
M: Jeff Cody <jcody@redhat.com>
L: qemu-block@nongnu.org
S: Supported
F: block/gluster.c
T: git git://github.com/codyprime/qemu-kvm-jtc.git block
1422

1423 1424 1425 1426 1427 1428
Null Block Driver
M: Fam Zheng <famz@redhat.com>
L: qemu-block@nongnu.org
S: Supported
F: block/null.c

1429 1430 1431 1432
Bootdevice
M: Gonglei <arei.gonglei@huawei.com>
S: Maintained
F: bootdevice.c
1433 1434 1435 1436 1437 1438

Quorum
M: Alberto Garcia <berto@igalia.com>
S: Supported
F: block/quorum.c
L: qemu-block@nongnu.org
1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465

blkverify
M: Stefan Hajnoczi <stefanha@redhat.com>
L: qemu-block@nongnu.org
S: Supported
F: block/blkverify.c

bochs
M: Stefan Hajnoczi <stefanha@redhat.com>
L: qemu-block@nongnu.org
S: Supported
F: block/bochs.c

cloop
M: Stefan Hajnoczi <stefanha@redhat.com>
L: qemu-block@nongnu.org
S: Supported
F: block/cloop.c

dmg
M: Stefan Hajnoczi <stefanha@redhat.com>
L: qemu-block@nongnu.org
S: Supported
F: block/dmg.c

parallels
M: Stefan Hajnoczi <stefanha@redhat.com>
1466
M: Denis V. Lunev <den@openvz.org>
1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516
L: qemu-block@nongnu.org
S: Supported
F: block/parallels.c

qed
M: Stefan Hajnoczi <stefanha@redhat.com>
L: qemu-block@nongnu.org
S: Supported
F: block/qed.c

raw
M: Kevin Wolf <kwolf@redhat.com>
L: qemu-block@nongnu.org
S: Supported
F: block/linux-aio.c
F: block/raw-aio.h
F: block/raw-posix.c
F: block/raw-win32.c
F: block/raw_bsd.c
F: block/win32-aio.c

qcow2
M: Kevin Wolf <kwolf@redhat.com>
L: qemu-block@nongnu.org
S: Supported
F: block/qcow2*

qcow
M: Kevin Wolf <kwolf@redhat.com>
L: qemu-block@nongnu.org
S: Supported
F: block/qcow.c

blkdebug
M: Kevin Wolf <kwolf@redhat.com>
L: qemu-block@nongnu.org
S: Supported
F: block/blkdebug.c

vpc
M: Kevin Wolf <kwolf@redhat.com>
L: qemu-block@nongnu.org
S: Supported
F: block/vpc.c

vvfat
M: Kevin Wolf <kwolf@redhat.com>
L: qemu-block@nongnu.org
S: Supported
F: block/vvfat.c
1517 1518 1519 1520 1521 1522

Image format fuzzer
M: Stefan Hajnoczi <stefanha@redhat.com>
L: qemu-block@nongnu.org
S: Supported
F: tests/image-fuzzer/
1523 1524 1525 1526 1527 1528 1529 1530


Documentation
-------------
Build system architecture
M: Daniel P. Berrange <berrange@redhat.com>
S: Odd Fixes
F: docs/build-system.txt