From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f51.google.com (mail-wm0-f51.google.com [74.125.82.51]) by dpdk.org (Postfix) with ESMTP id D21922BAC for ; Sun, 13 Mar 2016 16:10:26 +0100 (CET) Received: by mail-wm0-f51.google.com with SMTP id l68so72808961wml.1 for ; Sun, 13 Mar 2016 08:10:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=NaFU5oKc4OqPQAwfuZvqKBw23P36TIBi53pMSUdaGLU=; b=YQlAC9NgQCCYMFBaeTTRnTqoiyMNIE7FxRlG3+kbJ+NFLTni621Tc8DL302SZoO5dX kt7uj+j7rwMJX90tbKHGtDXIavpVZ0Eer9AjeiSdOTNPIK8x6TuzdIwUODc0tAW8LIIb X/UYrnXYaUr69VqAKSvrBjNNQwezi1RA+PJufTAx2Oh+xIp6XyuIcg08wa1hv1E+2KWP mVK3mLDpb6gG1wW6aHY01Ea08Zl5Ea7/MgfrpQnC6o2pevCVxamBxdF7Ho5vKYBBd+/e QUivslGM2QYgQj9mNGPYd5GZ8Wt7Nb5DgbVePMTqBBAEvUJuJV9k9L+t6pp6qjX1xzOr 6NuA== 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; bh=NaFU5oKc4OqPQAwfuZvqKBw23P36TIBi53pMSUdaGLU=; b=Qe53jrLHER35jC5h9Ti37h0avReLABzPqShwCA7DaBspevInQaAURTlzy7mQ0n+Av6 b8UvOcTmu6o3JKKRmddkQ2IjQOqNt0K4w7I0EtottFW+dyTqF4LKM/dp/4vh+bSveFez v7YgEm+rEXiLtWbe7Doj4aFnvrAEQy4dTxUMzyJVI908F5RHtQATIcygNbg/YQqBziDO v1XVAjlWkjspt9DAyB9rObIwcBLN46Es+c/RkO1gmn5BBzrMHu3wGq9F2Kv56MRItOtD 19V3Pg5fw0xsjLlNY692UJ1iRV9cVnBchORTjXdGepOWZZDghfJDlLyNSVnwnj3cTCtH 7Csw== X-Gm-Message-State: AD7BkJJFbgAGjj82Gxy7aSoBD1GKHDcpTwUI/k/e4PbuiYnnuhzOgLcglAo70pAK2whIJizG X-Received: by 10.194.92.107 with SMTP id cl11mr22416514wjb.21.1457881826682; Sun, 13 Mar 2016 08:10:26 -0700 (PDT) Received: from xps13.localnet (91.111.75.86.rev.sfr.net. [86.75.111.91]) by smtp.gmail.com with ESMTPSA id pd1sm18041617wjb.19.2016.03.13.08.10.25 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 13 Mar 2016 08:10:26 -0700 (PDT) From: Thomas Monjalon To: Jasvinder Singh Cc: dev@dpdk.org Date: Sun, 13 Mar 2016 16:09:05 +0100 Message-ID: <1644289.O54HJSKTCM@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1457623742-26239-1-git-send-email-jasvinder.singh@intel.com> References: <1453889757-115360-1-git-send-email-jasvinder.singh@intel.com> <1457623742-26239-1-git-send-email-jasvinder.singh@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v3] ip_pipeline: add load balancing function to pass-through 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: Sun, 13 Mar 2016 15:10:27 -0000 2016-03-10 15:29, Jasvinder Singh: > The pass-through pipeline implementation is extended with load balancing > function. This function allows uniform distribution of the packets among > its output ports. For packets distribution, any application level logic > can be applied. For instance, in this implementation, hash value > computed over specific header fields of the incoming packets has been > used to spread traffic uniformly among the output ports. Applied, thanks