From: Paul Durrant <paul.durrant@citrix.com>
To: xen-devel@lists.xenproject.org, qemu-devel@nongnu.org
Cc: Paul Durrant <paul.durrant@citrix.com>
Subject: [Qemu-devel] [PATCH 0/5] xen: use new xendevicemodel library
Date: Thu, 23 Feb 2017 14:53:50 +0000 [thread overview]
Message-ID: <1487861635-17560-1-git-send-email-paul.durrant@citrix.com> (raw)
My recent patches to Xen [1] introduced a new library to support
running device models for HVM guests.
This series ports QEMU onto the new library if it is available in the
build environment.
Paul Durrant (5):
xen: make use of xen_xc implicit in xen_common.h inlines
xen: rename xen_modified_memory() to xen_hvm_modified_memory()
xen: create wrappers for all other uses of xc_hvm_XXX() functions
configure: detect presence of libxendevicemodel
xen: use libxendevicemodel when available
configure | 19 ++++
hw/i386/xen/xen_platform.c | 2 +-
hw/xen/xen_backend.c | 2 -
include/exec/ram_addr.h | 4 +-
include/hw/xen/xen.h | 2 +-
include/hw/xen/xen_backend.h | 2 -
include/hw/xen/xen_common.h | 200 ++++++++++++++++++++++++++++++++-----------
xen-common.c | 11 +++
xen-hvm-stub.c | 2 +-
xen-hvm.c | 49 ++++++-----
10 files changed, 207 insertions(+), 86 deletions(-)
--
2.1.4
WARNING: multiple messages have this Message-ID (diff)
From: Paul Durrant <paul.durrant@citrix.com>
To: xen-devel@lists.xenproject.org, qemu-devel@nongnu.org
Cc: Paul Durrant <paul.durrant@citrix.com>
Subject: [PATCH 0/5] xen: use new xendevicemodel library
Date: Thu, 23 Feb 2017 14:53:50 +0000 [thread overview]
Message-ID: <1487861635-17560-1-git-send-email-paul.durrant@citrix.com> (raw)
My recent patches to Xen [1] introduced a new library to support
running device models for HVM guests.
This series ports QEMU onto the new library if it is available in the
build environment.
Paul Durrant (5):
xen: make use of xen_xc implicit in xen_common.h inlines
xen: rename xen_modified_memory() to xen_hvm_modified_memory()
xen: create wrappers for all other uses of xc_hvm_XXX() functions
configure: detect presence of libxendevicemodel
xen: use libxendevicemodel when available
configure | 19 ++++
hw/i386/xen/xen_platform.c | 2 +-
hw/xen/xen_backend.c | 2 -
include/exec/ram_addr.h | 4 +-
include/hw/xen/xen.h | 2 +-
include/hw/xen/xen_backend.h | 2 -
include/hw/xen/xen_common.h | 200 ++++++++++++++++++++++++++++++++-----------
xen-common.c | 11 +++
xen-hvm-stub.c | 2 +-
xen-hvm.c | 49 ++++++-----
10 files changed, 207 insertions(+), 86 deletions(-)
--
2.1.4
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
next reply other threads:[~2017-02-23 14:54 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-23 14:53 Paul Durrant [this message]
2017-02-23 14:53 ` [PATCH 0/5] xen: use new xendevicemodel library Paul Durrant
2017-02-23 14:53 ` [Qemu-devel] [PATCH 1/5] xen: make use of xen_xc implicit in xen_common.h inlines Paul Durrant
2017-02-23 14:53 ` Paul Durrant
2017-03-01 15:19 ` [Qemu-devel] " Anthony PERARD
2017-03-01 15:19 ` Anthony PERARD
2017-02-23 14:53 ` [Qemu-devel] [PATCH 2/5] xen: rename xen_modified_memory() to xen_hvm_modified_memory() Paul Durrant
2017-02-23 14:53 ` Paul Durrant
2017-03-01 15:24 ` [Qemu-devel] " Anthony PERARD
2017-03-01 15:24 ` Anthony PERARD
2017-02-23 14:53 ` [PATCH 3/5] xen: create wrappers for all other uses of xc_hvm_XXX() functions Paul Durrant
2017-02-23 14:53 ` [Qemu-devel] " Paul Durrant
2017-03-01 16:13 ` Anthony PERARD
2017-03-01 16:13 ` Anthony PERARD
2017-03-01 16:16 ` [Qemu-devel] " Paul Durrant
2017-03-01 16:16 ` Paul Durrant
2017-03-02 10:44 ` [Qemu-devel] " Anthony PERARD
2017-03-02 10:44 ` Anthony PERARD
2017-02-23 14:53 ` [Qemu-devel] [PATCH 4/5] configure: detect presence of libxendevicemodel Paul Durrant
2017-02-23 14:53 ` Paul Durrant
2017-03-01 17:17 ` [Qemu-devel] " Anthony PERARD
2017-03-01 17:17 ` Anthony PERARD
2017-03-02 9:06 ` [Qemu-devel] " Paul Durrant
2017-03-02 9:06 ` Paul Durrant
2017-03-02 10:54 ` [Qemu-devel] " Anthony PERARD
2017-03-02 10:54 ` Anthony PERARD
2017-03-02 10:55 ` [Qemu-devel] " Paul Durrant
2017-03-02 10:55 ` Paul Durrant
2017-03-02 11:01 ` [Qemu-devel] [Xen-devel] " Juergen Gross
2017-03-02 11:01 ` Juergen Gross
2017-03-02 11:06 ` [Qemu-devel] [Xen-devel] " Paul Durrant
2017-03-02 11:06 ` Paul Durrant
2017-03-02 11:26 ` [Qemu-devel] [Xen-devel] " Juergen Gross
2017-03-02 11:26 ` Juergen Gross
2017-02-23 14:53 ` [Qemu-devel] [PATCH 5/5] xen: use libxendevicemodel when available Paul Durrant
2017-02-23 14:53 ` Paul Durrant
2017-03-02 2:05 ` [Qemu-devel] " Stefano Stabellini
2017-03-02 2:05 ` Stefano Stabellini
2017-03-02 8:58 ` [Qemu-devel] " Paul Durrant
2017-03-02 8:58 ` Paul Durrant
2017-02-23 14:55 ` [Qemu-devel] [PATCH 0/5] xen: use new xendevicemodel library Paul Durrant
2017-02-23 14:55 ` Paul Durrant
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=1487861635-17560-1-git-send-email-paul.durrant@citrix.com \
--to=paul.durrant@citrix.com \
--cc=qemu-devel@nongnu.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.