[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH RFC 08/31] tools/stubs: Expose host featureset to userspace
On Wed, 2015-12-16 at 21:24 +0000, Andrew Cooper wrote: > diff --git a/tools/libxc/xc_misc.c b/tools/libxc/xc_misc.c > index c613545..4d7af3d 100644 > --- a/tools/libxc/xc_misc.c > +++ b/tools/libxc/xc_misc.c > @@ -718,6 +718,33 @@ int xc_hvm_inject_trap( > ÂÂÂÂÂreturn rc; > Â} > Â > +int xc_get_featureset(xc_interface *xch, uint32_t index, > +ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂuint32_t *nr_features, uint32_t *featureset) This looks like a valid binding to the hypercall iface, so once that is agreed this LGTM. > diff --git a/tools/ocaml/libs/xc/xenctrl_stubs.c > b/tools/ocaml/libs/xc/xenctrl_stubs.c > index b7de615..a47473b 100644 > --- a/tools/ocaml/libs/xc/xenctrl_stubs.c > +++ b/tools/ocaml/libs/xc/xenctrl_stubs.c > @@ -1220,6 +1220,41 @@ CAMLprim value > stub_xc_domain_deassign_device(value xch, value domid, value desc > Â CAMLreturn(Val_unit); > Â} > Â > +CAMLprim value stub_xc_get_featureset(value xch, value idx) > +{ > + CAMLparam2(xch, idx); > + CAMLlocal1(bitmap_val); > + > + /* Safe, because of the global ocaml lock. */ > + static uint32_t fs_len; > + > + if (fs_len == 0) > + { > + int ret = xc_get_featureset(_H(xch), 0, &fs_len, NULL); > + > + if (ret || (fs_len == 0)) > + failwith_xc(_H(xch)); > + } This confuses me because I had thought when reading the previous patch that the output nr_features would depend on the specific index, is that not the case? Maybe this is just a hypercall docs fix? _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |