xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
From: Anthony PERARD <anthony.perard@citrix.com>
To: <qemu-devel@nongnu.org>
Cc: Anthony PERARD <anthony.perard@citrix.com>,
	xen-devel@lists.xenproject.org,
	Peter Maydell <peter.maydell@linaro.org>
Subject: [Xen-devel] [PULL 0/8] xen queue 2019-06-24
Date: Mon, 24 Jun 2019 16:32:49 +0100	[thread overview]
Message-ID: <20190624153257.20163-1-anthony.perard@citrix.com> (raw)

The following changes since commit 474f3938d79ab36b9231c9ad3b5a9314c2aeacde:

  Merge remote-tracking branch 'remotes/amarkovic/tags/mips-queue-jun-21-2019' into staging (2019-06-21 15:40:50 +0100)

are available in the Git repository at:

  https://xenbits.xen.org/git-http/people/aperard/qemu-dm.git tags/pull-xen-20190624

for you to fetch changes up to a3434a2d56aee3018f4a0f55c7e0f0cda11f3d9e:

  xen: Import other xen/io/*.h (2019-06-24 10:42:30 +0100)

----------------------------------------------------------------
Xen queue

* Fix build
* xen-block: support feature-large-sector-size
* xen-block: Support IOThread polling for PV shared rings
* Avoid usage of a VLA
* Cleanup Xen headers usage

----------------------------------------------------------------
Anthony PERARD (4):
      xen: Avoid VLA
      xen: Drop includes of xen/hvm/params.h
      Revert xen/io/ring.h of "Clean up a few header guard symbols"
      xen: Import other xen/io/*.h

Paul Durrant (4):
      xen-block: support feature-large-sector-size
      xen-bus: use a separate fd for each event channel
      xen-bus: allow AioContext to be specified for each event channel
      xen-bus / xen-block: add support for event channel polling

 hw/9pfs/xen-9pfs.h                       |    4 +-
 hw/block/dataplane/xen-block.c           |   44 +-
 hw/block/dataplane/xen-block.h           |    3 +-
 hw/block/xen-block.c                     |   38 +-
 hw/block/xen_blkif.h                     |    5 +-
 hw/char/xen_console.c                    |    2 +-
 hw/display/xenfb.c                       |    7 +-
 hw/i386/xen/xen-hvm.c                    |   16 +-
 hw/i386/xen/xen-mapcache.c               |    2 -
 hw/net/xen_nic.c                         |    2 +-
 hw/usb/xen-usb.c                         |    3 +-
 hw/xen/xen-bus.c                         |   92 +--
 hw/xen/xen-legacy-backend.c              |    2 -
 include/hw/xen/interface/grant_table.h   |   36 ++
 include/hw/xen/interface/io/blkif.h      |  712 +++++++++++++++++++++
 include/hw/xen/interface/io/console.h    |   46 ++
 include/hw/xen/interface/io/fbif.h       |  156 +++++
 include/hw/xen/interface/io/kbdif.h      |  566 +++++++++++++++++
 include/hw/xen/interface/io/netif.h      | 1010 ++++++++++++++++++++++++++++++
 include/hw/xen/interface/io/protocols.h  |   42 ++
 include/hw/xen/{ => interface}/io/ring.h |    6 +-
 include/hw/xen/interface/io/usbif.h      |  254 ++++++++
 include/hw/xen/interface/io/xenbus.h     |   70 +++
 include/hw/xen/xen-bus.h                 |    9 +-
 include/hw/xen/xen_common.h              |    2 +-
 25 files changed, 3023 insertions(+), 106 deletions(-)
 create mode 100644 include/hw/xen/interface/grant_table.h
 create mode 100644 include/hw/xen/interface/io/blkif.h
 create mode 100644 include/hw/xen/interface/io/console.h
 create mode 100644 include/hw/xen/interface/io/fbif.h
 create mode 100644 include/hw/xen/interface/io/kbdif.h
 create mode 100644 include/hw/xen/interface/io/netif.h
 create mode 100644 include/hw/xen/interface/io/protocols.h
 rename include/hw/xen/{ => interface}/io/ring.h (99%)
 create mode 100644 include/hw/xen/interface/io/usbif.h
 create mode 100644 include/hw/xen/interface/io/xenbus.h

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

             reply	other threads:[~2019-06-24 15:33 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-24 15:32 Anthony PERARD [this message]
2019-06-24 15:32 ` [Xen-devel] [PULL 1/8] xen-block: support feature-large-sector-size Anthony PERARD
2019-06-24 15:32 ` [Xen-devel] [PULL 2/8] xen-bus: use a separate fd for each event channel Anthony PERARD
2019-06-24 15:32 ` [Xen-devel] [PULL 3/8] xen-bus: allow AioContext to be specified " Anthony PERARD
2019-06-24 15:32 ` [Xen-devel] [PULL 4/8] xen-bus / xen-block: add support for event channel polling Anthony PERARD
2019-06-24 15:32 ` [Xen-devel] [PULL 5/8] xen: Avoid VLA Anthony PERARD
2019-06-24 15:32 ` [Xen-devel] [PULL 6/8] xen: Drop includes of xen/hvm/params.h Anthony PERARD
2019-06-24 15:32 ` [Xen-devel] [PULL 7/8] Revert xen/io/ring.h of "Clean up a few header guard symbols" Anthony PERARD
2019-06-24 15:32 ` [Xen-devel] [PULL 8/8] xen: Import other xen/io/*.h Anthony PERARD
2019-06-24 16:10 ` [Xen-devel] [PULL 0/8] xen queue 2019-06-24 no-reply
2019-06-24 16:28 ` no-reply
2019-06-24 16:34 ` no-reply
2019-06-24 16:48 ` no-reply
2019-06-24 17:19 ` no-reply
2019-07-01 12:45 ` Peter Maydell

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=20190624153257.20163-1-anthony.perard@citrix.com \
    --to=anthony.perard@citrix.com \
    --cc=peter.maydell@linaro.org \
    --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 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).