mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 02:24:58 -06:00
s390: no need to manually parse for slots and maxmem
ram_slots and maxram_size has already been parsed and verified by common code for us. Reviewed-by: Matthew Rosato <mjrosato@linux.vnet.ibm.com> Signed-off-by: David Hildenbrand <dahi@linux.vnet.ibm.com> Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
This commit is contained in:
parent
1723a1b631
commit
311467f77e
2 changed files with 4 additions and 10 deletions
|
@ -17,7 +17,7 @@
|
|||
#include "exec/memory.h"
|
||||
#include "sysemu/sysemu.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "qemu/config-file.h"
|
||||
#include "hw/boards.h"
|
||||
#include "hw/s390x/sclp.h"
|
||||
#include "hw/s390x/event-facility.h"
|
||||
#include "hw/s390x/s390-pci-bus.h"
|
||||
|
@ -31,19 +31,14 @@ static inline SCLPDevice *get_sclp_device(void)
|
|||
static void read_SCP_info(SCLPDevice *sclp, SCCB *sccb)
|
||||
{
|
||||
ReadInfo *read_info = (ReadInfo *) sccb;
|
||||
MachineState *machine = MACHINE(qdev_get_machine());
|
||||
sclpMemoryHotplugDev *mhd = get_sclp_memory_hotplug_dev();
|
||||
CPUState *cpu;
|
||||
int cpu_count = 0;
|
||||
int i = 0;
|
||||
int increment_size = 20;
|
||||
int rnsize, rnmax;
|
||||
QemuOpts *opts = qemu_opts_find(qemu_find_opts("memory"), NULL);
|
||||
int slots = qemu_opt_get_number(opts, "slots", 0);
|
||||
int max_avail_slots = s390_get_memslot_count(kvm_state);
|
||||
|
||||
if (slots > max_avail_slots) {
|
||||
slots = max_avail_slots;
|
||||
}
|
||||
int slots = MIN(machine->ram_slots, s390_get_memslot_count(kvm_state));
|
||||
|
||||
CPU_FOREACH(cpu) {
|
||||
cpu_count++;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue