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 X-Spam-Level: X-Spam-Status: No, score=-9.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C2B4BC35671 for ; Mon, 24 Feb 2020 12:18:39 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 6CA3A20732 for ; Mon, 24 Feb 2020 12:18:39 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 6CA3A20732 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=mellanox.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3ED652C39; Mon, 24 Feb 2020 13:18:38 +0100 (CET) Received: from git-send-mailer.rdmz.labs.mlnx (unknown [37.142.13.130]) by dpdk.org (Postfix) with ESMTP id 795AA1F1C for ; Mon, 24 Feb 2020 13:18:36 +0100 (CET) From: Suanming Mou To: john.mcnamara@intel.com, marko.kovacevic@intel.com Cc: dev@dpdk.org Date: Mon, 24 Feb 2020 20:18:32 +0800 Message-Id: <1582546712-407289-1-git-send-email-suanmingm@mellanox.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1582545929-406856-1-git-send-email-suanmingm@mellanox.com> References: <1582545929-406856-1-git-send-email-suanmingm@mellanox.com> Subject: [dpdk-dev] [PATCH v2] doc: add DSCP rewrite action to 20.02 release notes 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" Add the actions RTE_FLOW_ACTION_TYPE_SET_[IPV4/IPV6]_DSCP support to the release note. Signed-off-by: Suanming Mou --- v2: fix coding style issue. --- doc/guides/rel_notes/release_20_02.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/guides/rel_notes/release_20_02.rst b/doc/guides/rel_notes/release_20_02.rst index dfebc46..2e617cc 100644 --- a/doc/guides/rel_notes/release_20_02.rst +++ b/doc/guides/rel_notes/release_20_02.rst @@ -235,6 +235,11 @@ New Features Added document describes how to enable DPDK on OpenWrt in both virtual and physical machine. +* **Added DSCP rewrite action.** + + New actions ``RTE_FLOW_ACTION_TYPE_SET_[IPV4/IPV6]_DSCP`` have been added + to support rewrite the DSCP field in the IP header. + Removed Items ------------- -- 1.8.3.1