Displaying 6 results from an estimated 6 matches for "zetan".
Did you mean:
zeta
2014 Jul 31
2
Re: hang after seabios
On Wed, Jul 30, 2014 at 03:58:43PM -0700, Zetan Drableg wrote:
> [00183ms] /usr/libexec/qemu-kvm \
> -global virtio-blk-pci.scsi=off \
> -nodefconfig \
> -nodefaults \
> -nographic \
> -machine accel=kvm:tcg \
> -cpu host,+kvmclock \
> -m 500 \
> -no-reboot \
&...
2014 Jul 31
0
Re: hang after seabios
..."\0", 512) = 1
read(6, 0x7fffa2ed4d70, 512) = -1 EAGAIN (Resource
temporarily unavailable)
It looks a lot like the bug you filed here.
https://bugzilla.redhat.com/show_bug.cgi?id=553689
There are quite a few hits on this trace but nothing real specific.
-Zetan
On Thu, Jul 31, 2014 at 4:31 AM, Richard W.M. Jones <rjones@redhat.com> wrote:
> On Wed, Jul 30, 2014 at 03:58:43PM -0700, Zetan Drableg wrote:
>> [00183ms] /usr/libexec/qemu-kvm \
>> -global virtio-blk-pci.scsi=off \
>> -nodefconfig \
>>...
2014 Aug 01
2
Re: hang after seabios
On Thu, Jul 31, 2014 at 03:32:18PM -0700, Zetan Drableg wrote:
> Ok -
> By the way, I looked into updating out KVM versions. Since we already
> have so many KVM servers of this version in production, I can't easily
> forklift update everything without much testing.
>
> exec /usr/libexec/qemu-kvm -s -S "$@"
>...
2014 Aug 01
2
Re: hang after seabios
On Fri, Aug 01, 2014 at 07:43:08AM -0700, Zetan Drableg wrote:
> Ok now we are getting somewhere! Those old vars did the trick.
> libguestfs-test-tool launched with qemu-wrapper as expected with the
> debug port open.
> Now on to the fun part!
>
> (gdb) set architecture i8086
> The target architecture is assumed to be i8086...
2014 Jul 31
2
Re: hang after seabios
[Let's keep this on the mailing list]
On Thu, Jul 31, 2014 at 02:48:25PM -0700, Zetan Drableg wrote:
> Hi Richard,
> I created qemu-wrapper:
> #!/bin/bash -x
>
> exec gdbserver :1234 /usr/libexec/qemu-kvm "$@"
gdbserver will end up debugging the qemu process, not the guest
inside. This is not useful.
You need to do something like:
exec /usr/libexec/qe...
2014 Aug 02
2
Re: hang after seabios
On Fri, Aug 01, 2014 at 03:14:17PM -0700, Zetan Drableg wrote:
> Setup debuginfo repo
> /etc/yum.repos.d/debuginfo.
> repo
> [ol6_debuginfo]
> name=Oracle Linux 6 debuginfo
> baseurl=http://oss.oracle.com/ol6/debuginfo
> gpgkey=https://oss.oracle.com/ol6/RPM-GPG-KEY-oracle
> gpgcheck=1
> enabled=1
>
> yum update...