Merge remote-tracking branch 'stefanha/trivial-patches' into staging
This commit is contained in:
commit
057643f6c4
9
Makefile
9
Makefile
@ -145,11 +145,12 @@ endif
|
||||
qemu-img.o: qemu-img-cmds.h
|
||||
qemu-img.o qemu-tool.o qemu-nbd.o qemu-io.o cmd.o qemu-ga.o: $(GENERATED_HEADERS)
|
||||
|
||||
qemu-img$(EXESUF): qemu-img.o qemu-tool.o qemu-error.o $(oslib-obj-y) $(trace-obj-y) $(block-obj-y) $(qobject-obj-y) $(version-obj-y) qemu-timer-common.o
|
||||
tools-obj-y = qemu-tool.o qemu-error.o $(oslib-obj-y) $(trace-obj-y) \
|
||||
$(block-obj-y) $(qobject-obj-y) $(version-obj-y) qemu-timer-common.o
|
||||
|
||||
qemu-nbd$(EXESUF): qemu-nbd.o qemu-tool.o qemu-error.o $(oslib-obj-y) $(trace-obj-y) $(block-obj-y) $(qobject-obj-y) $(version-obj-y) qemu-timer-common.o
|
||||
|
||||
qemu-io$(EXESUF): qemu-io.o cmd.o qemu-tool.o qemu-error.o $(oslib-obj-y) $(trace-obj-y) $(block-obj-y) $(qobject-obj-y) $(version-obj-y) qemu-timer-common.o
|
||||
qemu-img$(EXESUF): qemu-img.o $(tools-obj-y)
|
||||
qemu-nbd$(EXESUF): qemu-nbd.o $(tools-obj-y)
|
||||
qemu-io$(EXESUF): qemu-io.o cmd.o $(tools-obj-y)
|
||||
|
||||
qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx
|
||||
$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@," GEN $@")
|
||||
|
@ -1538,7 +1538,7 @@ int text_console_init(QemuOpts *opts, CharDriverState **_chr)
|
||||
}
|
||||
|
||||
if (!s) {
|
||||
free(chr);
|
||||
g_free(chr);
|
||||
return -EBUSY;
|
||||
}
|
||||
|
||||
|
13
hw/gt64xxx.c
13
hw/gt64xxx.c
@ -275,8 +275,9 @@ static void gt64120_isd_mapping(GT64120State *s)
|
||||
check_reserved_space(&start, &length);
|
||||
length = 0x1000;
|
||||
/* Map new address */
|
||||
DPRINTF("ISD: "TARGET_FMT_plx"@"TARGET_FMT_plx" -> "TARGET_FMT_plx"@"TARGET_FMT_plx", %x\n", s->ISD_length, s->ISD_start,
|
||||
length, start, s->ISD_handle);
|
||||
DPRINTF("ISD: "TARGET_FMT_plx"@"TARGET_FMT_plx
|
||||
" -> "TARGET_FMT_plx"@"TARGET_FMT_plx"\n",
|
||||
s->ISD_length, s->ISD_start, length, start);
|
||||
s->ISD_start = start;
|
||||
s->ISD_length = length;
|
||||
memory_region_add_subregion(get_system_memory(), s->ISD_start, &s->ISD_mem);
|
||||
@ -543,19 +544,19 @@ static void gt64120_writel (void *opaque, target_phys_addr_t addr,
|
||||
/* not really implemented */
|
||||
s->regs[saddr] = ~(~(s->regs[saddr]) | ~(val & 0xfffffffe));
|
||||
s->regs[saddr] |= !!(s->regs[saddr] & 0xfffffffe);
|
||||
DPRINTF("INTRCAUSE %x\n", val);
|
||||
DPRINTF("INTRCAUSE %" PRIx64 "\n", val);
|
||||
break;
|
||||
case GT_INTRMASK:
|
||||
s->regs[saddr] = val & 0x3c3ffffe;
|
||||
DPRINTF("INTRMASK %x\n", val);
|
||||
DPRINTF("INTRMASK %" PRIx64 "\n", val);
|
||||
break;
|
||||
case GT_PCI0_ICMASK:
|
||||
s->regs[saddr] = val & 0x03fffffe;
|
||||
DPRINTF("ICMASK %x\n", val);
|
||||
DPRINTF("ICMASK %" PRIx64 "\n", val);
|
||||
break;
|
||||
case GT_PCI0_SERR0MASK:
|
||||
s->regs[saddr] = val & 0x0000003f;
|
||||
DPRINTF("SERR0MASK %x\n", val);
|
||||
DPRINTF("SERR0MASK %" PRIx64 "\n", val);
|
||||
break;
|
||||
|
||||
/* Reserved when only PCI_0 is configured. */
|
||||
|
@ -697,7 +697,7 @@ static int lsi_queue_req(LSIState *s, SCSIRequest *req, uint32_t len)
|
||||
lsi_reselect(s, p);
|
||||
return 0;
|
||||
} else {
|
||||
DPRINTF("Queueing IO tag=0x%x\n", tag);
|
||||
DPRINTF("Queueing IO tag=0x%x\n", p->tag);
|
||||
p->pending = len;
|
||||
return 1;
|
||||
}
|
||||
|
@ -1274,10 +1274,7 @@ setup_return(CPUState *env, struct target_sigaction *ka,
|
||||
|
||||
if (__put_user(retcodes[idx], rc))
|
||||
return 1;
|
||||
#if 0
|
||||
flush_icache_range((abi_ulong)rc,
|
||||
(abi_ulong)(rc + 1));
|
||||
#endif
|
||||
|
||||
retcode = rc_addr + thumb;
|
||||
}
|
||||
|
||||
|
@ -298,7 +298,7 @@ void cpu_reset(CPUARMState *env)
|
||||
if (rom) {
|
||||
/* We should really use ldl_phys here, in case the guest
|
||||
modified flash and reset itself. However images
|
||||
loaded via -kenrel have not been copied yet, so load the
|
||||
loaded via -kernel have not been copied yet, so load the
|
||||
values directly from there. */
|
||||
env->regs[13] = ldl_p(rom);
|
||||
pc = ldl_p(rom + 4);
|
||||
|
Loading…
Reference in New Issue
Block a user