Displaying 1 result from an estimated 1 matches for "domflags_hvm".
2009 Jun 19
0
Re: [libvirt] domain.info() sometimes returns state zero for running machines
...u want to try and troubleshoot the code, then this handled in the
>>> xenHypervisorGetDomInfo() method in src/xen_internal.c.
>>>
>>> It currently does this:
>>>
>>>    domain_flags = XEN_GETDOMAININFO_FLAGS(dominfo);
>>>    domain_flags &= ~DOMFLAGS_HVM; /* Mask out HVM flags */
>>>    domain_state = domain_flags & 0xFF; /* Mask out high bits */
>>>    switch (domain_state) {
>>>     ....
>>>    }
>>> .
>>> Given that you see NO_STATE, I expect that none of the ''case'' insi...