1 /* 2 * QEMU PowerPC pSeries Logical Partition NUMA associativity handling 3 * 4 * Copyright IBM Corp. 2020 5 * 6 * Authors: 7 * Daniel Henrique Barboza <danielhb413@gmail.com> 8 * 9 * This work is licensed under the terms of the GNU GPL, version 2 or later. 10 * See the COPYING file in the top-level directory. 11 */ 12 13 #ifndef HW_SPAPR_NUMA_H 14 #define HW_SPAPR_NUMA_H 15 16 #include "hw/ppc/spapr.h" 17 18 void spapr_numa_write_rtas_dt(SpaprMachineState *spapr, void *fdt, int rtas); 19 20 #endif /* HW_SPAPR_NUMA_H */ 21