From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f46.google.com (mail-wm0-f46.google.com [74.125.82.46]) by dpdk.org (Postfix) with ESMTP id 23101C13E for ; Wed, 8 Jun 2016 20:07:49 +0200 (CEST) Received: by mail-wm0-f46.google.com with SMTP id k204so28250692wmk.0 for ; Wed, 08 Jun 2016 11:07:49 -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:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=KUlF4Jr0CtBqgO391WmBXEbmr5In39yl6v2x+/Gc5j8=; b=nLg1iQLrW9Aex7XQdc+ItgUgQKWU/F0vxqswY38zPjpPyTQtMxaeQuHaUpd0o709qU VBzUwv99dY6TLh2AF6rmZXnx8utIcXVRuiodr7XVftOwbQSUACc+sDiwwow/mIvbZxff PY82ptIYRIBIsQkcsfTH0kjDH2E1m/N3ZsBk07aa8SPAp7ZC+luNWP9veNUCRPznmlFr sXmfOBNJYC3D431D5rrH2PeWXKwOEt76eWBuhtUfZTHthwqTGi0GjhIFGFLsLor1fh5G ufo2lKEDNpjaWscHId+2bSrzckImo9ZdcF/RjvbdCjegbZ1kANTkF7HNMDK4xoQucMlD Ckww== 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:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=KUlF4Jr0CtBqgO391WmBXEbmr5In39yl6v2x+/Gc5j8=; b=ifCmiHIcBNrTJevOoKNEPPAaRgOa2v8tMrppvF325i2ljzwuJzJWHmAXD2UeOPIEGM vFuW7li/pcovdCO60BEJ3EwtCyba2WHigXd2iwkay6abSvxuoQSd6UQy+vrEgi8ypGQS 63+njYW/+btXwCtODuYwkyePXRuqswtxzuzU89/WDB8mHZqHavdunSL8znGtqffwpSk9 fpvDhTK1supUcdNwasYWCQhJixq11HtvbXJwqabPB22lz4DCyc6gFXURuGE17jOU/M1c BW5z/yx/C/Ww1OY/cUtuXckKsTIsghqOLO98qXQTTQXhEVIdojtrCsHnIa6B0ap6dPyo WXcQ== X-Gm-Message-State: ALyK8tLcMn+TFf1MfhQev3fCKqYyF/YTEO4PiLh1z7uCPa7HT5vx7Tt5TQfHjauCSIZ1rOyx X-Received: by 10.28.44.87 with SMTP id s84mr5970947wms.61.1465409268944; Wed, 08 Jun 2016 11:07:48 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id g8sm3338641wme.23.2016.06.08.11.07.47 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 08 Jun 2016 11:07:48 -0700 (PDT) From: Thomas Monjalon To: Jasvinder Singh Cc: dev@dpdk.org, cristian.dumitrescu@intel.com Date: Wed, 08 Jun 2016 20:07:47 +0200 Message-ID: <5983999.B4X949CiMm@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1464628489-81609-1-git-send-email-jasvinder.singh@intel.com> References: <1462984313-239763-1-git-send-email-jasvinder.singh@intel.com> <1464628489-81609-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 rss support 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 Jun 2016 18:07:49 -0000 2016-05-30 18:14, Jasvinder Singh: > This patch enables rss (receive side scaling) per network interface > through the configuration file. The user can specify following > parameters in LINK section for enabling the rss feature - rss_qs, > rss_proto_ipv4, rss_proto_ipv6 and ip_proto_l2. > > The "rss_qs" is mandatory parameter which indicates the queues to be > used for rss, while rest of the parameters are optional. When optional > parameters are not provided in the configuration file, default setting > (ETH_RSS_IPV4 | ETH_RSS_IPV6) is assumed for "rss_hf" field of the > rss_conf structure. > > For example, following configuration can be applied for using the rss > on port 0 of the network interface; > > [PIPELINE0] > type = MASTER > core = 0 > > [LINK0] > rss_qs = 0 1 > > [PIPELINE1] > type = PASS-THROUGH > core = 1 > pktq_in = RXQ0.0 RXQ0.1 RXQ1.0 > pktq_out = TXQ0.0 TXQ1.0 TXQ0.1 > > Signed-off-by: Jasvinder Singh > Acked-by: Cristian Dumitrescu Applied, thanks