Displaying 2 results from an estimated 2 matches for "hvm_save".
2008 May 21
7
Debugging the hypervisor
I am trying to debug the Xen hypervisor from a second computer over the
serial port, but nothing seems to work. Using mercurial, I got
xen-3.2-testing.hg. I followed the steps in crashdb.txt in the docs/misc/
folder:
set debug=y in Config.mk, crash_debug=y in xen/Rules.mk
I also added -fno-omit-frame-pointer to these file as well.
I compiled with no errors and booted with minicom connected to
2013 Oct 08
3
Re: [PATCH v4 1/9] xen/arm: Implement hvm save and restore
...if ( c.data != NULL )
>> + xfree(c.data);
>> + }
>> + break;
>> + case XEN_DOMCTL_gethvmcontext:
>> + {
>> + struct hvm_domain_context c = { 0 };
>> +
>> + ret = -EINVAL;
>> +
>> + c.size = hvm_save_size(d);
>> +
>> + if ( guest_handle_is_null(domctl->u.hvmcontext.buffer) )
>> + {
>> + /* Client is querying for the correct buffer size */
>> + domctl->u.hvmcontext.size = c.size;
>> + ret = 0;
>> +...