From: Oleksandr Grytsov <al1img@gmail.com>
To: xen-devel@lists.xenproject.org
Cc: ian.jackson@eu.citrix.com, wei.liu2@citrix.com,
Oleksandr Grytsov <oleksandr_grytsov@epam.com>
Subject: [PATCH v5 00/12] libxl: add PV display device driver interface
Date: Mon, 11 Sep 2017 20:14:50 +0300 [thread overview]
Message-ID: <1505150102-30806-1-git-send-email-al1img@gmail.com> (raw)
From: Oleksandr Grytsov <oleksandr_grytsov@epam.com>
Changes since V4:
* Use new LIBXL_DEFINE_UPDATE_DEVID for all device types;
* Align device setdefault function parameters with set_default
device type callback;
* revert libxl_mac_to_device_nic to existing implementation;
* previous comments are applied.
Patches on github [1].
[1] https://github.com/al1img/xen/tree/xl-vdispl-v5
Oleksandr Grytsov (12):
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
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 | 64 +++-----
tools/libxl/libxl_checkpoint_device.c | 16 +-
tools/libxl/libxl_colo_save.c | 4 +-
tools/libxl/libxl_console.c | 151 ++++--------------
tools/libxl/libxl_create.c | 17 +-
tools/libxl/libxl_device.c | 256 ++++++++++++++++++++++++++++++
tools/libxl/libxl_disk.c | 99 ++++--------
tools/libxl/libxl_dm.c | 16 +-
tools/libxl/libxl_internal.h | 126 ++++++---------
tools/libxl/libxl_nic.c | 199 +++++-------------------
tools/libxl/libxl_pci.c | 10 +-
tools/libxl/libxl_types.idl | 36 +++++
tools/libxl/libxl_types_internal.idl | 1 +
tools/libxl/libxl_usb.c | 43 ++---
tools/libxl/libxl_utils.h | 4 +
tools/libxl/libxl_vdispl.c | 284 ++++++++++++++++++++++++++++++++++
tools/libxl/libxl_vtpm.c | 230 ++++++++-------------------
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 | 75 ++++++++-
tools/xl/xl_parse.h | 2 +-
tools/xl/xl_vdispl.c | 163 +++++++++++++++++++
tools/xl/xl_vtpm.c | 3 +-
31 files changed, 1281 insertions(+), 700 deletions(-)
create mode 100644 tools/libxl/libxl_vdispl.c
create mode 100644 tools/xl/xl_vdispl.c
--
2.7.4
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
next reply other threads:[~2017-09-11 17:15 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-11 17:14 Oleksandr Grytsov [this message]
2017-09-11 17:14 ` [PATCH v5 01/12] libxl: add generic function to add device Oleksandr Grytsov
2017-09-12 10:20 ` Wei Liu
2017-09-11 17:14 ` [PATCH v5 02/12] libxl: add generic functions to get and free device list Oleksandr Grytsov
2017-09-12 10:20 ` Wei Liu
2017-09-11 17:14 ` [PATCH v5 03/12] libxl: add vdispl device Oleksandr Grytsov
2017-09-12 10:21 ` Wei Liu
2017-09-11 17:14 ` [PATCH v5 04/12] xl: add PV display device commands Oleksandr Grytsov
2017-09-11 17:14 ` [PATCH v5 05/12] docs: add PV display driver information Oleksandr Grytsov
2017-09-11 17:14 ` [PATCH v5 06/12] libxl: change p9 to use generec add function Oleksandr Grytsov
2017-09-12 10:23 ` Wei Liu
2017-09-11 17:14 ` [PATCH v5 07/12] libxl: change vkb " Oleksandr Grytsov
2017-09-12 10:23 ` Wei Liu
2017-09-11 17:14 ` [PATCH v5 08/12] libxl: change vfb " Oleksandr Grytsov
2017-09-11 17:14 ` [PATCH v5 09/12] libxl: change disk to use generic getting list functions Oleksandr Grytsov
2017-09-12 10:28 ` Wei Liu
2017-09-11 17:15 ` [PATCH v5 10/12] libxl: change nic to use generec add function Oleksandr Grytsov
2017-09-12 10:28 ` Wei Liu
2017-09-12 10:52 ` Wei Liu
2017-09-12 11:08 ` Wei Liu
2017-09-12 11:35 ` Oleksandr Grytsov
2017-09-12 13:01 ` Oleksandr Grytsov
2017-09-11 17:15 ` [PATCH v5 11/12] libxl: change vtpm " Oleksandr Grytsov
2017-09-11 17:15 ` [PATCH v5 12/12] libxl: remove unneeded DEVICE_ADD macro Oleksandr Grytsov
2017-09-12 10:39 ` [PATCH v5 00/12] libxl: add PV display device driver interface Wei Liu
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=1505150102-30806-1-git-send-email-al1img@gmail.com \
--to=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).