From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 29FC4A04A2; Tue, 12 May 2020 07:57:34 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 727931C06A; Tue, 12 May 2020 07:57:33 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id 5940F1C031 for ; Tue, 12 May 2020 07:57:31 +0200 (CEST) IronPort-SDR: SVUCtzkOihbu1O34XmH5RQsL1C6RaIftKoYTiP5WENBDnvscHCJ68Klb0TYU4QQv7M/B8EGhwb 6VCAItaQ0BQQ== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 11 May 2020 22:57:29 -0700 IronPort-SDR: G91VdnHirKSP1gBqs/CiY8BEDGM8nmt1onSbkoZPEOPC57Mto5QS1r1XfWYW25rRVAfAO/pZ3R 4197OC8O4Qjg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,382,1583222400"; d="scan'208";a="250784964" Received: from yexl-server.sh.intel.com (HELO localhost) ([10.67.116.183]) by orsmga007.jf.intel.com with ESMTP; 11 May 2020 22:57:28 -0700 Date: Tue, 12 May 2020 13:49:23 +0800 From: Ye Xiaolong To: Qiming Yang Cc: dev@dpdk.org Message-ID: <20200512054923.GR75514@intel.com> References: <20200508140409.149737-1-qiming.yang@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200508140409.149737-1-qiming.yang@intel.com> User-Agent: Mutt/1.9.4 (2018-02-28) Subject: Re: [dpdk-dev] [PATCH] doc: fix wrong multicast filter flag X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 05/08, Qiming Yang wrote: >Multicast MAC filter flag means device ops set_mc_addr_list support >or not. This patch fixes the wrong flag value in intel driver's document. > >Fixes: 9db3f52126fb ("doc: generate NIC overview table from ini files") >Fixes: cb25d4323fbf ("net/avf: enable MAC VLAN and promisc ops") >Fixes: 26e887343321 ("net/ice: support MAC ops") > >Signed-off-by: Qiming Yang >--- > doc/guides/nics/features/i40e.ini | 1 - > doc/guides/nics/features/iavf.ini | 1 - > doc/guides/nics/features/ice.ini | 1 - > doc/guides/nics/features/igb.ini | 1 + > doc/guides/nics/features/ixgbe.ini | 1 + > 5 files changed, 2 insertions(+), 3 deletions(-) > >diff --git a/doc/guides/nics/features/i40e.ini b/doc/guides/nics/features/i40e.ini >index a326f73..2e89079 100644 >--- a/doc/guides/nics/features/i40e.ini >+++ b/doc/guides/nics/features/i40e.ini >@@ -19,7 +19,6 @@ TSO = Y > Promiscuous mode = Y > Allmulticast mode = Y > Unicast MAC filter = Y >-Multicast MAC filter = Y > RSS hash = Y > RSS key update = Y > RSS reta update = Y >diff --git a/doc/guides/nics/features/iavf.ini b/doc/guides/nics/features/iavf.ini >index 17f7928..2e7cea3 100644 >--- a/doc/guides/nics/features/iavf.ini >+++ b/doc/guides/nics/features/iavf.ini >@@ -15,7 +15,6 @@ TSO = Y > Promiscuous mode = Y > Allmulticast mode = Y > Unicast MAC filter = Y >-Multicast MAC filter = Y > RSS hash = Y > RSS key update = Y > RSS reta update = Y >diff --git a/doc/guides/nics/features/ice.ini b/doc/guides/nics/features/ice.ini >index 895d6b3..3ee1f6e 100644 >--- a/doc/guides/nics/features/ice.ini >+++ b/doc/guides/nics/features/ice.ini >@@ -18,7 +18,6 @@ TSO = Y > Promiscuous mode = Y > Allmulticast mode = Y > Unicast MAC filter = Y >-Multicast MAC filter = Y > RSS hash = Y > RSS key update = Y > RSS reta update = Y >diff --git a/doc/guides/nics/features/igb.ini b/doc/guides/nics/features/igb.ini >index 0351f84..167c0ca 100644 >--- a/doc/guides/nics/features/igb.ini >+++ b/doc/guides/nics/features/igb.ini >@@ -15,6 +15,7 @@ TSO = Y > Promiscuous mode = Y > Allmulticast mode = Y > Unicast MAC filter = Y >+Multicast MAC filter = Y > RSS hash = Y > RSS key update = Y > RSS reta update = Y >diff --git a/doc/guides/nics/features/ixgbe.ini b/doc/guides/nics/features/ixgbe.ini >index fab0487..f817c93 100644 >--- a/doc/guides/nics/features/ixgbe.ini >+++ b/doc/guides/nics/features/ixgbe.ini >@@ -17,6 +17,7 @@ TSO = Y > Promiscuous mode = Y > Allmulticast mode = Y > Unicast MAC filter = Y >+Multicast MAC filter = Y > RSS hash = Y > RSS key update = Y > RSS reta update = Y >-- >2.9.5 > Acked-by: Xiaolong Ye Applied to dpdk-next-net-intel, Thanks.