Re: [GIT PULL] xen: branch for v5.12-rc3

2021-03-12 Thread pr-tracker-bot
The pull request you sent on Fri, 12 Mar 2021 09:34:00 +0100:

> git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git 
> for-linus-5.12b-rc3-tag

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/6bf8819fede1fef9805e1d803261c0d3bb62f239

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html


[GIT PULL] xen: branch for v5.12-rc3

2021-03-12 Thread Juergen Gross
Linus,

Please git pull the following tag:

 git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git 
for-linus-5.12b-rc3-tag

xen: branch for v5.12-rc3

It contains two patch series and a single patch:

- a small cleanup patch to remove unneeded symbol exports
- a series to cleanup Xen grant handling (avoiding allocations in some
  cases, and using common defines for "invalid" values)
- a series to address a race issue in Xen event channel handling


Thanks.

Juergen

 arch/arm/xen/p2m.c   |   5 +-
 arch/x86/xen/p2m.c   |   6 +-
 drivers/pci/xen-pcifront.c   |   4 +-
 drivers/xen/events/events_2l.c   |  22 --
 drivers/xen/events/events_base.c | 130 +++
 drivers/xen/events/events_fifo.c |   7 --
 drivers/xen/events/events_internal.h |  14 ++--
 drivers/xen/gntdev.c |  54 +--
 include/xen/grant_table.h|   7 ++
 include/xen/xenbus.h |   1 -
 10 files changed, 169 insertions(+), 81 deletions(-)

Jan Beulich (4):
  Xen: drop exports of {set,clear}_foreign_p2m_mapping()
  Xen/gntdev: don't needlessly allocate k{,un}map_ops[]
  Xen/gnttab: introduce common INVALID_GRANT_{HANDLE,REF}
  Xen/gntdev: don't needlessly use kvcalloc()

Juergen Gross (3):
  xen/events: reset affinity of 2-level event when tearing it down
  xen/events: don't unmask an event channel when an eoi is pending
  xen/events: avoid handling the same event on two cpus at the same time