From: "Michael S. Tsirkin" <mst@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>,
Eduardo Habkost <ehabkost@redhat.com>,
Andre Przywara <andre.przywara@amd.com>,
Hu Tao <hutao@cn.fujitsu.com>, Alexander Graf <agraf@suse.de>,
Luiz Capitulino <lcapitulino@redhat.com>,
qemu-ppc@nongnu.org, Anthony Liguori <aliguori@amazon.com>,
Paolo Bonzini <pbonzini@redhat.com>,
Wanlong Gao <gaowanlong@cn.fujitsu.com>
Subject: [Qemu-devel] [PULL 064/103] NUMA: Add numa_info structure to contain numa nodes info
Date: Tue, 17 Jun 2014 20:40:06 +0300 [thread overview]
Message-ID: <1403021756-15960-65-git-send-email-mst@redhat.com> (raw)
In-Reply-To: <1403021756-15960-1-git-send-email-mst@redhat.com>
From: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Add the numa_info structure to contain the numa nodes memory,
VCPUs information and the future added numa nodes host memory
policies.
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Andre Przywara <andre.przywara@amd.com>
Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
[Fix hw/ppc/spapr.c - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Hu Tao <hutao@cn.fujitsu.com>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
---
include/sysemu/sysemu.h | 8 ++++++--
hw/i386/pc.c | 12 ++++++++----
hw/ppc/spapr.c | 11 ++++++-----
monitor.c | 2 +-
numa.c | 23 ++++++++++++-----------
vl.c | 7 +++----
6 files changed, 36 insertions(+), 27 deletions(-)
diff --git a/include/sysemu/sysemu.h b/include/sysemu/sysemu.h
index 565c8f6..3a9308b 100644
--- a/include/sysemu/sysemu.h
+++ b/include/sysemu/sysemu.h
@@ -9,6 +9,7 @@
#include "qapi-types.h"
#include "qemu/notify.h"
#include "qemu/main-loop.h"
+#include "qemu/bitmap.h"
/* vl.c */
@@ -142,8 +143,11 @@ extern QEMUClockType rtc_clock;
#define MAX_CPUMASK_BITS 255
extern int nb_numa_nodes;
-extern uint64_t node_mem[MAX_NODES];
-extern unsigned long *node_cpumask[MAX_NODES];
+typedef struct node_info {
+ uint64_t node_mem;
+ DECLARE_BITMAP(node_cpu, MAX_CPUMASK_BITS);
+} NodeInfo;
+extern NodeInfo numa_info[MAX_NODES];
void numa_add(const char *optarg);
void set_numa_nodes(void);
void set_numa_modes(void);
diff --git a/hw/i386/pc.c b/hw/i386/pc.c
index 8444bf9..f275059 100644
--- a/hw/i386/pc.c
+++ b/hw/i386/pc.c
@@ -705,14 +705,14 @@ static FWCfgState *bochs_bios_init(void)
unsigned int apic_id = x86_cpu_apic_id_from_index(i);
assert(apic_id < apic_id_limit);
for (j = 0; j < nb_numa_nodes; j++) {
- if (test_bit(i, node_cpumask[j])) {
+ if (test_bit(i, numa_info[j].node_cpu)) {
numa_fw_cfg[apic_id + 1] = cpu_to_le64(j);
break;
}
}
}
for (i = 0; i < nb_numa_nodes; i++) {
- numa_fw_cfg[apic_id_limit + 1 + i] = cpu_to_le64(node_mem[i]);
+ numa_fw_cfg[apic_id_limit + 1 + i] = cpu_to_le64(numa_info[i].node_mem);
}
fw_cfg_add_bytes(fw_cfg, FW_CFG_NUMA, numa_fw_cfg,
(1 + apic_id_limit + nb_numa_nodes) *
@@ -1126,8 +1126,12 @@ PcGuestInfo *pc_guest_info_init(ram_addr_t below_4g_mem_size,
guest_info->apic_id_limit = pc_apic_id_limit(max_cpus);
guest_info->apic_xrupt_override = kvm_allows_irq0_override();
guest_info->numa_nodes = nb_numa_nodes;
- guest_info->node_mem = g_memdup(node_mem, guest_info->numa_nodes *
+ guest_info->node_mem = g_malloc0(guest_info->numa_nodes *
sizeof *guest_info->node_mem);
+ for (i = 0; i < nb_numa_nodes; i++) {
+ guest_info->node_mem[i] = numa_info[i].node_mem;
+ }
+
guest_info->node_cpu = g_malloc0(guest_info->apic_id_limit *
sizeof *guest_info->node_cpu);
@@ -1135,7 +1139,7 @@ PcGuestInfo *pc_guest_info_init(ram_addr_t below_4g_mem_size,
unsigned int apic_id = x86_cpu_apic_id_from_index(i);
assert(apic_id < guest_info->apic_id_limit);
for (j = 0; j < nb_numa_nodes; j++) {
- if (test_bit(i, node_cpumask[j])) {
+ if (test_bit(i, numa_info[j].node_cpu)) {
guest_info->node_cpu[apic_id] = j;
break;
}
diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
index 57e9578..d252a60 100644
--- a/hw/ppc/spapr.c
+++ b/hw/ppc/spapr.c
@@ -538,8 +538,8 @@ static int spapr_populate_memory(sPAPREnvironment *spapr, void *fdt)
int i, off;
/* memory node(s) */
- if (nb_numa_nodes > 1 && node_mem[0] < ram_size) {
- node0_size = node_mem[0];
+ if (nb_numa_nodes > 1 && numa_info[0].node_mem < ram_size) {
+ node0_size = numa_info[0].node_mem;
} else {
node0_size = ram_size;
}
@@ -577,7 +577,7 @@ static int spapr_populate_memory(sPAPREnvironment *spapr, void *fdt)
if (mem_start >= ram_size) {
node_size = 0;
} else {
- node_size = node_mem[i];
+ node_size = numa_info[i].node_mem;
if (node_size > ram_size - mem_start) {
node_size = ram_size - mem_start;
}
@@ -722,7 +722,8 @@ static void spapr_reset_htab(sPAPREnvironment *spapr)
/* Update the RMA size if necessary */
if (spapr->vrma_adjust) {
- hwaddr node0_size = (nb_numa_nodes > 1) ? node_mem[0] : ram_size;
+ hwaddr node0_size = (nb_numa_nodes > 1) ?
+ numa_info[0].node_mem : ram_size;
spapr->rma_size = kvmppc_rma_size(node0_size, spapr->htab_shift);
}
}
@@ -1155,7 +1156,7 @@ static void ppc_spapr_init(MachineState *machine)
MemoryRegion *sysmem = get_system_memory();
MemoryRegion *ram = g_new(MemoryRegion, 1);
hwaddr rma_alloc_size;
- hwaddr node0_size = (nb_numa_nodes > 1) ? node_mem[0] : ram_size;
+ hwaddr node0_size = (nb_numa_nodes > 1) ? numa_info[0].node_mem : ram_size;
uint32_t initrd_base = 0;
long kernel_size = 0, initrd_size = 0;
long load_limit, rtas_limit, fw_size;
diff --git a/monitor.c b/monitor.c
index 0565816..a2a4466 100644
--- a/monitor.c
+++ b/monitor.c
@@ -2006,7 +2006,7 @@ static void do_info_numa(Monitor *mon, const QDict *qdict)
}
monitor_printf(mon, "\n");
monitor_printf(mon, "node %d size: %" PRId64 " MB\n", i,
- node_mem[i] >> 20);
+ numa_info[i].node_mem >> 20);
}
}
diff --git a/numa.c b/numa.c
index e403399..f15c4c4 100644
--- a/numa.c
+++ b/numa.c
@@ -65,7 +65,7 @@ static void numa_node_parse_cpus(int nodenr, const char *cpus)
goto error;
}
- bitmap_set(node_cpumask[nodenr], value, endvalue-value+1);
+ bitmap_set(numa_info[nodenr].node_cpu, value, endvalue-value+1);
return;
error:
@@ -105,7 +105,7 @@ void numa_add(const char *optarg)
}
if (get_param_value(option, 128, "mem", optarg) == 0) {
- node_mem[nodenr] = 0;
+ numa_info[nodenr].node_mem = 0;
} else {
int64_t sval;
sval = strtosz(option, &endptr);
@@ -113,7 +113,7 @@ void numa_add(const char *optarg)
fprintf(stderr, "qemu: invalid numa mem size: %s\n", optarg);
exit(1);
}
- node_mem[nodenr] = sval;
+ numa_info[nodenr].node_mem = sval;
}
if (get_param_value(option, 128, "cpus", optarg) != 0) {
numa_node_parse_cpus(nodenr, option);
@@ -139,7 +139,7 @@ void set_numa_nodes(void)
* and distribute the available memory equally across all nodes
*/
for (i = 0; i < nb_numa_nodes; i++) {
- if (node_mem[i] != 0) {
+ if (numa_info[i].node_mem != 0) {
break;
}
}
@@ -150,15 +150,16 @@ void set_numa_nodes(void)
* the final node gets the rest.
*/
for (i = 0; i < nb_numa_nodes - 1; i++) {
- node_mem[i] = (ram_size / nb_numa_nodes) & ~((1 << 23UL) - 1);
- usedmem += node_mem[i];
+ numa_info[i].node_mem = (ram_size / nb_numa_nodes) &
+ ~((1 << 23UL) - 1);
+ usedmem += numa_info[i].node_mem;
}
- node_mem[i] = ram_size - usedmem;
+ numa_info[i].node_mem = ram_size - usedmem;
}
numa_total = 0;
for (i = 0; i < nb_numa_nodes; i++) {
- numa_total += node_mem[i];
+ numa_total += numa_info[i].node_mem;
}
if (numa_total != ram_size) {
error_report("total memory for NUMA nodes (%" PRIu64 ")"
@@ -168,7 +169,7 @@ void set_numa_nodes(void)
}
for (i = 0; i < nb_numa_nodes; i++) {
- if (!bitmap_empty(node_cpumask[i], MAX_CPUMASK_BITS)) {
+ if (!bitmap_empty(numa_info[i].node_cpu, MAX_CPUMASK_BITS)) {
break;
}
}
@@ -178,7 +179,7 @@ void set_numa_nodes(void)
*/
if (i == nb_numa_nodes) {
for (i = 0; i < max_cpus; i++) {
- set_bit(i, node_cpumask[i % nb_numa_nodes]);
+ set_bit(i, numa_info[i % nb_numa_nodes].node_cpu);
}
}
}
@@ -191,7 +192,7 @@ void set_numa_modes(void)
CPU_FOREACH(cpu) {
for (i = 0; i < nb_numa_nodes; i++) {
- if (test_bit(cpu->cpu_index, node_cpumask[i])) {
+ if (test_bit(cpu->cpu_index, numa_info[i].node_cpu)) {
cpu->numa_node = i;
}
}
diff --git a/vl.c b/vl.c
index eacbcc7..a38e6dd 100644
--- a/vl.c
+++ b/vl.c
@@ -195,8 +195,7 @@ static QTAILQ_HEAD(, FWBootEntry) fw_boot_order =
QTAILQ_HEAD_INITIALIZER(fw_boot_order);
int nb_numa_nodes;
-uint64_t node_mem[MAX_NODES];
-unsigned long *node_cpumask[MAX_NODES];
+NodeInfo numa_info[MAX_NODES];
uint8_t qemu_uuid[16];
bool qemu_uuid_set;
@@ -2959,8 +2958,8 @@ int main(int argc, char **argv, char **envp)
translation = BIOS_ATA_TRANSLATION_AUTO;
for (i = 0; i < MAX_NODES; i++) {
- node_mem[i] = 0;
- node_cpumask[i] = bitmap_new(MAX_CPUMASK_BITS);
+ numa_info[i].node_mem = 0;
+ bitmap_zero(numa_info[i].node_cpu, MAX_CPUMASK_BITS);
}
nb_numa_nodes = 0;
--
MST
next prev parent reply other threads:[~2014-06-17 17:39 UTC|newest]
Thread overview: 120+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-17 17:36 [Qemu-devel] [PULL 000/103] pc, pci, virtio, hotplug fixes, enhancements for 2.1 Michael S. Tsirkin
2014-06-17 17:36 ` [Qemu-devel] [PULL 001/103] pc: create custom generic PC machine type Michael S. Tsirkin
2014-06-17 17:36 ` [Qemu-devel] [PULL 002/103] pc: ACPI BIOS: use enum for defining memory affinity flags Michael S. Tsirkin
2014-06-17 17:36 ` [Qemu-devel] [PULL 003/103] object_add: allow completion handler to get canonical path Michael S. Tsirkin
2014-06-17 17:36 ` [Qemu-devel] [PULL 004/103] vl.c: daemonize before guest memory allocation Michael S. Tsirkin
2014-06-17 17:36 ` [Qemu-devel] [PULL 005/103] add memdev backend infrastructure Michael S. Tsirkin
2014-06-17 17:36 ` [Qemu-devel] [PULL 006/103] vl.c: extend -m option to support options for memory hotplug Michael S. Tsirkin
2014-06-17 17:36 ` [Qemu-devel] [PULL 007/103] qdev: hotplug for buss-less devices Michael S. Tsirkin
2014-06-18 14:11 ` Eric Blake
2014-06-18 14:36 ` Michael S. Tsirkin
2014-06-17 17:36 ` [Qemu-devel] [PULL 008/103] qdev: expose DeviceState.hotplugged field as a property Michael S. Tsirkin
2014-06-17 17:36 ` [Qemu-devel] [PULL 009/103] pc: implement pc-dimm device abstraction Michael S. Tsirkin
2014-06-17 17:36 ` [Qemu-devel] [PULL 010/103] memory: add memory_region_is_mapped() API Michael S. Tsirkin
2014-06-17 17:36 ` [Qemu-devel] [PULL 011/103] pc-dimm: do not allow to set already used memdev Michael S. Tsirkin
2014-06-17 18:39 ` Eric Blake
2014-06-17 18:42 ` Michael S. Tsirkin
2014-06-17 18:45 ` Peter Maydell
2014-06-17 18:53 ` Eric Blake
2014-06-17 19:49 ` Michael S. Tsirkin
2014-06-17 17:37 ` [Qemu-devel] [PULL 012/103] pc: initialize memory hotplug address space Michael S. Tsirkin
2014-06-17 17:37 ` [Qemu-devel] [PULL 013/103] pc: exit QEMU if number of slots more than supported 256 Michael S. Tsirkin
2014-06-17 18:42 ` Eric Blake
2014-06-17 19:08 ` Michael S. Tsirkin
2014-06-17 17:37 ` [Qemu-devel] [PULL 014/103] pc: add 'etc/reserved-memory-end' fw_cfg interface for SeaBIOS Michael S. Tsirkin
2014-06-17 17:37 ` [Qemu-devel] [PULL 015/103] pc: exit QEMU if compat machine doesn't support memory hotlpug Michael S. Tsirkin
2014-06-17 17:37 ` [Qemu-devel] [PULL 016/103] pc: add memory hotplug handler to PC_MACHINE Michael S. Tsirkin
2014-06-17 17:37 ` [Qemu-devel] [PULL 017/103] pc-dimm: add busy address check and address auto-allocation Michael S. Tsirkin
2014-06-17 17:37 ` [Qemu-devel] [PULL 018/103] pc-dimm: add busy slot check and slot auto-allocation Michael S. Tsirkin
2014-06-17 17:37 ` [Qemu-devel] [PULL 019/103] acpi: rename cpu_hotplug_defs.h to pc-hotplug.h Michael S. Tsirkin
2014-06-17 17:37 ` [Qemu-devel] [PULL 020/103] acpi: memory hotplug ACPI hardware implementation Michael S. Tsirkin
2014-06-17 17:37 ` [Qemu-devel] [PULL 021/103] trace: add acpi memory hotplug IO region events Michael S. Tsirkin
2014-06-17 17:37 ` [Qemu-devel] [PULL 022/103] trace: pc: add PC_DIMM slot & address allocation Michael S. Tsirkin
2014-06-17 17:37 ` [Qemu-devel] [PULL 023/103] acpi:piix4: allow plug/unlug callbacks handle not only PCI devices Michael S. Tsirkin
2014-06-17 17:37 ` [Qemu-devel] [PULL 024/103] acpi:piix4: add memory hotplug handling Michael S. Tsirkin
2014-06-17 17:37 ` [Qemu-devel] [PULL 025/103] pc: ich9 lpc: make it work with global/compat properties Michael S. Tsirkin
2014-06-17 17:37 ` [Qemu-devel] [PULL 026/103] acpi:ich9: add memory hotplug handling Michael S. Tsirkin
2014-06-17 17:37 ` [Qemu-devel] [PULL 027/103] pc: migrate piix4 & ich9 MemHotplugState Michael S. Tsirkin
2014-06-17 17:37 ` [Qemu-devel] [PULL 028/103] pc: add acpi-device link to PCMachineState Michael S. Tsirkin
2014-06-17 17:37 ` [Qemu-devel] [PULL 029/103] pc: propagate memory hotplug event to ACPI device Michael S. Tsirkin
2014-06-17 17:38 ` [Qemu-devel] [PULL 030/103] pc: ACPI BIOS: implement memory hotplug interface Michael S. Tsirkin
2014-06-17 17:38 ` [Qemu-devel] [PULL 031/103] pc: add "hotplug-memory-region-size" property to PC_MACHINE Michael S. Tsirkin
2014-06-17 17:38 ` [Qemu-devel] [PULL 032/103] pc: ACPI BIOS: reserve SRAT entry for hotplug mem hole Michael S. Tsirkin
2014-06-17 17:38 ` [Qemu-devel] [PULL 033/103] pc: ACPI BIOS: make GPE.3 handle memory hotplug event on PIIX and Q35 machines Michael S. Tsirkin
2014-06-17 17:38 ` [Qemu-devel] [PULL 034/103] acpi: update generated files Michael S. Tsirkin
2014-06-17 17:38 ` [Qemu-devel] [PULL 035/103] acpi-test: update expected tables Michael S. Tsirkin
2014-06-17 17:38 ` [Qemu-devel] [PULL 036/103] virtio: Drop superfluous conditionals around g_free() Michael S. Tsirkin
2014-06-17 17:38 ` [Qemu-devel] [PULL 037/103] virtio: Drop superfluous conditionals around g_strdup() Michael S. Tsirkin
2014-06-17 17:38 ` [Qemu-devel] [PULL 038/103] qtest: fix hex2nib for capital characters Michael S. Tsirkin
2014-06-17 17:38 ` [Qemu-devel] [PULL 039/103] ich: get rid of spaces in type name Michael S. Tsirkin
2014-06-17 17:38 ` [Qemu-devel] [PULL 040/103] pc: q35: acpi: report error to user on unsupported unplug request Michael S. Tsirkin
2014-06-17 17:38 ` [Qemu-devel] [PULL 041/103] migration: export SELF_ANNOUNCE_ROUNDS Michael S. Tsirkin
2014-06-17 17:38 ` [Qemu-devel] [PULL 042/103] migration: introduce self_announce_delay() Michael S. Tsirkin
2014-06-17 17:38 ` [Qemu-devel] [PULL 043/103] virtio-net: announce self by guest Michael S. Tsirkin
2014-06-17 17:38 ` [Qemu-devel] [PULL 044/103] Add kvm_eventfds_enabled function Michael S. Tsirkin
2014-06-17 17:38 ` [Qemu-devel] [PULL 045/103] Add chardev API qemu_chr_fe_read_all Michael S. Tsirkin
2014-06-17 17:38 ` [Qemu-devel] [PULL 046/103] Add chardev API qemu_chr_fe_set_msgfds Michael S. Tsirkin
2014-06-17 17:39 ` [Qemu-devel] [PULL 047/103] Add chardev API qemu_chr_fe_get_msgfds Michael S. Tsirkin
2014-06-17 17:39 ` [Qemu-devel] [PULL 048/103] Add G_IO_HUP handler for socket chardev Michael S. Tsirkin
2014-06-17 17:39 ` [Qemu-devel] [PULL 049/103] vhost: add vhost_get_features and vhost_ack_features Michael S. Tsirkin
2014-06-17 17:39 ` [Qemu-devel] [PULL 050/103] vhost_net should call the poll callback only when it is set Michael S. Tsirkin
2014-06-17 17:39 ` [Qemu-devel] [PULL 051/103] Refactor virtio-net to use generic get_vhost_net Michael S. Tsirkin
2014-06-17 17:39 ` [Qemu-devel] [PULL 052/103] vhost_net_init will use VhostNetOptions to get all its arguments Michael S. Tsirkin
2014-06-17 17:39 ` [Qemu-devel] [PULL 053/103] Add vhost_ops to vhost_dev struct and replace all relevant ioctls Michael S. Tsirkin
2014-06-17 17:39 ` [Qemu-devel] [PULL 054/103] Add vhost-backend and VhostBackendType Michael S. Tsirkin
2014-06-17 17:39 ` [Qemu-devel] [PULL 055/103] Add vhost-user as a vhost backend Michael S. Tsirkin
2014-06-17 17:39 ` [Qemu-devel] [PULL 056/103] vhost-net: vhost-user feature bits support Michael S. Tsirkin
2014-06-17 17:39 ` [Qemu-devel] [PULL 057/103] Add new vhost-user netdev backend Michael S. Tsirkin
2014-06-17 17:39 ` [Qemu-devel] [PULL 058/103] Add the vhost-user netdev backend to the command line Michael S. Tsirkin
2014-06-17 17:39 ` [Qemu-devel] [PULL 059/103] Add vhost-user protocol documentation Michael S. Tsirkin
2014-06-17 17:39 ` [Qemu-devel] [PULL 060/103] libqemustub: add stubs to be able to use qemu-char.c Michael S. Tsirkin
2014-06-17 17:39 ` [Qemu-devel] [PULL 061/103] Add qtest for vhost-user Michael S. Tsirkin
2014-06-17 17:39 ` [Qemu-devel] [PULL 062/103] NUMA: move numa related code to new file numa.c Michael S. Tsirkin
2014-06-17 17:40 ` [Qemu-devel] [PULL 063/103] NUMA: check if the total numa memory size is equal to ram_size Michael S. Tsirkin
2014-06-17 17:40 ` Michael S. Tsirkin [this message]
2014-06-17 17:40 ` [Qemu-devel] [PULL 065/103] NUMA: convert -numa option to use OptsVisitor Michael S. Tsirkin
2014-06-17 17:40 ` [Qemu-devel] [PULL 066/103] NUMA: expand MAX_NODES from 64 to 128 Michael S. Tsirkin
2014-06-17 17:40 ` [Qemu-devel] [PULL 067/103] man: improve -numa doc Michael S. Tsirkin
2014-06-17 17:40 ` [Qemu-devel] [PULL 068/103] qmp: improve error reporting for -object and object-add Michael S. Tsirkin
2014-06-17 17:40 ` [Qemu-devel] [PULL 069/103] numa: introduce memory_region_allocate_system_memory Michael S. Tsirkin
2014-06-17 17:40 ` [Qemu-devel] [PULL 070/103] memory: reorganize file-based allocation Michael S. Tsirkin
2014-06-17 17:40 ` [Qemu-devel] [PULL 071/103] memory: move preallocation code out of exec.c Michael S. Tsirkin
2014-06-17 17:40 ` [Qemu-devel] [PULL 072/103] memory: move RAM_PREALLOC_MASK to exec.c, rename Michael S. Tsirkin
2014-06-17 17:40 ` [Qemu-devel] [PULL 073/103] configure: add Linux libnuma detection Michael S. Tsirkin
2014-06-17 17:40 ` [Qemu-devel] [PULL 074/103] Introduce signed range Michael S. Tsirkin
2014-06-17 17:40 ` [Qemu-devel] [PULL 075/103] qom: introduce object_property_get_enum and object_property_get_uint16List Michael S. Tsirkin
2014-06-17 17:40 ` [Qemu-devel] [PULL 076/103] numa: add -numa node,memdev= option Michael S. Tsirkin
2014-06-17 17:40 ` [Qemu-devel] [PULL 077/103] memory: move mem_path handling to memory_region_allocate_system_memory Michael S. Tsirkin
2014-06-17 17:41 ` [Qemu-devel] [PULL 078/103] memory: add error propagation to file-based RAM allocation Michael S. Tsirkin
2014-06-17 20:49 ` Eric Blake
2014-06-17 17:41 ` [Qemu-devel] [PULL 079/103] vl: redo -object parsing Michael S. Tsirkin
2014-06-17 17:41 ` [Qemu-devel] [PULL 080/103] pc: pass MachineState to pc_memory_init Michael S. Tsirkin
2014-06-17 17:41 ` [Qemu-devel] [PULL 081/103] backend:hostmem: replace hostmemory with host_memory Michael S. Tsirkin
2014-06-17 17:41 ` [Qemu-devel] [PULL 082/103] hostmem: separate allocation from UserCreatable complete method Michael S. Tsirkin
2014-06-17 17:41 ` [Qemu-devel] [PULL 083/103] hostmem: add file-based HostMemoryBackend Michael S. Tsirkin
2014-06-17 17:41 ` [Qemu-devel] [PULL 084/103] hostmem: add merge and dump properties Michael S. Tsirkin
2014-06-17 17:41 ` [Qemu-devel] [PULL 085/103] hostmem: allow preallocation of any memory region Michael S. Tsirkin
2014-06-17 17:41 ` [Qemu-devel] [PULL 086/103] hostmem: add property to map memory with MAP_SHARED Michael S. Tsirkin
2014-06-17 17:41 ` [Qemu-devel] [PULL 087/103] hostmem: add properties for NUMA memory policy Michael S. Tsirkin
2014-06-17 17:41 ` [Qemu-devel] [PULL 088/103] qmp: add query-memdev Michael S. Tsirkin
2014-06-17 17:41 ` [Qemu-devel] [PULL 089/103] hmp: add info memdev Michael S. Tsirkin
2014-06-17 17:41 ` [Qemu-devel] [PULL 090/103] tests: fix memory leak in test of string input visitor Michael S. Tsirkin
2014-06-17 17:41 ` [Qemu-devel] [PULL 091/103] qapi: make string input visitor parse int list Michael S. Tsirkin
2014-06-17 21:36 ` Eric Blake
2014-06-18 3:13 ` Michael S. Tsirkin
2014-06-17 17:41 ` [Qemu-devel] [PULL 092/103] qapi: make string output " Michael S. Tsirkin
2014-06-17 21:45 ` Eric Blake
2014-06-18 15:02 ` Michael S. Tsirkin
2014-06-19 0:43 ` Hu Tao
2014-06-17 17:42 ` [Qemu-devel] [PULL 093/103] qapi: fix build on glib < 2.28 Michael S. Tsirkin
2014-06-17 17:42 ` [Qemu-devel] [PULL 094/103] qdev: reorganize error reporting in bus_set_realized Michael S. Tsirkin
2014-06-17 17:42 ` [Qemu-devel] [PULL 095/103] qdev: recursively unrealize devices when unrealizing bus Michael S. Tsirkin
2014-06-17 17:42 ` [Qemu-devel] [PULL 096/103] qmp: clean out whitespace Michael S. Tsirkin
2014-06-17 17:42 ` [Qemu-devel] [PULL 097/103] pc: acpi: do not hardcode preprocessor Michael S. Tsirkin
2014-06-17 17:42 ` [Qemu-devel] [PULL 098/103] numa: handle mmaped memory allocation failure correctly Michael S. Tsirkin
2014-06-17 17:42 ` [Qemu-devel] [PULL 099/103] qmp: add query-memory-devices command Michael S. Tsirkin
2014-06-17 17:42 ` [Qemu-devel] [PULL 100/103] acpi: introduce TYPE_ACPI_DEVICE_IF interface Michael S. Tsirkin
2014-06-17 17:42 ` [Qemu-devel] [PULL 101/103] acpi: implement ospm_status() method for PIIX4/ICH9_LPC devices Michael S. Tsirkin
2014-06-17 17:42 ` [Qemu-devel] [PULL 102/103] qmp: add query-acpi-ospm-status command Michael S. Tsirkin
2014-06-17 17:42 ` [Qemu-devel] [PULL 103/103] qmp: add ACPI_DEVICE_OST event handling Michael S. Tsirkin
2014-06-18 14:07 ` [Qemu-devel] [PULL 000/103] pc, pci, virtio, hotplug fixes, enhancements for 2.1 Peter Maydell
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=1403021756-15960-65-git-send-email-mst@redhat.com \
--to=mst@redhat.com \
--cc=agraf@suse.de \
--cc=aliguori@amazon.com \
--cc=andre.przywara@amd.com \
--cc=ehabkost@redhat.com \
--cc=gaowanlong@cn.fujitsu.com \
--cc=hutao@cn.fujitsu.com \
--cc=lcapitulino@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
/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).