All of lore.kernel.org
 help / color / mirror / Atom feed
From: Leon Romanovsky <leon@kernel.org>
To: "David S. Miller" <davem@davemloft.net>,
	Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
	edumazet@google.com
Cc: longli@microsoft.com, "K. Y. Srinivasan" <kys@microsoft.com>,
	Haiyang Zhang <haiyangz@microsoft.com>,
	Stephen Hemminger <sthemmin@microsoft.com>,
	Wei Liu <wei.liu@kernel.org>, Dexuan Cui <decui@microsoft.com>,
	Jason Gunthorpe <jgg@ziepe.ca>,
	shiraz.saleem@intel.com, Ajay Sharma <sharmaajay@microsoft.com>,
	linux-hyperv@vger.kernel.org, netdev@vger.kernel.org,
	linux-kernel@vger.kernel.org, linux-rdma@vger.kernel.org
Subject: Re: [Patch v10 00/12] Introduce Microsoft Azure Network Adapter (MANA) RDMA driver
Date: Tue, 8 Nov 2022 21:14:51 +0200	[thread overview]
Message-ID: <Y2qqq9/N65tfYyP0@unreal> (raw)
In-Reply-To: <1667502990-2559-1-git-send-email-longli@linuxonhyperv.com>

On Thu, Nov 03, 2022 at 12:16:18PM -0700, longli@linuxonhyperv.com wrote:
> From: Long Li <longli@microsoft.com>
> 
> This patchset implements a RDMA driver for Microsoft Azure Network
> Adapter (MANA). In MANA, the RDMA device is modeled as an auxiliary device
> to the Ethernet device.
> 
> The first 11 patches modify the MANA Ethernet driver to support RDMA driver.
> The last patch implementes the RDMA driver.

<...>

>  drivers/net/ethernet/microsoft/Kconfig        |   1 +
>  .../net/ethernet/microsoft/mana/gdma_main.c   |  40 +-
>  .../net/ethernet/microsoft/mana/hw_channel.c  |   6 +-
>  .../net/ethernet/microsoft/mana/mana_bpf.c    |   2 +-
>  drivers/net/ethernet/microsoft/mana/mana_en.c | 175 +++++-
>  .../ethernet/microsoft/mana/mana_ethtool.c    |   2 +-
>  .../net/ethernet/microsoft/mana/shm_channel.c |   2 +-
>  .../microsoft => include/net}/mana/gdma.h     | 158 +++++-
>  .../net}/mana/hw_channel.h                    |   0
>  .../microsoft => include/net}/mana/mana.h     |  23 +-
>  include/net/mana/mana_auxiliary.h             |  10 +
>  .../net}/mana/shm_channel.h                   |   0
>  include/uapi/rdma/ib_user_ioctl_verbs.h       |   1 +
>  include/uapi/rdma/mana-abi.h                  |  66 +++

Hi netdev maintainers,

Can you please ACK/comment on eth part of this series? And how should
we proceed? Should we take this driver through shared branch or apply
directly to RDMA tree?

Thanks

  parent reply	other threads:[~2022-11-08 19:15 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-03 19:16 [Patch v10 00/12] Introduce Microsoft Azure Network Adapter (MANA) RDMA driver longli
2022-11-03 19:16 ` [Patch v10 01/12] net: mana: Add support for auxiliary device longli
2022-11-08 19:18   ` Leon Romanovsky
2022-11-08 21:33     ` Long Li
2022-11-09  6:20       ` Leon Romanovsky
2022-11-03 19:16 ` [Patch v10 02/12] net: mana: Record the physical address for doorbell page region longli
2022-11-03 19:16 ` [Patch v10 03/12] net: mana: Handle vport sharing between devices longli
2022-11-03 19:16 ` [Patch v10 04/12] net: mana: Set the DMA device max segment size longli
2022-11-03 19:16 ` [Patch v10 05/12] net: mana: Export Work Queue functions for use by RDMA driver longli
2022-11-03 19:16 ` [Patch v10 06/12] net: mana: Record port number in netdev longli
2022-11-03 19:16 ` [Patch v10 07/12] net: mana: Move header files to a common location longli
2022-11-03 19:16 ` [Patch v10 08/12] net: mana: Define max values for SGL entries longli
2022-11-03 19:16 ` [Patch v10 09/12] net: mana: Define and process GDMA response code GDMA_STATUS_MORE_ENTRIES longli
2022-11-03 19:16 ` [Patch v10 10/12] net: mana: Define data structures for allocating doorbell page from GDMA longli
2022-11-03 19:16 ` [Patch v10 11/12] net: mana: Define data structures for protection domain and memory registration longli
2022-11-03 19:16 ` [Patch v10 12/12] RDMA/mana_ib: Add a driver for Microsoft Azure Network Adapter longli
2022-11-08 19:14 ` Leon Romanovsky [this message]
2022-11-08 23:05   ` [Patch v10 00/12] Introduce Microsoft Azure Network Adapter (MANA) RDMA driver Jakub Kicinski
2022-11-09  6:06     ` Leon Romanovsky
2022-11-09 18:48     ` Leon Romanovsky
2022-11-09 20:05       ` Jakub Kicinski
2022-11-10  5:58         ` Leon Romanovsky
2022-11-10 20:10           ` Jakub Kicinski
2022-11-11  9:43 ` (subset) " Leon Romanovsky

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=Y2qqq9/N65tfYyP0@unreal \
    --to=leon@kernel.org \
    --cc=davem@davemloft.net \
    --cc=decui@microsoft.com \
    --cc=edumazet@google.com \
    --cc=haiyangz@microsoft.com \
    --cc=jgg@ziepe.ca \
    --cc=kuba@kernel.org \
    --cc=kys@microsoft.com \
    --cc=linux-hyperv@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-rdma@vger.kernel.org \
    --cc=longli@microsoft.com \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=sharmaajay@microsoft.com \
    --cc=shiraz.saleem@intel.com \
    --cc=sthemmin@microsoft.com \
    --cc=wei.liu@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.