From: Hu Tao <hutao@cn.fujitsu.com>
To: qemu-devel@nongnu.org
Cc: Peter Crosthwaite <peter.crosthwaite@xilinx.com>,
"Michael S. Tsirkin" <mst@redhat.com>,
Yasuaki Isimatu <isimatu.yasuaki@jp.fujitsu.com>,
Paolo Bonzini <pbonzini@redhat.com>,
Yasunori Goto <y-goto@jp.fujitsu.com>
Subject: [Qemu-devel] [PATCH v6 0/7] memory API improvements and bug fixes for memory backends
Date: Thu, 7 Aug 2014 17:10:17 +0800 [thread overview]
Message-ID: <cover.1407402040.git.hutao@cn.fujitsu.com> (raw)
This series includes two parts:
1. part 1 includes patches 1-4, which improves error handling of
memory_region_init_ram, memory_region_init_ram_ptr and
memory_region_init_rom_device
2. part 2 includes patches 5-7, each fixes a bug of memory backend.
changes to v5:
- split patch 6 in v5 into 2
- use local_err instead of errp
- typo fixes
Hu Tao (7):
exec: add parameter errp to qemu_ram_alloc and qemu_ram_alloc_from_ptr
memory: add parameter errp to memory_region_init_ram
memory: add parameter errp to memory_region_init_ram_ptr
memory: add parameter errp to memory_region_init_rom_device
hostmem-ram: don't exit qemu if size of memory-backend-ram is way too
big
exec: report error when memory < hpagesize
exec: add parameter errp to gethugepagesize
backends/hostmem-ram.c | 2 +-
exec.c | 60 ++++++++++++++++++++++----------
hw/alpha/typhoon.c | 3 +-
hw/arm/armv7m.c | 7 ++--
hw/arm/cubieboard.c | 2 +-
hw/arm/digic_boards.c | 2 +-
hw/arm/exynos4210.c | 9 ++---
hw/arm/highbank.c | 5 +--
hw/arm/integratorcp.c | 5 +--
hw/arm/kzm.c | 4 +--
hw/arm/mainstone.c | 3 +-
hw/arm/musicpal.c | 6 ++--
hw/arm/omap1.c | 6 ++--
hw/arm/omap2.c | 6 ++--
hw/arm/omap_sx1.c | 6 ++--
hw/arm/palm.c | 3 +-
hw/arm/pxa2xx.c | 11 +++---
hw/arm/realview.c | 9 +++--
hw/arm/spitz.c | 2 +-
hw/arm/strongarm.c | 3 +-
hw/arm/tosa.c | 2 +-
hw/arm/versatilepb.c | 3 +-
hw/arm/vexpress.c | 15 +++++---
hw/arm/virt.c | 3 +-
hw/arm/xilinx_zynq.c | 6 ++--
hw/block/onenand.c | 2 +-
hw/block/pflash_cfi01.c | 2 +-
hw/block/pflash_cfi02.c | 2 +-
hw/core/loader.c | 2 +-
hw/cris/axis_dev88.c | 6 ++--
hw/display/cg3.c | 6 ++--
hw/display/g364fb.c | 2 +-
hw/display/qxl.c | 6 ++--
hw/display/sm501.c | 2 +-
hw/display/tc6393xb.c | 3 +-
hw/display/tcx.c | 5 +--
hw/display/vga.c | 3 +-
hw/display/vmware_vga.c | 3 +-
hw/i386/kvm/pci-assign.c | 6 ++--
hw/i386/pc.c | 3 +-
hw/i386/pc_sysfw.c | 5 +--
hw/input/milkymist-softusb.c | 4 +--
hw/lm32/lm32_boards.c | 6 ++--
hw/lm32/milkymist.c | 3 +-
hw/m68k/an5206.c | 4 +--
hw/m68k/dummy_m68k.c | 2 +-
hw/m68k/mcf5208.c | 4 +--
hw/microblaze/petalogix_ml605_mmu.c | 5 +--
hw/microblaze/petalogix_s3adsp1800_mmu.c | 6 ++--
hw/mips/mips_fulong2e.c | 5 +--
hw/mips/mips_jazz.c | 8 +++--
hw/mips/mips_malta.c | 6 ++--
hw/mips/mips_mipssim.c | 6 ++--
hw/mips/mips_r4k.c | 5 +--
hw/misc/ivshmem.c | 5 +--
hw/misc/vfio.c | 3 +-
hw/moxie/moxiesim.c | 4 +--
hw/net/milkymist-minimac2.c | 2 +-
hw/openrisc/openrisc_sim.c | 2 +-
hw/pci-host/prep.c | 3 +-
hw/pci/pci.c | 2 +-
hw/ppc/mac_newworld.c | 3 +-
hw/ppc/mac_oldworld.c | 3 +-
hw/ppc/ppc405_boards.c | 8 +++--
hw/ppc/ppc405_uc.c | 3 +-
hw/ppc/spapr.c | 2 +-
hw/s390x/s390-virtio-ccw.c | 2 +-
hw/s390x/s390-virtio.c | 2 +-
hw/sh4/r2d.c | 2 +-
hw/sh4/shix.c | 8 +++--
hw/sparc/leon3.c | 4 +--
hw/sparc/sun4m.c | 10 +++---
hw/sparc64/sun4u.c | 6 ++--
hw/unicore32/puv3.c | 3 +-
hw/xtensa/sim.c | 4 +--
hw/xtensa/xtfpga.c | 8 +++--
include/exec/memory.h | 12 +++++--
include/exec/ram_addr.h | 4 +--
memory.c | 15 ++++----
numa.c | 4 +--
xen-hvm.c | 3 +-
81 files changed, 270 insertions(+), 162 deletions(-)
--
1.9.3
next reply other threads:[~2014-08-07 9:12 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-07 9:10 Hu Tao [this message]
2014-08-07 9:10 ` [Qemu-devel] [PATCH v6 1/7] exec: add parameter errp to qemu_ram_alloc and qemu_ram_alloc_from_ptr Hu Tao
2014-08-07 11:24 ` Peter Crosthwaite
2014-08-08 6:07 ` Hu Tao
2014-08-12 1:42 ` Peter Crosthwaite
2014-08-07 9:10 ` [Qemu-devel] [PATCH v6 2/7] memory: add parameter errp to memory_region_init_ram Hu Tao
2014-08-07 9:10 ` [Qemu-devel] [PATCH v6 3/7] memory: add parameter errp to memory_region_init_ram_ptr Hu Tao
2014-08-07 9:10 ` [Qemu-devel] [PATCH v6 4/7] memory: add parameter errp to memory_region_init_rom_device Hu Tao
2014-08-07 9:10 ` [Qemu-devel] [PATCH v6 5/7] hostmem-ram: don't exit qemu if size of memory-backend-ram is way too big Hu Tao
2014-08-07 9:10 ` [Qemu-devel] [PATCH v6 6/7] exec: report error when memory < hpagesize Hu Tao
2014-08-07 11:45 ` Peter Crosthwaite
2014-08-08 6:59 ` Hu Tao
2014-08-07 9:10 ` [Qemu-devel] [PATCH v6 7/7] exec: add parameter errp to gethugepagesize Hu Tao
2014-08-07 11:47 ` Peter Crosthwaite
2014-08-07 12:00 ` Gonglei (Arei)
2014-08-15 9:55 ` Hu Tao
2014-08-07 11:13 ` [Qemu-devel] [PATCH v6 0/7] memory API improvements and bug fixes for memory backends Peter Crosthwaite
2014-08-15 9:54 ` Hu Tao
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1407402040.git.hutao@cn.fujitsu.com \
--to=hutao@cn.fujitsu.com \
--cc=isimatu.yasuaki@jp.fujitsu.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peter.crosthwaite@xilinx.com \
--cc=qemu-devel@nongnu.org \
--cc=y-goto@jp.fujitsu.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).