From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.mhcomputing.net (master.mhcomputing.net [74.208.46.186]) by dpdk.org (Postfix) with ESMTP id 8DC3B7E69 for ; Thu, 9 Oct 2014 01:00:53 +0200 (CEST) Received: by mail.mhcomputing.net (Postfix, from userid 1000) id DD06480C50B; Wed, 8 Oct 2014 16:07:28 -0700 (PDT) Date: Wed, 8 Oct 2014 16:07:28 -0700 From: Matthew Hall To: Neil Horman Message-ID: <20141008230728.GA29712@mhcomputing.net> References: <3AEA2BF9852C6F48A459DA490692831FE21954@IRSMSX109.ger.corp.intel.com> <20141008224111.GC29243@mhcomputing.net> <20141008225540.GA15850@hmsreliant.think-freely.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20141008225540.GA15850@hmsreliant.think-freely.org> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: "dev@dpdk.org" Subject: Re: [dpdk-dev] [PATCH RFC] librte_reorder: 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, 08 Oct 2014 23:00:53 -0000 On Wed, Oct 08, 2014 at 06:55:41PM -0400, Neil Horman wrote: > I think because there is a possibility that multiple workers may be used for a > single tx queue. > > Neil OK, so, in my application packets are RX'ed to a predictable RX queue and core using RSS. Then you put them into a predictable TX queue for the same core, in the same order they came in from the RX queue with RSS enabled. So you've got a consistent-hashed subset of packets as input, being converted to output in the same order. Will it work, or not work? I'm just curious if my app is doing it wrong and I need to fix it, or how this case should be handled in general... Matthew.