Displaying 4 results from an estimated 4 matches for "topologyinfo".
2012 Oct 11
0
Re: [Valgrind-developers] [PATCH 1/4] Useful messages for sys/domctl interface_version mismatch.
...);
> +
> + SET_STATUS_Failure(VKI_EINVAL);
> return;
> + }
>
> #define __PRE_XEN_DOMCTL_READ(_domctl, _union, _field) \
> PRE_MEM_READ("XEN_DOMCTL_" # _domctl, \
> @@ -740,11 +775,14 @@ POST(sysctl)
>
> case XEN_SYSCTL_topologyinfo:
> POST_XEN_SYSCTL_WRITE(topologyinfo, max_cpu_index);
> - POST_MEM_WRITE((Addr)sysctl->u.topologyinfo.cpu_to_core.p,
> + if (sysctl->u.topologyinfo.cpu_to_core.p)
> + POST_MEM_WRITE((Addr)sysctl->u.topologyinfo.cpu_to_core.p,
>...
2012 Sep 04
2
[PATCH] valgrind: Support for ioctls used by Xen toolstack processes.
...if (sysctl->u.cpupool_op.op == XEN_SYSCTL_CPUPOOL_OP_ADDCPU ||
+ sysctl->u.cpupool_op.op == XEN_SYSCTL_CPUPOOL_OP_RMCPU)
+ PRE_XEN_SYSCTL_READ(cpupool_op, cpu);
+
+ break;
+
+ case XEN_SYSCTL_physinfo:
+ /* No input params */
+ break;
+
+ case XEN_SYSCTL_topologyinfo:
+ PRE_XEN_SYSCTL_READ(topologyinfo, max_cpu_index);
+ PRE_XEN_SYSCTL_READ(topologyinfo, cpu_to_core);
+ PRE_XEN_SYSCTL_READ(topologyinfo, cpu_to_socket);
+ PRE_XEN_SYSCTL_READ(topologyinfo, cpu_to_node);
+ break;
+
+ case XEN_SYSCTL_numainfo:
+ PRE_XEN_SYSCTL_READ(n...
2012 Jan 04
98
RFC: Still TODO for 4.2?
...elsewhere as appropriate) (IanC working on this, patches
shortly)
* add libxl_defbool and generally try and arrange that
memset(foo,0,...) requests the defaults (IanC working on
this, patches shortly)
* The topologyinfo datastructure should be a list of
tuples, not a tuple of lists. (nobody currently looking
at this, not 100% sure this makes sense, could possibly
defer and change after 4.2 in a compatible way)
* Block script support -- can be done post...
2013 Mar 25
86
[PATCH 00/28] libxl: ocaml: improve the bindings
The following series of patches fill in most of the gaps in the OCaml bindings
to libxl, to make them useful for clients such as xapi/xenopsd (from XCP).
There are a number of bugfixes to the existing bindings as well. I have an
experimental version of xenopsd that successfully uses the new bindings.
An earlier version of the first half of the series was submitted to the last
by Ian Campbell on