mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Wei Liu <wei.liu@kernel.org>
To: Naman Jain <namjain@linux.microsoft.com>
Cc: "K . Y . Srinivasan" <kys@microsoft.com>,
	Haiyang Zhang <haiyangz@microsoft.com>,
	Wei Liu <wei.liu@kernel.org>, Dexuan Cui <decui@microsoft.com>,
	Long Li <longli@microsoft.com>,
	Thomas Gleixner <tglx@linutronix.de>,
	Ingo Molnar <mingo@redhat.com>, Borislav Petkov <bp@alien8.de>,
	Dave Hansen <dave.hansen@linux.intel.com>,
	x86@kernel.org, "H . Peter Anvin" <hpa@zytor.com>,
	Peter Zijlstra <peterz@infradead.org>,
	Josh Poimboeuf <jpoimboe@kernel.org>,
	Jason Baron <jbaron@akamai.com>,
	Michael Kelley <mhklinux@outlook.com>,
	Paolo Bonzini <pbonzini@redhat.com>,
	Steven Rostedt <rostedt@goodmis.org>,
	Ard Biesheuvel <ardb@kernel.org>,
	linux-hyperv@vger.kernel.org, linux-kernel@vger.kernel.org,
	Nuno Das Neves <nunodasneves@linux.microsoft.com>,
	Magnus Kulke <magnuskulke@linux.microsoft.com>,
	Kees Cook <kees@kernel.org>,
	Nathan Chancellor <nathan@kernel.org>,
	Miguel Ojeda <ojeda@kernel.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Marc Herbert <Marc.Herbert@linux.intel.com>,
	Jan Hendrik Farr <kernel@jfarr.cc>,
	Heiko Carstens <hca@linux.ibm.com>,
	Uros Bizjak <ubizjak@gmail.com>,
	Sean Christopherson <seanjc@google.com>,
	Christoph Hellwig <hch@infradead.org>,
	Saurabh Sengar <ssengar@linux.microsoft.com>,
	ALOK TIWARI <alok.a.tiwari@oracle.com>
Subject: Re: [PATCH v12 0/3] Drivers: hv: Introduce new driver - mshv_vtl
Date: Thu, 13 Nov 2025 21:13:29 +0000	[thread overview]
Message-ID: <20251113211329.GA1188343@liuwe-devbox-debian-v2.local> (raw)
In-Reply-To: <20251113044149.3710877-1-namjain@linux.microsoft.com>

On Thu, Nov 13, 2025 at 04:41:46AM +0000, Naman Jain wrote:
[...]
> Naman Jain (3):
>   static_call: allow using STATIC_CALL_TRAMP_STR() from assembly
>   Drivers: hv: Export some symbols for mshv_vtl
>   Drivers: hv: Introduce mshv_vtl driver
> 

Thank you Peter, Paolo and Michael for the valuable input to make the
code better. And thank you Naman for your patience and perseverance to
get this done properly.

I intend to merge this into hyperv-next in the following days unless I
hear new objections.

Wei

>  arch/x86/hyperv/Makefile                |   10 +-
>  arch/x86/hyperv/hv_vtl.c                |   29 +
>  arch/x86/hyperv/mshv-asm-offsets.c      |   37 +
>  arch/x86/hyperv/mshv_vtl_asm.S          |  113 ++
>  arch/x86/include/asm/mshyperv.h         |   34 +
>  drivers/hv/Kconfig                      |   27 +-
>  drivers/hv/Makefile                     |    7 +-
>  drivers/hv/hv.c                         |    3 +
>  drivers/hv/hyperv_vmbus.h               |    1 +
>  drivers/hv/mshv_vtl.h                   |   25 +
>  drivers/hv/mshv_vtl_main.c              | 1392 +++++++++++++++++++++++
>  drivers/hv/vmbus_drv.c                  |    4 +-
>  include/hyperv/hvgdk_mini.h             |  106 ++
>  include/linux/compiler_types.h          |    8 +-
>  include/linux/static_call_types.h       |    4 +
>  include/uapi/linux/mshv.h               |   80 ++
>  tools/include/linux/static_call_types.h |    4 +
>  17 files changed, 1876 insertions(+), 8 deletions(-)
>  create mode 100644 arch/x86/hyperv/mshv-asm-offsets.c
>  create mode 100644 arch/x86/hyperv/mshv_vtl_asm.S
>  create mode 100644 drivers/hv/mshv_vtl.h
>  create mode 100644 drivers/hv/mshv_vtl_main.c
> 
> 
> base-commit: ab40c92c74c6b0c611c89516794502b3a3173966
> -- 
> 2.43.0
> 
> 

      parent reply	other threads:[~2025-11-13 21:13 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-11-13  4:41 Naman Jain
2025-11-13  4:41 ` [PATCH v12 1/3] static_call: allow using STATIC_CALL_TRAMP_STR() from assembly Naman Jain
2025-11-13  4:41 ` [PATCH v12 2/3] Drivers: hv: Export some symbols for mshv_vtl Naman Jain
2025-11-13  4:41 ` [PATCH v12 3/3] Drivers: hv: Introduce mshv_vtl driver Naman Jain
2025-11-13 21:13 ` Wei Liu [this message]

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=20251113211329.GA1188343@liuwe-devbox-debian-v2.local \
    --to=wei.liu@kernel.org \
    --cc=Marc.Herbert@linux.intel.com \
    --cc=akpm@linux-foundation.org \
    --cc=alok.a.tiwari@oracle.com \
    --cc=ardb@kernel.org \
    --cc=bp@alien8.de \
    --cc=dave.hansen@linux.intel.com \
    --cc=decui@microsoft.com \
    --cc=haiyangz@microsoft.com \
    --cc=hca@linux.ibm.com \
    --cc=hch@infradead.org \
    --cc=hpa@zytor.com \
    --cc=jbaron@akamai.com \
    --cc=jpoimboe@kernel.org \
    --cc=kees@kernel.org \
    --cc=kernel@jfarr.cc \
    --cc=kys@microsoft.com \
    --cc=linux-hyperv@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=longli@microsoft.com \
    --cc=magnuskulke@linux.microsoft.com \
    --cc=mhklinux@outlook.com \
    --cc=mingo@redhat.com \
    --cc=namjain@linux.microsoft.com \
    --cc=nathan@kernel.org \
    --cc=nunodasneves@linux.microsoft.com \
    --cc=ojeda@kernel.org \
    --cc=pbonzini@redhat.com \
    --cc=peterz@infradead.org \
    --cc=rostedt@goodmis.org \
    --cc=seanjc@google.com \
    --cc=ssengar@linux.microsoft.com \
    --cc=tglx@linutronix.de \
    --cc=ubizjak@gmail.com \
    --cc=x86@kernel.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

all inboxes | Powered by JetHome®