Displaying 3 results from an estimated 3 matches for "xen_domctl_set_cpuid".
2012 Feb 29
4
Problems with hyperthreading in Windows HVM
Hi,
I have been trying to get Hyperthreading to work in a Windows HVM on
Xen 4.1.2 as described in ''xmexample.hvm''. I think I have set it up
correctly, but I can''t seem to get it to work. There is not much
documentation on it and most topics are from years ago. I''m curious to
know to whether this functionality is still supposed to work.
I''m aware that
2012 Sep 04
2
[PATCH] valgrind: Support for ioctls used by Xen toolstack processes.
...EN_DOMCTL_getvcpucontext:
+ __PRE_XEN_DOMCTL_READ(getvcpucontext, vcpucontext, vcpu);
+ break;
+
+ case XEN_DOMCTL_setvcpucontext:
+ __PRE_XEN_DOMCTL_READ(setvcpucontext, vcpucontext, vcpu);
+ __PRE_XEN_DOMCTL_READ(setvcpucontext, vcpucontext, ctxt.p);
+ break;
+
+ case XEN_DOMCTL_set_cpuid:
+ PRE_MEM_READ("XEN_DOMCTL_set_cpuid",
+ (Addr)&domctl->u.cpuid, sizeof(domctl->u.cpuid));
+ break;
+
+ case XEN_DOMCTL_getvcpuextstate:
+ __PRE_XEN_DOMCTL_READ(getvcpuextstate, vcpuextstate, vcpu);
+ __PRE_XEN_DOMCTL_READ(getvcpuextstate...
2012 Dec 12
2
[PATCH v7 1/2] xen: unify domain locking in domctl code
These two patches were originally part of the XSM series that I have
posted, and remain prerequisites for that series. However, they are
independent of the XSM changes and are a useful simplification
regardless of the use of XSM.
The Acked-bys on these patches were provided before rebasing them over
the copyback changes in 26268:1b72138bddda, which had minor conflicts
that I resolved.
[PATCH