2016-01-29 17:49:52 +00:00
|
|
|
#include "qemu/osdep.h"
|
2018-04-23 18:51:16 +02:00
|
|
|
#include "hw/mem/memory-device.h"
|
2014-06-16 19:12:25 +02:00
|
|
|
|
2018-04-23 18:51:16 +02:00
|
|
|
MemoryDeviceInfoList *qmp_memory_device_list(void)
|
2014-06-16 19:12:25 +02:00
|
|
|
{
|
2018-03-11 11:02:11 +08:00
|
|
|
return NULL;
|
2014-06-16 19:12:25 +02:00
|
|
|
}
|
2017-08-29 17:30:21 +02:00
|
|
|
|
|
|
|
uint64_t get_plugged_memory_size(void)
|
|
|
|
{
|
|
|
|
return (uint64_t)-1;
|
|
|
|
}
|
2023-09-26 20:57:29 +02:00
|
|
|
|
|
|
|
unsigned int memory_devices_get_reserved_memslots(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|