Fix is in master:
https://github.com/qemu/qemu/commit/e0dd5fd41a1a38766009f442967fab700d2d0550
** Changed in: qemu
Status: In Progress => Fix Committed
--
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net
For further data, the faulting instruction is
f3 48 0f ae df wrgsbase %rdi
--
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1719984
Title:
wrgsbase misemulated in x86_64-softmmu
Status in QE
Public bug reported:
qemu revision: cfe4cade054c0e0d00d0185cdc433a9e3ce3e2e4
command: ./qemu-system-x86_64 -m 2048 -nographic -net none -smp 4,threads=2
-machine q35 -kernel zircon.bin -cpu Haswell,+smap,-check -initrd bootdata.bin
-append 'TERM=screen kernel.halt-on-panic=true '
On this revisi
Just putting this up here for anyone unlucky enough to hit this. This
isn't a fix but it may rescue your borked qcow2 image.
Download and compile the 1.7.2 version of qemu but don't install it.
For example create a directory called qemutemp, download
qemu-1.7.2.tar.bz2, untar it and do ./configur
Public bug reported:
I'm unable to restart a VM. virt-manager is giving me:
Error starting domain: internal error: process exited while connecting
to monitor: qemu-system-x86_64: -drive
file=/var/lib/libvirt/images/poppy.qcow2,if=none,id=drive-virtio-
disk0,format=qcow2: could not open disk ima
d libtool to fix a 'possibly
undefined macro AC_LIBTOOL' issue.
Seems to be happily compiling/linking now.
My apologies for the pseudo-bug report.
BTW, thank you for your assistance.
/Todd
--
You received this bug notification because you are a member of qemu-
devel-ml, which i
On Friday 28 June 2013 18:20:29 you wrote:
> autoreconf is part of the autoconf package. Do you have that installed?
>
Hi,
Thanks for the response.
You're right, it was the lack of autoconf. Actually, on CentOS/RH, you need
to check for
autoconf
automake (includes autoconf?)
libtools
See
As far as I know, autoreconf does not exist in the red
hat/fedora/centos world.
Can't find a yum, rpm. or other distro for it on the above os.
Am I missing something obvious hrte?
Thanks
Sent from a mobile device.
Original message
From: Iggy
Date:
To: tr...@seraban
Public bug reported:
[root@H002 qemu-1.4.2]# make
\ GEN i386-softmmu/config-devices.mak
GEN x86_64-softmmu/config-devices.mak
PID USERNAME PRI NICE SIZE RES STATE WAIT TIMECPU COMMAND
28818 todd 640 1142M 53M onproc/0 - 2:01 17.24% cc1
For systems with lower limits on user process memory, this prevents things
from building.
For systems with less physical ram, this presents lots of
** Patch added: "rgb565.patch"
https://bugs.launchpad.net/bugs/665743/+attachment/1708692/+files/rgb565.patch
--
Cocoa video corruption when guest uses RGB565 mode
https://bugs.launchpad.net/bugs/665743
You received this bug notification because you are a member of qemu-
devel-ml, which is s
Public bug reported:
The cocoa video driver doesn't currently support when the guest uses
RGB565 or HighColor mode resulting in corrupted video. The initial
graphics screen of recent Ubuntu installs is an example. The attached
patch against 0.13.0-release seems to fix the problem by introducing
Penned by Todd T. Fries on 20091216 1:15.06, we have:
| For anyone lurking wanting a newer port of qemu to OpenBSD, I've determined
| that -O0 is required for cpu-exec.o and suddely things start working!
|
| Will try to determine why while updating other diffs to current qemu perhaps
| in
n the 0.12.0rc1
on OpenBSD/i386 for the first time since the 0.9.1 release.
Thanks much to brynet at gmail dot com for pointing out the -O0 trick, though
I have narrowed it down to cpu-exec.o.
Are there any gcc4 assumptions in there incase my spend time investigating
can be shaved?
Thanks,
--
Todd Fries
[EMAIL PROTECTED]/p1 ~/src/c/todd/test?100$ ./sizeof
sizeof(char) = 1
sizeof(short) = 2
sizeof(int) = 4
sizeof(char *) = 4
sizeof(long) = 4
sizeof(long long) = 8
[EMAIL PROTECTED]/p1 ~/src/c/todd/test?101$ uname -a
OpenBSD cloud.fries.net 4.1 GENERIC#7 mac68k
[EMAIL PROTECTED]/p1 ~/src/c/todd/test
of that?
.. of course I purposefully intended to remove cruft that is
in header files and belongs in header files.
I'll look at your other comments later, but these I see later in
the discussion are nearing inclusion with your recommended tweaks.
This is relative to the 20070319 snapshot.
--- osdep.h.origMon Feb 5 17:01:54 2007
+++ osdep.h Sat Mar 10 16:39:40 2007
@@ -2,6 +2,10 @@
#define QEMU_OSDEP_H
#include
+#ifdef __OpenBSD__
+#include
+#include
+#endif
#define qemu_printf printf
--
Todd Fries .. [EMAIL
3709551615))
+#ifdef __OpenBSD__
+typedef struct __sFILE FILE;
+#else
typedef struct FILE FILE;
extern int fprintf(FILE *, const char *, ...);
extern int printf(const char *, ...);
#undef NULL
#define NULL 0
+#endif
#ifdef __i386__
#define AREG0 "ebp"
--
Todd Fries
al tv;
+ static int64_t i = 0;
+ int64_t j;
+
+ gettimeofday(&tv, NULL);
+ do {
+ j = (tv.tv_sec * (uint64_t) 100) + tv.tv_usec;
+ } while (i == j);
+ i = j;
+ return j;
}
#endif
--
Todd Fries .. [EMAIL
drv_pread = raw_pread,
.bdrv_pwrite = raw_pwrite,
.bdrv_getlength = raw_getlength,
--
Todd Fries .. [EMAIL PROTECTED]
_
| \ 1.636.410.0632 (voice)
| Free Daemon Consulting, LLC \ 1.4
#include
#include
+#ifdef __OpenBSD__
+#include
+#else
#include
+#endif
#include "vl.h"
#define AUDIO_CAP "oss"
--
Todd Fries .. [EMAIL PROTECTED]
_
| \ 1.636.410.0632 (voice)
| Fr
.. so now that aio is in, and whatever existed before is out, has anybody
come up with a way to support host os's that do not have aio?
Thanks,
--
Todd Fries .. [EMAIL PROTECTED]
_
| \ 1.636.410
char *str);
+char *pstrcat(char *buf, size_t buf_size, const char *s);
int strstart(const char *str, const char *val, const char **ptr);
extern int vm_running;
--
Todd Fries .. [EMAIL PROTECTED
#include "exec.h"
#define MEMSUFFIX _raw
--
Todd Fries .. [EMAIL PROTECTED]
_
| \ 1.636.410.0632 (voice)
| Free Daemon Consulting, LLC \ 1.405.227.9094 (voi
;
char *q = buf;
@@ -76,7 +76,7 @@ void pstrcpy(char *buf, int buf_size, co
}
/* strcat and truncate. */
-char *pstrcat(char *buf, int buf_size, const char *s)
+char *pstrcat(char *buf, size_t buf_size, const char *s)
{
int len;
len = strlen(buf);
--
Todd Fries .. [EMAIL PROTECTED
def struct __sFILE FILE;
+#else
typedef struct FILE FILE;
extern int fprintf(FILE *, const char *, ...);
extern int printf(const char *, ...);
#undef NULL
#define NULL 0
+#endif
#ifdef __i386__
#define AREG0 "ebp"
--
Todd Fries
code, it is better to
display code data too */
-if (is_host) {
+if (1 /* is_host */) {
fprintf(out, "%08x ", (int)bfd_getl32((const bfd_byte *)pc));
}
#endif
--
Todd Fries .. [
+#include
+#else
#include
+#endif
#include "vl.h"
#define AUDIO_CAP "oss"
--
Todd Fries .. [EMAIL PROTECTED]
_
| \ 1.636.410.0632 (voice)
| Free Daemon Consulting, LLC
ap_init(vlan, NULL, setup_script);
+ else
+ ret = net_tap_init(vlan, ifname, setup_script);
}
} else
#endif
@@ -5101,7 +5197,7 @@
serial_devices[i][0] = '\0';
serial_device_index = 0;
-pstrcpy(parallel_devices[0], sizeof(parallel_dev
29 matches
Mail list logo