All of lore.kernel.org
 help / color / mirror / Atom feed
From: David Vrabel <dvrabel@cantab.net>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"Xen-devel@lists.xen.org" <Xen-devel@lists.xen.org>,
	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>,
	Boris Ostrovsky <Boris.Ostrovsky@oracle.com>
Subject: [GIT PULL] xen: features and fixes for 4.1-rc0
Date: Thu, 16 Apr 2015 13:04:24 +0100	[thread overview]
Message-ID: <552FA548.2080900@cantab.net> (raw)

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Linus,

Please git pull the following tag:

 git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git stable/for-linus-4.1-rc0-tag

xen: features and fixes for 4.1-rc0

- - Use a single source list of hypercalls, generating other tables
  etc. at build time.
- - Add a "Xen PV" APIC driver to support >255 VCPUs in PV guests.
- - Significant performance improve to guest save/restore/migration.
- - scsiback/front save/restore support.
- - Infrastructure for multi-page xenbus rings.
- - Misc fixes.

Thanks.

David

 arch/arm/xen/enlighten.c                    |  104 ++-----
 arch/x86/syscalls/Makefile                  |    9 +
 arch/x86/xen/apic.c                         |  180 +++++++++++++
 arch/x86/xen/enlighten.c                    |   90 +------
 arch/x86/xen/mmu.c                          |  207 ++++++--------
 arch/x86/xen/trace.c                        |   50 +---
 arch/x86/xen/xen-head.S                     |   63 +----
 drivers/block/xen-blkback/xenbus.c          |    5 +-
 drivers/block/xen-blkfront.c                |    5 +-
 drivers/char/tpm/xen-tpmfront.c             |    5 +-
 drivers/net/xen-netback/netback.c           |    4 +-
 drivers/net/xen-netfront.c                  |    9 +-
 drivers/pci/xen-pcifront.c                  |    5 +-
 drivers/scsi/xen-scsifront.c                |  219 ++++++++++++---
 drivers/xen/Kconfig                         |    6 +
 drivers/xen/Makefile                        |    1 +
 drivers/xen/mcelog.c                        |   25 +-
 drivers/xen/pci.c                           |   15 +-
 drivers/xen/pcpu.c                          |   44 +--
 drivers/xen/privcmd.c                       |  117 +++++---
 drivers/xen/xen-balloon.c                   |   45 ++--
 drivers/xen/xen-pciback/conf_space_header.c |   15 +-
 drivers/xen/xen-pciback/pci_stub.c          |    4 +-
 drivers/xen/xen-pciback/xenbus.c            |    2 +-
 drivers/xen/xen-scsiback.c                  |   96 +++----
 drivers/xen/xenbus/xenbus_client.c          |  387 ++++++++++++++++++++-------
 drivers/xen/xlate_mmu.c                     |  143 ++++++++++
 include/xen/interface/xen.h                 |    6 +-
 include/xen/xen-ops.h                       |   47 +++-
 include/xen/xenbus.h                        |   20 +-
 scripts/xen-hypercalls.sh                   |   12 +
 31 files changed, 1246 insertions(+), 694 deletions(-)

Dan Carpenter (1):
      xen/mce: fix up xen_late_init_mcelog() error handling

David Vrabel (2):
      xen: unify foreign GFN map/unmap for auto-xlated physmap guests
      xen/privcmd: improve performance of MMAPBATCH_V2

Jan Beulich (1):
      xen-pciback: also support disabling of bus-mastering and memory-write-invalidate

Juergen Gross (6):
      xen: build infrastructure for generating hypercall depending symbols
      xen: synchronize include/xen/interface/xen.h with xen
      xen: use generated hypervisor symbols in arch/x86/xen/trace.c
      xen: use generated hypercall symbols in arch/x86/xen/xen-head.S
      xen: scsiback: add LUN of restored domain
      xen: support suspend/resume in pvscsi frontend

Konrad Rzeszutek Wilk (3):
      xen/pciback: Don't print scary messages when unsupported by hypervisor.
      x86/xen: Provide a "Xen PV" APIC driver to support >255 VCPUs
      x86/xen/apic: WARN with details.

Ross Lagerwall (1):
      xen/pci: Try harder to get PXM information for Xen

Takashi Iwai (2):
      xen: pcpu: Use static attribute groups for sysfs entry
      xen: balloon: Use static attribute groups for sysfs entries

Tao Chen (1):
      xen-scsiback: define a pr_fmt macro with xen-pvscsi

Wei Liu (1):
      xenbus_client: Extend interface to support multi-page ring
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iQEcBAEBAgAGBQJVL6VIAAoJEFxbo/MsZsTRN/QIAIaMaTiH7GVsqkH6yx59JBes
7UmqRFJuuLN4j1+QYZslim+/KZuOmg+mkTByQxY1iVVsMxY+3wkajhGCpWCOdULE
h/gfpwS+USpLTaygTegxdpuHD9IEdoc1rrm2o7X3jk0nJ7N2BborJq52csWKtZ+Z
1h3vAuJeDP4TNB2kJ+d1q6AoBdGoYRuxpebLGz1ZwaxT9kLW99bEoaQlKRj2/CAu
e98xLPL0UNOhzRxT91NbDgEvdlTbTf8DRRUKwiHBdj+3WK3LAUJc6JLYn8BJA5T2
KD6/DsPdIzX9OkIEdNkY6JRNJ+WpuvUlPA6W9i9XuW+40QyHjJoIC5TPRSJ7UqI=
=vuNG
-----END PGP SIGNATURE-----

             reply	other threads:[~2015-04-16 12:04 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-16 12:04 David Vrabel [this message]
  -- strict thread matches above, loose matches on Subject: below --
2015-04-16 12:04 [GIT PULL] xen: features and fixes for 4.1-rc0 David Vrabel

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=552FA548.2080900@cantab.net \
    --to=dvrabel@cantab.net \
    --cc=Boris.Ostrovsky@oracle.com \
    --cc=Xen-devel@lists.xen.org \
    --cc=konrad.wilk@oracle.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linux-foundation.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.