From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from wout2-smtp.messagingengine.com (wout2-smtp.messagingengine.com [64.147.123.25]) by dpdk.org (Postfix) with ESMTP id F12515F57 for ; Mon, 24 Sep 2018 19:01:48 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.west.internal (Postfix) with ESMTP id DF16447C; Mon, 24 Sep 2018 13:01:46 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Mon, 24 Sep 2018 13:01:47 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=jQKxay0wLiicWrD4byLAcbTG// fYsmlTaEXah/7lYL0=; b=lWVp9Zc4oVprzMQvnC31yX4Q2AJbe/YjJpbXP2m00B fkzwjzcXw1TDXjY3o3IMchpNqbkUUtq0g5hxcPdpw6m3oRhfcKkK76aDWrUdkEnp VsQKceryPjvTZYuC2GckDMBmdLO4BXTAonxOuLkElcoq8kqpE28aMaH56BKdxIxi 4= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=jQKxay 0wLiicWrD4byLAcbTG//fYsmlTaEXah/7lYL0=; b=lpv5n+zY57W4OZmhNKvz7t WMyDLlMU0wnVPex7/K35njEdbuZ+Fhibf1Z8XHkYohZKXDRcsSMaAj49Xi8AWdV5 0ikE7t2QEi2mYuUBzXGI4+mQLAe238HeqvJtry0Mk5qJAmJY5+E9qswZOSWXfpWl HSbfcS3dCalUSBO9pshrTpz4LZ2Yg0+FUrgwzlEoXoDiwD/ofExDaqF1WAcTz8Wi TIWYP/I8htRG9MH2OtN4ZxjiSH1nyVtVUmTDWfhvjDQMJfMJFi5phkYtvCf+DZhe 6rlmwGVfNE8bdtVnGSG16ZP57V9+RcX6g3gNtFSM/KXDuwYW1wcxPiBB+N1lB7Mg == X-ME-Proxy: X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 33FD1E47C0; Mon, 24 Sep 2018 13:01:45 -0400 (EDT) From: Thomas Monjalon To: Ferruh Yigit Cc: John McNamara , Marko Kovacevic , dev@dpdk.org, david.marchand@6wind.com Date: Mon, 24 Sep 2018 19:01:43 +0200 Message-ID: <1772484.ip4EZN0G7U@xps> In-Reply-To: <20180924173140.83312-1-ferruh.yigit@intel.com> References: <20180904101257.61129-1-ferruh.yigit@intel.com> <20180924173140.83312-1-ferruh.yigit@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] doc: announce CRC strip changes in 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: , X-List-Received-Date: Mon, 24 Sep 2018 17:01:49 -0000 24/09/2018 19:31, Ferruh Yigit: > Document changes done in > commit 323e7b667f18 ("ethdev: make default behavior CRC strip on Rx") > > Signed-off-by: Ferruh Yigit > --- > --- a/doc/guides/rel_notes/release_18_11.rst > +++ b/doc/guides/rel_notes/release_18_11.rst > @@ -112,6 +112,12 @@ API Changes > +* The default behaviour of CRC strip offload changed. Without any specific Rx > + offload flag, default behavior by PMD is now to strip CRC. > + DEV_RX_OFFLOAD_CRC_STRIP offload flag has been removed. > + To request keeping CRC, application should set ``DEV_RX_OFFLOAD_KEEP_CRC`` Rx > + offload. Acked-by: Thomas Monjalon Thanks