Loading hw/hw.h +2 −3 Original line number Diff line number Diff line Loading @@ -94,9 +94,8 @@ void qemu_register_reset(QEMUResetHandler *func, void *opaque); /* handler to set the boot_device for a specific type of QEMUMachine */ /* return 0 if success */ typedef int QEMUBootSetHandler(const char *boot_device); extern QEMUBootSetHandler *qemu_boot_set_handler; void qemu_register_boot_set(QEMUBootSetHandler *func); typedef int QEMUBootSetHandler(void *opaque, const char *boot_device); void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque); /* These should really be in isa.h, but are here to make pc.h happy. */ typedef void (IOPortWriteFunc)(void *opaque, uint32_t address, uint32_t data); Loading hw/pc.c +4 −4 Original line number Diff line number Diff line Loading @@ -192,10 +192,10 @@ static int boot_device2nibble(char boot_device) /* copy/pasted from cmos_init, should be made a general function and used there as well */ int pc_boot_set(const char *boot_device) static int pc_boot_set(void *opaque, const char *boot_device) { #define PC_MAX_BOOT_DEVICES 3 RTCState *s = rtc_state; RTCState *s = (RTCState *)opaque; int nbds, bds[3] = { 0, }; int i; Loading Loading @@ -741,8 +741,6 @@ static void pc_init1(ram_addr_t ram_size, int vga_ram_size, below_4g_mem_size = ram_size; } qemu_register_boot_set(pc_boot_set); linux_boot = (kernel_filename != NULL); /* init CPUs */ Loading Loading @@ -917,6 +915,8 @@ static void pc_init1(ram_addr_t ram_size, int vga_ram_size, rtc_state = rtc_init(0x70, i8259[8]); qemu_register_boot_set(pc_boot_set, rtc_state); register_ioport_read(0x92, 1, 1, ioport92_read, NULL); register_ioport_write(0x92, 1, 1, ioport92_write, NULL); Loading monitor.c +11 −1 Original line number Diff line number Diff line Loading @@ -1044,12 +1044,22 @@ static void do_ioport_read(int count, int format, int size, int addr, int has_in suffix, addr, size * 2, val); } /* boot_set handler */ static QEMUBootSetHandler *qemu_boot_set_handler = NULL; static void *boot_opaque; void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque) { qemu_boot_set_handler = func; boot_opaque = opaque; } static void do_boot_set(const char *bootdevice) { int res; if (qemu_boot_set_handler) { res = qemu_boot_set_handler(bootdevice); res = qemu_boot_set_handler(boot_opaque, bootdevice); if (res == 0) term_printf("boot device list now set to %s\n", bootdevice); else Loading vl.c +0 −8 Original line number Diff line number Diff line Loading @@ -6908,14 +6908,6 @@ void qemu_system_powerdown_request(void) cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT); } /* boot_set handler */ QEMUBootSetHandler *qemu_boot_set_handler = NULL; void qemu_register_boot_set(QEMUBootSetHandler *func) { qemu_boot_set_handler = func; } void main_loop_wait(int timeout) { IOHandlerRecord *ioh; Loading Loading
hw/hw.h +2 −3 Original line number Diff line number Diff line Loading @@ -94,9 +94,8 @@ void qemu_register_reset(QEMUResetHandler *func, void *opaque); /* handler to set the boot_device for a specific type of QEMUMachine */ /* return 0 if success */ typedef int QEMUBootSetHandler(const char *boot_device); extern QEMUBootSetHandler *qemu_boot_set_handler; void qemu_register_boot_set(QEMUBootSetHandler *func); typedef int QEMUBootSetHandler(void *opaque, const char *boot_device); void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque); /* These should really be in isa.h, but are here to make pc.h happy. */ typedef void (IOPortWriteFunc)(void *opaque, uint32_t address, uint32_t data); Loading
hw/pc.c +4 −4 Original line number Diff line number Diff line Loading @@ -192,10 +192,10 @@ static int boot_device2nibble(char boot_device) /* copy/pasted from cmos_init, should be made a general function and used there as well */ int pc_boot_set(const char *boot_device) static int pc_boot_set(void *opaque, const char *boot_device) { #define PC_MAX_BOOT_DEVICES 3 RTCState *s = rtc_state; RTCState *s = (RTCState *)opaque; int nbds, bds[3] = { 0, }; int i; Loading Loading @@ -741,8 +741,6 @@ static void pc_init1(ram_addr_t ram_size, int vga_ram_size, below_4g_mem_size = ram_size; } qemu_register_boot_set(pc_boot_set); linux_boot = (kernel_filename != NULL); /* init CPUs */ Loading Loading @@ -917,6 +915,8 @@ static void pc_init1(ram_addr_t ram_size, int vga_ram_size, rtc_state = rtc_init(0x70, i8259[8]); qemu_register_boot_set(pc_boot_set, rtc_state); register_ioport_read(0x92, 1, 1, ioport92_read, NULL); register_ioport_write(0x92, 1, 1, ioport92_write, NULL); Loading
monitor.c +11 −1 Original line number Diff line number Diff line Loading @@ -1044,12 +1044,22 @@ static void do_ioport_read(int count, int format, int size, int addr, int has_in suffix, addr, size * 2, val); } /* boot_set handler */ static QEMUBootSetHandler *qemu_boot_set_handler = NULL; static void *boot_opaque; void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque) { qemu_boot_set_handler = func; boot_opaque = opaque; } static void do_boot_set(const char *bootdevice) { int res; if (qemu_boot_set_handler) { res = qemu_boot_set_handler(bootdevice); res = qemu_boot_set_handler(boot_opaque, bootdevice); if (res == 0) term_printf("boot device list now set to %s\n", bootdevice); else Loading
vl.c +0 −8 Original line number Diff line number Diff line Loading @@ -6908,14 +6908,6 @@ void qemu_system_powerdown_request(void) cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT); } /* boot_set handler */ QEMUBootSetHandler *qemu_boot_set_handler = NULL; void qemu_register_boot_set(QEMUBootSetHandler *func) { qemu_boot_set_handler = func; } void main_loop_wait(int timeout) { IOHandlerRecord *ioh; Loading