From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 2FBE3B4B4 for ; Wed, 18 Feb 2015 15:36:34 +0100 (CET) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga102.fm.intel.com with ESMTP; 18 Feb 2015 06:36:32 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,602,1418112000"; d="scan'208";a="679787926" Received: from smonroyx-mobl.ger.corp.intel.com (HELO [10.237.221.11]) ([10.237.221.11]) by fmsmga002.fm.intel.com with ESMTP; 18 Feb 2015 06:36:31 -0800 Message-ID: <54E4A36E.8050902@intel.com> Date: Wed, 18 Feb 2015 14:36:30 +0000 From: "Gonzalez Monroy, Sergio" User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: Thomas Monjalon References: <1423235164-3808-1-git-send-email-sergio.gonzalez.monroy@intel.com> <1423660055-23920-1-git-send-email-sergio.gonzalez.monroy@intel.com> <1506256.gd80M4BA8W@xps13> In-Reply-To: <1506256.gd80M4BA8W@xps13> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v4 0/5] New Reorder Library 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: Wed, 18 Feb 2015 14:36:34 -0000 On 18/02/2015 14:22, Thomas Monjalon wrote: > Hi Sergio, > > 2015-02-11 13:07, Sergio Gonzalez Monroy: >> This series introduces the new reorder library along with unit tests, >> sample app and a new entry in the programmers guide describing the library. >> >> The library provides reordering of mbufs based on their sequence number. >> >> As mention in the patch describing the library, one use case is the >> packet distributor. >> The distributor receives packets, assigns them a sequence number and sends >> them to the workers. >> The workers process those packets and return them to the distributor. >> The distributor collects out-of-order packets from the workers and uses >> this library to reorder the packets based on the sequence number they >> were assigned. >> >> v4: >> - add missing version.map and related versioning macros > You forgot to update the MAINTAINERS file. > >> v3: >> - fix copyright date >> - add option to sample app to disable reordering >> - add packet ordering sample guide entry >> >> v2: >> - add programmers guide entry describing the library >> - use malloc instead of memzone to allocate memory >> - modify create and init implementation, init takes a reorder buffer as input >> and create reserves memory and call init. >> - update unit tests >> >> Sergio Gonzalez Monroy (5): >> reorder: new reorder library >> app: New reorder unit test >> examples: new sample app packet_ordering >> doc: new reorder library description >> doc: new packet ordering app description True! I'll do v5. Sergio