Merge remote-tracking branch 'stefanha/trivial-patches' into staging
This commit is contained in:
commit
9b024b5f96
@ -488,7 +488,7 @@ typedef struct RAMBlock {
|
|||||||
|
|
||||||
typedef struct RAMList {
|
typedef struct RAMList {
|
||||||
uint8_t *phys_dirty;
|
uint8_t *phys_dirty;
|
||||||
QLIST_HEAD(ram, RAMBlock) blocks;
|
QLIST_HEAD(, RAMBlock) blocks;
|
||||||
} RAMList;
|
} RAMList;
|
||||||
extern RAMList ram_list;
|
extern RAMList ram_list;
|
||||||
|
|
||||||
|
2
exec.c
2
exec.c
@ -110,7 +110,7 @@ static uint8_t *code_gen_ptr;
|
|||||||
int phys_ram_fd;
|
int phys_ram_fd;
|
||||||
static int in_migration;
|
static int in_migration;
|
||||||
|
|
||||||
RAMList ram_list = { .blocks = QLIST_HEAD_INITIALIZER(ram_list) };
|
RAMList ram_list = { .blocks = QLIST_HEAD_INITIALIZER(ram_list.blocks) };
|
||||||
|
|
||||||
static MemoryRegion *system_memory;
|
static MemoryRegion *system_memory;
|
||||||
static MemoryRegion *system_io;
|
static MemoryRegion *system_io;
|
||||||
|
@ -111,7 +111,12 @@ DeviceState *qdev_create(BusState *bus, const char *name)
|
|||||||
|
|
||||||
dev = qdev_try_create(bus, name);
|
dev = qdev_try_create(bus, name);
|
||||||
if (!dev) {
|
if (!dev) {
|
||||||
hw_error("Unknown device '%s' for bus '%s'\n", name, bus->info->name);
|
if (bus) {
|
||||||
|
hw_error("Unknown device '%s' for bus '%s'\n", name,
|
||||||
|
bus->info->name);
|
||||||
|
} else {
|
||||||
|
hw_error("Unknown device '%s' for default sysbus\n", name);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return dev;
|
return dev;
|
||||||
|
@ -725,7 +725,7 @@ void scsi_device_purge_requests(SCSIDevice *sdev)
|
|||||||
|
|
||||||
static char *scsibus_get_fw_dev_path(DeviceState *dev)
|
static char *scsibus_get_fw_dev_path(DeviceState *dev)
|
||||||
{
|
{
|
||||||
SCSIDevice *d = (SCSIDevice*)dev;
|
SCSIDevice *d = DO_UPCAST(SCSIDevice, qdev, dev);
|
||||||
SCSIBus *bus = scsi_bus_from_device(d);
|
SCSIBus *bus = scsi_bus_from_device(d);
|
||||||
char path[100];
|
char path[100];
|
||||||
int i;
|
int i;
|
||||||
|
Loading…
Reference in New Issue
Block a user