qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/7] xen-140507
@ 2014-05-07 15:09 Stefano Stabellini
  2014-05-07 15:09 ` [Qemu-devel] [PULL 1/7] exec: Limit translation limiting in address_space_translate to xen Stefano Stabellini
                   ` (7 more replies)
  0 siblings, 8 replies; 16+ messages in thread
From: Stefano Stabellini @ 2014-05-07 15:09 UTC (permalink / raw)
  To: peter.maydell
  Cc: Olaf Hering, xen-devel, Stefano Stabellini, qemu-devel,
	Anthony Liguori, Anthony.Perard, Paolo Bonzini

The following changes since commit 951916d02c59cd0eddd57c3d66f87f921931e394:

  Merge remote-tracking branch 'remotes/kraxel/tags/pull-usb-6' into staging (2014-05-06 13:06:32 +0100)

are available in the git repository at:


  git://xenbits.xen.org/people/sstabellini/qemu-dm.git xen-140507

for you to fetch changes up to 6a16be0810eccd3aede1ef592c3c1b64430b3280:

  xen_disk: add discard support (2014-05-07 14:56:54 +0000)

----------------------------------------------------------------
Alexey Kardashevskiy (1):
      exec: Limit translation limiting in address_space_translate to xen

Olaf Hering (1):
      xen_disk: add discard support

Stefano Stabellini (1):
      pass an inclusive address range to xc_domain_pin_memory_cacheattr

Wei Liu (3):
      xen: move Xen PV machine files to hw/xenpv
      xen: move Xen HVM files under hw/i386/xen
      xen: factor out common functions

Zhenzhong Duan (1):
      qemu-xen: free all the pirqs for msi/msix when driver unload

 Makefile.target                      |    6 +-
 exec.c                               |    2 +-
 hw/block/xen_blkif.h                 |   12 ++++
 hw/block/xen_disk.c                  |   33 +++++++++
 hw/i386/Makefile.objs                |    2 +-
 hw/i386/xen/Makefile.objs            |    1 +
 hw/{ => i386}/xen/xen_apic.c         |    0
 hw/{ => i386}/xen/xen_platform.c     |    0
 hw/{ => i386}/xen/xen_pvdevice.c     |    0
 hw/xen/Makefile.objs                 |    1 -
 hw/xen/xen_pt_config_init.c          |    6 +-
 hw/xen/xen_pt_msi.c                  |    6 +-
 hw/xenpv/Makefile.objs               |    2 +
 hw/{i386 => xenpv}/xen_domainbuild.c |    0
 hw/{i386 => xenpv}/xen_domainbuild.h |    0
 hw/{i386 => xenpv}/xen_machine_pv.c  |    0
 include/hw/xen/xen_common.h          |    7 ++
 xen-common-stub.c                    |   19 ++++++
 xen-common.c                         |  123 ++++++++++++++++++++++++++++++++++
 xen-stub.c => xen-hvm-stub.c         |   17 ++---
 xen-all.c => xen-hvm.c               |  123 ++++------------------------------
 21 files changed, 227 insertions(+), 133 deletions(-)
 create mode 100644 hw/i386/xen/Makefile.objs
 rename hw/{ => i386}/xen/xen_apic.c (100%)
 rename hw/{ => i386}/xen/xen_platform.c (100%)
 rename hw/{ => i386}/xen/xen_pvdevice.c (100%)
 create mode 100644 hw/xenpv/Makefile.objs
 rename hw/{i386 => xenpv}/xen_domainbuild.c (100%)
 rename hw/{i386 => xenpv}/xen_domainbuild.h (100%)
 rename hw/{i386 => xenpv}/xen_machine_pv.c (100%)
 create mode 100644 xen-common-stub.c
 create mode 100644 xen-common.c
 rename xen-stub.c => xen-hvm-stub.c (89%)
 rename xen-all.c => xen-hvm.c (92%)

^ permalink raw reply	[flat|nested] 16+ messages in thread
* [Qemu-devel] [PULL 0/7] xen-140507-2
@ 2014-05-07 16:21 Stefano Stabellini
  2014-05-07 16:21 ` [Qemu-devel] [PULL 1/7] exec: Limit translation limiting in address_space_translate to xen Stefano Stabellini
  0 siblings, 1 reply; 16+ messages in thread
From: Stefano Stabellini @ 2014-05-07 16:21 UTC (permalink / raw)
  To: peter.maydell
  Cc: Olaf Hering, xen-devel, Stefano Stabellini, qemu-devel,
	Anthony Liguori, Anthony.Perard, Paolo Bonzini

The following changes since commit 8d1dc5d188b84a2b2aeb9bd39fddb3d2c67be60c:

  Merge remote-tracking branch 'remotes/cohuck/tags/s390x-20140507' into staging (2014-05-07 16:06:38 +0100)

are available in the git repository at:


  git://xenbits.xen.org/people/sstabellini/qemu-dm.git xen-140507-2

for you to fetch changes up to f31352041bdde436c3f6d07e1525a42e48dec215:

  xen_disk: add discard support (2014-05-07 16:18:04 +0000)

----------------------------------------------------------------
Alexey Kardashevskiy (1):
      exec: Limit translation limiting in address_space_translate to xen

Olaf Hering (1):
      xen_disk: add discard support

Stefano Stabellini (1):
      pass an inclusive address range to xc_domain_pin_memory_cacheattr

Wei Liu (3):
      xen: move Xen PV machine files to hw/xenpv
      xen: move Xen HVM files under hw/i386/xen
      xen: factor out common functions

Zhenzhong Duan (1):
      qemu-xen: free all the pirqs for msi/msix when driver unload

 Makefile.target                      |    6 +-
 exec.c                               |    2 +-
 hw/block/xen_blkif.h                 |   12 ++++
 hw/block/xen_disk.c                  |   33 +++++++++
 hw/i386/Makefile.objs                |    2 +-
 hw/i386/xen/Makefile.objs            |    1 +
 hw/{ => i386}/xen/xen_apic.c         |    0
 hw/{ => i386}/xen/xen_platform.c     |    0
 hw/{ => i386}/xen/xen_pvdevice.c     |    0
 hw/xen/Makefile.objs                 |    1 -
 hw/xen/xen_pt_config_init.c          |    6 +-
 hw/xen/xen_pt_msi.c                  |    6 +-
 hw/xenpv/Makefile.objs               |    2 +
 hw/{i386 => xenpv}/xen_domainbuild.c |    0
 hw/{i386 => xenpv}/xen_domainbuild.h |    0
 hw/{i386 => xenpv}/xen_machine_pv.c  |    0
 include/hw/xen/xen_common.h          |    7 ++
 xen-common-stub.c                    |   19 ++++++
 xen-common.c                         |  123 ++++++++++++++++++++++++++++++++++
 xen-stub.c => xen-hvm-stub.c         |   17 ++---
 xen-all.c => xen-hvm.c               |  123 ++++------------------------------
 21 files changed, 227 insertions(+), 133 deletions(-)
 create mode 100644 hw/i386/xen/Makefile.objs
 rename hw/{ => i386}/xen/xen_apic.c (100%)
 rename hw/{ => i386}/xen/xen_platform.c (100%)
 rename hw/{ => i386}/xen/xen_pvdevice.c (100%)
 create mode 100644 hw/xenpv/Makefile.objs
 rename hw/{i386 => xenpv}/xen_domainbuild.c (100%)
 rename hw/{i386 => xenpv}/xen_domainbuild.h (100%)
 rename hw/{i386 => xenpv}/xen_machine_pv.c (100%)
 create mode 100644 xen-common-stub.c
 create mode 100644 xen-common.c
 rename xen-stub.c => xen-hvm-stub.c (90%)
 rename xen-all.c => xen-hvm.c (93%)

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

end of thread, other threads:[~2014-05-07 16:22 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-07 15:09 [Qemu-devel] [PULL 0/7] xen-140507 Stefano Stabellini
2014-05-07 15:09 ` [Qemu-devel] [PULL 1/7] exec: Limit translation limiting in address_space_translate to xen Stefano Stabellini
2014-05-07 15:12   ` Peter Maydell
2014-05-07 15:22     ` Paolo Bonzini
2014-05-07 15:30       ` Stefano Stabellini
2014-05-07 15:32       ` Peter Maydell
2014-05-07 15:38         ` Paolo Bonzini
2014-05-07 15:09 ` [Qemu-devel] [PULL 2/7] qemu-xen: free all the pirqs for msi/msix when driver unload Stefano Stabellini
2014-05-07 15:09 ` [Qemu-devel] [PULL 3/7] xen: move Xen PV machine files to hw/xenpv Stefano Stabellini
2014-05-07 15:09 ` [Qemu-devel] [PULL 4/7] xen: move Xen HVM files under hw/i386/xen Stefano Stabellini
2014-05-07 15:10 ` [Qemu-devel] [PULL 5/7] xen: factor out common functions Stefano Stabellini
2014-05-07 15:10 ` [Qemu-devel] [PULL 6/7] pass an inclusive address range to xc_domain_pin_memory_cacheattr Stefano Stabellini
2014-05-07 15:10 ` [Qemu-devel] [PULL 7/7] xen_disk: add discard support Stefano Stabellini
2014-05-07 15:55 ` [Qemu-devel] [PULL 0/7] xen-140507 Peter Maydell
2014-05-07 16:19   ` Stefano Stabellini
  -- strict thread matches above, loose matches on Subject: below --
2014-05-07 16:21 [Qemu-devel] [PULL 0/7] xen-140507-2 Stefano Stabellini
2014-05-07 16:21 ` [Qemu-devel] [PULL 1/7] exec: Limit translation limiting in address_space_translate to xen Stefano Stabellini

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