From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas.monjalon@6wind.com>
Received: from mail-wi0-f177.google.com (mail-wi0-f177.google.com
 [209.85.212.177]) by dpdk.org (Postfix) with ESMTP id 4C52A568E
 for <dev@dpdk.org>; Mon, 12 Oct 2015 10:23:52 +0200 (CEST)
Received: by wicgb1 with SMTP id gb1so40628840wic.1
 for <dev@dpdk.org>; Mon, 12 Oct 2015 01:23:52 -0700 (PDT)
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20130820;
 h=x-gm-message-state:from:to:cc:subject:date:message-id:organization
 :user-agent:in-reply-to:references:mime-version
 :content-transfer-encoding:content-type;
 bh=ZN4nhBPWm4TZRKAMcvxoAVBOD8B3g5H5KmOKYmrsvO8=;
 b=crmdrQO9+7hSD+i4u6/eihqGIfw/MT9EgCV7+nan+4MYGIIAdAU4zBrKpWEaV3xocJ
 ufnqtKm9l9K7a9jtdZo1RYlX8JRt/wbHdSqGSDcd3/A+BcJ3x76gbdjp6upNzi4TFIlP
 1UKt4WoGrkXDFZ+Kv8bUGXGEUT4YfdykD++0XVVcqp01hbj68vfB9WTIgb1PAt5YvQQq
 keUtoB0v1Pn1bZVLV5qBkH40xdXy5reR0NPwnrC8+R99faOlnJJxN+Q3MHU56q+CJY5W
 vNyNvq8LCSeKkgGK+jVWVOarowlhq6RkbS26QCTMy0XCAq679n8r9lNJYJOKnutB07Mq
 vlKw==
X-Gm-Message-State: ALoCoQn8DvwASogseFy0cVl42gl6RUJbUXnLeD+MdSbLU8iHaBkfW1++1vMM2bd+B+ijzjhdIrPK
X-Received: by 10.180.90.166 with SMTP id bx6mr12323019wib.93.1444638232066;
 Mon, 12 Oct 2015 01:23:52 -0700 (PDT)
Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136])
 by smtp.gmail.com with ESMTPSA id wt4sm9431517wjb.29.2015.10.12.01.23.51
 (version=TLSv1/SSLv3 cipher=OTHER);
 Mon, 12 Oct 2015 01:23:51 -0700 (PDT)
From: Thomas Monjalon <thomas.monjalon@6wind.com>
To: "Azarewicz, PiotrX T" <piotrx.t.azarewicz@intel.com>
Date: Mon, 12 Oct 2015 10:22:47 +0200
Message-ID: <2067349.o1BFDiCzax@xps13>
Organization: 6WIND
User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; )
In-Reply-To: <4837007523CC9A4B9414D20C13DE6E6413627B00@IRSMSX102.ger.corp.intel.com>
References: <1441967499-21255-1-git-send-email-maciejx.t.gajdzica@intel.com>
 <2407802.7feZ9f3Uac@xps13>
 <4837007523CC9A4B9414D20C13DE6E6413627B00@IRSMSX102.ger.corp.intel.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 7Bit
Content-Type: text/plain; charset="us-ascii"
Cc: dev@dpdk.org
Subject: Re: [dpdk-dev] [PATCH v2 5/5] doc: modify release notes and
	deprecation notice for table and pipeline
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: patches and discussions about DPDK <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Mon, 12 Oct 2015 08:23:52 -0000

2015-10-12 07:53, Azarewicz, PiotrX T:
> Hi Thomas,
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Thomas Monjalon
> > Hi Maciej,
> > 
> > 2015-09-11 12:31, Maciej Gajdzica:
> > > --- a/lib/librte_pipeline/rte_pipeline_version.map
> > > +++ b/lib/librte_pipeline/rte_pipeline_version.map
> > > @@ -29,3 +29,11 @@ DPDK_2.1 {
> > >  	rte_pipeline_table_stats_read;
> > >
> > >  } DPDK_2.0;
> > > +
> > > +DPDK_2.2 {
> > > +	global:
> > > +
> > > +	rte_pipeline_table_entry_add_bulk;
> > > +	rte_pipeline_table_entry_delete_bulk;
> > > +
> > > +} DPDK_2.1;
> > 
> > The previous block was DPDK_2.0 for this library.
> > So I think you should inherit from it, not DPDK_2.1 which doesn't exist in this
> > context.
> 
> The previous block was DPDK_2.1 :
> 
> DPDK_2.1 {
> 	global:
> 
> 	rte_pipeline_port_in_stats_read;
> 	rte_pipeline_port_out_stats_read;
> 	rte_pipeline_table_stats_read;
> 
> } DPDK_2.0;
> 
> So I think this patch is okay.
> Correct me if I am wrong with my understanding, please.

You are perfectly right.
Sorry for the confusion.