All of lore.kernel.org
 help / color / mirror / Atom feed
From: Wei Liu <wei.liu@kernel.org>
To: Boqun Feng <boqun.feng@gmail.com>
Cc: linux-hyperv@vger.kernel.org, linux-input@vger.kernel.org,
	linux-kernel@vger.kernel.org, netdev@vger.kernel.org,
	linux-scsi@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	"K. Y. Srinivasan" <kys@microsoft.com>,
	Haiyang Zhang <haiyangz@microsoft.com>,
	Stephen Hemminger <sthemmin@microsoft.com>,
	Wei Liu <wei.liu@kernel.org>, Jiri Kosina <jikos@kernel.org>,
	Benjamin Tissoires <benjamin.tissoires@redhat.com>,
	Dmitry Torokhov <dmitry.torokhov@gmail.com>,
	"David S. Miller" <davem@davemloft.net>,
	Jakub Kicinski <kuba@kernel.org>,
	"James E.J. Bottomley" <jejb@linux.ibm.com>,
	"Martin K. Petersen" <martin.petersen@oracle.com>,
	Michael Kelley <mikelley@microsoft.com>,
	will@kernel.org, ardb@kernel.org, arnd@arndb.de,
	catalin.marinas@arm.com, mark.rutland@arm.com, maz@kernel.org
Subject: Re: [PATCH v4 00/11] Hyper-V: Support PAGE_SIZE larger than 4K
Date: Mon, 28 Sep 2020 08:59:52 +0000	[thread overview]
Message-ID: <20200928085952.t5ji5rjl3h6g7zks@liuwe-devbox-debian-v2> (raw)
In-Reply-To: <20200916034817.30282-1-boqun.feng@gmail.com>

On Wed, Sep 16, 2020 at 11:48:06AM +0800, Boqun Feng wrote:
> This patchset add the necessary changes to support guests whose page
> size is larger than 4K. And the main architecture which we develop this
> for is ARM64 (also it's the architecture that I use to test this
> feature).
> 
> Previous version:
> v1: https://lore.kernel.org/lkml/20200721014135.84140-1-boqun.feng@gmail.com/
> v2: https://lore.kernel.org/lkml/20200902030107.33380-1-boqun.feng@gmail.com
> v3: https://lore.kernel.org/lkml/20200910143455.109293-1-boqun.feng@gmail.com/
> 
> Changes since v3:
> 
> *	Fix a bug that ringbuffer sizes are not page-aligned when
> 	PAGE_SIZE = 16k. Drop the Acked-by and Reviewed-by tags for
> 	those patches accordingly.
> 
> *	Code improvement as per suggestion from Michael Kelley.
> 
> I've done some tests with PAGE_SIZE=64k and PAGE_SIZE=16k configurations
> on ARM64 guests (with Michael's patchset[1] for ARM64 Hyper-V guest
> support), everything worked fine ;-)
> 
> Looking forwards to comments and suggestions!
> 
> Regards,
> Boqun
> 
> [1]: https://lore.kernel.org/lkml/1598287583-71762-1-git-send-email-mikelley@microsoft.com/
> 
> Boqun Feng (11):
>   Drivers: hv: vmbus: Always use HV_HYP_PAGE_SIZE for gpadl
>   Drivers: hv: vmbus: Move __vmbus_open()
>   Drivers: hv: vmbus: Introduce types of GPADL
>   Drivers: hv: Use HV_HYP_PAGE in hv_synic_enable_regs()
>   Drivers: hv: vmbus: Move virt_to_hvpfn() to hyperv header
>   hv: hyperv.h: Introduce some hvpfn helper functions
>   hv_netvsc: Use HV_HYP_PAGE_SIZE for Hyper-V communication
>   Input: hyperv-keyboard: Use VMBUS_RING_SIZE() for ringbuffer sizes
>   HID: hyperv: Use VMBUS_RING_SIZE() for ringbuffer sizes
>   Driver: hv: util: Use VMBUS_RING_SIZE() for ringbuffer sizes
>   scsi: storvsc: Support PAGE_SIZE larger than 4K

Series applied to hyperv-next.

I also replaced the tabs with spaces in the commit messages of patch 8
through patch 10.

Wei.

WARNING: multiple messages have this Message-ID (diff)
From: Wei Liu <wei.liu@kernel.org>
To: Boqun Feng <boqun.feng@gmail.com>
Cc: mark.rutland@arm.com, linux-hyperv@vger.kernel.org,
	catalin.marinas@arm.com, Michael Kelley <mikelley@microsoft.com>,
	Benjamin Tissoires <benjamin.tissoires@redhat.com>,
	"K. Y. Srinivasan" <kys@microsoft.com>,
	will@kernel.org, ardb@kernel.org, Wei Liu <wei.liu@kernel.org>,
	Stephen Hemminger <sthemmin@microsoft.com>,
	linux-scsi@vger.kernel.org, maz@kernel.org,
	linux-input@vger.kernel.org, Jakub Kicinski <kuba@kernel.org>,
	"James E.J. Bottomley" <jejb@linux.ibm.com>,
	arnd@arndb.de, Haiyang Zhang <haiyangz@microsoft.com>,
	Jiri Kosina <jikos@kernel.org>,
	linux-arm-kernel@lists.infradead.org,
	"Martin K. Petersen" <martin.petersen@oracle.com>,
	netdev@vger.kernel.org,
	Dmitry Torokhov <dmitry.torokhov@gmail.com>,
	linux-kernel@vger.kernel.org,
	"David S. Miller" <davem@davemloft.net>
Subject: Re: [PATCH v4 00/11] Hyper-V: Support PAGE_SIZE larger than 4K
Date: Mon, 28 Sep 2020 08:59:52 +0000	[thread overview]
Message-ID: <20200928085952.t5ji5rjl3h6g7zks@liuwe-devbox-debian-v2> (raw)
In-Reply-To: <20200916034817.30282-1-boqun.feng@gmail.com>

On Wed, Sep 16, 2020 at 11:48:06AM +0800, Boqun Feng wrote:
> This patchset add the necessary changes to support guests whose page
> size is larger than 4K. And the main architecture which we develop this
> for is ARM64 (also it's the architecture that I use to test this
> feature).
> 
> Previous version:
> v1: https://lore.kernel.org/lkml/20200721014135.84140-1-boqun.feng@gmail.com/
> v2: https://lore.kernel.org/lkml/20200902030107.33380-1-boqun.feng@gmail.com
> v3: https://lore.kernel.org/lkml/20200910143455.109293-1-boqun.feng@gmail.com/
> 
> Changes since v3:
> 
> *	Fix a bug that ringbuffer sizes are not page-aligned when
> 	PAGE_SIZE = 16k. Drop the Acked-by and Reviewed-by tags for
> 	those patches accordingly.
> 
> *	Code improvement as per suggestion from Michael Kelley.
> 
> I've done some tests with PAGE_SIZE=64k and PAGE_SIZE=16k configurations
> on ARM64 guests (with Michael's patchset[1] for ARM64 Hyper-V guest
> support), everything worked fine ;-)
> 
> Looking forwards to comments and suggestions!
> 
> Regards,
> Boqun
> 
> [1]: https://lore.kernel.org/lkml/1598287583-71762-1-git-send-email-mikelley@microsoft.com/
> 
> Boqun Feng (11):
>   Drivers: hv: vmbus: Always use HV_HYP_PAGE_SIZE for gpadl
>   Drivers: hv: vmbus: Move __vmbus_open()
>   Drivers: hv: vmbus: Introduce types of GPADL
>   Drivers: hv: Use HV_HYP_PAGE in hv_synic_enable_regs()
>   Drivers: hv: vmbus: Move virt_to_hvpfn() to hyperv header
>   hv: hyperv.h: Introduce some hvpfn helper functions
>   hv_netvsc: Use HV_HYP_PAGE_SIZE for Hyper-V communication
>   Input: hyperv-keyboard: Use VMBUS_RING_SIZE() for ringbuffer sizes
>   HID: hyperv: Use VMBUS_RING_SIZE() for ringbuffer sizes
>   Driver: hv: util: Use VMBUS_RING_SIZE() for ringbuffer sizes
>   scsi: storvsc: Support PAGE_SIZE larger than 4K

Series applied to hyperv-next.

I also replaced the tabs with spaces in the commit messages of patch 8
through patch 10.

Wei.

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2020-09-28  8:59 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-16  3:48 [PATCH v4 00/11] Hyper-V: Support PAGE_SIZE larger than 4K Boqun Feng
2020-09-16  3:48 ` Boqun Feng
2020-09-16  3:48 ` [PATCH v4 01/11] Drivers: hv: vmbus: Always use HV_HYP_PAGE_SIZE for gpadl Boqun Feng
2020-09-16  3:48   ` Boqun Feng
2020-09-16  3:48 ` [PATCH v4 02/11] Drivers: hv: vmbus: Move __vmbus_open() Boqun Feng
2020-09-16  3:48   ` Boqun Feng
2020-09-16  3:48 ` [PATCH v4 03/11] Drivers: hv: vmbus: Introduce types of GPADL Boqun Feng
2020-09-16  3:48   ` Boqun Feng
2020-09-16  3:48 ` [PATCH v4 04/11] Drivers: hv: Use HV_HYP_PAGE in hv_synic_enable_regs() Boqun Feng
2020-09-16  3:48   ` Boqun Feng
2020-09-16  3:48 ` [PATCH v4 05/11] Drivers: hv: vmbus: Move virt_to_hvpfn() to hyperv header Boqun Feng
2020-09-16  3:48   ` Boqun Feng
2020-09-16  3:48 ` [PATCH v4 06/11] hv: hyperv.h: Introduce some hvpfn helper functions Boqun Feng
2020-09-16  3:48   ` Boqun Feng
2020-09-16  3:48 ` [PATCH v4 07/11] hv_netvsc: Use HV_HYP_PAGE_SIZE for Hyper-V communication Boqun Feng
2020-09-16  3:48   ` Boqun Feng
2020-09-16  3:48 ` [PATCH v4 08/11] Input: hyperv-keyboard: Use VMBUS_RING_SIZE() for ringbuffer sizes Boqun Feng
2020-09-16  3:48   ` Boqun Feng
2020-09-16  4:05   ` Dmitry Torokhov
2020-09-16  4:05     ` Dmitry Torokhov
2020-09-27  0:10   ` Michael Kelley
2020-09-27  0:10     ` Michael Kelley
2020-09-16  3:48 ` [PATCH v4 09/11] HID: hyperv: " Boqun Feng
2020-09-16  3:48   ` Boqun Feng
2020-09-27  0:11   ` Michael Kelley
2020-09-27  0:11     ` Michael Kelley
2020-09-16  3:48 ` [PATCH v4 10/11] Driver: hv: util: " Boqun Feng
2020-09-16  3:48   ` Boqun Feng
2020-09-27  0:12   ` Michael Kelley
2020-09-27  0:12     ` Michael Kelley
2020-09-16  3:48 ` [PATCH v4 11/11] scsi: storvsc: Support PAGE_SIZE larger than 4K Boqun Feng
2020-09-16  3:48   ` Boqun Feng
2020-09-28  8:59 ` Wei Liu [this message]
2020-09-28  8:59   ` [PATCH v4 00/11] Hyper-V: " Wei Liu

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=20200928085952.t5ji5rjl3h6g7zks@liuwe-devbox-debian-v2 \
    --to=wei.liu@kernel.org \
    --cc=ardb@kernel.org \
    --cc=arnd@arndb.de \
    --cc=benjamin.tissoires@redhat.com \
    --cc=boqun.feng@gmail.com \
    --cc=catalin.marinas@arm.com \
    --cc=davem@davemloft.net \
    --cc=dmitry.torokhov@gmail.com \
    --cc=haiyangz@microsoft.com \
    --cc=jejb@linux.ibm.com \
    --cc=jikos@kernel.org \
    --cc=kuba@kernel.org \
    --cc=kys@microsoft.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-hyperv@vger.kernel.org \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-scsi@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=martin.petersen@oracle.com \
    --cc=maz@kernel.org \
    --cc=mikelley@microsoft.com \
    --cc=netdev@vger.kernel.org \
    --cc=sthemmin@microsoft.com \
    --cc=will@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 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.