[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH v2 05/13] libx86: introduce a libx86 shared library
>>> On 13.07.18 at 22:03, <andrew.cooper3@xxxxxxxxxx> wrote: > tools/libxc/Makefile | 6 ++++++ > tools/libxc/include/xenctrl.h | 1 - > tools/libxc/xc_cpuid_x86.c | 29 +--------------------------- > xen/arch/x86/cpu/common.c | 2 +- > xen/arch/x86/cpuid.c | 32 +----------------------------- > xen/common/Makefile | 1 + > xen/common/libx86/Makefile | 1 + > xen/common/libx86/cpuid.c | 44 > ++++++++++++++++++++++++++++++++++++++++++ > xen/common/libx86/private.h | 38 ++++++++++++++++++++++++++++++++++++ I can certainly accept libx86 headers to live in xen/include/xen/libx86/ for now if the suggested better places cause trouble, but xen/common/ is what its name says - common (i.e. architecture independent) code. This wants to go into lib/x86 or xen/lib/x86 or some such, or in the worst case under xen/arch/x86/, the more that I doubt the same issue as with the header files applies here. > --- /dev/null > +++ b/xen/common/libx86/private.h > @@ -0,0 +1,38 @@ > +#ifndef XEN_LIBX86_PRIVATE_H > +#define XEN_LIBX86_PRIVATE_H > + > +#ifdef __XEN__ > + > +#include <xen/bitops.h> > +#include <xen/kernel.h> > +#include <xen/lib.h> > +#include <xen/types.h> > + > +#else > + > +#include <inttypes.h> > +#include <stdbool.h> > +#include <stddef.h> > + > +#include <xen-tools/libs.h> > + > +static inline bool test_bit(unsigned int bit, const void *vaddr) > +{ > + const char *addr = vaddr; > + > + return addr[bit / 8] & (1u << (bit % 8)); > +} There's nowhere in the tools that this could be taken from? xc_bitops.h has one - couldn't this be lifted to xen-tools/libs.h? Jan _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |