From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f178.google.com (mail-wi0-f178.google.com [209.85.212.178]) by dpdk.org (Postfix) with ESMTP id 83AF1B46D for ; Wed, 18 Feb 2015 17:17:24 +0100 (CET) Received: by mail-wi0-f178.google.com with SMTP id em10so3293533wid.5 for ; Wed, 18 Feb 2015 08:17:24 -0800 (PST) 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=oBadJULmMKrccJ0X+LSzINtpFpGyr7HVgqrxwmYOdTs=; b=LhC1gAX5aTRTQkuXDA8auit2u30oqXLfu43txvXE3qlUuJfxEgCfcBkTBdyuHQlK9f 3BORxh9A54kayPEUBLf5I7D/IdBlSWY9J50Q9YIjMdIcQg3yb5vQEgDFUCV4Qx8Qw/tZ 6WVPVupXKfFAnUPt9hNrHuskY76IUikTukka6rL8KGr8b3OCjiqcdxYQnnirxUk8xhMj ml+m1N+Q2SKRioB3pzaxtIum64iN1m2AoTu1S0iB6lqZ8sWJJwjmRtuzKqdclzRDAzRB e2PuiXaYo7YroJtcYDRxw4MhKJUYuzqEzcNbPz3xDXDGQN+wip8+Fj8RZaMh7RLPd3DH ni/w== X-Gm-Message-State: ALoCoQlft9nExsspp5zFyd05kVjQNIytSxSrtIhgLhkS9hVTanc1M4dwxb9LNURdZxmZnnmi7fkx X-Received: by 10.194.143.109 with SMTP id sd13mr149571wjb.70.1424276244364; Wed, 18 Feb 2015 08:17:24 -0800 (PST) Received: from xps13.localnet (175.16.90.92.rev.sfr.net. [92.90.16.175]) by mx.google.com with ESMTPSA id hd5sm30107938wib.21.2015.02.18.08.17.22 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 18 Feb 2015 08:17:23 -0800 (PST) From: Thomas Monjalon To: Sergio Gonzalez Monroy Date: Wed, 18 Feb 2015 16:52:48 +0100 Message-ID: <1621021.Ek0jp81DHV@xps13> Organization: 6WIND User-Agent: KMail/4.14.4 (Linux/3.18.4-1-ARCH; KDE/4.14.4; x86_64; ; ) In-Reply-To: <1424271498-23583-1-git-send-email-sergio.gonzalez.monroy@intel.com> References: <1423660055-23920-1-git-send-email-sergio.gonzalez.monroy@intel.com> <1424271498-23583-1-git-send-email-sergio.gonzalez.monroy@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 v5 0/6] 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 16:17:24 -0000 > 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. > > v5: > - update MAINTAINERS > > v4: > - add missing version.map and related versioning macros > > 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 (6): > 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 > MAINTAINERS: add and claim reorder Applied, thanks