From patchwork Fri Jan 20 02:19:28 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Long Li X-Patchwork-Id: 122383 X-Patchwork-Delegate: ferruh.yigit@amd.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 5752442424; Fri, 20 Jan 2023 03:19:47 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8E66442D3D; Fri, 20 Jan 2023 03:19:45 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id A6F2F400D5 for ; Fri, 20 Jan 2023 03:19:43 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1004) id 03DE820E0A4C; Thu, 19 Jan 2023 18:19:43 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 03DE820E0A4C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxonhyperv.com; s=default; t=1674181183; bh=97Jq5pz8L0rpzyYvBZh1HTB77CGQEY7r9IxFMg5jsZE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:Reply-To:From; b=SdRkP9eySg48J40nX59ICvF5h37P7dboT18euyiJur5xTPf7Vcw7oI0xpx1Y311Tb txa9lhXJfXXCexVor6lGUX07FopUFk/W4nRwKlOJWnSMf066cafMOpyOZ57XpLtA2W 6TAVPRaMB/ehxesx0lQUc1LntDJ+0voq5CjXr0gs= From: longli@linuxonhyperv.com To: Ferruh Yigit Cc: dev@dpdk.org, Ajay Sharma , Long Li Subject: [PATCH 2/2] net/mana: enable driver by default Date: Thu, 19 Jan 2023 18:19:28 -0800 Message-Id: <1674181168-31167-2-git-send-email-longli@linuxonhyperv.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1674181168-31167-1-git-send-email-longli@linuxonhyperv.com> References: <1674181168-31167-1-git-send-email-longli@linuxonhyperv.com> X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: longli@microsoft.com Errors-To: dev-bounces@dpdk.org From: Long Li The dependencies of mana have been released in rdma-core v44 and Linux kernel 6.2. Signed-off-by: Long Li --- MAINTAINERS | 2 +- drivers/net/meson.build | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index 9a0f416d2e..702fc3c60b 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -853,7 +853,7 @@ F: buildtools/options-ibverbs-static.sh F: doc/guides/nics/mlx5.rst F: doc/guides/nics/features/mlx5.ini -Microsoft mana - EXPERIMENTAL +Microsoft mana M: Long Li F: drivers/net/mana/ F: doc/guides/nics/mana.rst diff --git a/drivers/net/meson.build b/drivers/net/meson.build index 6470bf3636..f83a6de117 100644 --- a/drivers/net/meson.build +++ b/drivers/net/meson.build @@ -36,6 +36,7 @@ drivers = [ 'ixgbe', 'kni', 'liquidio', + 'mana', 'memif', 'mlx4', 'mlx5',