From: Michael Tokarev <mjt@tls.msk.ru>
To: qemu-devel@nongnu.org
Cc: qemu-trivial@nongnu.org, Michael Tokarev <mjt@tls.msk.ru>
Subject: [Qemu-trivial] [PULL 00/46] Trivial patches for 2015-02-10
Date: Tue, 10 Feb 2015 09:33:49 +0300 [thread overview]
Message-ID: <cover.1423549659.git.mjt@msgid.tls.msk.ru> (raw)
This is another pull request for trivial-patches tree.
This time it is sort of huge, consisting of 46 patches in total.
There are several patches and series which aren't applied to
-trivial but should -- I decided I'll send a pull request first
and apply the leftovers later, because there are important
changes in the tree and amount of leftovers is somewhat large.
This is a 3-week collection.
This request consists of a large number of trivial fixes from
the usual heros, Marcus and Stefen, who found several new ways
to find various small defects in the code. There are several
linux-user fixes from Chen Gang, with some grammar fixes from
me -- not all of his changes has been applied so far. There
are several bugfixes, -- eg, the libcacard linking fix, a buffer
overflow fix in inet_parse (which does not warrant a CVE# :);
and also there are some other stuff from here and there.
Please consider applying.
Thanks,
/mjt
The following changes since commit 89db21771782fd6050335e73542064f1187c9ced:
qmp: unbreak build for non-vnc configuration (2015-02-09 22:36:04 +0000)
are available in the git repository at:
git://git.corpit.ru/qemu.git tags/pull-trivial-patches-2015-02-10
for you to fetch changes up to 3ff64f1f9391a9b71d4dd58c6c4bbaa1db3dd430:
virtio: Fix warning caused by missing 'static' attribute (2015-02-10 09:27:21 +0300)
----------------------------------------------------------------
trivial patches for 2015-02-10
----------------------------------------------------------------
Chen Gang S (4):
linux-user/syscall.c: lock_iovec: unlock vec[i] in failure processing code block
linux-user/syscall.c: Fix typo issue for using target_vec[i].iov_len instead of target_vec[i].iov_base
linux-user/main.c: Use TARGET_SIG* instead of SIG*
linux-user/syscall.c: do_ioctl_dm: Need to call unlock_user() before going to failure return in default case
Christian Borntraeger (1):
vl.c: fix memory leak spotted by valgrind
Daniel P. Berrange (1):
libcacard: stop linking against every single 3rd party library
Don Koch (4):
Add tracing to xenfb.
Add trace to ps2.c.
Add/convert trace calls in pcnet-pci.c.
Convert some debugging printfs to trace calls in pcnet.c.
Gonglei (2):
fw_cfg: fix typos in comments: patch -> path
virtfs-proxy-helper: Fix possible socket leak.
Greg Kurz (2):
QJSON: fix typo in author's email address
Fix name error in migration stream analyzation script
Kevin Wolf (1):
qemu-sockets: Fix buffer overflow in inet_parse()
Markus Armbruster (15):
target-mips: Clean up switch fall through after commit fecd264
vl: Fix bogus error message for implied mon ID clashing
qemu-option: Replace pointless use of g_malloc0() by g_malloc()
qemu-option: Pair g_malloc() with g_free(), not free()
spapr_vio: Pair g_malloc() with g_free(), not free()
usb: Pair g_malloc() with g_free(), not free()
util/uri: uri_new() can't fail, drop dead error handling
util/uri: realloc2n() can't fail, drop dead error handling
util/uri: URI member path can be null, compare more carfully
onenand: g_malloc() can't fail, bury dead error handling
rtl8139: g_malloc() can't fail, bury dead error handling
kvm: g_malloc() can't fail, bury dead error handling
rdma: g_malloc0() can't fail, bury dead error handling
vnc: g_realloc() can't fail, bury dead error handling
translate-all: Use g_try_malloc() for dynamic translator buffer
Maxim Ostapenko (1):
linux-user: wrong TARGET_SI_PAD_SIZE value for some targets.
Paolo Bonzini (4):
cpu-exec: drop dead assignment
cpu-exec: simplify icount code
qemu-sockets: improve error reporting in unix_listen_opts
aes: remove a dead return statement
Stefan Weil (10):
disas/cris: Fix warning caused by missing 'static' attribute
disas/sh4: Fix warning caused by missing 'static' attribute
migration: Fix warning caused by missing declaration of vmstate_dummy
migration: Fix warnings caused by missing 'static' attribute
moxie: Fix warning caused by missing include statement
serial: Fix warnings caused by missing 'static' attribute
spice: Add missing 'static' attribute
stubs: Fix warning caused by missing include statement
vga: Fix warning caused by missing 'static' attribute
virtio: Fix warning caused by missing 'static' attribute
Thomas Huth (1):
qemu-log: Correct help text of 'log cpu_reset'
cpu-exec.c | 12 +++------
disas/cris.c | 2 +-
disas/sh4.c | 2 +-
fsdev/virtfs-proxy-helper.c | 13 ++++++---
hw/block/onenand.c | 8 +-----
hw/char/serial.c | 14 +++++-----
hw/char/virtio-serial-bus.c | 2 +-
hw/core/fw-path-provider.c | 2 +-
hw/display/vga.c | 2 +-
hw/display/xenfb.c | 5 ++++
hw/input/ps2.c | 16 +++++++++++
hw/net/pcnet-pci.c | 49 +++++++++++++--------------------
hw/net/pcnet.c | 28 ++++++-------------
hw/net/rtl8139.c | 14 ----------
hw/ppc/spapr.c | 2 +-
hw/ppc/spapr_vio.c | 2 +-
hw/usb/desc-msos.c | 2 +-
include/migration/vmstate.h | 2 --
kvm-all.c | 4 ---
libcacard/Makefile | 2 ++
linux-user/main.c | 64 ++++++++++++++++++++++----------------------
linux-user/syscall.c | 9 ++++++-
linux-user/syscall_defs.h | 9 ++++++-
migration/rdma.c | 11 +++-----
qemu-log.c | 2 +-
qjson.c | 2 +-
scripts/analyze-migration.py | 2 +-
spice-qemu-char.c | 2 +-
stubs/qtest.c | 2 +-
target-mips/translate.c | 4 +++
target-moxie/machine.c | 1 +
trace-events | 41 ++++++++++++++++++++++++++++
translate-all.c | 2 +-
ui/vnc.c | 4 ---
util/aes.c | 2 +-
util/qemu-option.c | 8 +++---
util/qemu-sockets.c | 26 +++++++++++++-----
util/uri.c | 61 +++++++++--------------------------------
vl.c | 7 +++--
39 files changed, 224 insertions(+), 218 deletions(-)
WARNING: multiple messages have this Message-ID (diff)
From: Michael Tokarev <mjt@tls.msk.ru>
To: qemu-devel@nongnu.org
Cc: qemu-trivial@nongnu.org, Michael Tokarev <mjt@tls.msk.ru>
Subject: [Qemu-devel] [PULL 00/46] Trivial patches for 2015-02-10
Date: Tue, 10 Feb 2015 09:33:49 +0300 [thread overview]
Message-ID: <cover.1423549659.git.mjt@msgid.tls.msk.ru> (raw)
This is another pull request for trivial-patches tree.
This time it is sort of huge, consisting of 46 patches in total.
There are several patches and series which aren't applied to
-trivial but should -- I decided I'll send a pull request first
and apply the leftovers later, because there are important
changes in the tree and amount of leftovers is somewhat large.
This is a 3-week collection.
This request consists of a large number of trivial fixes from
the usual heros, Marcus and Stefen, who found several new ways
to find various small defects in the code. There are several
linux-user fixes from Chen Gang, with some grammar fixes from
me -- not all of his changes has been applied so far. There
are several bugfixes, -- eg, the libcacard linking fix, a buffer
overflow fix in inet_parse (which does not warrant a CVE# :);
and also there are some other stuff from here and there.
Please consider applying.
Thanks,
/mjt
The following changes since commit 89db21771782fd6050335e73542064f1187c9ced:
qmp: unbreak build for non-vnc configuration (2015-02-09 22:36:04 +0000)
are available in the git repository at:
git://git.corpit.ru/qemu.git tags/pull-trivial-patches-2015-02-10
for you to fetch changes up to 3ff64f1f9391a9b71d4dd58c6c4bbaa1db3dd430:
virtio: Fix warning caused by missing 'static' attribute (2015-02-10 09:27:21 +0300)
----------------------------------------------------------------
trivial patches for 2015-02-10
----------------------------------------------------------------
Chen Gang S (4):
linux-user/syscall.c: lock_iovec: unlock vec[i] in failure processing code block
linux-user/syscall.c: Fix typo issue for using target_vec[i].iov_len instead of target_vec[i].iov_base
linux-user/main.c: Use TARGET_SIG* instead of SIG*
linux-user/syscall.c: do_ioctl_dm: Need to call unlock_user() before going to failure return in default case
Christian Borntraeger (1):
vl.c: fix memory leak spotted by valgrind
Daniel P. Berrange (1):
libcacard: stop linking against every single 3rd party library
Don Koch (4):
Add tracing to xenfb.
Add trace to ps2.c.
Add/convert trace calls in pcnet-pci.c.
Convert some debugging printfs to trace calls in pcnet.c.
Gonglei (2):
fw_cfg: fix typos in comments: patch -> path
virtfs-proxy-helper: Fix possible socket leak.
Greg Kurz (2):
QJSON: fix typo in author's email address
Fix name error in migration stream analyzation script
Kevin Wolf (1):
qemu-sockets: Fix buffer overflow in inet_parse()
Markus Armbruster (15):
target-mips: Clean up switch fall through after commit fecd264
vl: Fix bogus error message for implied mon ID clashing
qemu-option: Replace pointless use of g_malloc0() by g_malloc()
qemu-option: Pair g_malloc() with g_free(), not free()
spapr_vio: Pair g_malloc() with g_free(), not free()
usb: Pair g_malloc() with g_free(), not free()
util/uri: uri_new() can't fail, drop dead error handling
util/uri: realloc2n() can't fail, drop dead error handling
util/uri: URI member path can be null, compare more carfully
onenand: g_malloc() can't fail, bury dead error handling
rtl8139: g_malloc() can't fail, bury dead error handling
kvm: g_malloc() can't fail, bury dead error handling
rdma: g_malloc0() can't fail, bury dead error handling
vnc: g_realloc() can't fail, bury dead error handling
translate-all: Use g_try_malloc() for dynamic translator buffer
Maxim Ostapenko (1):
linux-user: wrong TARGET_SI_PAD_SIZE value for some targets.
Paolo Bonzini (4):
cpu-exec: drop dead assignment
cpu-exec: simplify icount code
qemu-sockets: improve error reporting in unix_listen_opts
aes: remove a dead return statement
Stefan Weil (10):
disas/cris: Fix warning caused by missing 'static' attribute
disas/sh4: Fix warning caused by missing 'static' attribute
migration: Fix warning caused by missing declaration of vmstate_dummy
migration: Fix warnings caused by missing 'static' attribute
moxie: Fix warning caused by missing include statement
serial: Fix warnings caused by missing 'static' attribute
spice: Add missing 'static' attribute
stubs: Fix warning caused by missing include statement
vga: Fix warning caused by missing 'static' attribute
virtio: Fix warning caused by missing 'static' attribute
Thomas Huth (1):
qemu-log: Correct help text of 'log cpu_reset'
cpu-exec.c | 12 +++------
disas/cris.c | 2 +-
disas/sh4.c | 2 +-
fsdev/virtfs-proxy-helper.c | 13 ++++++---
hw/block/onenand.c | 8 +-----
hw/char/serial.c | 14 +++++-----
hw/char/virtio-serial-bus.c | 2 +-
hw/core/fw-path-provider.c | 2 +-
hw/display/vga.c | 2 +-
hw/display/xenfb.c | 5 ++++
hw/input/ps2.c | 16 +++++++++++
hw/net/pcnet-pci.c | 49 +++++++++++++--------------------
hw/net/pcnet.c | 28 ++++++-------------
hw/net/rtl8139.c | 14 ----------
hw/ppc/spapr.c | 2 +-
hw/ppc/spapr_vio.c | 2 +-
hw/usb/desc-msos.c | 2 +-
include/migration/vmstate.h | 2 --
kvm-all.c | 4 ---
libcacard/Makefile | 2 ++
linux-user/main.c | 64 ++++++++++++++++++++++----------------------
linux-user/syscall.c | 9 ++++++-
linux-user/syscall_defs.h | 9 ++++++-
migration/rdma.c | 11 +++-----
qemu-log.c | 2 +-
qjson.c | 2 +-
scripts/analyze-migration.py | 2 +-
spice-qemu-char.c | 2 +-
stubs/qtest.c | 2 +-
target-mips/translate.c | 4 +++
target-moxie/machine.c | 1 +
trace-events | 41 ++++++++++++++++++++++++++++
translate-all.c | 2 +-
ui/vnc.c | 4 ---
util/aes.c | 2 +-
util/qemu-option.c | 8 +++---
util/qemu-sockets.c | 26 +++++++++++++-----
util/uri.c | 61 +++++++++--------------------------------
vl.c | 7 +++--
39 files changed, 224 insertions(+), 218 deletions(-)
next reply other threads:[~2015-02-10 6:42 UTC|newest]
Thread overview: 104+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-10 6:33 Michael Tokarev [this message]
2015-02-10 6:33 ` [Qemu-devel] [PULL 00/46] Trivial patches for 2015-02-10 Michael Tokarev
2015-02-10 6:33 ` [Qemu-trivial] [PULL 01/46] target-mips: Clean up switch fall through after commit fecd264 Michael Tokarev
2015-02-10 6:33 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:33 ` [Qemu-trivial] [PULL 02/46] fw_cfg: fix typos in comments: patch -> path Michael Tokarev
2015-02-10 6:33 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:33 ` [Qemu-trivial] [PULL 03/46] Add tracing to xenfb Michael Tokarev
2015-02-10 6:33 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:33 ` [Qemu-trivial] [PULL 04/46] Add trace to ps2.c Michael Tokarev
2015-02-10 6:33 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:33 ` [Qemu-trivial] [PULL 05/46] Add/convert trace calls in pcnet-pci.c Michael Tokarev
2015-02-10 6:33 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:33 ` [Qemu-trivial] [PULL 06/46] Convert some debugging printfs to trace calls in pcnet.c Michael Tokarev
2015-02-10 6:33 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:33 ` [Qemu-trivial] [PULL 07/46] vl: Fix bogus error message for implied mon ID clashing Michael Tokarev
2015-02-10 6:33 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:33 ` [Qemu-trivial] [PULL 08/46] virtfs-proxy-helper: Fix possible socket leak Michael Tokarev
2015-02-10 6:33 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:33 ` [Qemu-trivial] [PULL 09/46] linux-user/syscall.c: lock_iovec: unlock vec[i] in failure processing code block Michael Tokarev
2015-02-10 6:33 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:33 ` [Qemu-trivial] [PULL 10/46] linux-user/syscall.c: Fix typo issue for using target_vec[i].iov_len instead of target_vec[i].iov_base Michael Tokarev
2015-02-10 6:33 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 11/46] linux-user/main.c: Use TARGET_SIG* instead of SIG* Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 12/46] linux-user/syscall.c: do_ioctl_dm: Need to call unlock_user() before going to failure return in default case Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 13/46] qemu-log: Correct help text of 'log cpu_reset' Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 14/46] cpu-exec: drop dead assignment Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 9:15 ` [Qemu-trivial] " Peter Maydell
2015-02-10 9:15 ` Peter Maydell
2015-02-10 9:19 ` [Qemu-trivial] " Paolo Bonzini
2015-02-10 9:19 ` Paolo Bonzini
2015-02-10 6:34 ` [Qemu-trivial] [PULL 15/46] cpu-exec: simplify icount code Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 16/46] qemu-sockets: improve error reporting in unix_listen_opts Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 17/46] aes: remove a dead return statement Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 18/46] vl.c: fix memory leak spotted by valgrind Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 19/46] qemu-sockets: Fix buffer overflow in inet_parse() Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 20/46] linux-user: wrong TARGET_SI_PAD_SIZE value for some targets Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 21/46] libcacard: stop linking against every single 3rd party library Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 22/46] qemu-option: Replace pointless use of g_malloc0() by g_malloc() Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 23/46] qemu-option: Pair g_malloc() with g_free(), not free() Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 24/46] spapr_vio: " Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 25/46] usb: " Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 26/46] util/uri: uri_new() can't fail, drop dead error handling Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 27/46] util/uri: realloc2n() " Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 28/46] util/uri: URI member path can be null, compare more carfully Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 29/46] QJSON: fix typo in author's email address Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 30/46] Fix name error in migration stream analyzation script Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 31/46] onenand: g_malloc() can't fail, bury dead error handling Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 32/46] rtl8139: " Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 33/46] kvm: " Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 34/46] rdma: g_malloc0() " Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 35/46] vnc: g_realloc() " Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 36/46] translate-all: Use g_try_malloc() for dynamic translator buffer Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 37/46] disas/cris: Fix warning caused by missing 'static' attribute Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 38/46] disas/sh4: " Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 39/46] migration: Fix warning caused by missing declaration of vmstate_dummy Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 40/46] migration: Fix warnings caused by missing 'static' attribute Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 41/46] moxie: Fix warning caused by missing include statement Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 42/46] serial: Fix warnings caused by missing 'static' attribute Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 43/46] spice: Add " Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 44/46] stubs: Fix warning caused by missing include statement Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 45/46] vga: Fix warning caused by missing 'static' attribute Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 6:34 ` [Qemu-trivial] [PULL 46/46] virtio: " Michael Tokarev
2015-02-10 6:34 ` [Qemu-devel] " Michael Tokarev
2015-02-10 7:14 ` [Qemu-trivial] [Qemu-devel] [PULL 00/46] Trivial patches for 2015-02-10 Peter Maydell
2015-02-10 7:14 ` Peter Maydell
2015-02-10 7:29 ` [Qemu-trivial] " Michael Tokarev
2015-02-10 7:29 ` Michael Tokarev
2015-02-10 10:42 ` [Qemu-trivial] " Peter Maydell
2015-02-10 10:42 ` 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=cover.1423549659.git.mjt@msgid.tls.msk.ru \
--to=mjt@tls.msk.ru \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.