From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wg0-f54.google.com (mail-wg0-f54.google.com [74.125.82.54]) by dpdk.org (Postfix) with ESMTP id 7F9785909 for ; Mon, 24 Nov 2014 22:50:34 +0100 (CET) Received: by mail-wg0-f54.google.com with SMTP id l2so3055090wgh.27 for ; Mon, 24 Nov 2014 14:01: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=a7tqMX7oOjo1owCMkeMm1qdV0AAL0j78N+Zvv6Oln8o=; b=lsDw//leApBa+51GYAis3Vkh9+gXfyQe2EKmka90L6R8oRkCEgxPjIhE6RSpxviPDw uh5nyP3X4Gl1fcESQZJAewcWvCXuT9KMWOcH0C4N38PcXKd2Ryh2mvFVNKty8UtyoSWt IzfgbhDTCdGnDxk5RGTItvlhj+uWRk5oHFzMLTCTeQzzy1Q47zCrxUM18JYclezV0vfm PZy+sP7Uze1EOjzFgbKnuny8XBX2fgopJM02DEU7NO0k491rjO/4YX4kHUwtTTFqlsg8 gf8JPE+wl80/KQAkqBHKZMrI4WcbSrUQm/vk/w3LlAuorTngNPXofeY+5bMu5IPQ6XWY mCLQ== X-Gm-Message-State: ALoCoQn0Syo8pkkjmE/YWMl/mVSf2fDhXO8TmwsY02zXt363xa0BBcMS7m7jCEg+OlUdNJZYQRFP X-Received: by 10.194.90.112 with SMTP id bv16mr38761170wjb.122.1416866484024; Mon, 24 Nov 2014 14:01:24 -0800 (PST) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id mu4sm13815572wib.2.2014.11.24.14.01.22 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 24 Nov 2014 14:01:23 -0800 (PST) From: Thomas Monjalon To: "Zhang, Helin" Date: Mon, 24 Nov 2014 23:00:59 +0100 Message-ID: <1558738.lLvxicoTxf@xps13> Organization: 6WIND User-Agent: KMail/4.14.2 (Linux/3.17.2-1-ARCH; KDE/4.14.2; x86_64; ; ) In-Reply-To: <2601191342CEEE43887BDE71AB977258213AE456@IRSMSX105.ger.corp.intel.com> References: <1415283932-20724-1-git-send-email-helin.zhang@intel.com> <1416067424-31699-1-git-send-email-helin.zhang@intel.com> <2601191342CEEE43887BDE71AB977258213AE456@IRSMSX105.ger.corp.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 v6 0/8] support of multiple sizes of redirection table 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: Mon, 24 Nov 2014 21:50:34 -0000 > > As e1000, ixgbe and i40e hardware use different sizes of redirection > > table in PF or VF, ethdev and PMDs need to be reworked to support > > multiple sizes of that table. In addition, commands in testpmd also > > need to be reworked to support these changes. > > > > v2 changes: > > * Reorganized the patches. > > * Added code style fixes. > > * Added support of reta updating/querying in i40e VF. > > > > v3 changes: > > * Reorganized the patch set. > > * Added returning default RX/TX configurations in VF (igb/ixgbe/i40e), > > as the patch set of it for PF has been accepted recently. > > > > v4 changes: > > * Renamed RTE_BIT_WIDTH_64 to RTE_RETA_GROUP_SIZE. > > * Added more comments to rte_eth_dev_rss_reta_update() and > > rte_eth_dev_rss_reta_query(). > > > > v5 changes: > > * Reworked the annotations of macros of RETA sizes in rte_ethdev.h. > > > > v6 changes: > > * Checking if the input number of reta size is 64 aligned has been > > added in rte_ethdev.c. > > * Use macros to replace numeric in all igb, ixgbe and i40e PMDs of > > updating/querying reta. > > > > Helin Zhang (8): > > app/testpmd: code style fix > > i40evf: code style fix > > i40e: support of setting hash lookup table size > > igb: implement ops of 'dev_infos_get' for PF and VF respectively > > ixgbe: implement ops of 'dev_infos_get' for PF and VF respectively > > i40e: rework of ops of 'dev_infos_get' for both PF and VF > > ethdev: support of multiple sizes of redirection table > > i40evf: support of updating/querying redirection table > > Acked-by: Konstantin Ananyev Applied Thanks -- Thomas