From mboxrd@z Thu Jan 1 00:00:00 1970 From: Oleksandr Grytsov Subject: Re: [PATCH v1 0/6] libxl: create standalone vkb device Date: Tue, 9 Jan 2018 13:31:21 +0200 Message-ID: References: <1509548707-6134-1-git-send-email-al1img@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6928136856970806463==" Return-path: Received: from us1-rack-dfw2.inumbo.com ([104.130.134.6]) by lists.xenproject.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eYs7o-0002gx-P7 for xen-devel@lists.xenproject.org; Tue, 09 Jan 2018 11:31:24 +0000 Received: by mail-it0-x241.google.com with SMTP id r6so11533108itr.3 for ; Tue, 09 Jan 2018 03:31:22 -0800 (PST) In-Reply-To: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" To: Xen-devel , Ian Jackson , Wei Liu Cc: Oleksandr Grytsov List-Id: xen-devel@lists.xenproject.org --===============6928136856970806463== Content-Type: multipart/alternative; boundary="001a1143de1e13d7fc05625641b1" --001a1143de1e13d7fc05625641b1 Content-Type: text/plain; charset="UTF-8" On Mon, Nov 20, 2017 at 3:44 PM, Oleksandr Grytsov wrote: > On Tue, Nov 14, 2017 at 2:39 PM, Oleksandr Grytsov > wrote: > >> On Wed, Nov 1, 2017 at 5:05 PM, Oleksandr Grytsov >> wrote: >> >>> From: Oleksandr Grytsov >>> >>> Changes since initial: >>> * add setting backend-type to xenstore >>> * add id field to indentify the vkb device on backend side >>> >>> Oleksandr Grytsov (6): >>> libxl: move vkb device to libxl_vkb.c >>> libxl: fix vkb XS entry and type >>> libxl: add backend type and id to vkb >>> libxl: vkb add list and info functions >>> xl: add vkb config parser and CLI >>> docs: add vkb device to xl.cfg and xl >>> >>> docs/man/xl.cfg.pod.5.in | 28 ++++++ >>> docs/man/xl.pod.1.in | 22 +++++ >>> tools/libxl/Makefile | 1 + >>> tools/libxl/libxl.h | 10 ++ >>> tools/libxl/libxl_console.c | 53 ----------- >>> tools/libxl/libxl_create.c | 3 + >>> tools/libxl/libxl_dm.c | 1 + >>> tools/libxl/libxl_types.idl | 19 ++++ >>> tools/libxl/libxl_utils.h | 3 + >>> tools/libxl/libxl_vkb.c | 226 ++++++++++++++++++++++++++++++ >>> ++++++++++++++ >>> tools/xl/Makefile | 2 +- >>> tools/xl/xl.h | 3 + >>> tools/xl/xl_cmdtable.c | 15 +++ >>> tools/xl/xl_parse.c | 75 ++++++++++++++- >>> tools/xl/xl_parse.h | 2 +- >>> tools/xl/xl_vkb.c | 142 ++++++++++++++++++++++++++++ >>> 16 files changed, 549 insertions(+), 56 deletions(-) >>> create mode 100644 tools/libxl/libxl_vkb.c >>> create mode 100644 tools/xl/xl_vkb.c >>> >>> -- >>> 2.7.4 >>> >>> >> ping >> >> -- >> Best Regards, >> Oleksandr Grytsov. >> > > ping > > -- > Best Regards, > Oleksandr Grytsov. > Ian, Wei, Could you review this patch set? -- Best Regards, Oleksandr Grytsov. --001a1143de1e13d7fc05625641b1 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable


On Mon, Nov 20, 2017 at 3:44 PM, Oleksandr Grytsov &l= t;al1img@gmail.com> wrote:
On Tue, Nov 14, 2017 at 2:39 = PM, Oleksandr Grytsov <al1img@gmail.com> wrote:
On Wed, Nov 1, 2017 at 5:05 PM, Oleksandr Grytsov <al1img@gmail.= com> wrote:
From: Oleksandr Grytsov <oleksandr_grytsov@epam.com>

Changes since initial:
=C2=A0* add setting backend-type to xenstore
=C2=A0* add id field to indentify the vkb device on backend side

Oleksandr Grytsov (6):
=C2=A0 libxl: move vkb device to libxl_vkb.c
=C2=A0 libxl: fix vkb XS entry and type
=C2=A0 libxl: add backend type and id to vkb
=C2=A0 libxl: vkb add list and info functions
=C2=A0 xl: add vkb config parser and CLI
=C2=A0 docs: add vkb device to xl.cfg and xl

=C2=A0docs/man/xl.cfg.pod.5.in=C2=A0 =C2=A0 |=C2=A0 28 ++++++
=C2=A0docs/man/xl.pod.1.in=C2=A0 =C2=A0 =C2=A0 =C2=A0 |=C2=A0 22 +++++
=C2=A0tools/libxl/Makefile=C2=A0 =C2=A0 =C2=A0 =C2=A0 |=C2=A0 =C2=A01 +
=C2=A0tools/libxl/libxl.h=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0|=C2=A0 10 ++ =C2=A0tools/libxl/libxl_console.c |=C2=A0 53 -----------
=C2=A0tools/libxl/libxl_create.c=C2=A0 |=C2=A0 =C2=A03 +
=C2=A0tools/libxl/libxl_dm.c=C2=A0 =C2=A0 =C2=A0 |=C2=A0 =C2=A01 +
=C2=A0tools/libxl/libxl_types.idl |=C2=A0 19 ++++
=C2=A0tools/libxl/libxl_utils.h=C2=A0 =C2=A0|=C2=A0 =C2=A03 +
=C2=A0tools/libxl/libxl_vkb.c=C2=A0 =C2=A0 =C2=A0| 226 ++++++++++++++++++++= ++++++++++++++++++++++++
=C2=A0tools/xl/Makefile=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0|=C2=A0 =C2= =A02 +-
=C2=A0tools/xl/xl.h=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0|= =C2=A0 =C2=A03 +
=C2=A0tools/xl/xl_cmdtable.c=C2=A0 =C2=A0 =C2=A0 |=C2=A0 15 +++
=C2=A0tools/xl/xl_parse.c=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0|=C2=A0 75 +++++= +++++++++-
=C2=A0tools/xl/xl_parse.h=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0|=C2=A0 =C2=A02 = +-
=C2=A0tools/xl/xl_vkb.c=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0| 142 +++++= +++++++++++++++++++++++
=C2=A016 files changed, 549 insertions(+), 56 deletions(-)
=C2=A0create mode 100644 tools/libxl/libxl_vkb.c
=C2=A0create mode 100644 tools/xl/xl_vkb.c

--
2.7.4


ping
<= br>--
Best Regards,
Oleksandr Grytsov.

ping

--
Best Regards,
Oleksandr Grytsov.

Ian, Wei,

Could you review this patch set?

--
Best Regards,
Ol= eksandr Grytsov.
--001a1143de1e13d7fc05625641b1-- --===============6928136856970806463== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: base64 Content-Disposition: inline X19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX18KWGVuLWRldmVs IG1haWxpbmcgbGlzdApYZW4tZGV2ZWxAbGlzdHMueGVucHJvamVjdC5vcmcKaHR0cHM6Ly9saXN0 cy54ZW5wcm9qZWN0Lm9yZy9tYWlsbWFuL2xpc3RpbmZvL3hlbi1kZXZlbA== --===============6928136856970806463==--