From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 20FB8A0548; Thu, 8 Sep 2022 23:57:51 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 14042427EA; Thu, 8 Sep 2022 23:57:51 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id A7103410FB for ; Thu, 8 Sep 2022 23:57:49 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1004) id 097D420B92A0; Thu, 8 Sep 2022 14:57:49 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 097D420B92A0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxonhyperv.com; s=default; t=1662674269; bh=mDr/PuxUFFf2puyNqEqduIcA0Q6N/AycfubUMVa6bNw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:Reply-To:From; b=sU7jgcQ5n1WmES9VPQbmvZ/oFIgTkJuqeEDECZHxlrygUldffdFFIEAEI896xkHie Oiz48CakLUayjO8xohAgsQrYSM6I1VAhARy4bbhPyLCHE9ew/buwwXBoE7gnmx0uiF aRsQtG143RYtLXCu3EPxy6WjfhcEmU8eOW8wQIDY= From: longli@linuxonhyperv.com To: Ferruh Yigit Cc: dev@dpdk.org, Ajay Sharma , Stephen Hemminger , Long Li Subject: [Patch v8 03/18] net/mana: add function to report support ptypes Date: Thu, 8 Sep 2022 14:57:46 -0700 Message-Id: <1662674266-29835-1-git-send-email-longli@linuxonhyperv.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1662169260-4953-4-git-send-email-longli@linuxonhyperv.com> References: <1662169260-4953-4-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 Report supported protocol types. Signed-off-by: Long Li --- Change log. v7: change link_speed to RTE_ETH_SPEED_NUM_100G drivers/net/mana/mana.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/drivers/net/mana/mana.c b/drivers/net/mana/mana.c index d522294bd0..112d58a5d3 100644 --- a/drivers/net/mana/mana.c +++ b/drivers/net/mana/mana.c @@ -118,9 +118,26 @@ mana_dev_close(struct rte_eth_dev *dev) return 0; } +static const uint32_t * +mana_supported_ptypes(struct rte_eth_dev *dev __rte_unused) +{ + static const uint32_t ptypes[] = { + RTE_PTYPE_L2_ETHER, + RTE_PTYPE_L3_IPV4_EXT_UNKNOWN, + RTE_PTYPE_L3_IPV6_EXT_UNKNOWN, + RTE_PTYPE_L4_FRAG, + RTE_PTYPE_L4_TCP, + RTE_PTYPE_L4_UDP, + RTE_PTYPE_UNKNOWN + }; + + return ptypes; +} + static const struct eth_dev_ops mana_dev_ops = { .dev_configure = mana_dev_configure, .dev_close = mana_dev_close, + .dev_supported_ptypes_get = mana_supported_ptypes, }; static const struct eth_dev_ops mana_dev_secondary_ops = { -- 2.17.1