From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f177.google.com (mail-wi0-f177.google.com [209.85.212.177]) by dpdk.org (Postfix) with ESMTP id 444425681 for ; Thu, 8 Oct 2015 13:43:27 +0200 (CEST) Received: by wiclk2 with SMTP id lk2so24262594wic.0 for ; Thu, 08 Oct 2015 04:43:27 -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=BwO9/2bc6yC8JNjjOO3xkCysLbgzA7ldGlIXOKlIxjg=; b=gEL8Z1PFKKqb4drMhS9BOeKvFmu0tzi7qi+Ctxvkfga+FV3RfcVeL5OOm6f/dHGIDi Ah3p6gtO5I7Eg9TvVvW0bgdwiHqIjkyefEAYTReqJWwmyTMru8dofhcJnpvlKu50mnWN nH8lGDdYF6QsnlPZojKcf8bW5VqKfG8GHepjZkHp8FilpHreyEseMaN8/zy1EC2b2PEB Qkbdpj60LUMo7phDCAyBAnzeVR07VGu/d90l2lea/YpUPWEDQPkLite4QVk2ttMzfK7l kQx86E7IA/+XARXnHSZlEqPQJNFhGE7nP3YKKgGSILUrBZuqB9JHbyVhCSrll4v+Q+Rq +ycg== X-Gm-Message-State: ALoCoQlUTX4+NSiKfdXIR8WOlXGBLzGvUPFP4MJO3bmue8Qgt4RHCsB4xsuLVH6P0J/4qcudq9U0 X-Received: by 10.180.39.242 with SMTP id s18mr3327748wik.79.1444304607170; Thu, 08 Oct 2015 04:43:27 -0700 (PDT) Received: from xps13.localnet ([80.215.154.160]) by smtp.gmail.com with ESMTPSA id gc19sm6875602wic.19.2015.10.08.04.43.26 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 08 Oct 2015 04:43:26 -0700 (PDT) From: Thomas Monjalon To: dev@dpdk.org Date: Thu, 08 Oct 2015 13:42:20 +0200 Message-ID: <2407802.7feZ9f3Uac@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1441967499-21255-6-git-send-email-maciejx.t.gajdzica@intel.com> References: <1441967499-21255-1-git-send-email-maciejx.t.gajdzica@intel.com> <1441967499-21255-6-git-send-email-maciejx.t.gajdzica@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" 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 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Oct 2015 11:43:27 -0000 Hi Maciej, 2015-09-11 12:31, Maciej Gajdzica: > The LIBABIVER number is incremented for table and pipeline libraries. > The release notes is updated and the deprecation announce is removed. [...] > --- 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.