All of lore.kernel.org
 help / color / mirror / Atom feed
From: marcandre.lureau@redhat.com
To: qemu-devel@nongnu.org
Cc: "Peter Maydell" <peter.maydell@linaro.org>,
	"Marc-André Lureau" <marcandre.lureau@redhat.com>
Subject: [PULL 00/10] For 6.0 patches
Date: Sun, 28 Mar 2021 22:45:23 +0400	[thread overview]
Message-ID: <20210328184533.752840-1-marcandre.lureau@redhat.com> (raw)

From: Marc-André Lureau <marcandre.lureau@redhat.com>

The following changes since commit 7b9a3c9f94bcac23c534bc9f42a9e914b433b299:

  Merge remote-tracking branch 'remotes/kraxel/tags/fixes-20210326-pull-request' into staging (2021-03-26 12:58:58 +0000)

are available in the Git repository at:

  git@gitlab.com:marcandre.lureau/qemu.git tags/for-6.0-pull-request

for you to fetch changes up to f57d44b452e11d8b7c9743476c30a8d0f80926de:

  tests: Add tests for yank with the chardev-change case (2021-03-27 13:57:40 +0400)

----------------------------------------------------------------
For 6.0 misc patches under my radar.

Peter, let me know if you would rather split that PR.

----------------------------------------------------------------

Lukas Straub (6):
  yank: Remove dependency on qiochannel
  yank: Always link full yank code
  chardev/char.c: Move object_property_try_add_child out of chardev_new
  chardev/char.c: Always pass id to chardev_new
  chardev: Fix yank with the chardev-change case
  tests: Add tests for yank with the chardev-change case

Marc-André Lureau (3):
  util: fix use-after-free in module_load_one
  sphinx: adopt kernel readthedoc theme
  docs: simplify each section title

Priyankar Jain (1):
  dbus-vmstate: Increase the size of input stream buffer used during
    load

 docs/_templates/editpage.html              |   5 -
 docs/conf.py                               |  51 +++---
 docs/devel/_templates/editpage.html        |   5 -
 docs/devel/index.rst                       |   4 +-
 docs/interop/_templates/editpage.html      |   5 -
 docs/interop/index.rst                     |   4 +-
 docs/meson.build                           |   5 +-
 docs/specs/_templates/editpage.html        |   5 -
 docs/specs/index.rst                       |   4 +-
 docs/sphinx-static/theme_overrides.css     | 161 +++++++++++++++++
 docs/system/_templates/editpage.html       |   5 -
 docs/system/index.rst                      |   4 +-
 docs/tools/_templates/editpage.html        |   5 -
 docs/tools/index.rst                       |   4 +-
 docs/user/_templates/editpage.html         |   5 -
 docs/user/index.rst                        |   4 +-
 include/chardev/char.h                     |   3 +
 include/qemu/yank.h                        |  10 --
 migration/yank_functions.h                 |  17 ++
 backends/dbus-vmstate.c                    |  20 ++-
 chardev/char-socket.c                      |  41 +++--
 chardev/char.c                             |  77 +++++---
 migration/channel.c                        |   6 +-
 migration/multifd.c                        |   3 +-
 migration/qemu-file-channel.c              |   3 +-
 migration/yank_functions.c                 |  20 +++
 stubs/yank.c                               |  29 ---
 tests/unit/test-yank.c                     | 200 +++++++++++++++++++++
 util/module.c                              |   3 +-
 util/yank.c                                |   8 -
 MAINTAINERS                                |   3 +-
 migration/meson.build                      |   1 +
 stubs/meson.build                          |   1 -
 tests/docker/dockerfiles/alpine.docker     |   1 +
 tests/docker/dockerfiles/debian10.docker   |   1 +
 tests/docker/dockerfiles/fedora.docker     |   1 +
 tests/docker/dockerfiles/ubuntu.docker     |   1 +
 tests/docker/dockerfiles/ubuntu1804.docker |   1 +
 tests/docker/dockerfiles/ubuntu2004.docker |   1 +
 tests/unit/meson.build                     |   3 +-
 util/meson.build                           |   2 +-
 41 files changed, 567 insertions(+), 165 deletions(-)
 delete mode 100644 docs/_templates/editpage.html
 delete mode 100644 docs/devel/_templates/editpage.html
 delete mode 100644 docs/interop/_templates/editpage.html
 delete mode 100644 docs/specs/_templates/editpage.html
 create mode 100644 docs/sphinx-static/theme_overrides.css
 delete mode 100644 docs/system/_templates/editpage.html
 delete mode 100644 docs/tools/_templates/editpage.html
 delete mode 100644 docs/user/_templates/editpage.html
 create mode 100644 migration/yank_functions.h
 create mode 100644 migration/yank_functions.c
 delete mode 100644 stubs/yank.c
 create mode 100644 tests/unit/test-yank.c

-- 
2.29.0




             reply	other threads:[~2021-03-28 18:48 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-28 18:45 marcandre.lureau [this message]
2021-03-28 18:45 ` [PULL 01/10] util: fix use-after-free in module_load_one marcandre.lureau
2021-03-28 18:45 ` [PULL 02/10] dbus-vmstate: Increase the size of input stream buffer used during load marcandre.lureau
2021-03-28 18:45 ` [PULL 03/10] sphinx: adopt kernel readthedoc theme marcandre.lureau
2021-03-28 18:45 ` [PULL 04/10] docs: simplify each section title marcandre.lureau
2021-03-28 18:45 ` [PULL 05/10] yank: Remove dependency on qiochannel marcandre.lureau
2021-03-28 18:45 ` [PULL 06/10] yank: Always link full yank code marcandre.lureau
2021-03-28 18:45 ` [PULL 07/10] chardev/char.c: Move object_property_try_add_child out of chardev_new marcandre.lureau
2021-03-28 18:45 ` [PULL 08/10] chardev/char.c: Always pass id to chardev_new marcandre.lureau
2021-03-28 18:45 ` [PULL 09/10] chardev: Fix yank with the chardev-change case marcandre.lureau
2021-03-28 18:45 ` [PULL 10/10] tests: Add tests for " marcandre.lureau
2021-03-28 19:00 ` [PULL 00/10] For 6.0 patches no-reply
2021-03-29 13:53 ` Peter Maydell
2021-03-29 14:16   ` Marc-André Lureau
2021-03-29 15:56     ` Peter Maydell
2021-03-29 16:30       ` Marc-André Lureau
2021-03-29 17:54         ` Peter Maydell
2021-03-30  8:29           ` Marc-André Lureau
2021-03-30 12:11             ` Peter Maydell
2021-03-30 14:36               ` Marc-André Lureau
2021-03-29 16:26     ` Lukas Straub

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=20210328184533.752840-1-marcandre.lureau@redhat.com \
    --to=marcandre.lureau@redhat.com \
    --cc=peter.maydell@linaro.org \
    --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 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.