From: Oleksandr Andrushchenko <andr2000@gmail.com>
To: Oleksandr Grytsov <al1img@gmail.com>, xen-devel@lists.xenproject.org
Cc: wei.liu2@citrix.com, ian.jackson@eu.citrix.com,
Oleksandr Grytsov <oleksandr_grytsov@epam.com>
Subject: Re: [PATCH v4 00/13] libxl: add PV display device driver interface
Date: Thu, 27 Jul 2017 14:30:33 +0300 [thread overview]
Message-ID: <d936c8a7-9384-ec6a-57e0-cd9cd7e5de22@gmail.com> (raw)
In-Reply-To: <1500387930-16317-1-git-send-email-al1img@gmail.com>
ping
On 07/18/2017 05:25 PM, Oleksandr Grytsov wrote:
> From: Oleksandr Grytsov <oleksandr_grytsov@epam.com>
>
> Changes since V3:
> * libxl__device_add renamed to libxl__device_add_async and reworked
> to match the former design;
> * libxl__device_add used for devices which don't require updating domain
> config but simple write to Xen Store (9pfs, vkb, vfb);
> * following devices are changed to use the libxl__device_add:
> 9pfs, vkb, vfb, nic, vtpm. Other device (console, pci, usb, disk) have
> very different adding pattern and required to unreasonable extend
> libxl__device_add_async and its parameters;
> * disk device list changed to use libxl__device_list;
> * previous comments are applied.
>
> Patches on github [1].
>
> [1] https://github.com/al1img/xen/tree/xl-vdispl-v4
>
> Oleksandr Grytsov (13):
> libxl: add generic function to add device
> libxl: add generic functions to get and free device list
> libxl: add vdispl device
> xl: add PV display device commands
> docs: add PV display driver information
> libxl: change p9 to use generec add function
> libxl: change vkb to use generec add function
> libxl: change vfb to use generec add function
> libxl: change disk to use generic getting list functions
> libxl: change nic to use generec add function
> libxl: change vtpm to use generec add function
> libxl: remove unneeded DEVICE_ADD macro
> libxl: make pci and usb setdefault function generic
>
> docs/man/xl.cfg.pod.5.in | 49 ++++++
> docs/man/xl.pod.1.in | 42 +++++
> tools/libxl/Makefile | 2 +-
> tools/libxl/libxl.h | 54 +++++--
> tools/libxl/libxl_9pfs.c | 67 +++-----
> tools/libxl/libxl_checkpoint_device.c | 16 +-
> tools/libxl/libxl_colo_save.c | 4 +-
> tools/libxl/libxl_console.c | 153 ++++--------------
> tools/libxl/libxl_create.c | 17 +-
> tools/libxl/libxl_device.c | 262 ++++++++++++++++++++++++++++++
> tools/libxl/libxl_disk.c | 101 ++++--------
> tools/libxl/libxl_dm.c | 10 +-
> tools/libxl/libxl_internal.h | 126 ++++++---------
> tools/libxl/libxl_nic.c | 212 +++++--------------------
> tools/libxl/libxl_pci.c | 10 +-
> tools/libxl/libxl_types.idl | 40 ++++-
> tools/libxl/libxl_types_internal.idl | 1 +
> tools/libxl/libxl_usb.c | 21 ++-
> tools/libxl/libxl_utils.h | 4 +
> tools/libxl/libxl_vdispl.c | 289 ++++++++++++++++++++++++++++++++++
> tools/libxl/libxl_vtpm.c | 229 ++++++++-------------------
> tools/ocaml/libs/xl/xenlight_stubs.c | 6 +-
> tools/xl/Makefile | 1 +
> tools/xl/xl.h | 3 +
> tools/xl/xl_block.c | 3 +-
> tools/xl/xl_cmdtable.c | 19 +++
> tools/xl/xl_nic.c | 3 +-
> tools/xl/xl_parse.c | 79 +++++++++-
> tools/xl/xl_parse.h | 2 +-
> tools/xl/xl_vdispl.c | 163 +++++++++++++++++++
> tools/xl/xl_vtpm.c | 3 +-
> 31 files changed, 1293 insertions(+), 698 deletions(-)
> create mode 100644 tools/libxl/libxl_vdispl.c
> create mode 100644 tools/xl/xl_vdispl.c
>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
next prev parent reply other threads:[~2017-07-27 11:30 UTC|newest]
Thread overview: 56+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-18 14:25 [PATCH v4 00/13] libxl: add PV display device driver interface Oleksandr Grytsov
2017-07-18 14:25 ` [PATCH v4 01/13] libxl: add generic function to add device Oleksandr Grytsov
2017-09-05 11:47 ` Wei Liu
2017-09-05 16:44 ` Oleksandr Grytsov
2017-09-06 9:36 ` Wei Liu
2017-09-06 12:08 ` Oleksandr Grytsov
2017-07-18 14:25 ` [PATCH v4 02/13] libxl: add generic functions to get and free device list Oleksandr Grytsov
2017-09-05 11:51 ` Wei Liu
2017-09-06 12:31 ` Oleksandr Grytsov
2017-07-18 14:25 ` [PATCH v4 03/13] libxl: add vdispl device Oleksandr Grytsov
2017-09-05 12:52 ` Wei Liu
2017-09-05 12:58 ` Ian Jackson
2017-09-05 13:04 ` Wei Liu
2017-09-06 13:02 ` Oleksandr Grytsov
2017-09-06 13:39 ` Wei Liu
2017-07-18 14:25 ` [PATCH v4 04/13] xl: add PV display device commands Oleksandr Grytsov
2017-07-28 14:11 ` Wei Liu
2017-07-18 14:25 ` [PATCH v4 05/13] docs: add PV display driver information Oleksandr Grytsov
2017-07-28 14:11 ` Wei Liu
2017-07-18 14:25 ` [PATCH v4 06/13] libxl: change p9 to use generec add function Oleksandr Grytsov
2017-07-28 14:11 ` Wei Liu
2017-07-28 16:23 ` Wei Liu
2017-07-30 18:42 ` Oleksandr Grytsov
2017-07-31 14:36 ` Wei Liu
2017-08-01 11:58 ` Oleksandr Grytsov
2017-08-01 13:00 ` Wei Liu
2017-08-02 11:37 ` Oleksandr Grytsov
2017-08-04 11:53 ` Wei Liu
2017-08-08 12:39 ` Oleksandr Grytsov
2017-08-08 15:05 ` Wei Liu
2017-09-05 12:53 ` Wei Liu
2017-07-18 14:25 ` [PATCH v4 07/13] libxl: change vkb " Oleksandr Grytsov
2017-09-05 12:54 ` Wei Liu
2017-07-18 14:25 ` [PATCH v4 08/13] libxl: change vfb " Oleksandr Grytsov
2017-09-05 12:55 ` Wei Liu
2017-07-18 14:25 ` [PATCH v4 09/13] libxl: change disk to use generic getting list functions Oleksandr Grytsov
2017-09-05 12:58 ` Wei Liu
2017-07-18 14:25 ` [PATCH v4 10/13] libxl: change nic to use generec add function Oleksandr Grytsov
2017-09-05 13:03 ` Wei Liu
2017-09-06 15:39 ` Oleksandr Grytsov
2017-07-18 14:25 ` [PATCH v4 11/13] libxl: change vtpm " Oleksandr Grytsov
2017-09-05 13:05 ` Wei Liu
2017-07-18 14:25 ` [PATCH v4 12/13] libxl: remove unneeded DEVICE_ADD macro Oleksandr Grytsov
2017-09-05 13:05 ` Wei Liu
2017-07-18 14:25 ` [PATCH v4 13/13] libxl: make pci and usb setdefault function generic Oleksandr Grytsov
2017-09-05 13:06 ` Wei Liu
2017-09-06 15:53 ` Oleksandr Grytsov
2017-09-07 9:05 ` Wei Liu
2017-07-27 11:30 ` Oleksandr Andrushchenko [this message]
2017-07-27 14:49 ` [PATCH v4 00/13] libxl: add PV display device driver interface Wei Liu
2017-07-28 14:13 ` Wei Liu
2017-08-17 10:13 ` Oleksandr Grytsov
2017-08-17 11:11 ` Wei Liu
2017-08-30 15:49 ` Oleksandr Grytsov
2017-08-30 15:52 ` Ian Jackson
2017-08-31 9:01 ` Oleksandr Grytsov
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=d936c8a7-9384-ec6a-57e0-cd9cd7e5de22@gmail.com \
--to=andr2000@gmail.com \
--cc=al1img@gmail.com \
--cc=ian.jackson@eu.citrix.com \
--cc=oleksandr_grytsov@epam.com \
--cc=wei.liu2@citrix.com \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).