Andrzej Szeszo wrote:
> This is what see after starting the domU:
>
> [EMAIL PROTECTED] ~]# dtrace -n fbt:lofi:lofi_ioctl:return'{trace(arg1)}'
> dtrace: description 'fbt:lofi:lofi_ioctl:return' matched 1 probe
> CPU ID FUNCTION:NAME
> 0 49267 lofi_ioctl:return 22
>
OK, lofi_ioctl did fail with EINVAL(22). Then, let's probe a little bit
more.
Please run below dtrace script and send out the output:
-------------------------------
#! /usr/sbin/dtrace -Fs
fbt:lofi:lofi_ioctl:entry
{
self->mark = 1;
}
fbt:lofi:lofi_ioctl:return
{
self->mark = 0;
exit(0);
}
fbt:lofi::entry
/ self->mark == 1 /
{
}
fbt:lofi::return
/ self->mark == 1 /
{
trace(arg1);
}
-------------------------------
Again, you need to start this script first, then try to create your domU.
Thanks,
Max
>
> Thanks,
>
> Andrzej
>
>
> This message posted from opensolaris.org
> _______________________________________________
> xen-discuss mailing list
> [email protected]
>
_______________________________________________
xen-discuss mailing list
[email protected]