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 25D21A3295 for ; Wed, 23 Oct 2019 15:40:46 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 02CCD1C1D2; Wed, 23 Oct 2019 15:40:14 +0200 (CEST) Received: from us-smtp-1.mimecast.com (us-smtp-1.mimecast.com [207.211.31.81]) by dpdk.org (Postfix) with ESMTP id 301431C1E0 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=1571838012; 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=+hj1FfydE5RtnbRs7nIig7ujOOtuCYT4rkmNew52rHY=; b=SvZaZsZd16lDDi7EXicpQIcZY+5C4vi0dYKN3V9y++hN5VtKAebehk7KJt1/9kWQExggj9 Xn5IVu6pPUC/vEXRRRTabQUQxsUa8D4Q0Ctm7ToRkbBr+WwHEYJHR9MPWhVobLsQMvkqg9 ezEDlm3pTEvRY1ftRvMkYaxdOHlTc6k= 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-5-kwC9ib0LNpS-nIkUSmpjFw-1; Wed, 23 Oct 2019 09:40:09 -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 4720E80183E; Wed, 23 Oct 2019 13:40:08 +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 348D560BE1; Wed, 23 Oct 2019 13:40:06 +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:57 +0200 Message-Id: <1571838001-591-1-git-send-email-david.marchand@redhat.com> In-Reply-To: <1571820718-7021-1-git-send-email-david.marchand@redhat.com> References: <1571820718-7021-1-git-send-email-david.marchand@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-MC-Unique: kwC9ib0LNpS-nIkUSmpjFw-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset=WINDOWS-1252 Content-Transfer-Encoding: quoted-printable Subject: [dpdk-dev] [PATCH v2 0/4] net definitions fixes 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" Small patchset with fixes after inspecting the librte_net. I copied stable@dpdk.org in the 2nd patch for information only. Changelog since v1: - added missing update on release notes, --=20 David Marchand David Marchand (4): doc: add note on prefixing ESP tail structure net: add missing rte prefix on PPPoE defines net: add rte prefix to MPLS structure net: hide internal CRC defines doc/guides/rel_notes/release_19_11.rst | 6 ++++++ lib/librte_net/rte_ether.h | 4 ++-- lib/librte_net/rte_mpls.h | 2 +- lib/librte_net/rte_net.c | 4 ++-- lib/librte_net/rte_net_crc.c | 6 ++++++ lib/librte_net/rte_net_crc.h | 6 ------ lib/librte_pipeline/rte_table_action.c | 4 ++-- 7 files changed, 19 insertions(+), 13 deletions(-) --=20 1.8.3.1