From: "Marek Marczykowski-Górecki" <marmarek@invisiblethingslab.com>
To: Juergen Gross <jgross@suse.com>
Cc: xen-devel@lists.xenproject.org,
Samuel Thibault <samuel.thibault@ens-lyon.org>,
Ian Jackson <ian.jackson@eu.citrix.com>, Wei Liu <wl@xen.org>,
Anthony PERARD <anthony.perard@citrix.com>
Subject: Re: [PATCH v3 22/38] tools/misc: rename xc_dom.h do xenctrl_dom.h
Date: Tue, 25 Aug 2020 13:10:38 +0200 [thread overview]
Message-ID: <20200825111038.GA1626@mail-itl> (raw)
In-Reply-To: <20200823093519.18386-23-jgross@suse.com>
[-- Attachment #1: Type: text/plain, Size: 14051 bytes --]
On Sun, Aug 23, 2020 at 11:35:03AM +0200, Juergen Gross wrote:
> For being able to disentangle lixenctrl and libxenguest headers
> xc_dom.h will need to be public. Prepare that by renaming xc_dom.h
> to xenctrl_dom.h.
>
> Signed-off-by: Juergen Gross <jgross@suse.com>
Python changes:
Acked-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
(there is just one usage: xc_dom_gnttab_seed, in
tools/python/xen/lowlevel/xc/xc.c)
> ---
> stubdom/grub/kexec.c | 2 +-
> tools/helpers/init-xenstore-domain.c | 2 +-
> tools/libxc/include/{xc_dom.h => xenctrl_dom.h} | 0
> tools/libxc/xc_core.c | 2 +-
> tools/libxc/xc_private.c | 2 +-
> tools/libxc/xg_dom_arm.c | 2 +-
> tools/libxc/xg_dom_armzimageloader.c | 2 +-
> tools/libxc/xg_dom_binloader.c | 2 +-
> tools/libxc/xg_dom_boot.c | 2 +-
> tools/libxc/xg_dom_compat_linux.c | 2 +-
> tools/libxc/xg_dom_core.c | 2 +-
> tools/libxc/xg_dom_decompress.h | 2 +-
> tools/libxc/xg_dom_decompress_unsafe.h | 2 +-
> tools/libxc/xg_dom_elfloader.c | 2 +-
> tools/libxc/xg_dom_hvmloader.c | 2 +-
> tools/libxc/xg_dom_x86.c | 2 +-
> tools/libxc/xg_offline_page.c | 2 +-
> tools/libxc/xg_sr_common.h | 2 +-
> tools/libxl/libxl_arm.c | 2 +-
> tools/libxl/libxl_arm.h | 2 +-
> tools/libxl/libxl_create.c | 2 +-
> tools/libxl/libxl_dm.c | 2 +-
> tools/libxl/libxl_dom.c | 2 +-
> tools/libxl/libxl_internal.h | 2 +-
> tools/libxl/libxl_vnuma.c | 2 +-
> tools/libxl/libxl_x86.c | 2 +-
> tools/libxl/libxl_x86_acpi.c | 2 +-
> tools/python/xen/lowlevel/xc/xc.c | 2 +-
> tools/xcutils/readnotes.c | 2 +-
> 29 files changed, 28 insertions(+), 28 deletions(-)
> rename tools/libxc/include/{xc_dom.h => xenctrl_dom.h} (100%)
>
> diff --git a/stubdom/grub/kexec.c b/stubdom/grub/kexec.c
> index 0e68b969a2..24001220a9 100644
> --- a/stubdom/grub/kexec.c
> +++ b/stubdom/grub/kexec.c
> @@ -20,7 +20,7 @@
> #include <sys/mman.h>
>
> #include <xenctrl.h>
> -#include <xc_dom.h>
> +#include <xenctrl_dom.h>
>
> #include <kernel.h>
> #include <console.h>
> diff --git a/tools/helpers/init-xenstore-domain.c b/tools/helpers/init-xenstore-domain.c
> index 4ce8299c3c..5bdb48dc80 100644
> --- a/tools/helpers/init-xenstore-domain.c
> +++ b/tools/helpers/init-xenstore-domain.c
> @@ -8,7 +8,7 @@
> #include <sys/ioctl.h>
> #include <sys/mman.h>
> #include <xenctrl.h>
> -#include <xc_dom.h>
> +#include <xenctrl_dom.h>
> #include <xenstore.h>
> #include <xen/sys/xenbus_dev.h>
> #include <xen-xsm/flask/flask.h>
> diff --git a/tools/libxc/include/xc_dom.h b/tools/libxc/include/xenctrl_dom.h
> similarity index 100%
> rename from tools/libxc/include/xc_dom.h
> rename to tools/libxc/include/xenctrl_dom.h
> diff --git a/tools/libxc/xc_core.c b/tools/libxc/xc_core.c
> index 2ee1d205b4..7df1fccd62 100644
> --- a/tools/libxc/xc_core.c
> +++ b/tools/libxc/xc_core.c
> @@ -62,7 +62,7 @@
>
> #include "xg_private.h"
> #include "xc_core.h"
> -#include "xc_dom.h"
> +#include "xenctrl_dom.h"
> #include <stdlib.h>
> #include <unistd.h>
>
> diff --git a/tools/libxc/xc_private.c b/tools/libxc/xc_private.c
> index 90974d572e..6ecdf6953f 100644
> --- a/tools/libxc/xc_private.c
> +++ b/tools/libxc/xc_private.c
> @@ -19,7 +19,7 @@
>
> #include "xc_private.h"
> #include "xg_private.h"
> -#include "xc_dom.h"
> +#include "xenctrl_dom.h"
> #include <stdarg.h>
> #include <stdlib.h>
> #include <unistd.h>
> diff --git a/tools/libxc/xg_dom_arm.c b/tools/libxc/xg_dom_arm.c
> index 931404c222..3f66f1d890 100644
> --- a/tools/libxc/xg_dom_arm.c
> +++ b/tools/libxc/xg_dom_arm.c
> @@ -24,7 +24,7 @@
> #include <xen-tools/libs.h>
>
> #include "xg_private.h"
> -#include "xc_dom.h"
> +#include "xenctrl_dom.h"
>
> #define NR_MAGIC_PAGES 4
> #define CONSOLE_PFN_OFFSET 0
> diff --git a/tools/libxc/xg_dom_armzimageloader.c b/tools/libxc/xg_dom_armzimageloader.c
> index 0df8c2a4b1..4246c8e5fa 100644
> --- a/tools/libxc/xg_dom_armzimageloader.c
> +++ b/tools/libxc/xg_dom_armzimageloader.c
> @@ -25,7 +25,7 @@
> #include <inttypes.h>
>
> #include "xg_private.h"
> -#include "xc_dom.h"
> +#include "xenctrl_dom.h"
>
> #include <arpa/inet.h> /* XXX ntohl is not the right function... */
>
> diff --git a/tools/libxc/xg_dom_binloader.c b/tools/libxc/xg_dom_binloader.c
> index d6f7f2a500..870a921427 100644
> --- a/tools/libxc/xg_dom_binloader.c
> +++ b/tools/libxc/xg_dom_binloader.c
> @@ -83,7 +83,7 @@
> #include <inttypes.h>
>
> #include "xg_private.h"
> -#include "xc_dom.h"
> +#include "xenctrl_dom.h"
>
> #define round_pgup(_p) (((_p)+(PAGE_SIZE_X86-1))&PAGE_MASK_X86)
> #define round_pgdown(_p) ((_p)&PAGE_MASK_X86)
> diff --git a/tools/libxc/xg_dom_boot.c b/tools/libxc/xg_dom_boot.c
> index bb599b33ba..1e31e92244 100644
> --- a/tools/libxc/xg_dom_boot.c
> +++ b/tools/libxc/xg_dom_boot.c
> @@ -31,7 +31,7 @@
> #include <zlib.h>
>
> #include "xg_private.h"
> -#include "xc_dom.h"
> +#include "xenctrl_dom.h"
> #include "xc_core.h"
> #include <xen/hvm/params.h>
> #include <xen/grant_table.h>
> diff --git a/tools/libxc/xg_dom_compat_linux.c b/tools/libxc/xg_dom_compat_linux.c
> index b3d43feed9..b645f0b14b 100644
> --- a/tools/libxc/xg_dom_compat_linux.c
> +++ b/tools/libxc/xg_dom_compat_linux.c
> @@ -30,7 +30,7 @@
>
> #include "xenctrl.h"
> #include "xg_private.h"
> -#include "xc_dom.h"
> +#include "xenctrl_dom.h"
>
> /* ------------------------------------------------------------------------ */
>
> diff --git a/tools/libxc/xg_dom_core.c b/tools/libxc/xg_dom_core.c
> index 327c8a8575..1c91cce315 100644
> --- a/tools/libxc/xg_dom_core.c
> +++ b/tools/libxc/xg_dom_core.c
> @@ -32,7 +32,7 @@
> #include <assert.h>
>
> #include "xg_private.h"
> -#include "xc_dom.h"
> +#include "xenctrl_dom.h"
> #include "_paths.h"
>
> /* ------------------------------------------------------------------------ */
> diff --git a/tools/libxc/xg_dom_decompress.h b/tools/libxc/xg_dom_decompress.h
> index d9a21cf297..c5ab2e59eb 100644
> --- a/tools/libxc/xg_dom_decompress.h
> +++ b/tools/libxc/xg_dom_decompress.h
> @@ -1,5 +1,5 @@
> #ifndef __MINIOS__
> -# include "xc_dom.h"
> +# include "xenctrl_dom.h"
> #else
> # include "xg_dom_decompress_unsafe.h"
> #endif
> diff --git a/tools/libxc/xg_dom_decompress_unsafe.h b/tools/libxc/xg_dom_decompress_unsafe.h
> index 64f68864b1..fb84b6add8 100644
> --- a/tools/libxc/xg_dom_decompress_unsafe.h
> +++ b/tools/libxc/xg_dom_decompress_unsafe.h
> @@ -1,4 +1,4 @@
> -#include "xc_dom.h"
> +#include "xenctrl_dom.h"
>
> typedef int decompress_fn(unsigned char *inbuf, unsigned int len,
> int (*fill)(void*, unsigned int),
> diff --git a/tools/libxc/xg_dom_elfloader.c b/tools/libxc/xg_dom_elfloader.c
> index b327db219d..7043c3bbba 100644
> --- a/tools/libxc/xg_dom_elfloader.c
> +++ b/tools/libxc/xg_dom_elfloader.c
> @@ -26,7 +26,7 @@
> #include <inttypes.h>
>
> #include "xg_private.h"
> -#include "xc_dom.h"
> +#include "xenctrl_dom.h"
> #include "xc_bitops.h"
>
> #define XEN_VER "xen-3.0"
> diff --git a/tools/libxc/xg_dom_hvmloader.c b/tools/libxc/xg_dom_hvmloader.c
> index 3f0bd65547..995a0f3dc3 100644
> --- a/tools/libxc/xg_dom_hvmloader.c
> +++ b/tools/libxc/xg_dom_hvmloader.c
> @@ -26,7 +26,7 @@
> #include <assert.h>
>
> #include "xg_private.h"
> -#include "xc_dom.h"
> +#include "xenctrl_dom.h"
> #include "xc_bitops.h"
>
> /* ------------------------------------------------------------------------ */
> diff --git a/tools/libxc/xg_dom_x86.c b/tools/libxc/xg_dom_x86.c
> index 9439805eaa..842dbcccdd 100644
> --- a/tools/libxc/xg_dom_x86.c
> +++ b/tools/libxc/xg_dom_x86.c
> @@ -38,7 +38,7 @@
> #include <xen-tools/libs.h>
>
> #include "xg_private.h"
> -#include "xc_dom.h"
> +#include "xenctrl_dom.h"
> #include "xenctrl.h"
>
> /* ------------------------------------------------------------------------ */
> diff --git a/tools/libxc/xg_offline_page.c b/tools/libxc/xg_offline_page.c
> index 19538fc436..77e8889b11 100644
> --- a/tools/libxc/xg_offline_page.c
> +++ b/tools/libxc/xg_offline_page.c
> @@ -28,7 +28,7 @@
> #include <xc_core.h>
>
> #include "xc_private.h"
> -#include "xc_dom.h"
> +#include "xenctrl_dom.h"
> #include "xg_private.h"
> #include "xg_save_restore.h"
>
> diff --git a/tools/libxc/xg_sr_common.h b/tools/libxc/xg_sr_common.h
> index 35f23fabb5..13fcc47420 100644
> --- a/tools/libxc/xg_sr_common.h
> +++ b/tools/libxc/xg_sr_common.h
> @@ -5,7 +5,7 @@
>
> #include "xg_private.h"
> #include "xg_save_restore.h"
> -#include "xc_dom.h"
> +#include "xenctrl_dom.h"
> #include "xc_bitops.h"
>
> #include "xg_sr_stream_format.h"
> diff --git a/tools/libxl/libxl_arm.c b/tools/libxl/libxl_arm.c
> index 34f8a29056..975a4d730a 100644
> --- a/tools/libxl/libxl_arm.c
> +++ b/tools/libxl/libxl_arm.c
> @@ -3,7 +3,7 @@
> #include "libxl_libfdt_compat.h"
> #include "libxl_arm.h"
>
> -#include <xc_dom.h>
> +#include <xenctrl_dom.h>
> #include <stdbool.h>
> #include <libfdt.h>
> #include <assert.h>
> diff --git a/tools/libxl/libxl_arm.h b/tools/libxl/libxl_arm.h
> index 8aef210d4c..52c2ab5e3a 100644
> --- a/tools/libxl/libxl_arm.h
> +++ b/tools/libxl/libxl_arm.h
> @@ -17,7 +17,7 @@
> #include "libxl_internal.h"
> #include "libxl_arch.h"
>
> -#include <xc_dom.h>
> +#include <xenctrl_dom.h>
>
> _hidden
> int libxl__prepare_acpi(libxl__gc *gc, libxl_domain_build_info *info,
> diff --git a/tools/libxl/libxl_create.c b/tools/libxl/libxl_create.c
> index 2814818e34..1031b75159 100644
> --- a/tools/libxl/libxl_create.c
> +++ b/tools/libxl/libxl_create.c
> @@ -20,7 +20,7 @@
> #include "libxl_internal.h"
> #include "libxl_arch.h"
>
> -#include <xc_dom.h>
> +#include <xenctrl_dom.h>
> #include <xenguest.h>
> #include <xen/hvm/hvm_info_table.h>
> #include <xen/hvm/e820.h>
> diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c
> index f2dc5696b9..fec4e0fbe5 100644
> --- a/tools/libxl/libxl_dm.c
> +++ b/tools/libxl/libxl_dm.c
> @@ -19,7 +19,7 @@
>
> #include "libxl_internal.h"
>
> -#include <xc_dom.h>
> +#include <xenctrl_dom.h>
> #include <xen/hvm/e820.h>
> #include <sys/types.h>
> #include <pwd.h>
> diff --git a/tools/libxl/libxl_dom.c b/tools/libxl/libxl_dom.c
> index f8661e90d4..e2dca64aa1 100644
> --- a/tools/libxl/libxl_dom.c
> +++ b/tools/libxl/libxl_dom.c
> @@ -20,7 +20,7 @@
> #include "libxl_internal.h"
> #include "libxl_arch.h"
>
> -#include <xc_dom.h>
> +#include <xenctrl_dom.h>
> #include <xen/hvm/hvm_info_table.h>
> #include <xen/hvm/hvm_xs_strings.h>
> #include <xen/hvm/e820.h>
> diff --git a/tools/libxl/libxl_internal.h b/tools/libxl/libxl_internal.h
> index c63d0686fd..e16ae9630b 100644
> --- a/tools/libxl/libxl_internal.h
> +++ b/tools/libxl/libxl_internal.h
> @@ -57,7 +57,7 @@
> #include <xenctrl.h>
> #include <xenguest.h>
> #include <xenhypfs.h>
> -#include <xc_dom.h>
> +#include <xenctrl_dom.h>
>
> #include <xen-tools/libs.h>
>
> diff --git a/tools/libxl/libxl_vnuma.c b/tools/libxl/libxl_vnuma.c
> index 8ec2abb2e6..c2e144ceae 100644
> --- a/tools/libxl/libxl_vnuma.c
> +++ b/tools/libxl/libxl_vnuma.c
> @@ -17,7 +17,7 @@
> #include "libxl_arch.h"
> #include <stdlib.h>
>
> -#include <xc_dom.h>
> +#include <xenctrl_dom.h>
>
> bool libxl__vnuma_configured(const libxl_domain_build_info *b_info)
> {
> diff --git a/tools/libxl/libxl_x86.c b/tools/libxl/libxl_x86.c
> index e57f63282e..7d95506e00 100644
> --- a/tools/libxl/libxl_x86.c
> +++ b/tools/libxl/libxl_x86.c
> @@ -1,7 +1,7 @@
> #include "libxl_internal.h"
> #include "libxl_arch.h"
>
> -#include <xc_dom.h>
> +#include <xenctrl_dom.h>
>
> int libxl__arch_domain_prepare_config(libxl__gc *gc,
> libxl_domain_config *d_config,
> diff --git a/tools/libxl/libxl_x86_acpi.c b/tools/libxl/libxl_x86_acpi.c
> index ed6610c84e..3df86c7be5 100644
> --- a/tools/libxl/libxl_x86_acpi.c
> +++ b/tools/libxl/libxl_x86_acpi.c
> @@ -18,7 +18,7 @@
> #include <xen/hvm/e820.h>
> #include "libacpi/libacpi.h"
>
> -#include <xc_dom.h>
> +#include <xenctrl_dom.h>
>
> /* Number of pages holding ACPI tables */
> #define NUM_ACPI_PAGES 16
> diff --git a/tools/python/xen/lowlevel/xc/xc.c b/tools/python/xen/lowlevel/xc/xc.c
> index 8fde5f311f..8c7b184f0b 100644
> --- a/tools/python/xen/lowlevel/xc/xc.c
> +++ b/tools/python/xen/lowlevel/xc/xc.c
> @@ -17,7 +17,7 @@
> #include <arpa/inet.h>
>
> #include <xen/elfnote.h>
> -#include "xc_dom.h"
> +#include "xenctrl_dom.h"
> #include <xen/hvm/hvm_info_table.h>
> #include <xen/hvm/params.h>
>
> diff --git a/tools/xcutils/readnotes.c b/tools/xcutils/readnotes.c
> index e682dd1a21..a6b7358e70 100644
> --- a/tools/xcutils/readnotes.c
> +++ b/tools/xcutils/readnotes.c
> @@ -12,7 +12,7 @@
> #include <sys/mman.h>
>
> #include <xg_private.h>
> -#include <xc_dom.h> /* gunzip bits */
> +#include <xenctrl_dom.h> /* gunzip bits */
>
> #include <xen/libelf/libelf.h>
>
--
Best Regards,
Marek Marczykowski-Górecki
Invisible Things Lab
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
next prev parent reply other threads:[~2020-08-25 11:11 UTC|newest]
Thread overview: 84+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-23 9:34 [PATCH v3 00/38] tools: move most libraries into tools/libs Juergen Gross
2020-08-23 9:34 ` [PATCH v3 01/38] stubdom: add stubdom/mini-os.mk for Xen paths used by Mini-OS Juergen Gross
2020-08-23 9:34 ` [PATCH v3 02/38] tools: switch XEN_LIBXEN* make variables to lower case (XEN_libxen*) Juergen Gross
2020-08-27 10:22 ` Wei Liu
2020-08-23 9:34 ` [PATCH v3 03/38] tools: add a copy of library headers in tools/include Juergen Gross
2020-08-27 10:25 ` Wei Liu
2020-08-23 9:34 ` [PATCH v3 04/38] tools: don't call make recursively from libs.mk Juergen Gross
2020-08-27 10:28 ` Wei Liu
2020-08-23 9:34 ` [PATCH v3 05/38] tools: define ROUNDUP() in tools/include/xen-tools/libs.h Juergen Gross
2020-08-27 10:22 ` Wei Liu
2020-08-23 9:34 ` [PATCH v3 06/38] tools: generate most contents of library make variables Juergen Gross
2020-08-27 10:28 ` Wei Liu
2020-08-23 9:34 ` [PATCH v3 07/38] stubdom: add correct dependencies for Xen libraries Juergen Gross
2020-08-23 9:47 ` Samuel Thibault
2020-08-23 9:51 ` Jürgen Groß
2020-08-23 9:34 ` [PATCH v3 08/38] stubdom: simplify building xen libraries for stubdoms Juergen Gross
2020-08-23 9:50 ` Samuel Thibault
2020-08-23 9:34 ` [PATCH v3 09/38] tools: drop explicit path specifications for qemu build Juergen Gross
2020-08-27 10:30 ` Wei Liu
2020-08-23 9:34 ` [PATCH v3 10/38] tools: tweak tools/libs/libs.mk for being able to support libxenctrl Juergen Gross
2020-08-27 10:52 ` Wei Liu
2020-08-23 9:34 ` [PATCH v3 11/38] tools/python: drop libxenguest from setup.py Juergen Gross
2020-08-25 11:07 ` Marek Marczykowski-Górecki
2020-08-23 9:34 ` [PATCH v3 12/38] tools: fix pkg-config file for libxenguest Juergen Gross
2020-08-27 10:34 ` Wei Liu
2020-08-23 9:34 ` [PATCH v3 13/38] tools: don't assume libxenguest and libxenctrl to be in same directory Juergen Gross
2020-08-27 10:36 ` Wei Liu
2020-08-23 9:34 ` [PATCH v3 14/38] tools/misc: don't use libxenctrl internals from xen-hptool Juergen Gross
2020-08-27 10:37 ` Wei Liu
2020-08-23 9:34 ` [PATCH v3 15/38] tools/misc: don't include xg_save_restore.h from xen-mfndump.c Juergen Gross
2020-08-27 10:37 ` Wei Liu
2020-08-23 9:34 ` [PATCH v3 16/38] tools/misc: replace PAGE_SIZE with XC_PAGE_SIZE in xen-mfndump.c Juergen Gross
2020-08-27 10:37 ` Wei Liu
2020-08-23 9:34 ` [PATCH v3 17/38] tools/misc: drop all libxc internals from xen-mfndump.c Juergen Gross
2020-08-27 10:38 ` Wei Liu
2020-08-23 9:34 ` [PATCH v3 18/38] tools/libxc: remove unused headers xc_efi.h and xc_elf.h Juergen Gross
2020-08-27 10:39 ` Wei Liu
2020-08-23 9:35 ` [PATCH v3 19/38] tools/libxc: move xc_[un]map_domain_meminfo() into new source xg_domain.c Juergen Gross
2020-08-27 10:39 ` Wei Liu
2020-08-23 9:35 ` [PATCH v3 20/38] tools/libxc: rename all libxenguest sources to xg_* Juergen Gross
2020-08-27 10:56 ` Wei Liu
2020-08-23 9:35 ` [PATCH v3 21/38] tools/libxc: rename libxenguest internal headers Juergen Gross
2020-08-27 10:56 ` Wei Liu
2020-08-23 9:35 ` [PATCH v3 22/38] tools/misc: rename xc_dom.h do xenctrl_dom.h Juergen Gross
2020-08-25 11:10 ` Marek Marczykowski-Górecki [this message]
2020-08-27 10:57 ` Wei Liu
2020-08-23 9:35 ` [PATCH v3 23/38] tools/libxc: untangle libxenctrl from libxenguest Juergen Gross
2020-08-27 11:23 ` Wei Liu
2020-08-23 9:35 ` [PATCH v3 24/38] tools/xcutils: use official headers in readnotes Juergen Gross
2020-08-27 11:27 ` Wei Liu
2020-08-23 9:35 ` [PATCH v3 25/38] tools/xenpaging: remove libxc internals Juergen Gross
2020-08-27 11:27 ` Wei Liu
2020-08-23 9:35 ` [PATCH v3 26/38] tools: move libxenctrl below tools/libs Juergen Gross
2020-08-25 11:16 ` Marek Marczykowski-Górecki
2020-08-25 11:26 ` Jürgen Groß
2020-08-27 11:33 ` Wei Liu
2020-08-23 9:35 ` [PATCH v3 27/38] tools/libxc: move libxenguest to tools/libs/guest Juergen Gross
2020-08-23 9:53 ` Samuel Thibault
2020-08-27 11:33 ` Wei Liu
2020-08-23 9:35 ` [PATCH v3 28/38] tools: split libxenstore into new tools/libs/store directory Juergen Gross
2020-08-27 11:34 ` Wei Liu
2020-08-23 9:35 ` [PATCH v3 29/38] tools: split libxenvchan into new tools/libs/vchan directory Juergen Gross
2020-08-27 11:35 ` Wei Liu
2020-08-23 9:35 ` [PATCH v3 30/38] tools: split libxenstat into new tools/libs/stat directory Juergen Gross
2020-08-27 11:36 ` Wei Liu
2020-08-23 9:35 ` [PATCH v3 31/38] tools/libxl: fix dependencies of libxl tests Juergen Gross
2020-08-27 11:36 ` Wei Liu
2020-08-23 9:35 ` [PATCH v3 32/38] tools/libxl: don't include libxl_osdeps.h from libxlutil sources Juergen Gross
2020-08-27 11:47 ` Wei Liu
2020-08-23 9:35 ` [PATCH v3 33/38] tools/libxl: add missing items to clean target Juergen Gross
2020-08-27 11:47 ` Wei Liu
2020-08-23 9:35 ` [PATCH v3 34/38] tools/libxl: move xl parsing checks to tools/xl Juergen Gross
2020-08-27 11:48 ` Wei Liu
2020-08-23 9:35 ` [PATCH v3 35/38] tools/xl: don't assume libxl and libxlutil are in one directory Juergen Gross
2020-08-27 11:49 ` Wei Liu
2020-08-23 9:35 ` [PATCH v3 36/38] tools/libxl: move libxenlight to tools/libs/light Juergen Gross
2020-08-27 11:51 ` Wei Liu
2020-08-23 9:35 ` [PATCH v3 37/38] tools: add support for library names other than libxen* Juergen Gross
2020-08-27 11:55 ` Wei Liu
2020-08-27 12:34 ` Jürgen Groß
2020-08-23 9:35 ` [PATCH v3 38/38] tools: move libxlutil to tools/libs/util Juergen Gross
2020-08-25 10:54 ` [PATCH v3 00/38] tools: move most libraries into tools/libs Christian Lindig
2020-08-27 11:07 ` Wei Liu
2020-08-27 11:24 ` Jürgen Groß
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200825111038.GA1626@mail-itl \
--to=marmarek@invisiblethingslab.com \
--cc=anthony.perard@citrix.com \
--cc=ian.jackson@eu.citrix.com \
--cc=jgross@suse.com \
--cc=samuel.thibault@ens-lyon.org \
--cc=wl@xen.org \
--cc=xen-devel@lists.xenproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.