All of lore.kernel.org
 help / color / mirror / Atom feed
From: Juergen Gross <jgross@suse.com>
To: torvalds@linux-foundation.org
Cc: linux-kernel@vger.kernel.org, xen-devel@lists.xenproject.org,
	boris.ostrovsky@oracle.com
Subject: [GIT PULL] xen: fixes and features for 5.3-rc1
Date: Fri, 19 Jul 2019 08:09:25 +0200	[thread overview]
Message-ID: <20190719060925.10614-1-jgross@suse.com> (raw)

Linus,

Please git pull the following tag:

 git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git for-linus-5.3a-rc1-tag

xen: fixes and features for 5.3-rc1

It contains:

- A series to introduce a common command line parameter for disabling
  paravirtual extensions when running as a guest in virtualized
  environment

- A fix for int3 handling in Xen pv guests

- Removal of the Xen-specific tmem driver as support of tmem in Xen
  has been dropped (and it was experimental only)

- A security fix for running as Xen dom0 (XSA-300)

- A fix for IRQ handling when offlining cpus in Xen guests

- Some small cleanups


Thanks.

Juergen

 Documentation/admin-guide/kernel-parameters.txt |  28 +-
 arch/x86/entry/entry_64.S                       |   1 -
 arch/x86/include/asm/hypervisor.h               |  12 +
 arch/x86/include/asm/traps.h                    |   2 +-
 arch/x86/include/asm/x86_init.h                 |   2 +
 arch/x86/include/asm/xen/hypervisor.h           |   6 +-
 arch/x86/kernel/cpu/hypervisor.c                |  19 +-
 arch/x86/kernel/jailhouse.c                     |   1 +
 arch/x86/kernel/smpboot.c                       |   3 +-
 arch/x86/kernel/x86_init.c                      |   4 +-
 arch/x86/xen/enlighten_hvm.c                    |  58 ++-
 arch/x86/xen/enlighten_pv.c                     |   3 +-
 arch/x86/xen/spinlock.c                         |   6 +-
 arch/x86/xen/xen-asm_64.S                       |   1 -
 drivers/xen/Kconfig                             |  23 -
 drivers/xen/Makefile                            |   2 -
 drivers/xen/balloon.c                           |  16 +-
 drivers/xen/events/events_base.c                |  12 +-
 drivers/xen/evtchn.c                            |   2 +-
 drivers/xen/tmem.c                              | 419 -----------------
 drivers/xen/xen-balloon.c                       |   2 -
 drivers/xen/xen-selfballoon.c                   | 579 ------------------------
 include/xen/balloon.h                           |  10 -
 include/xen/events.h                            |   3 +-
 include/xen/tmem.h                              |  18 -
 25 files changed, 112 insertions(+), 1120 deletions(-)

Juergen Gross (3):
      xen/events: fix binding user event channels to cpus
      xen: remove tmem driver
      xen: let alloc_xenballooned_pages() fail if not enough memory free

Zhenzhong Duan (7):
      Revert "x86/paravirt: Set up the virt_spin_lock_key after static keys get initialized"
      x86/xen: Mark xen_hvm_need_lapic() and xen_x2apic_para_available() as __init
      x86: Add "nopv" parameter to disable PV extensions
      xen: Map "xen_nopv" parameter to "nopv" and mark it obsolete
      x86/paravirt: Remove const mark from x86_hyper_xen_hvm variable
      x86/xen: Add "nopv" support for HVM guest
      xen/pv: Fix a boot up hang revealed by int3 self test

WARNING: multiple messages have this Message-ID (diff)
From: Juergen Gross <jgross@suse.com>
To: torvalds@linux-foundation.org
Cc: xen-devel@lists.xenproject.org, boris.ostrovsky@oracle.com,
	linux-kernel@vger.kernel.org
Subject: [Xen-devel] [GIT PULL] xen: fixes and features for 5.3-rc1
Date: Fri, 19 Jul 2019 08:09:25 +0200	[thread overview]
Message-ID: <20190719060925.10614-1-jgross@suse.com> (raw)

Linus,

Please git pull the following tag:

 git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git for-linus-5.3a-rc1-tag

xen: fixes and features for 5.3-rc1

It contains:

- A series to introduce a common command line parameter for disabling
  paravirtual extensions when running as a guest in virtualized
  environment

- A fix for int3 handling in Xen pv guests

- Removal of the Xen-specific tmem driver as support of tmem in Xen
  has been dropped (and it was experimental only)

- A security fix for running as Xen dom0 (XSA-300)

- A fix for IRQ handling when offlining cpus in Xen guests

- Some small cleanups


Thanks.

Juergen

 Documentation/admin-guide/kernel-parameters.txt |  28 +-
 arch/x86/entry/entry_64.S                       |   1 -
 arch/x86/include/asm/hypervisor.h               |  12 +
 arch/x86/include/asm/traps.h                    |   2 +-
 arch/x86/include/asm/x86_init.h                 |   2 +
 arch/x86/include/asm/xen/hypervisor.h           |   6 +-
 arch/x86/kernel/cpu/hypervisor.c                |  19 +-
 arch/x86/kernel/jailhouse.c                     |   1 +
 arch/x86/kernel/smpboot.c                       |   3 +-
 arch/x86/kernel/x86_init.c                      |   4 +-
 arch/x86/xen/enlighten_hvm.c                    |  58 ++-
 arch/x86/xen/enlighten_pv.c                     |   3 +-
 arch/x86/xen/spinlock.c                         |   6 +-
 arch/x86/xen/xen-asm_64.S                       |   1 -
 drivers/xen/Kconfig                             |  23 -
 drivers/xen/Makefile                            |   2 -
 drivers/xen/balloon.c                           |  16 +-
 drivers/xen/events/events_base.c                |  12 +-
 drivers/xen/evtchn.c                            |   2 +-
 drivers/xen/tmem.c                              | 419 -----------------
 drivers/xen/xen-balloon.c                       |   2 -
 drivers/xen/xen-selfballoon.c                   | 579 ------------------------
 include/xen/balloon.h                           |  10 -
 include/xen/events.h                            |   3 +-
 include/xen/tmem.h                              |  18 -
 25 files changed, 112 insertions(+), 1120 deletions(-)

Juergen Gross (3):
      xen/events: fix binding user event channels to cpus
      xen: remove tmem driver
      xen: let alloc_xenballooned_pages() fail if not enough memory free

Zhenzhong Duan (7):
      Revert "x86/paravirt: Set up the virt_spin_lock_key after static keys get initialized"
      x86/xen: Mark xen_hvm_need_lapic() and xen_x2apic_para_available() as __init
      x86: Add "nopv" parameter to disable PV extensions
      xen: Map "xen_nopv" parameter to "nopv" and mark it obsolete
      x86/paravirt: Remove const mark from x86_hyper_xen_hvm variable
      x86/xen: Add "nopv" support for HVM guest
      xen/pv: Fix a boot up hang revealed by int3 self test

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

             reply	other threads:[~2019-07-19  6:09 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-19  6:09 Juergen Gross [this message]
2019-07-19  6:09 ` [Xen-devel] [GIT PULL] xen: fixes and features for 5.3-rc1 Juergen Gross
2019-07-19 19:45 ` pr-tracker-bot
2019-07-19 19:45   ` [Xen-devel] " pr-tracker-bot

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=20190719060925.10614-1-jgross@suse.com \
    --to=jgross@suse.com \
    --cc=boris.ostrovsky@oracle.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linux-foundation.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.