From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id B0692C43217 for ; Tue, 8 Nov 2022 19:15:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229774AbiKHTPB (ORCPT ); Tue, 8 Nov 2022 14:15:01 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43080 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229447AbiKHTPB (ORCPT ); Tue, 8 Nov 2022 14:15:01 -0500 Received: from sin.source.kernel.org (sin.source.kernel.org [145.40.73.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1B74B1C434; Tue, 8 Nov 2022 11:14:59 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by sin.source.kernel.org (Postfix) with ESMTPS id 44B89CE1C7C; Tue, 8 Nov 2022 19:14:58 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 83565C433D6; Tue, 8 Nov 2022 19:14:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1667934896; bh=t3I6rmDD2mZuybABnEFHUUo7+wYWO8HgdbmqbF9+cKY=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=DkhKuZjBLjSRbPXOtOUhC5+N4NgToJ9YrZirjH1MAg2ZmnSXNtl6N/uCpMG6H9v++ +vGdNtaT4inqNgISh8XJ1enqykW513XgIS/yD9MkbPsC8G8nuU6hF+yJpO2HVDdgQj 2G6DmimMq8x1XtzvAhU75nb2AFpc6vgH7Vw4F0deNNEadHxYDsHO8N4dsOicoEQURO RF9wzo9N/pB5pm2zt0x/R4h3iV5xQp1zsPM37KoVT/oLTJKmQ3iDhX6Ja7Cc07t5FQ aUirQWfkw7LmJ8WxbanWxoAJLHupi9hx4r5NqHQH0ZknB4zqqgeSIVJc6FC4QNoLrp Cl4M/bz1NRwsg== Date: Tue, 8 Nov 2022 21:14:51 +0200 From: Leon Romanovsky To: "David S. Miller" , Jakub Kicinski , Paolo Abeni , edumazet@google.com Cc: longli@microsoft.com, "K. Y. Srinivasan" , Haiyang Zhang , Stephen Hemminger , Wei Liu , Dexuan Cui , Jason Gunthorpe , shiraz.saleem@intel.com, Ajay Sharma , 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 Message-ID: References: <1667502990-2559-1-git-send-email-longli@linuxonhyperv.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1667502990-2559-1-git-send-email-longli@linuxonhyperv.com> Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org On Thu, Nov 03, 2022 at 12:16:18PM -0700, longli@linuxonhyperv.com wrote: > From: Long Li > > 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