[PULL 00/10] Python patches

John Snow posted 10 patches 2 years, 6 months ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20211012214152.802483-1-jsnow@redhat.com
Maintainers: John Snow <jsnow@redhat.com>, Cleber Rosa <crosa@redhat.com>, Eduardo Habkost <ehabkost@redhat.com>, Hanna Reitz <hreitz@redhat.com>, Kevin Wolf <kwolf@redhat.com>
There is a newer version of this series
tests/qemu-iotests/socket_scm_helper.c | 136 -------------------------
python/qemu/aqmp/__init__.py           |   4 +
python/qemu/aqmp/events.py             |  15 ++-
python/qemu/aqmp/models.py             |  13 +++
python/qemu/aqmp/protocol.py           |   7 +-
python/qemu/aqmp/qmp_client.py         |  27 +++++
python/qemu/machine/machine.py         |  48 ++-------
python/qemu/machine/qtest.py           |   2 -
python/qemu/qmp/__init__.py            |  27 +++--
python/qemu/qmp/qmp_shell.py           |   1 -
tests/Makefile.include                 |   1 -
tests/meson.build                      |   4 -
tests/qemu-iotests/iotests.py          |   3 -
tests/qemu-iotests/meson.build         |   5 -
tests/qemu-iotests/testenv.py          |   8 +-
15 files changed, 85 insertions(+), 216 deletions(-)
delete mode 100644 tests/qemu-iotests/socket_scm_helper.c
delete mode 100644 tests/qemu-iotests/meson.build
[PULL 00/10] Python patches
Posted by John Snow 2 years, 6 months ago
The following changes since commit bfd9a76f9c143d450ab5545dedfa74364b39fc56:

  Merge remote-tracking branch 'remotes/stsquad/tags/pull-for-6.2-121021-2' into staging (2021-10-12 06:16:25 -0700)

are available in the Git repository at:

  https://gitlab.com/jsnow/qemu.git tags/python-pull-request

for you to fetch changes up to c163c723ef92d0f629d015902396f2c67328b2e5:

  python, iotests: remove socket_scm_helper (2021-10-12 12:22:11 -0400)

----------------------------------------------------------------
Pull request

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

John Snow (10):
  python/aqmp: add greeting property to QMPClient
  python/aqmp: add .empty() method to EventListener
  python/aqmp: Return cleared events from EventListener.clear()
  python/aqmp: add send_fd_scm
  python/aqmp: Add dict conversion method to Greeting object
  python/aqmp: Reduce severity of EOFError-caused loop terminations
  python/aqmp: Disable logging messages by default
  python/qmp: clear events on get_events() call
  python/qmp: add send_fd_scm directly to QEMUMonitorProtocol
  python, iotests: remove socket_scm_helper

 tests/qemu-iotests/socket_scm_helper.c | 136 -------------------------
 python/qemu/aqmp/__init__.py           |   4 +
 python/qemu/aqmp/events.py             |  15 ++-
 python/qemu/aqmp/models.py             |  13 +++
 python/qemu/aqmp/protocol.py           |   7 +-
 python/qemu/aqmp/qmp_client.py         |  27 +++++
 python/qemu/machine/machine.py         |  48 ++-------
 python/qemu/machine/qtest.py           |   2 -
 python/qemu/qmp/__init__.py            |  27 +++--
 python/qemu/qmp/qmp_shell.py           |   1 -
 tests/Makefile.include                 |   1 -
 tests/meson.build                      |   4 -
 tests/qemu-iotests/iotests.py          |   3 -
 tests/qemu-iotests/meson.build         |   5 -
 tests/qemu-iotests/testenv.py          |   8 +-
 15 files changed, 85 insertions(+), 216 deletions(-)
 delete mode 100644 tests/qemu-iotests/socket_scm_helper.c
 delete mode 100644 tests/qemu-iotests/meson.build

-- 
2.31.1



Re: [PULL 00/10] Python patches
Posted by Richard Henderson 2 years, 6 months ago
On 10/12/21 2:41 PM, John Snow wrote:
> The following changes since commit bfd9a76f9c143d450ab5545dedfa74364b39fc56:
> 
>    Merge remote-tracking branch 'remotes/stsquad/tags/pull-for-6.2-121021-2' into staging (2021-10-12 06:16:25 -0700)
> 
> are available in the Git repository at:
> 
>    https://gitlab.com/jsnow/qemu.git tags/python-pull-request
> 
> for you to fetch changes up to c163c723ef92d0f629d015902396f2c67328b2e5:
> 
>    python, iotests: remove socket_scm_helper (2021-10-12 12:22:11 -0400)
> 
> ----------------------------------------------------------------
> Pull request
> 
> ----------------------------------------------------------------
> 
> John Snow (10):
>    python/aqmp: add greeting property to QMPClient
>    python/aqmp: add .empty() method to EventListener
>    python/aqmp: Return cleared events from EventListener.clear()
>    python/aqmp: add send_fd_scm
>    python/aqmp: Add dict conversion method to Greeting object
>    python/aqmp: Reduce severity of EOFError-caused loop terminations
>    python/aqmp: Disable logging messages by default
>    python/qmp: clear events on get_events() call
>    python/qmp: add send_fd_scm directly to QEMUMonitorProtocol
>    python, iotests: remove socket_scm_helper
> 
>   tests/qemu-iotests/socket_scm_helper.c | 136 -------------------------
>   python/qemu/aqmp/__init__.py           |   4 +
>   python/qemu/aqmp/events.py             |  15 ++-
>   python/qemu/aqmp/models.py             |  13 +++
>   python/qemu/aqmp/protocol.py           |   7 +-
>   python/qemu/aqmp/qmp_client.py         |  27 +++++
>   python/qemu/machine/machine.py         |  48 ++-------
>   python/qemu/machine/qtest.py           |   2 -
>   python/qemu/qmp/__init__.py            |  27 +++--
>   python/qemu/qmp/qmp_shell.py           |   1 -
>   tests/Makefile.include                 |   1 -
>   tests/meson.build                      |   4 -
>   tests/qemu-iotests/iotests.py          |   3 -
>   tests/qemu-iotests/meson.build         |   5 -
>   tests/qemu-iotests/testenv.py          |   8 +-
>   15 files changed, 85 insertions(+), 216 deletions(-)
>   delete mode 100644 tests/qemu-iotests/socket_scm_helper.c
>   delete mode 100644 tests/qemu-iotests/meson.build

Applied, thanks.

r~