qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/22] Trivial patches for 2014-05-05
@ 2014-05-05 18:01 Michael Tokarev
  2014-05-05 18:01 ` [Qemu-devel] [PULL 01/22] Makefiles: convert some obj-specific CFLAGS to use new foo.o-cflags syntax Michael Tokarev
                   ` (22 more replies)
  0 siblings, 23 replies; 28+ messages in thread
From: Michael Tokarev @ 2014-05-05 18:01 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, Michael Tokarev

Here's another pull request for trival patches.
This time, it includes:

 - many cleanups from Stefan Weil, mostly adding `static' attrs
 - some more trivial patches from glib cleanups, by me and Stefan Hajnoczi
 - some more trivial changes for libcacard, from me and Alon Levy
 - small fixes from Chen Gang (debug) and Peter Maydell (tests)
 - little makefile cleanups and configure fix from me
 - documentation fixes from Fam Zheng
 - and some more random things

All are little things here and there, just how -trivial tree should really be.

Please consider pulling.

Thanks,

/mjt

The following changes since commit fdaad4715ae9e998fd0595bedfb16fdaf0c68ccc:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20140501' into staging (2014-05-02 11:32:00 +0100)

are available in the git repository at:


  git://git.corpit.ru/qemu.git tags/trivial-patches-2014-05-05

for you to fetch changes up to bbaa4cda7e0f6da97d46cb80ef83d2eb65b3eaf4:

  libcacard: remove unnecessary EOL from debug prints (2014-05-05 21:56:36 +0400)

----------------------------------------------------------------
trivial patches for 2014-05-05

----------------------------------------------------------------
Alon Levy (1):
      libcacard: remove unnecessary EOL from debug prints

Chen Gang (1):
      arch_init: Be sure of only one exit entry with DPRINTF() for ram_load()

Fam Zheng (1):
      docs/memory.txt: Fix document on MMIO operations

Hani Benhabiles (1):
      readline: Sort completions before printing them.

Jim Meyering (1):
      xen: remove unused global, xen_xcg

Michael Tokarev (6):
      Makefiles: convert some obj-specific CFLAGS to use new foo.o-cflags syntax
      configure: remove bashism
      do not call g_thread_init() for glib >= 2.31
      libcacard: replace pstrcpy() with memcpy()
      qmp: report path ambiguity error
      readline: use g_strndup instead of open-coding it

Peter Maydell (1):
      tests/tcg: Fix compilation of test_path

Stefan Hajnoczi (1):
      glib: move g_poll() replacement into glib-compat.h

Stefan Weil (9):
      qga: Fix typo (plural) in comment
      hw/9pfs: Add missing 'static' attributes
      hw/mips: Add missing 'static' and 'const' attributes
      hw/s390x: Add missing 'static' attribute
      monitor: Add missing 'static' attribute
      ui: Add missing 'static' attribute
      qemu-timer: Add missing 'static' attribute
      hw: Add missing 'static' attributes
      hw/9pfs: Add include file for exported symbol

 Makefile                   |    6 ------
 Makefile.objs              |    2 ++
 arch_init.c                |   12 ++++++++----
 audio/Makefile.objs        |    2 +-
 backends/Makefile.objs     |    2 +-
 configure                  |    2 +-
 coroutine-gthread.c        |    7 ++-----
 disas/Makefile.objs        |    2 +-
 docs/memory.txt            |   10 +++++-----
 hw/9pfs/virtio-9p-local.c  |    1 +
 hw/9pfs/virtio-9p-synth.c  |    2 +-
 hw/core/qdev.c             |    4 ++--
 hw/mips/mips_fulong2e.c    |    2 +-
 hw/net/cadence_gem.c       |    2 +-
 hw/net/vmxnet3.c           |    6 +++---
 hw/net/xgmac.c             |    2 +-
 hw/ppc/spapr_iommu.c       |    2 +-
 hw/ppc/spapr_rtas.c        |    2 +-
 hw/s390x/event-facility.c  |    2 +-
 hw/scsi/scsi-bus.c         |    2 +-
 hw/xen/xen_backend.c       |    1 -
 include/exec/memory.h      |    2 +-
 include/glib-compat.h      |   12 ++++++++++++
 include/qemu-common.h      |   12 ------------
 libcacard/vcard_emul_nss.c |    3 ++-
 libcacard/vreader.c        |    4 ++--
 monitor.c                  |    2 +-
 qemu-timer.c               |    2 +-
 qga/main.c                 |    2 +-
 qmp.c                      |    6 +++++-
 tests/tcg/Makefile         |    2 --
 tests/tcg/test_path.c      |    7 -------
 ui/Makefile.objs           |    2 +-
 ui/console.c               |    2 +-
 util/osdep.c               |   21 +++++++++------------
 util/readline.c            |   11 ++++++++---
 36 files changed, 79 insertions(+), 84 deletions(-)

^ permalink raw reply	[flat|nested] 28+ messages in thread

end of thread, other threads:[~2014-05-07 20:16 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-05 18:01 [Qemu-devel] [PULL 00/22] Trivial patches for 2014-05-05 Michael Tokarev
2014-05-05 18:01 ` [Qemu-devel] [PULL 01/22] Makefiles: convert some obj-specific CFLAGS to use new foo.o-cflags syntax Michael Tokarev
2014-05-05 18:01 ` [Qemu-devel] [PULL 02/22] configure: remove bashism Michael Tokarev
2014-05-05 18:01 ` [Qemu-devel] [PULL 03/22] qga: Fix typo (plural) in comment Michael Tokarev
2014-05-05 18:01 ` [Qemu-devel] [PULL 04/22] tests/tcg: Fix compilation of test_path Michael Tokarev
2014-05-05 18:01 ` [Qemu-devel] [PULL 05/22] arch_init: Be sure of only one exit entry with DPRINTF() for ram_load() Michael Tokarev
2014-05-05 18:01 ` [Qemu-devel] [PULL 06/22] hw/9pfs: Add missing 'static' attributes Michael Tokarev
2014-05-05 18:01 ` [Qemu-devel] [PULL 07/22] hw/mips: Add missing 'static' and 'const' attributes Michael Tokarev
2014-05-05 18:01 ` [Qemu-devel] [PULL 08/22] hw/s390x: Add missing 'static' attribute Michael Tokarev
2014-05-05 18:01 ` [Qemu-devel] [PULL 09/22] monitor: " Michael Tokarev
2014-05-05 18:01 ` [Qemu-devel] [PULL 10/22] ui: " Michael Tokarev
2014-05-05 18:01 ` [Qemu-devel] [PULL 11/22] qemu-timer: " Michael Tokarev
2014-05-05 18:01 ` [Qemu-devel] [PULL 12/22] hw: Add missing 'static' attributes Michael Tokarev
2014-05-05 18:01 ` [Qemu-devel] [PULL 13/22] xen: remove unused global, xen_xcg Michael Tokarev
2014-05-05 18:01 ` [Qemu-devel] [PULL 14/22] hw/9pfs: Add include file for exported symbol Michael Tokarev
2014-05-05 18:01 ` [Qemu-devel] [PULL 15/22] do not call g_thread_init() for glib >= 2.31 Michael Tokarev
2014-05-05 18:01 ` [Qemu-devel] [PULL 16/22] glib: move g_poll() replacement into glib-compat.h Michael Tokarev
2014-05-05 18:01 ` [Qemu-devel] [PULL 17/22] libcacard: replace pstrcpy() with memcpy() Michael Tokarev
2014-05-05 18:01 ` [Qemu-devel] [PULL 18/22] qmp: report path ambiguity error Michael Tokarev
2014-05-05 18:02 ` [Qemu-devel] [PULL 19/22] readline: use g_strndup instead of open-coding it Michael Tokarev
2014-05-05 18:02 ` [Qemu-devel] [PULL 20/22] readline: Sort completions before printing them Michael Tokarev
2014-05-05 18:02 ` [Qemu-devel] [PULL 21/22] docs/memory.txt: Fix document on MMIO operations Michael Tokarev
2014-05-05 18:02 ` [Qemu-devel] [PULL 22/22] libcacard: remove unnecessary EOL from debug prints Michael Tokarev
2014-05-07 12:50 ` [Qemu-devel] [PULL 00/22] Trivial patches for 2014-05-05 Peter Maydell
2014-05-07 17:05   ` Michael Tokarev
2014-05-07 17:18     ` Peter Maydell
2014-05-07 18:09   ` Paolo Bonzini
2014-05-07 20:16     ` Michael Tokarev

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).