From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Subject: [PULL 00/87] Misc patches for 2019-12-18
Date: Wed, 18 Dec 2019 13:01:26 +0100 [thread overview]
Message-ID: <1576670573-48048-1-git-send-email-pbonzini@redhat.com> (raw)
The following changes since commit aceeaa69d28e6f08a24395d0aa6915b687d0a681:
Merge remote-tracking branch 'remotes/huth-gitlab/tags/pull-request-2019-12-17' into staging (2019-12-17 15:55:20 +0000)
are available in the git repository at:
git://github.com/bonzini/qemu.git tags/for-upstream
for you to fetch changes up to e2328a11bda7a4d087200c524333adafb8beb7d7:
vga: cleanup mapping of VRAM for non-PCI VGA (2019-12-18 02:34:13 +0100)
----------------------------------------------------------------
* More uses of RCU_READ_LOCK_GUARD (Dave, myself)
* QOM doc improvments (Greg)
* Cleanups from the Meson conversion (Marc-André)
* Support for multiple -accel options (myself)
* Many x86 machine cleanup (Philippe, myself)
* tests/migration-test cleanup (Juan)
* PC machine removal and next round of deprecation (Thomas)
* kernel-doc integration (Peter, myself)
----------------------------------------------------------------
Cameron Esfahani (1):
Fix some comment spelling errors.
Dr. David Alan Gilbert (3):
kvm: Reallocate dirty_bmap when we change a slot
hyperv: Use auto rcu_read macros
qsp: Use WITH_RCU_READ_LOCK_GUARD
Eiichi Tsukata (1):
target/i386: remove unused pci-assign codes
Greg Kurz (1):
object: Improve documentation of interfaces
Juan Quintela (10):
migration-test: Create cmd_soure and cmd_target
migration-test: Move hide_stderr to common commandline
migration-test: Move -machine to common commandline
migration-test: Move memory size to common commandline
migration-test: Move shmem handling to common commandline
migration-test: Move -name handling to common commandline
migration-test: Move -serial handling to common commandline
migration-test: Move -incomming handling to common commandline
migration-test: Rename cmd_src/dst to arch_source/arch_target
migration-test: Use a struct for test_migrate_start parameters
Marc-André Lureau (7):
build-sys: build vhost-user-gpu only if CONFIG_TOOLS
migration: fix maybe-uninitialized warning
monitor: fix maybe-uninitialized
vhost-user-scsi: fix printf format warning
os-posix: simplify os_find_datadir
tests: skip block layer tests if !CONFIG_TOOLS
configure: simplify vhost condition with Kconfig
Paolo Bonzini (42):
memory: do not look at current_machine->accel
vl: move icount configuration earlier
tcg: move qemu_tcg_configure to accel/tcg/tcg-all.c
vl: extract accelerator option processing to a separate function
vl: merge -accel processing into configure_accelerators
accel: compile accel/accel.c just once
vl: introduce object_parse_property_opt
vl: configure accelerators from -accel options
vl: warn for unavailable accelerators, clarify messages
qom: introduce object_register_sugar_prop
qom: add object_new_with_class
accel: pass object to accel_init_machine
tcg: convert "-accel threads" to a QOM property
tcg: add "-accel tcg,tb-size" and deprecate "-tb-size"
xen: convert "-machine igd-passthru" to an accelerator property
kvm: convert "-machine kvm_shadow_mem" to an accelerator property
kvm: introduce kvm_kernel_irqchip_* functions
kvm: convert "-machine kernel_irqchip" to an accelerator property
Makefile: remove unused variables
build-sys: do not include Windows SLIRP dependencies in $LIBS
libvixl: remove per-target compiler flags
crypto: move common bits for all emulators to libqemuutil
stubs: replace stubs with lnot if applicable
configure: set $PYTHON to a full path
i386: conditionally compile more files
fw_cfg: allow building without other devices
hw: replace hw/i386/pc.h with a header just for the i8259
pci-stub: add more MSI functions
x86: move SMM property to X86MachineState
x86: move more x86-generic functions out of PC files
acpi: move PC stubs out of stubs/
pc: stubify x86 iommu
hw/isa/isa-bus: cleanup irq functions
memory: use RCU_READ_LOCK_GUARD
colo: fix return without releasing RCU
build: rename CONFIG_LIBCAP to CONFIG_LIBCAP_NG
docs: import Linux kernel-doc script and extension
docs: tweak kernel-doc for QEMU coding standards
memory.h: Silence kernel-doc complaints
docs: add memory API reference
memory: include MemoryListener documentation and some missing function parameters
vga: cleanup mapping of VRAM for non-PCI VGA
Peter Maydell (4):
docs/conf.py: Enable use of kerneldoc sphinx extension
Makefile: disable Sphinx nitpicking
bitops.h: Silence kernel-doc complaints
docs: Create bitops.rst as example of kernel-docs
Philippe Mathieu-Daudé (12):
hw/i386/pc: Convert DPRINTF() to trace events
hw/i386: De-duplicate gsi_handler() to remove kvm_pc_gsi_handler()
hw/i386: Simplify ioapic_init_gsi()
hw/i386/pc: Use TYPE_PORT92 instead of hardcoded string
hw/i386/pc: Inline port92_init()
hw/i386/pc: Extract the port92 device
hw/pci-host/i440fx: Correct the header description
hw/pci-host/i440fx: Extract PCII440FXState to "hw/pci-host/i440fx.h"
hw/pci-host/i440fx: Use size_t to iterate over ARRAY_SIZE()
hw/pci-host/i440fx: Use definitions instead of magic values
hw/pci-host/i440fx: Extract the IGD passthrough host bridge device
hw/pci-host: Add Kconfig entry to select the IGD Passthrough Host Bridge
Sunil Muthuswamy (1):
WHPX: refactor load library
Thomas Huth (4):
hw/i386: Remove the deprecated machines 0.12 up to 0.15
hw/audio: Remove the "use_broken_id" hack from the AC97 device
hw/pci: Remove the "command_serr_enable" property
hw/display: Remove "rombar" hack from vga-pci and vmware_vga
Wei Yang (1):
migration: check length directly to make sure the range is aligned
Kconfig.host | 5 +
MAINTAINERS | 1 +
Makefile | 16 +-
Makefile.objs | 6 +-
Makefile.target | 2 -
accel/Makefile.objs | 2 +-
accel/accel.c | 73 +-
accel/kvm/kvm-all.c | 161 +-
accel/tcg/tcg-all.c | 149 +-
configure | 12 +-
contrib/vhost-user-scsi/vhost-user-scsi.c | 2 +-
cpus.c | 72 -
crypto/Makefile.objs | 13 +-
disas/libvixl/Makefile.objs | 11 +-
docs/conf.py | 7 +-
docs/devel/bitops.rst | 8 +
docs/devel/index.rst | 1 +
docs/devel/memory.rst | 5 +
docs/sphinx/kerneldoc.py | 172 ++
docs/sphinx/kernellog.py | 28 +
exec.c | 7 +-
hw/acpi/Makefile.objs | 3 +-
.../pc_madt_cpu_entry.c => hw/acpi/acpi-x86-stub.c | 0
hw/alpha/alpha_sys.h | 3 +-
hw/alpha/dp264.c | 1 +
hw/audio/ac97.c | 9 -
hw/core/machine.c | 141 --
hw/display/vga-isa-mm.c | 5 +-
hw/display/vga-isa.c | 4 +-
hw/display/vga-pci.c | 5 -
hw/display/vga.c | 14 -
hw/display/vga_int.h | 3 -
hw/display/vmware_vga.c | 5 -
hw/hppa/hppa_sys.h | 3 +-
hw/hppa/machine.c | 1 +
hw/hyperv/hyperv.c | 22 +-
hw/i386/Kconfig | 6 +
hw/i386/Makefile.objs | 10 +-
hw/i386/acpi-build.c | 1 +
hw/i386/fw_cfg.c | 8 +-
hw/i386/fw_cfg.h | 2 +
hw/i386/kvm/Makefile.objs | 6 +-
hw/i386/kvm/i8259.c | 1 +
hw/i386/kvm/ioapic.c | 14 +-
hw/i386/microvm.c | 4 +-
hw/i386/pc.c | 291 +--
hw/i386/pc_piix.c | 91 +-
hw/i386/pc_q35.c | 2 +-
hw/i386/port92.c | 126 ++
hw/i386/trace-events | 8 +
hw/i386/x86-iommu-stub.c | 34 +
hw/i386/x86.c | 154 +-
hw/input/pckbd.c | 1 -
hw/intc/Kconfig | 2 +
hw/intc/apic.c | 2 +-
hw/intc/i8259.c | 2 +-
hw/intc/i8259_common.c | 2 +-
hw/intc/ioapic.c | 3 +-
hw/isa/i82378.c | 2 +-
hw/isa/isa-bus.c | 11 +-
hw/isa/lpc_ich9.c | 1 -
hw/isa/piix4.c | 2 +-
hw/mips/gt64xxx_pci.c | 2 +-
hw/mips/mips_fulong2e.c | 2 +-
hw/mips/mips_jazz.c | 2 +-
hw/mips/mips_r4k.c | 2 +-
hw/pci-host/Kconfig | 5 +
hw/pci-host/Makefile.objs | 1 +
hw/pci-host/bonito.c | 1 -
hw/pci-host/i440fx.c | 105 +-
hw/pci-host/prep.c | 2 +-
hw/pci-host/xen_igd_pt.c | 120 ++
hw/pci/pci-stub.c | 27 +
hw/pci/pci.c | 6 +-
hw/ppc/e500.c | 5 +-
hw/ppc/spapr_irq.c | 16 +-
hw/virtio/Kconfig | 3 +
hw/virtio/Makefile.objs | 4 +-
hw/xen/xen-common.c | 18 +
hw/xen/xen_pt.c | 2 +
include/exec/memory.h | 237 ++-
include/hw/boards.h | 7 -
include/hw/i386/pc.h | 32 +-
include/hw/i386/x86.h | 23 +
include/hw/intc/i8259.h | 12 +
include/hw/isa/i8259_internal.h | 2 +-
include/hw/isa/isa.h | 8 +-
include/hw/pci-host/i440fx.h | 19 +-
include/hw/pci/pci.h | 2 +-
include/qemu/bitops.h | 52 +-
include/qom/object.h | 23 +-
include/sysemu/accel.h | 4 +-
include/sysemu/cpus.h | 2 -
include/sysemu/kvm.h | 8 +-
memory.c | 5 +-
migration/ram.c | 53 +-
monitor/misc.c | 3 +-
os-posix.c | 41 +-
qemu-bridge-helper.c | 6 +-
qemu-deprecated.texi | 8 +-
qemu-options.hx | 30 +-
qom/object.c | 28 +-
scripts/kernel-doc | 2236 ++++++++++++++++++++
scsi/qemu-pr-helper.c | 12 +-
stubs/Makefile.objs | 1 -
target/arm/kvm.c | 8 +-
target/i386/cpu.c | 8 +-
target/i386/kvm.c | 151 +-
target/i386/kvm_i386.h | 20 -
target/i386/machine.c | 10 +-
target/i386/monitor.c | 1 -
target/i386/whp-dispatch.h | 4 +
target/i386/whpx-all.c | 85 +-
target/mips/kvm.c | 2 +-
target/ppc/kvm.c | 2 +-
target/s390x/cpu_models.c | 4 +-
target/s390x/kvm.c | 2 +-
tests/Makefile.include | 4 +-
tests/arm-cpu-features.c | 4 +-
tests/bios-tables-test.c | 16 +-
tests/boot-serial-test.c | 4 +-
tests/cdrom-test.c | 2 +-
tests/cpu-plug-test.c | 6 +-
tests/libqtest.c | 4 +-
tests/migration-test.c | 264 +--
tests/pflash-cfi02-test.c | 4 +-
tests/pnv-xscom-test.c | 4 +-
tests/prom-env-test.c | 2 +-
tests/pxe-test.c | 2 +-
tests/vmgenid-test.c | 2 +-
util/Makefile.objs | 3 +-
util/qsp.c | 22 +-
vl.c | 225 +-
133 files changed, 4248 insertions(+), 1552 deletions(-)
create mode 100644 docs/devel/bitops.rst
create mode 100644 docs/sphinx/kerneldoc.py
create mode 100644 docs/sphinx/kernellog.py
rename stubs/pc_madt_cpu_entry.c => hw/acpi/acpi-x86-stub.c (100%)
create mode 100644 hw/i386/port92.c
create mode 100644 hw/i386/x86-iommu-stub.c
create mode 100644 hw/pci-host/xen_igd_pt.c
create mode 100644 include/hw/intc/i8259.h
create mode 100755 scripts/kernel-doc
--
1.8.3.1
next reply other threads:[~2019-12-18 12:05 UTC|newest]
Thread overview: 98+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-18 12:01 Paolo Bonzini [this message]
2019-12-18 12:01 ` [PULL 01/87] kvm: Reallocate dirty_bmap when we change a slot Paolo Bonzini
2019-12-18 12:01 ` [PULL 02/87] migration-test: Create cmd_soure and cmd_target Paolo Bonzini
2019-12-18 12:01 ` [PULL 03/87] migration-test: Move hide_stderr to common commandline Paolo Bonzini
2019-12-18 12:01 ` [PULL 04/87] migration-test: Move -machine " Paolo Bonzini
2019-12-18 12:01 ` [PULL 05/87] migration-test: Move memory size " Paolo Bonzini
2019-12-18 12:01 ` [PULL 06/87] migration-test: Move shmem handling " Paolo Bonzini
2019-12-18 12:01 ` [PULL 07/87] migration-test: Move -name " Paolo Bonzini
2019-12-18 12:01 ` [PULL 08/87] migration-test: Move -serial " Paolo Bonzini
2019-12-18 12:01 ` [PULL 09/87] migration-test: Move -incomming " Paolo Bonzini
2019-12-18 12:01 ` [PULL 10/87] migration-test: Rename cmd_src/dst to arch_source/arch_target Paolo Bonzini
2019-12-18 12:01 ` [PULL 11/87] migration-test: Use a struct for test_migrate_start parameters Paolo Bonzini
2019-12-18 12:01 ` [PULL 12/87] memory: do not look at current_machine->accel Paolo Bonzini
2019-12-18 12:01 ` [PULL 13/87] vl: move icount configuration earlier Paolo Bonzini
2019-12-18 12:01 ` [PULL 14/87] tcg: move qemu_tcg_configure to accel/tcg/tcg-all.c Paolo Bonzini
2019-12-18 12:01 ` [PULL 15/87] vl: extract accelerator option processing to a separate function Paolo Bonzini
2019-12-18 12:01 ` [PULL 16/87] vl: merge -accel processing into configure_accelerators Paolo Bonzini
2019-12-18 12:01 ` [PULL 17/87] accel: compile accel/accel.c just once Paolo Bonzini
2019-12-18 12:01 ` [PULL 18/87] vl: introduce object_parse_property_opt Paolo Bonzini
2019-12-18 12:01 ` [PULL 19/87] vl: configure accelerators from -accel options Paolo Bonzini
2019-12-18 12:01 ` [PULL 20/87] vl: warn for unavailable accelerators, clarify messages Paolo Bonzini
2020-01-16 14:50 ` Laurent Vivier
2020-01-16 15:10 ` Paolo Bonzini
2019-12-18 12:01 ` [PULL 21/87] qom: introduce object_register_sugar_prop Paolo Bonzini
2019-12-18 12:01 ` [PULL 22/87] qom: add object_new_with_class Paolo Bonzini
2019-12-18 12:01 ` [PULL 23/87] accel: pass object to accel_init_machine Paolo Bonzini
2019-12-18 12:01 ` [PULL 24/87] tcg: convert "-accel threads" to a QOM property Paolo Bonzini
2019-12-18 12:01 ` [PULL 25/87] tcg: add "-accel tcg,tb-size" and deprecate "-tb-size" Paolo Bonzini
2019-12-18 12:01 ` [PULL 26/87] xen: convert "-machine igd-passthru" to an accelerator property Paolo Bonzini
2019-12-18 12:01 ` [PULL 27/87] kvm: convert "-machine kvm_shadow_mem" " Paolo Bonzini
2019-12-18 12:01 ` [PULL 28/87] kvm: introduce kvm_kernel_irqchip_* functions Paolo Bonzini
2019-12-18 12:01 ` [PULL 29/87] kvm: convert "-machine kernel_irqchip" to an accelerator property Paolo Bonzini
2020-01-07 14:46 ` Peter Maydell
2020-01-07 16:18 ` Paolo Bonzini
2019-12-18 12:01 ` [PULL 30/87] Makefile: remove unused variables Paolo Bonzini
2019-12-18 12:01 ` [PULL 31/87] object: Improve documentation of interfaces Paolo Bonzini
2019-12-18 12:01 ` [PULL 32/87] build-sys: build vhost-user-gpu only if CONFIG_TOOLS Paolo Bonzini
2019-12-18 12:01 ` [PULL 33/87] build-sys: do not include Windows SLIRP dependencies in $LIBS Paolo Bonzini
2019-12-18 12:02 ` [PULL 34/87] migration: fix maybe-uninitialized warning Paolo Bonzini
2019-12-18 12:02 ` [PULL 35/87] monitor: fix maybe-uninitialized Paolo Bonzini
2019-12-18 12:02 ` [PULL 36/87] vhost-user-scsi: fix printf format warning Paolo Bonzini
2019-12-18 12:02 ` [PULL 37/87] os-posix: simplify os_find_datadir Paolo Bonzini
2019-12-18 12:02 ` [PULL 38/87] tests: skip block layer tests if !CONFIG_TOOLS Paolo Bonzini
2019-12-18 12:02 ` [PULL 39/87] libvixl: remove per-target compiler flags Paolo Bonzini
2019-12-18 12:02 ` [PULL 40/87] crypto: move common bits for all emulators to libqemuutil Paolo Bonzini
2019-12-18 12:02 ` [PULL 41/87] stubs: replace stubs with lnot if applicable Paolo Bonzini
2019-12-18 12:02 ` [PULL 42/87] configure: set $PYTHON to a full path Paolo Bonzini
2019-12-18 12:02 ` [PULL 43/87] configure: simplify vhost condition with Kconfig Paolo Bonzini
2019-12-18 12:02 ` [PULL 44/87] i386: conditionally compile more files Paolo Bonzini
2019-12-18 12:02 ` [PULL 45/87] fw_cfg: allow building without other devices Paolo Bonzini
2019-12-18 12:02 ` [PULL 46/87] hw: replace hw/i386/pc.h with a header just for the i8259 Paolo Bonzini
2019-12-18 12:02 ` [PULL 47/87] pci-stub: add more MSI functions Paolo Bonzini
2019-12-18 12:02 ` [PULL 48/87] x86: move SMM property to X86MachineState Paolo Bonzini
2019-12-23 11:28 ` Michal Prívozník
2019-12-23 11:33 ` Daniel P. Berrangé
2019-12-23 11:40 ` Michal Prívozník
2019-12-23 13:38 ` Paolo Bonzini
2019-12-23 14:46 ` Michal Prívozník
2019-12-18 12:02 ` [PULL 49/87] hw/i386/pc: Convert DPRINTF() to trace events Paolo Bonzini
2019-12-18 12:02 ` [PULL 50/87] x86: move more x86-generic functions out of PC files Paolo Bonzini
2019-12-18 12:02 ` [PULL 51/87] acpi: move PC stubs out of stubs/ Paolo Bonzini
2019-12-18 12:02 ` [PULL 52/87] pc: stubify x86 iommu Paolo Bonzini
2019-12-18 12:02 ` [PULL 53/87] hw/i386: De-duplicate gsi_handler() to remove kvm_pc_gsi_handler() Paolo Bonzini
2019-12-18 12:02 ` [PULL 54/87] hw/i386: Simplify ioapic_init_gsi() Paolo Bonzini
2019-12-18 12:02 ` [PULL 55/87] hw/isa/isa-bus: cleanup irq functions Paolo Bonzini
2019-12-18 12:02 ` [PULL 56/87] hw/i386/pc: Use TYPE_PORT92 instead of hardcoded string Paolo Bonzini
2019-12-18 12:02 ` [PULL 57/87] hw/i386/pc: Inline port92_init() Paolo Bonzini
2019-12-18 12:02 ` [PULL 58/87] hw/i386/pc: Extract the port92 device Paolo Bonzini
2019-12-18 12:02 ` [PULL 59/87] hyperv: Use auto rcu_read macros Paolo Bonzini
2019-12-18 12:02 ` [PULL 60/87] qsp: Use WITH_RCU_READ_LOCK_GUARD Paolo Bonzini
2019-12-18 12:02 ` [PULL 61/87] memory: use RCU_READ_LOCK_GUARD Paolo Bonzini
2019-12-18 12:02 ` [PULL 62/87] colo: fix return without releasing RCU Paolo Bonzini
2019-12-18 12:02 ` [PULL 63/87] build: rename CONFIG_LIBCAP to CONFIG_LIBCAP_NG Paolo Bonzini
2019-12-18 12:02 ` [PULL 64/87] docs: import Linux kernel-doc script and extension Paolo Bonzini
2019-12-18 12:02 ` [PULL 65/87] docs: tweak kernel-doc for QEMU coding standards Paolo Bonzini
2019-12-18 12:02 ` [PULL 66/87] docs/conf.py: Enable use of kerneldoc sphinx extension Paolo Bonzini
2019-12-18 12:02 ` [PULL 67/87] Makefile: disable Sphinx nitpicking Paolo Bonzini
2019-12-18 12:02 ` [PULL 68/87] bitops.h: Silence kernel-doc complaints Paolo Bonzini
2019-12-18 12:02 ` [PULL 69/87] docs: Create bitops.rst as example of kernel-docs Paolo Bonzini
2019-12-18 12:02 ` [PULL 70/87] memory.h: Silence kernel-doc complaints Paolo Bonzini
2019-12-18 12:02 ` [PULL 71/87] docs: add memory API reference Paolo Bonzini
2019-12-18 12:02 ` [PULL 72/87] memory: include MemoryListener documentation and some missing function parameters Paolo Bonzini
2019-12-18 12:02 ` [PULL 73/87] migration: check length directly to make sure the range is aligned Paolo Bonzini
2019-12-18 12:02 ` [PULL 74/87] WHPX: refactor load library Paolo Bonzini
2019-12-18 12:02 ` [PULL 75/87] target/i386: remove unused pci-assign codes Paolo Bonzini
2019-12-18 12:02 ` [PULL 76/87] Fix some comment spelling errors Paolo Bonzini
2019-12-18 12:02 ` [PULL 77/87] hw/pci-host/i440fx: Correct the header description Paolo Bonzini
2019-12-18 12:02 ` [PULL 78/87] hw/pci-host/i440fx: Extract PCII440FXState to "hw/pci-host/i440fx.h" Paolo Bonzini
2019-12-18 12:02 ` [PULL 79/87] hw/pci-host/i440fx: Use size_t to iterate over ARRAY_SIZE() Paolo Bonzini
2019-12-18 12:02 ` [PULL 80/87] hw/pci-host/i440fx: Use definitions instead of magic values Paolo Bonzini
2019-12-18 12:02 ` [PULL 81/87] hw/pci-host/i440fx: Extract the IGD passthrough host bridge device Paolo Bonzini
2019-12-18 12:02 ` [PULL 82/87] hw/pci-host: Add Kconfig entry to select the IGD Passthrough Host Bridge Paolo Bonzini
2019-12-18 12:02 ` [PULL 83/87] hw/i386: Remove the deprecated machines 0.12 up to 0.15 Paolo Bonzini
2019-12-18 12:02 ` [PULL 84/87] hw/audio: Remove the "use_broken_id" hack from the AC97 device Paolo Bonzini
2019-12-18 12:02 ` [PULL 85/87] hw/pci: Remove the "command_serr_enable" property Paolo Bonzini
2019-12-18 12:02 ` [PULL 86/87] hw/display: Remove "rombar" hack from vga-pci and vmware_vga Paolo Bonzini
2019-12-18 12:02 ` [PULL 87/87] vga: cleanup mapping of VRAM for non-PCI VGA Paolo Bonzini
2019-12-20 12:45 ` [PULL 00/87] Misc patches for 2019-12-18 Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1576670573-48048-1-git-send-email-pbonzini@redhat.com \
--to=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).