From: Alexey Kardashevskiy Date: Thu, 3 Jul 2014 03:10:07 +0000 (+1000) Subject: spapr: Fix ibm, associativity for memory nodes X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c3b4f589d86ae4a6b9f6c1e0587998bc525833da;p=qemu.git spapr: Fix ibm, associativity for memory nodes We want the associtivity lists of memory and CPU nodes to match but memory nodes have incorrect domain#3 which is zero for CPU so they won't match. This clears domain#3 in the list to match CPUs associtivity lists. Signed-off-by: Alexey Kardashevskiy Signed-off-by: Alexander Graf --- diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c index 1623805b81..12dbf1b36b 100644 --- a/hw/ppc/spapr.c +++ b/hw/ppc/spapr.c @@ -653,7 +653,7 @@ static void spapr_populate_memory_node(void *fdt, int nodeid, hwaddr start, uint32_t associativity[] = { cpu_to_be32(0x4), /* length */ cpu_to_be32(0x0), cpu_to_be32(0x0), - cpu_to_be32(nodeid), cpu_to_be32(nodeid) + cpu_to_be32(0x0), cpu_to_be32(nodeid) }; char mem_name[32]; uint64_t mem_reg_property[2];