* Reporting a traceback
@ 2007-09-27 7:08 Marc Patino Gómez
2007-09-27 7:54 ` Keir Fraser
0 siblings, 1 reply; 4+ messages in thread
From: Marc Patino Gómez @ 2007-09-27 7:08 UTC (permalink / raw)
To: xen-devel
Hi list,
this is my first post to devel list, so... if I make a mistake... please
tell me.
XEN version: 3.1.0, compiled from sources
I am trying to boot a HVM FreeBSD (migrate via Linux dd), this is the
domU config file:
kernel = "/usr/lib/xen/boot/hvmloader"
builder = 'hvm'
memory = 1024
name = "galileo"
vif = [ 'type=ioemu, bridge=xenbr0' ]
disk = [ 'phy:/dev/mapper/vg00-galileo,ioemu:da0s,w' ]
cpus = "0"
device_model = '/usr/lib/xen/bin/qemu-dm'
ne2000=0
boot='c'
sdl=0
# enable VNC library for graphics, default = 1
vnc=1
# enable spawning vncviewer(only valid when vnc=1), default = 1
vncviewer=1
vncdisplay=5
and this is the issue
riemann:/home/install# xm create /etc/xen/galileo-config.sxp
Using config file "/etc/xen/galileo-config.sxp".
VNC= 1
Unexpected error: exceptions.OSError
Please report to xen-devel@lists.xensource.com
Traceback (most recent call last):
File "/usr/sbin/xm", line 10, in ?
main.main(sys.argv)
File "//usr/lib/python/xen/xm/main.py", line 2453, in main
_, rc = _run_cmd(cmd, cmd_name, args)
File "//usr/lib/python/xen/xm/main.py", line 2477, in _run_cmd
return True, cmd(args)
File "<string>", line 1, in <lambda>
File "//usr/lib/python/xen/xm/main.py", line 1266, in xm_importcommand
cmd.main([command] + args)
File "//usr/lib/python/xen/xm/create.py", line 1309, in main
dom = make_domain(opts, config)
File "//usr/lib/python/xen/xm/create.py", line 1054, in make_domain
os.kill(vncpid, signal.SIGKILL)
OSError: [Errno 3] No such process
The problem, in my opinion is located in the following line:
disk = [ 'phy:/dev/mapper/vg00-galileo,ioemu:da0s,w' ]
If I sustitute da0s by hda this traceback is not shown, but then BTX
(the FreeBSD boot loader) hangs when it try to boot the kernel.
Any ideas? Can I send more usefull information?
Regards,
Marc
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Reporting a traceback
2007-09-27 7:08 Reporting a traceback Marc Patino Gómez
@ 2007-09-27 7:54 ` Keir Fraser
2007-10-01 13:53 ` Marc Patino Gómez
0 siblings, 1 reply; 4+ messages in thread
From: Keir Fraser @ 2007-09-27 7:54 UTC (permalink / raw)
To: Marc Patino Gómez, xen-devel
On 27/9/07 08:08, "Marc Patino Gómez" <mpatino@es.clara.net> wrote:
> The problem, in my opinion is located in the following line:
>
> disk = [ 'phy:/dev/mapper/vg00-galileo,ioemu:da0s,w' ]
>
> If I sustitute da0s by hda this traceback is not shown, but then BTX
> (the FreeBSD boot loader) hangs when it try to boot the kernel.
>
> Any ideas? Can I send more usefull information?
I believe that vmxassist doesn't work with the FreeBSD bootloader. The only
reports of success that I've seen have been running FreeBSD as an HVM guest
on AMD processors.
-- Keir
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Reporting a traceback
2007-09-27 7:54 ` Keir Fraser
@ 2007-10-01 13:53 ` Marc Patino Gómez
2007-10-01 14:02 ` John Levon
0 siblings, 1 reply; 4+ messages in thread
From: Marc Patino Gómez @ 2007-10-01 13:53 UTC (permalink / raw)
To: Keir Fraser; +Cc: xen-devel
Hi Keir,
you was write, after testing with an AMD processor all works like a
charm, so.. the same problem that I had with an HVM Solaris 10.
In my modest opinion... I think that will be interesting to put in the
official documentation the advantages and dissadvantages about Intel and
AMD processors.
Cheers,
Marc
Keir Fraser wrote:
> On 27/9/07 08:08, "Marc Patino Gómez" <mpatino@es.clara.net> wrote:
>
>
>> The problem, in my opinion is located in the following line:
>>
>> disk = [ 'phy:/dev/mapper/vg00-galileo,ioemu:da0s,w' ]
>>
>> If I sustitute da0s by hda this traceback is not shown, but then BTX
>> (the FreeBSD boot loader) hangs when it try to boot the kernel.
>>
>> Any ideas? Can I send more usefull information?
>>
>
> I believe that vmxassist doesn't work with the FreeBSD bootloader. The only
> reports of success that I've seen have been running FreeBSD as an HVM guest
> on AMD processors.
>
> -- Keir
>
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Reporting a traceback
2007-10-01 13:53 ` Marc Patino Gómez
@ 2007-10-01 14:02 ` John Levon
0 siblings, 0 replies; 4+ messages in thread
From: John Levon @ 2007-10-01 14:02 UTC (permalink / raw)
To: Marc Patino Gómez; +Cc: xen-devel
On Mon, Oct 01, 2007 at 03:53:59PM +0200, Marc Patino Gómez wrote:
> you was write, after testing with an AMD processor all works like a
> charm, so.. the same problem that I had with an HVM Solaris 10.
>
> In my modest opinion... I think that will be interesting to put in the
> official documentation the advantages and dissadvantages about Intel and
> AMD processors.
Again, this is not really about Intel versus AMD. It's just software
that's missing some fixes. Those fixes will come about at some point.
john
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-10-01 14:02 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-27 7:08 Reporting a traceback Marc Patino Gómez
2007-09-27 7:54 ` Keir Fraser
2007-10-01 13:53 ` Marc Patino Gómez
2007-10-01 14:02 ` John Levon
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.