qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/21] Please pull xen-20170421-tag for 2.10
@ 2017-04-21 20:14 Stefano Stabellini
  2017-04-21 20:14 ` [Qemu-devel] [PULL 01/21] xen: make use of xen_xc implicit in xen_common.h inlines Stefano Stabellini
  2017-04-24 10:31 ` [Qemu-devel] [PULL 0/21] Please pull xen-20170421-tag for 2.10 Peter Maydell
  0 siblings, 2 replies; 30+ messages in thread
From: Stefano Stabellini @ 2017-04-21 20:14 UTC (permalink / raw)
  To: peter.maydell, stefanha
  Cc: sstabellini, stefanha, anthony.perard, xen-devel, qemu-devel

The following changes since commit 55a19ad8b2d0797e3a8fe90ab99a9bb713824059:

  Update version for v2.9.0-rc1 release (2017-03-21 17:13:29 +0000)

are available in the git repository at:

  git://xenbits.xen.org/people/sstabellini/qemu-dm.git tags/xen-20170421-tag

for you to fetch changes up to b0d48550a2d10f0fa8c30a7cc3ff5a1cbda8d4c4:

  move xen-mapcache.c to hw/i386/xen/ (2017-04-21 12:41:29 -0700)

----------------------------------------------------------------
Xen 2017/04/21

----------------------------------------------------------------
Anthony Xu (3):
      move xen-common.c to hw/xen/
      move xen-hvm.c to hw/i386/xen/
      move xen-mapcache.c to hw/i386/xen/

Juergen Gross (2):
      xen: use 5 digit xen versions
      configure: use pkg-config for obtaining xen version

Paul Durrant (7):
      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
      xen: use libxendevice model to restrict operations
      xen: additionally restrict xenforeignmemory operations

Stefano Stabellini (9):
      xen: import ring.h from xen
      9p: introduce a type for the 9p header
      xen/9pfs: introduce Xen 9pfs backend
      xen/9pfs: connect to the frontend
      xen/9pfs: receive requests from the frontend
      xen/9pfs: implement in/out_iov_from_pdu and vmarshal/vunmarshal
      xen/9pfs: send responses back to the frontend
      xen/9pfs: build and register Xen 9pfs backend
      add xen-9p-backend to MAINTAINERS under Xen

 MAINTAINERS                                  |   1 +
 Makefile.target                              |   6 -
 configure                                    | 164 +++++----
 default-configs/i386-softmmu.mak             |   1 -
 default-configs/x86_64-softmmu.mak           |   1 -
 hw/9pfs/9p.h                                 |   6 +
 hw/9pfs/Makefile.objs                        |   1 +
 hw/9pfs/virtio-9p-device.c                   |   6 +-
 hw/9pfs/xen-9p-backend.c                     | 443 ++++++++++++++++++++++++
 hw/block/xen_blkif.h                         |   2 +-
 hw/block/xen_disk.c                          |   2 +-
 hw/i386/xen/Makefile.objs                    |   2 +-
 hw/i386/xen/trace-events                     |  17 +
 xen-hvm.c => hw/i386/xen/xen-hvm.c           |  59 ++--
 xen-mapcache.c => hw/i386/xen/xen-mapcache.c |   2 +-
 hw/i386/xen/xen_platform.c                   |   2 +-
 hw/usb/xen-usb.c                             |   2 +-
 hw/xen/Makefile.objs                         |   2 +-
 hw/xen/trace-events                          |   1 +
 xen-common.c => hw/xen/xen-common.c          |  11 +
 hw/xen/xen_backend.c                         |   5 +-
 include/exec/ram_addr.h                      |   4 +-
 include/hw/xen/io/ring.h                     | 482 +++++++++++++++++++++++++++
 include/hw/xen/xen.h                         |   3 +-
 include/hw/xen/xen_backend.h                 |   5 +-
 include/hw/xen/xen_common.h                  | 345 +++++++++++++++----
 qemu-options.hx                              |   7 +
 stubs/Makefile.objs                          |   2 +
 xen-common-stub.c => stubs/xen-common.c      |   0
 xen-hvm-stub.c => stubs/xen-hvm.c            |   2 +-
 trace-events                                 |  16 -
 vl.c                                         |   8 +
 32 files changed, 1417 insertions(+), 193 deletions(-)
 create mode 100644 hw/9pfs/xen-9p-backend.c
 rename xen-hvm.c => hw/i386/xen/xen-hvm.c (96%)
 rename xen-mapcache.c => hw/i386/xen/xen-mapcache.c (99%)
 rename xen-common.c => hw/xen/xen-common.c (91%)
 create mode 100644 include/hw/xen/io/ring.h
 rename xen-common-stub.c => stubs/xen-common.c (100%)
 rename xen-hvm-stub.c => stubs/xen-hvm.c (94%)

^ permalink raw reply	[flat|nested] 30+ messages in thread

end of thread, other threads:[~2017-04-26  6:44 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-21 20:14 [Qemu-devel] [PULL 0/21] Please pull xen-20170421-tag for 2.10 Stefano Stabellini
2017-04-21 20:14 ` [Qemu-devel] [PULL 01/21] xen: make use of xen_xc implicit in xen_common.h inlines Stefano Stabellini
2017-04-21 20:14   ` [Qemu-devel] [PULL 02/21] xen: rename xen_modified_memory() to xen_hvm_modified_memory() Stefano Stabellini
2017-04-21 20:14   ` [Qemu-devel] [PULL 03/21] xen: create wrappers for all other uses of xc_hvm_XXX() functions Stefano Stabellini
2017-04-21 20:14   ` [Qemu-devel] [PULL 04/21] configure: detect presence of libxendevicemodel Stefano Stabellini
2017-04-21 20:14   ` [Qemu-devel] [PULL 05/21] xen: use libxendevicemodel when available Stefano Stabellini
2017-04-21 20:14   ` [Qemu-devel] [PULL 06/21] xen: use 5 digit xen versions Stefano Stabellini
2017-04-21 20:14   ` [Qemu-devel] [PULL 07/21] xen: use libxendevice model to restrict operations Stefano Stabellini
2017-04-21 20:14   ` [Qemu-devel] [PULL 08/21] xen: additionally restrict xenforeignmemory operations Stefano Stabellini
2017-04-21 20:14   ` [Qemu-devel] [PULL 09/21] configure: use pkg-config for obtaining xen version Stefano Stabellini
2017-04-21 20:14   ` [Qemu-devel] [PULL 10/21] xen: import ring.h from xen Stefano Stabellini
2017-04-21 20:14   ` [Qemu-devel] [PULL 11/21] 9p: introduce a type for the 9p header Stefano Stabellini
2017-04-21 20:14   ` [Qemu-devel] [PULL 12/21] xen/9pfs: introduce Xen 9pfs backend Stefano Stabellini
2017-04-21 20:14   ` [Qemu-devel] [PULL 13/21] xen/9pfs: connect to the frontend Stefano Stabellini
2017-04-21 20:14   ` [Qemu-devel] [PULL 14/21] xen/9pfs: receive requests from " Stefano Stabellini
2017-04-21 20:14   ` [Qemu-devel] [PULL 15/21] xen/9pfs: implement in/out_iov_from_pdu and vmarshal/vunmarshal Stefano Stabellini
2017-04-21 20:14   ` [Qemu-devel] [PULL 16/21] xen/9pfs: send responses back to the frontend Stefano Stabellini
2017-04-21 20:14   ` [Qemu-devel] [PULL 17/21] xen/9pfs: build and register Xen 9pfs backend Stefano Stabellini
2017-04-21 20:14   ` [Qemu-devel] [PULL 18/21] add xen-9p-backend to MAINTAINERS under Xen Stefano Stabellini
2017-04-21 20:15   ` [Qemu-devel] [PULL 19/21] move xen-common.c to hw/xen/ Stefano Stabellini
2017-04-21 20:15   ` [Qemu-devel] [PULL 20/21] move xen-hvm.c to hw/i386/xen/ Stefano Stabellini
2017-04-21 20:15   ` [Qemu-devel] [PULL 21/21] move xen-mapcache.c " Stefano Stabellini
2017-04-24 10:31 ` [Qemu-devel] [PULL 0/21] Please pull xen-20170421-tag for 2.10 Peter Maydell
2017-04-24 21:25   ` Stefano Stabellini
2017-04-24 21:46     ` Peter Maydell
2017-04-24 23:44       ` Stefano Stabellini
2017-04-25  6:44         ` Greg Kurz
2017-04-25  7:31         ` Markus Armbruster
2017-04-25 17:18           ` Stefano Stabellini
2017-04-26  6:44             ` Markus Armbruster

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).