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 777FAA04E6; Tue, 17 Nov 2020 20:18:52 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 536BDF3E; Tue, 17 Nov 2020 20:18:50 +0100 (CET) Received: from hqnvemgate26.nvidia.com (hqnvemgate26.nvidia.com [216.228.121.65]) by dpdk.org (Postfix) with ESMTP id 69F21DED for ; Tue, 17 Nov 2020 20:18:47 +0100 (CET) Received: from hqmail.nvidia.com (Not Verified[216.228.121.13]) by hqnvemgate26.nvidia.com (using TLS: TLSv1.2, AES256-SHA) id ; Tue, 17 Nov 2020 11:18:49 -0800 Received: from nvidia.com (10.124.1.5) by HQMAIL107.nvidia.com (172.20.187.13) with Microsoft SMTP Server (TLS) id 15.0.1473.3; Tue, 17 Nov 2020 19:18:40 +0000 From: Gregory Etelson To: CC: , , , , , Date: Tue, 17 Nov 2020 21:18:26 +0200 Message-ID: <20201117191826.19730-1-getelson@nvidia.com> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20200916111854.1949-1-getelson@nvidia.com> References: <20200916111854.1949-1-getelson@nvidia.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain X-Originating-IP: [10.124.1.5] X-ClientProxiedBy: HQMAIL101.nvidia.com (172.20.187.10) To HQMAIL107.nvidia.com (172.20.187.13) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nvidia.com; s=n1; t=1605640729; bh=vAl7P1XJ3V9+fps1F+cgg7yqoL2uXIy3RZeH/qOvyLQ=; h=From:To:CC:Subject:Date:Message-ID:X-Mailer:In-Reply-To: References:MIME-Version:Content-Transfer-Encoding:Content-Type: X-Originating-IP:X-ClientProxiedBy; b=kT7G3qXS7kWOYx/+re/kaHUnNWn/3xsnMFRU90YdApVekHWYArDIxecXoMwNNvO/Z 2UYcSGhlAPyU51uFZtzTQU/qOwYp9EcZV9g5BpOTxtKyvFPAwVIw06GfzUUryI22F9 pS2mVyD/IbZ9kXQcLgEKffX5On2bRT7z07p0T4BRfjNzixrVLfeZZ5O6TlGGlDYXIl zsAsQDS4UxwiFTlqoAlzq55DQ3nV1xGVXQtgmoJ4Q+jFVrVF/b7pfLORnpeeP9nxVw ptVAmb766eEwbU8HhcVwsJxIed8JaYIgmR+5GFqEsxmB7qTre59pig55v+ShoKUm2j YjP3in9RP9LEQ== Subject: [dpdk-dev] [PATCH] doc: flow rule removal on port stop 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" There is a discrepancy between RTE ETHDEV API and flow rules guide regarding flow rules maintenance after port stop. RTE ETHDEV API in librte_ethdev.h declares that flow rules will not be stored in PMD after port stop: >>>>> Quite start Please note that some configuration is not stored between calls to rte_eth_dev_stop()/rte_eth_dev_start(). The following configuration will be retained: - MTU - flow control settings - receive mode configuration (promiscuous mode, all-multicast mode, hardware checksum mode, RSS/VMDQ settings etc.) - VLAN filtering configuration - default MAC address - MAC addresses supplied to MAC address array - flow director filtering mode (but not filtering rules) - NIC queue statistics mappings <<<< Quote end PMD cannot always correctly restore flow rules after port stop / port start because application may alter port configuration after port stop without PMD knowledge about undergoing changes. Consider the following scenario: application configures 2 queues 0 and 1 and creates a flow rule with 'queue index 1' action. After that application stops the port and removes queue 1. Although PMD can implement flow rule shadow copy to be used for restore after port start, attempt to restore flow rule from shadow will fail in example above and PMD could not notify application about that failure. As the result, flow rules map in HW will differ from what application expects. In addition, flow rules shadow copy used for port start restore consumes considerable amount of system memory, especially in systems with millions of flow rules. Signed-off-by: Gregory Etelson Acked-by: Ori Kam --- doc/guides/prog_guide/rte_flow.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/doc/guides/prog_guide/rte_flow.rst b/doc/guides/prog_guide/rte= _flow.rst index 944e8242d6..dfe5a40f8e 100644 --- a/doc/guides/prog_guide/rte_flow.rst +++ b/doc/guides/prog_guide/rte_flow.rst @@ -3055,10 +3055,9 @@ Caveats temporarily replacing the burst function pointers), an appropriate error code must be returned (``EBUSY``). =20 -- PMDs, not applications, are responsible for maintaining flow rules +- Applications, not PMDs, are responsible for maintaining flow rules configuration when stopping and restarting a port or performing other - actions which may affect them. They can only be destroyed explicitly by - applications. + actions which may affect them. =20 For devices exposing multiple ports sharing global settings affected by fl= ow rules: --=20 2.25.1