On Fri, 14 Dec 2018 at 14:42, Peter Maydell <peter.mayd...@linaro.org> wrote: > > 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(-)
-- 12345678901234567890123456789012345678901234567890123456789012345678901234567890 1 2 3 4 5 6 7 8