From patchwork Wed Oct 23 13:39:58 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Marchand X-Patchwork-Id: 61768 X-Patchwork-Delegate: ferruh.yigit@amd.com Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 5F73E1C1CA; Wed, 23 Oct 2019 15:40:17 +0200 (CEST) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-2.mimecast.com [205.139.110.61]) by dpdk.org (Postfix) with ESMTP id 046471C1DB for ; Wed, 23 Oct 2019 15:40:13 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1571838013; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=deOg2MRc8VvOMYV5z/7d4Rfbm4/4tAfvjvqx+0raDvY=; b=PfsJJMzXwDQK4SZOqJBKeAOKCEwz2OBGjaot99eIsqgCedIQgJ7LwJgTbUuB2oQvA3H4ht aAKKscUQVfsVOsUQXUMLx5+ZSDQO8cpu5+VbU0GKtmvKcoIEU0ysYfNWn/XrOSZwNvLM6D NCHO4/XGwDdchTiEdH4+q+cw5RT6+S0= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-104-FEhM6W8oOROxQIhf9-MgRQ-1; Wed, 23 Oct 2019 09:40:10 -0400 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id B4E58107AD31; Wed, 23 Oct 2019 13:40:09 +0000 (UTC) Received: from dmarchan.remote.csb (ovpn-204-129.brq.redhat.com [10.40.204.129]) by smtp.corp.redhat.com (Postfix) with ESMTP id A3F3060C80; Wed, 23 Oct 2019 13:40:08 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: olivier.matz@6wind.com, ferruh.yigit@intel.com Date: Wed, 23 Oct 2019 15:39:58 +0200 Message-Id: <1571838001-591-2-git-send-email-david.marchand@redhat.com> In-Reply-To: <1571838001-591-1-git-send-email-david.marchand@redhat.com> References: <1571820718-7021-1-git-send-email-david.marchand@redhat.com> <1571838001-591-1-git-send-email-david.marchand@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-MC-Unique: FEhM6W8oOROxQIhf9-MgRQ-1 X-Mimecast-Spam-Score: 0 Subject: [dpdk-dev] [PATCH v2 1/4] doc: add note on prefixing ESP tail structure 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" Fixes: 7dde68cf0e13 ("net: add missing rte prefix for ESP tail") Signed-off-by: David Marchand --- doc/guides/rel_notes/release_19_11.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/guides/rel_notes/release_19_11.rst b/doc/guides/rel_notes/release_19_11.rst index 40121b9..d63413b 100644 --- a/doc/guides/rel_notes/release_19_11.rst +++ b/doc/guides/rel_notes/release_19_11.rst @@ -162,6 +162,8 @@ API Changes Also, make sure to start the actual text at the margin. ========================================================= +* The network structure ``esp_tail`` has been prefixed by ``rte_``. + * ethdev: changed ``rte_eth_dev_infos_get`` return value from ``void`` to ``int`` to provide a way to report various error conditions.