linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Wei Liu <wei.liu@kernel.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Wei Liu <wei.liu@kernel.org>,
	Linux on Hyper-V List <linux-hyperv@vger.kernel.org>,
	Linux Kernel List <linux-kernel@vger.kernel.org>,
	kys@microsoft.com, sthemmin@microsoft.com,
	haiyangz@microsoft.com, Michael Kelley <mikelley@microsoft.com>
Subject: [GIT PULL] Hyper-V commits for 5.13
Date: Mon, 26 Apr 2021 17:20:42 +0000	[thread overview]
Message-ID: <20210426172042.tzl7i3mdr6dc4iyp@liuwe-devbox-debian-v2> (raw)

Hi Linus,

The following changes since commit a38fd8748464831584a19438cbb3082b5a2dab15:

  Linux 5.12-rc2 (2021-03-05 17:33:41 -0800)

are available in the Git repository at:

  ssh://git@gitolite.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git tags/hyperv-next-signed-20210426

for you to fetch changes up to 753ed9c95c37d058e50e7d42bbe296ee0bf6670d:

  drivers: hv: Create a consistent pattern for checking Hyper-V hypercall status (2021-04-21 09:49:19 +0000)

Please be aware that there may be a conflict with the x86 tip tree in
arch/x86/include/asm/mshyperv.h. A resolution can be found at

https://lore.kernel.org/lkml/20210315143505.35af617b@canb.auug.org.au/

Thanks,
Wei.

----------------------------------------------------------------
hyperv-next for 5.13
  - VMBus enhancement.
  - Free page reporting support for Hyper-V balloon driver.
  - Some patches for running Linux as Arm64 Hyper-V guest.
  - A few misc clean-up patches.
----------------------------------------------------------------
Andrea Parri (Microsoft) (5):
      Drivers: hv: vmbus: Drop error message when 'No request id available'
      Drivers: hv: vmbus: Introduce and negotiate VMBus protocol version 5.3
      Drivers: hv: vmbus: Drivers: hv: vmbus: Introduce CHANNELMSG_MODIFYCHANNEL_RESPONSE
      Drivers: hv: vmbus: Check for pending channel interrupts before taking a CPU offline
      Drivers: hv: vmbus: Initialize unload_event statically

Bhaskar Chowdhury (1):
      hv: hyperv.h: a few mundane typo fixes

Dan Carpenter (1):
      Drivers: hv: vmbus: Use after free in __vmbus_open()

Jiapeng Chong (1):
      Drivers: hv: vmbus: remove unused function

Joseph Salisbury (2):
      x86/hyperv: Move hv_do_rep_hypercall to asm-generic
      drivers: hv: Create a consistent pattern for checking Hyper-V hypercall status

Michael Kelley (13):
      Drivers: hv: vmbus: Move Hyper-V page allocator to arch neutral code
      x86/hyper-v: Move hv_message_type to architecture neutral module
      Drivers: hv: Redo Hyper-V synthetic MSR get/set functions
      Drivers: hv: vmbus: Move hyperv_report_panic_msg to arch neutral code
      Drivers: hv: vmbus: Handle auto EOI quirk inline
      Drivers: hv: vmbus: Move handling of VMbus interrupts
      clocksource/drivers/hyper-v: Handle vDSO differences inline
      clocksource/drivers/hyper-v: Handle sched_clock differences inline
      clocksource/drivers/hyper-v: Set clocksource rating based on Hyper-V feature
      clocksource/drivers/hyper-v: Move handling of STIMER0 interrupts
      asm-generic/hyperv: Add missing function prototypes per -W1 warnings
      Drivers: hv: vmbus: Increase wait time for VMbus unload
      video: hyperv_fb: Add ratelimit on error message

Qiheng Lin (1):
      Drivers: hv: vmbus: Remove unused linux/version.h header

Sunil Muthuswamy (1):
      x86/Hyper-V: Support for free page reporting

Vasanth (2):
      drivers: hv: Fix whitespace errors
      drivers: hv: Fix EXPORT_SYMBOL and tab spaces issue

Xu Yihang (2):
      x86/hyperv: Fix unused variable 'msr_val' warning in hv_qlock_wait
      x86/hyperv: Fix unused variable 'hi' warning in hv_apic_read

Zheng Yongjun (1):
      x86/hyperv: remove unused linux/version.h header

 arch/x86/hyperv/hv_apic.c           |  18 ++-
 arch/x86/hyperv/hv_init.c           | 106 +++++++--------
 arch/x86/hyperv/hv_proc.c           |  26 ++--
 arch/x86/hyperv/hv_spinlock.c       |   8 +-
 arch/x86/hyperv/irqdomain.c         |   6 +-
 arch/x86/hyperv/mmu.c               |   8 +-
 arch/x86/hyperv/nested.c            |   8 +-
 arch/x86/include/asm/hyperv-tlfs.h  | 131 +++++++++----------
 arch/x86/include/asm/mshyperv.h     | 100 ++-------------
 arch/x86/kernel/cpu/mshyperv.c      |  32 ++---
 drivers/clocksource/hyperv_timer.c  | 249 +++++++++++++++++++++++++-----------
 drivers/hv/Kconfig                  |   1 +
 drivers/hv/channel.c                | 103 ++++++++++++---
 drivers/hv/channel_mgmt.c           |  86 +++++++++++--
 drivers/hv/connection.c             |   7 +-
 drivers/hv/hv.c                     | 152 ++++++++++++++++++----
 drivers/hv/hv_balloon.c             |  89 +++++++++++++
 drivers/hv/hv_trace.h               |  15 +++
 drivers/hv/ring_buffer.c            |  10 --
 drivers/hv/vmbus_drv.c              |  93 ++++++++++++--
 drivers/pci/controller/pci-hyperv.c |   2 +-
 drivers/video/fbdev/hyperv_fb.c     |   2 +-
 include/asm-generic/hyperv-tlfs.h   |  70 +++++++++-
 include/asm-generic/mshyperv.h      |  72 +++++++++--
 include/clocksource/hyperv_timer.h  |   3 +-
 include/linux/hyperv.h              |  21 ++-
 26 files changed, 973 insertions(+), 445 deletions(-)

             reply	other threads:[~2021-04-26 17:20 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-26 17:20 Wei Liu [this message]
2021-04-26 17:47 ` [GIT PULL] Hyper-V commits for 5.13 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=20210426172042.tzl7i3mdr6dc4iyp@liuwe-devbox-debian-v2 \
    --to=wei.liu@kernel.org \
    --cc=haiyangz@microsoft.com \
    --cc=kys@microsoft.com \
    --cc=linux-hyperv@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mikelley@microsoft.com \
    --cc=sthemmin@microsoft.com \
    --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 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).