qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/22] misc queue
@ 2018-12-14 14:41 Peter Maydell
  2018-12-14 14:41 ` [Qemu-devel] [PULL 01/22] scripts/checkpatch.pl: Enforce multiline comment syntax Peter Maydell
                   ` (24 more replies)
  0 siblings, 25 replies; 26+ messages in thread
From: Peter Maydell @ 2018-12-14 14:41 UTC (permalink / raw)
  To: qemu-devel

This is a colletion of miscellaneous patches (mostly mine),
which fix minor bugs or do some refactoring/cleanup.
No user-visible changes in here.

thanks
-- PMM

The following changes since commit 0f98c9945899c5dfacd5a410ff04178eda605a16:

  Merge remote-tracking branch 'remotes/huth-gitlab/tags/pull-request-2018-12-12' into staging (2018-12-14 10:19:47 +0000)

are available in the Git repository at:

  https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-misc-20181214

for you to fetch changes up to bbac02f1e8edfd0663543f6fdad1e7094d860b29:

  virt: Fix broken indentation (2018-12-14 13:30:55 +0000)

----------------------------------------------------------------
miscellaneous patches:
 * checkpatch.pl: Enforce multiline comment syntax
 * Rename cpu_physical_memory_write_rom() to address_space_write_rom()
 * disas, monitor, elf_ops: Use address_space_read() to read memory
 * Remove load_image() in favour of load_image_size()
 * Fix some minor memory leaks in arm boards/devices
 * virt: fix broken indentation

----------------------------------------------------------------
Eduardo Habkost (1):
      virt: Fix broken indentation

Peter Maydell (21):
      scripts/checkpatch.pl: Enforce multiline comment syntax
      exec.c: Rename cpu_physical_memory_write_rom_internal()
      Rename cpu_physical_memory_write_rom() to address_space_write_rom()
      disas.c: Use address_space_read() to read memory
      monitor: Use address_space_read() to read memory
      elf_ops.h: Use address_space_write() to write memory
      hw/ppc/mac_newworld, mac_oldworld: Don't use load_image()
      hw/ppc/ppc405_boards: Don't use load_image()
      hw/smbios/smbios.c: Don't use load_image()
      hw/pci/pci.c: Don't use load_image()
      hw/i386/pc.c: Don't use load_image()
      hw/i386/multiboot.c: Don't use load_image()
      hw/block/tc58128.c: Don't use load_image()
      device_tree.c: Don't use load_image()
      hw/core/loader.c: Remove load_image()
      include/hw/loader.h: Document load_image_size()
      target/arm: Free name string in ARMCPRegInfo hashtable entries
      hw/arm/mps2-tz.c: Free mscname string in make_dma()
      hw/sd/sdhci: Don't leak memory region in sdhci_sysbus_realize()
      tests/test-arm-mptimer: Don't leak string memory
      target/arm: Create timers in realize, not init

 include/exec/cpu-common.h   |   2 -
 include/exec/memory.h       |  26 ++++++++
 include/hw/elf_ops.h        |   4 +-
 include/hw/loader.h         |  17 ++++-
 device_tree.c               |   2 +-
 disas.c                     |   5 +-
 exec.c                      |  30 +++++----
 hw/arm/mps2-tz.c            |   1 +
 hw/arm/virt.c               |   2 +-
 hw/block/tc58128.c          |   3 +-
 hw/core/loader.c            |  29 +--------
 hw/i386/multiboot.c         |   6 +-
 hw/i386/pc.c                |  22 ++++---
 hw/intc/apic.c              |   7 +-
 hw/misc/tz-mpc.c            |   2 +-
 hw/pci/pci.c                |   6 +-
 hw/ppc/mac_newworld.c       |  10 ++-
 hw/ppc/mac_oldworld.c       |  10 ++-
 hw/ppc/ppc405_boards.c      |  12 ++--
 hw/sd/sdhci.c               |   5 +-
 hw/smbios/smbios.c          |   2 +-
 hw/sparc/sun4m.c            |   5 +-
 monitor.c                   |   8 ++-
 target/arm/cpu.c            |  33 +++++++---
 tests/test-arm-mptimer.c    | 153 ++++++++++++++++++++------------------------
 docs/devel/loads-stores.rst |  35 +++++-----
 scripts/checkpatch.pl       |  48 ++++++++++++++
 27 files changed, 287 insertions(+), 198 deletions(-)

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

end of thread, other threads:[~2018-12-23  9:44 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-12-14 14:41 [Qemu-devel] [PULL 00/22] misc queue Peter Maydell
2018-12-14 14:41 ` [Qemu-devel] [PULL 01/22] scripts/checkpatch.pl: Enforce multiline comment syntax Peter Maydell
2018-12-14 14:41 ` [Qemu-devel] [PULL 02/22] exec.c: Rename cpu_physical_memory_write_rom_internal() Peter Maydell
2018-12-14 14:41 ` [Qemu-devel] [PULL 03/22] Rename cpu_physical_memory_write_rom() to address_space_write_rom() Peter Maydell
2018-12-14 14:41 ` [Qemu-devel] [PULL 04/22] disas.c: Use address_space_read() to read memory Peter Maydell
2018-12-14 14:41 ` [Qemu-devel] [PULL 05/22] monitor: " Peter Maydell
2018-12-14 14:41 ` [Qemu-devel] [PULL 06/22] elf_ops.h: Use address_space_write() to write memory Peter Maydell
2018-12-14 14:41 ` [Qemu-devel] [PULL 07/22] hw/ppc/mac_newworld, mac_oldworld: Don't use load_image() Peter Maydell
2018-12-14 14:42 ` [Qemu-devel] [PULL 08/22] hw/ppc/ppc405_boards: " Peter Maydell
2018-12-14 14:42 ` [Qemu-devel] [PULL 09/22] hw/smbios/smbios.c: " Peter Maydell
2018-12-14 14:42 ` [Qemu-devel] [PULL 10/22] hw/pci/pci.c: " Peter Maydell
2018-12-14 14:42 ` [Qemu-devel] [PULL 11/22] hw/i386/pc.c: " Peter Maydell
2018-12-14 14:42 ` [Qemu-devel] [PULL 12/22] hw/i386/multiboot.c: " Peter Maydell
2018-12-14 14:42 ` [Qemu-devel] [PULL 13/22] hw/block/tc58128.c: " Peter Maydell
2018-12-14 14:42 ` [Qemu-devel] [PULL 14/22] device_tree.c: " Peter Maydell
2018-12-14 14:42 ` [Qemu-devel] [PULL 15/22] hw/core/loader.c: Remove load_image() Peter Maydell
2018-12-14 14:42 ` [Qemu-devel] [PULL 16/22] include/hw/loader.h: Document load_image_size() Peter Maydell
2018-12-14 14:42 ` [Qemu-devel] [PULL 17/22] target/arm: Free name string in ARMCPRegInfo hashtable entries Peter Maydell
2018-12-14 14:42 ` [Qemu-devel] [PULL 18/22] hw/arm/mps2-tz.c: Free mscname string in make_dma() Peter Maydell
2018-12-14 14:42 ` [Qemu-devel] [PULL 19/22] hw/sd/sdhci: Don't leak memory region in sdhci_sysbus_realize() Peter Maydell
2018-12-14 14:42 ` [Qemu-devel] [PULL 20/22] tests/test-arm-mptimer: Don't leak string memory Peter Maydell
2018-12-14 14:42 ` [Qemu-devel] [PULL 21/22] target/arm: Create timers in realize, not init Peter Maydell
2018-12-14 14:42 ` [Qemu-devel] [PULL 22/22] virt: Fix broken indentation Peter Maydell
2018-12-16 21:48 ` [Qemu-devel] [PULL 00/22] misc queue Peter Maydell
2018-12-16 21:49 ` Peter Maydell
2018-12-23  7:58 ` no-reply

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