search for: ecb8ff1fcf1f

Displaying 2 results from an estimated 2 matches for "ecb8ff1fcf1f".

2006 Jul 17
0
(no subject)
on x86_64, when guest has more than 2G memory, "startx" will cause qemu dm die, this patch fixes it. Signed-off-by: Xin Li <xin.b.li@intel.com> diff -r ecb8ff1fcf1f tools/ioemu/hw/vga.c --- a/tools/ioemu/hw/vga.c Fri Jul 14 18:53:27 2006 +0100 +++ b/tools/ioemu/hw/vga.c Mon Jul 17 22:35:54 2006 +0800 @@ -1392,7 +1392,8 @@ static void vga_draw_graphic(VGAState *s static void vga_draw_graphic(VGAState *s, int full_update) { int y1, y, update, page_min,...
2006 Jul 17
3
[Patch] Fix cirrus and rt8139 co-exist issue
Keir, This patch fixes cirrus and rt8139 co-exist issue in new qemu-dm. The root cause is that if two MMIO spaces are continuous, qemu may misuse last MMIO space''s read/write to handle current request. Thanks, Xiaowei Signed-off-by: Yang Xiaowei <xiaowei.yang@intel.com> diff -r ecb8ff1fcf1f tools/ioemu/target-i386-dm/exec-dm.c --- a/tools/ioemu/target-i386-dm/exec-dm.c Fri Jul 14 17:53:27 2006 +++ b/tools/ioemu/target-i386-dm/exec-dm.c Mon Jul 17 17:55:34 2006 @@ -382,7 +385,7 @@ start = mmio[i].start; end = mmio[i].start + mmio[i].size; -...