From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id C8704C656 for ; Fri, 19 Jun 2015 05:18:27 +0200 (CEST) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga102.fm.intel.com with ESMTP; 18 Jun 2015 20:18:27 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.13,642,1427785200"; d="scan'208";a="590653379" Received: from kmsmsx153.gar.corp.intel.com ([172.21.73.88]) by orsmga003.jf.intel.com with ESMTP; 18 Jun 2015 20:18:27 -0700 Received: from shsmsx151.ccr.corp.intel.com (10.239.6.50) by KMSMSX153.gar.corp.intel.com (172.21.73.88) with Microsoft SMTP Server (TLS) id 14.3.224.2; Fri, 19 Jun 2015 11:18:24 +0800 Received: from shsmsx104.ccr.corp.intel.com ([169.254.5.129]) by SHSMSX151.ccr.corp.intel.com ([169.254.3.168]) with mapi id 14.03.0224.002; Fri, 19 Jun 2015 11:18:23 +0800 From: "Zhang, Helin" To: "Ananyev, Konstantin" Thread-Topic: [dpdk-dev] [PATCHv2 0/5] ethdev: add new API to retrieve RX/TX queue information Thread-Index: AQHQqcl9LY+l4LZWI0WcEWcrN+dLNp2zKYUQ Date: Fri, 19 Jun 2015 03:18:23 +0000 Message-ID: References: <1434560084-21237-2-git-send-email-konstantin.ananyev@intel.com> <1434633528-23329-1-git-send-email-konstantin.ananyev@intel.com> In-Reply-To: <1434633528-23329-1-git-send-email-konstantin.ananyev@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: "dev@dpdk.org" Subject: Re: [dpdk-dev] [PATCHv2 0/5] ethdev: add new API to retrieve RX/TX queue information 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: Fri, 19 Jun 2015 03:18:28 -0000 Acked-by: Helin Zhang > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Konstantin Ananyev > Sent: Thursday, June 18, 2015 9:19 PM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCHv2 0/5] ethdev: add new API to retrieve RX/TX q= ueue > information >=20 > Add the ability for the upper layer to query RX/TX queue information. > Right now supported for: > ixgbe, i40e, e1000 PMDs. >=20 > Konstantin Ananyev (5): > ethdev: add new API to retrieve RX/TX queue information > i40e: add support for eth_(rxq|txq)_info_get > ixgbe: add support for eth_(rxq|txq)_info_get > e1000: add support for eth_(rxq|txq)_info_get > testpmd: add new command to display RX/TX queue information >=20 > app/test-pmd/cmdline.c | 48 +++++++++++++++++++++++++ > app/test-pmd/config.c | 67 > ++++++++++++++++++++++++++++++++++ > app/test-pmd/testpmd.h | 2 ++ > drivers/net/e1000/e1000_ethdev.h | 12 +++++++ > drivers/net/e1000/em_ethdev.c | 2 ++ > drivers/net/e1000/em_rxtx.c | 38 ++++++++++++++++++++ > drivers/net/e1000/igb_ethdev.c | 4 +++ > drivers/net/e1000/igb_rxtx.c | 36 +++++++++++++++++++ > drivers/net/i40e/i40e_ethdev.c | 2 ++ > drivers/net/i40e/i40e_ethdev.h | 5 +++ > drivers/net/i40e/i40e_rxtx.c | 42 ++++++++++++++++++++++ > drivers/net/ixgbe/ixgbe_ethdev.c | 4 +++ > drivers/net/ixgbe/ixgbe_ethdev.h | 6 ++++ > drivers/net/ixgbe/ixgbe_rxtx.c | 42 ++++++++++++++++++++++ > lib/librte_ether/rte_ethdev.c | 54 ++++++++++++++++++++++++++++ > lib/librte_ether/rte_ethdev.h | 77 > +++++++++++++++++++++++++++++++++++++++- > 16 files changed, 440 insertions(+), 1 deletion(-) >=20 > -- > 1.8.5.3