All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v5 00/16] NUMA series v5
@ 2014-06-10 11:15 Hu Tao
  2014-06-10 11:15 ` [Qemu-devel] [PATCH v5 01/16] fixup! NUMA: check if the total numa memory size is equal to ram_size Hu Tao
                   ` (16 more replies)
  0 siblings, 17 replies; 47+ messages in thread
From: Hu Tao @ 2014-06-10 11:15 UTC (permalink / raw)
  To: qemu-devel
  Cc: Eduardo Habkost, Michael S. Tsirkin, Paolo Bonzini,
	Igor Mammedov, Yasunori Goto

note: based on MST's numa tree.

changes are error messages and docs tweaks to address comments to
v4.


Hu Tao (7):
  backend:hostmem: replace hostmemory with host_memory
  hostmem: separate allocation from UserCreatable complete method
  hostmem: add properties for NUMA memory policy
  tests: fix memory leak in test of string input visitor
  qapi: make string input visitor parse int list
  qapi: make string output visitor parse int list
  qmp: add query-memdev

Paolo Bonzini (8):
  vl: redo -object parsing
  fixup! qmp: improve error reporting for -object and object-add
  pc: pass MachineState to pc_memory_init
  fixup! numa: add -numa node,memdev= option
  hostmem: add file-based HostMemoryBackend
  hostmem: add merge and dump properties
  hostmem: allow preallocation of any memory region
  hostmem: add property to map memory with MAP_SHARED

Wanlong Gao (1):
  fixup! NUMA: check if the total numa memory size is equal to ram_size

 backends/Makefile.objs             |   1 +
 backends/hostmem-file.c            | 134 ++++++++++++++++
 backends/hostmem-ram.c             |   7 +-
 backends/hostmem.c                 | 304 +++++++++++++++++++++++++++++++++++--
 exec.c                             |  25 ++-
 hw/i386/pc.c                       |  24 +--
 hw/i386/pc_piix.c                  |   8 +-
 hw/i386/pc_q35.c                   |   4 +-
 include/exec/memory.h              |  12 ++
 include/exec/ram_addr.h            |   4 +-
 include/hw/i386/pc.h               |   7 +-
 include/qemu/osdep.h               |  10 ++
 include/sysemu/hostmem.h           |   8 +
 memory.c                           |  14 +-
 numa.c                             |  78 +++++++++-
 qapi-schema.json                   |  60 ++++++++
 qapi/string-input-visitor.c        | 181 +++++++++++++++++++++-
 qapi/string-output-visitor.c       | 230 ++++++++++++++++++++++++++--
 qemu-options.hx                    |   6 +-
 qmp-commands.hx                    |  38 +++++
 qmp.c                              |   3 +-
 tests/test-string-input-visitor.c  |  39 +++++
 tests/test-string-output-visitor.c |  34 +++++
 vl.c                               |  65 ++++----
 24 files changed, 1191 insertions(+), 105 deletions(-)
 create mode 100644 backends/hostmem-file.c

-- 
1.9.3

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

end of thread, other threads:[~2014-06-16 15:06 UTC | newest]

Thread overview: 47+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-10 11:15 [Qemu-devel] [PATCH v5 00/16] NUMA series v5 Hu Tao
2014-06-10 11:15 ` [Qemu-devel] [PATCH v5 01/16] fixup! NUMA: check if the total numa memory size is equal to ram_size Hu Tao
2014-06-10 11:15 ` [Qemu-devel] [PATCH v5 02/16] vl: redo -object parsing Hu Tao
2014-06-10 11:15 ` [Qemu-devel] [PATCH v5 03/16] fixup! qmp: improve error reporting for -object and object-add Hu Tao
2014-06-10 11:15 ` [Qemu-devel] [PATCH v5 04/16] pc: pass MachineState to pc_memory_init Hu Tao
2014-06-10 11:15 ` [Qemu-devel] [PATCH v5 05/16] backend:hostmem: replace hostmemory with host_memory Hu Tao
2014-06-10 11:15 ` [Qemu-devel] [PATCH v5 06/16] hostmem: separate allocation from UserCreatable complete method Hu Tao
2014-06-10 11:15 ` [Qemu-devel] [PATCH v5 07/16] fixup! numa: add -numa node, memdev= option Hu Tao
2014-06-10 11:27   ` Michael S. Tsirkin
2014-06-10 11:30   ` Michael S. Tsirkin
2014-06-10 11:15 ` [Qemu-devel] [PATCH v5 08/16] hostmem: add file-based HostMemoryBackend Hu Tao
2014-06-11  8:03   ` Michael S. Tsirkin
2014-06-10 11:15 ` [Qemu-devel] [PATCH v5 09/16] hostmem: add merge and dump properties Hu Tao
2014-06-10 11:15 ` [Qemu-devel] [PATCH v5 10/16] hostmem: allow preallocation of any memory region Hu Tao
2014-06-10 11:15 ` [Qemu-devel] [PATCH v5 11/16] hostmem: add property to map memory with MAP_SHARED Hu Tao
2014-06-10 11:15 ` [Qemu-devel] [PATCH v5 12/16] hostmem: add properties for NUMA memory policy Hu Tao
2014-06-10 11:15 ` [Qemu-devel] [PATCH v5 13/16] tests: fix memory leak in test of string input visitor Hu Tao
2014-06-10 11:15 ` [Qemu-devel] [PATCH v5 14/16] qapi: make string input visitor parse int list Hu Tao
2014-06-10 11:15 ` [Qemu-devel] [PATCH v5 15/16] qapi: make string output " Hu Tao
2014-06-10 11:15 ` [Qemu-devel] [PATCH v5 16/16] qmp: add query-memdev Hu Tao
2014-06-12  7:41 ` [Qemu-devel] [PATCH v5 00/16] NUMA series v5 Michael S. Tsirkin
2014-06-12  7:53   ` Hu Tao
2014-06-13  8:03     ` Michael S. Tsirkin
2014-06-13  8:18       ` Paolo Bonzini
2014-06-13  8:46         ` Michael S. Tsirkin
2014-06-13  8:49         ` Hu Tao
2014-06-13  8:54           ` Michael S. Tsirkin
2014-06-14  4:48             ` [Qemu-devel] [PATCH RFC 0/4] fixes for pci tree Hu Tao
2014-06-14  4:48               ` [Qemu-devel] [PATCH RFC 1/4] get rid of signed range Hu Tao
2014-06-15  9:00                 ` Michael S. Tsirkin
2014-06-16  9:47                   ` Hu Tao
2014-06-16 15:06                 ` Michael S. Tsirkin
2014-06-14  4:48               ` [Qemu-devel] [PATCH RFC 2/4] check if we have space left for hotplugged memory Hu Tao
2014-06-15  8:53                 ` Michael S. Tsirkin
2014-06-16  9:47                   ` Hu Tao
2014-06-14  4:48               ` [Qemu-devel] [PATCH RFC 3/4] exec: don't exit unconditionally if failed to allocate memory Hu Tao
2014-06-14 17:07                 ` Paolo Bonzini
2014-06-15  9:58                   ` Michael S. Tsirkin
2014-06-16  9:54                     ` Hu Tao
2014-06-16 10:07                       ` Paolo Bonzini
2014-06-14  4:48               ` [Qemu-devel] [PATCH RFC 4/4] memory-backend-file: error out " Hu Tao
2014-06-14 17:09                 ` Paolo Bonzini
2014-06-16  6:30                   ` Hu Tao
2014-06-15 10:00               ` [Qemu-devel] [PATCH RFC 0/4] fixes for pci tree Michael S. Tsirkin
2014-06-16  6:29                 ` Hu Tao
2014-06-16  7:04                   ` Michael S. Tsirkin
2014-06-16  8:28                     ` Hu Tao

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.