[PULL v2 0/7] Screendump patches

Marc-André Lureau posted 7 patches 4 years, 4 months ago
Test docker-quick@centos7 failed
Test asan failed
Test checkpatch failed
Test FreeBSD failed
Test docker-mingw@fedora failed
Test docker-clang@ubuntu failed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20200103090853.1014627-1-marcandre.lureau@redhat.com
Maintainers: Gerd Hoffmann <kraxel@redhat.com>, Eduardo Habkost <ehabkost@redhat.com>, "Daniel P. Berrangé" <berrange@redhat.com>, Paolo Bonzini <pbonzini@redhat.com>
hw/display/qxl-render.c  |  9 +++--
hw/display/qxl.c         |  1 +
include/qemu/osdep.h     |  1 +
include/qom/object.h     |  3 ++
include/ui/console.h     |  2 ++
include/ui/qemu-pixman.h |  2 ++
ui/console.c             | 73 +++++++++++++++++++++-------------------
ui/trace-events          |  2 +-
util/osdep.c             | 15 +++++++++
9 files changed, 70 insertions(+), 38 deletions(-)
[PULL v2 0/7] Screendump patches
Posted by Marc-André Lureau 4 years, 4 months ago
The following changes since commit dd5b0f95490883cd8bc7d070db8de70d5c979cbc:

  Merge remote-tracking branch 'remotes/cohuck/tags/s390x-20191219' into staging (2019-12-20 16:37:07 +0000)

are available in the Git repository at:

  https://github.com/elmarco/qemu.git tags/screendump-pull-request

for you to fetch changes up to 53a61ecbb16b28c707f0b126193d226a25c28cb2:

  screendump: use qemu_unlink() (2020-01-02 16:29:32 +0400)

----------------------------------------------------------------
console: screendump improvements

Hi,

The following patches have been extracted from the "[PATCH v6 00/25]
monitor: add asynchronous command type", as they are
reviewable/mergeable independantly.

They introduce some internal API changes, and fix
qemu_open()/qemu_close()/unlink() misusages which should be quite
harmless.

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

Marc-André Lureau (7):
  console: add graphic_hw_update_done()
  ppm-save: pass opened fd
  ui: add pixman image g_autoptr support
  object: add g_autoptr support
  screendump: replace FILE with QIOChannel and fix close()/qemu_close()
  osdep: add qemu_unlink()
  screendump: use qemu_unlink()

 hw/display/qxl-render.c  |  9 +++--
 hw/display/qxl.c         |  1 +
 include/qemu/osdep.h     |  1 +
 include/qom/object.h     |  3 ++
 include/ui/console.h     |  2 ++
 include/ui/qemu-pixman.h |  2 ++
 ui/console.c             | 73 +++++++++++++++++++++-------------------
 ui/trace-events          |  2 +-
 util/osdep.c             | 15 +++++++++
 9 files changed, 70 insertions(+), 38 deletions(-)

-- 
2.24.0.308.g228f53135a


Re: [PULL v2 0/7] Screendump patches
Posted by Peter Maydell 4 years, 4 months ago
On Fri, 3 Jan 2020 at 09:09, Marc-André Lureau
<marcandre.lureau@redhat.com> wrote:
>
> The following changes since commit dd5b0f95490883cd8bc7d070db8de70d5c979cbc:
>
>   Merge remote-tracking branch 'remotes/cohuck/tags/s390x-20191219' into staging (2019-12-20 16:37:07 +0000)
>
> are available in the Git repository at:
>
>   https://github.com/elmarco/qemu.git tags/screendump-pull-request
>
> for you to fetch changes up to 53a61ecbb16b28c707f0b126193d226a25c28cb2:
>
>   screendump: use qemu_unlink() (2020-01-02 16:29:32 +0400)
>
> ----------------------------------------------------------------
> console: screendump improvements
>
> Hi,
>
> The following patches have been extracted from the "[PATCH v6 00/25]
> monitor: add asynchronous command type", as they are
> reviewable/mergeable independantly.
>
> They introduce some internal API changes, and fix
> qemu_open()/qemu_close()/unlink() misusages which should be quite
> harmless.


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/5.0
for any user-visible changes.

-- PMM