From: "Cao, Min" <min.cao@intel.com> To: "dev@dpdk.org" <dev@dpdk.org> Subject: Re: [dpdk-dev] [PATCH v3 0/6] i40e VMDQ support Date: Thu, 11 Dec 2014 06:09:53 +0000 Message-ID: <B6059B2012717B4390714544B1F509E110DF061A@SHSMSX103.ccr.corp.intel.com> (raw) In-Reply-To: <1415095289-28961-1-git-send-email-jing.d.chen@intel.com> Tested-by: Min Cao <min.cao@intel.com> Patch name: i40e VMDQ support Brief description: Test Flag: Tested-by Tester name: min.cao@intel.com Result summary: total 1 cases, 1 passed, 0 failed Test Case 1: Name: perf_vmdq_performance Environment: OS: Fedora20 3.11.10-301.fc20.x86_64 gcc (GCC) 4.8.2 CPU: Intel(R) Xeon(R) CPU E5-2680 0 @ 2.70GHz NIC: Fortville eagle Test result: PASSED -----Original Message----- From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Chen Jing D(Mark) Sent: Tuesday, November 04, 2014 6:01 PM To: dev@dpdk.org Subject: [dpdk-dev] [PATCH v3 0/6] i40e VMDQ support From: "Chen Jing D(Mark)" <jing.d.chen@intel.com> v3: - Fix comments style. - Simplify words in comments. - Add variable defintion for BSD config file. - Code rebase to latest DPDK repo. v2: - Fix a few typos. - Add comments for RX mq mode flags. - Remove '\n' from some log messages. - Remove 'Acked-by' in commit log. v1: Define extra VMDQ arguments to expand VMDQ configuration. This also includes change in igb and ixgbe PMD driver. In the meanwhile, fix 2 defects in rte_ether library. Add full VMDQ support in i40e PMD driver. renamed some functions, setup VMDQ VSI after it's enabled in application. It also make some improvement on macaddr add/delete to support setting multiple macaddr for single or multiple pools. Finally, change i40e rx/tx_queue_setup and dev_start/stop functions to configure/switch queues belonging to VMDQ pools. Chen Jing D(Mark) (6): ether: enhancement for VMDQ support igb: change for VMDQ arguments expansion ixgbe: change for VMDQ arguments expansion i40e: add VMDQ support i40e: macaddr add/del enhancement i40e: Add full VMDQ pools support config/common_bsdapp | 1 + config/common_linuxapp | 1 + lib/librte_ether/rte_ethdev.c | 6 +- lib/librte_ether/rte_ethdev.h | 41 ++- lib/librte_pmd_e1000/igb_ethdev.c | 3 + lib/librte_pmd_i40e/i40e_ethdev.c | 498 ++++++++++++++++++++++++++--------- lib/librte_pmd_i40e/i40e_ethdev.h | 21 ++- lib/librte_pmd_i40e/i40e_rxtx.c | 125 +++++++-- lib/librte_pmd_ixgbe/ixgbe_ethdev.c | 1 + 9 files changed, 532 insertions(+), 165 deletions(-) -- 1.7.7.6
next prev parent reply other threads:[~2014-12-11 6:10 UTC|newest] Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top 2014-09-23 13:14 [dpdk-dev] [PATCH " Chen Jing D(Mark) 2014-09-23 13:14 ` [dpdk-dev] [PATCH 1/6] ether: enhancement for " Chen Jing D(Mark) 2014-10-14 14:09 ` Thomas Monjalon 2014-10-15 6:59 ` Chen, Jing D 2014-10-15 8:10 ` Thomas Monjalon 2014-10-15 9:47 ` Chen, Jing D 2014-10-15 9:59 ` Thomas Monjalon 2014-10-16 10:07 ` [dpdk-dev] [PATCH v2 0/6] i40e " Chen Jing D(Mark) 2014-10-16 10:07 ` [dpdk-dev] [PATCH v2 1/6] ether: enhancement for " Chen Jing D(Mark) 2014-11-03 22:17 ` Thomas Monjalon 2014-11-04 5:50 ` Chen, Jing D 2014-11-04 8:53 ` Thomas Monjalon 2014-11-04 8:59 ` Chen, Jing D 2014-10-16 10:07 ` [dpdk-dev] [PATCH v2 2/6] igb: change for VMDQ arguments expansion Chen Jing D(Mark) 2014-11-03 18:37 ` Thomas Monjalon 2014-11-04 5:26 ` Chen, Jing D 2014-10-16 10:07 ` [dpdk-dev] [PATCH v2 3/6] ixgbe: " Chen Jing D(Mark) 2014-10-16 10:07 ` [dpdk-dev] [PATCH v2 4/6] i40e: add VMDQ support Chen Jing D(Mark) 2014-11-03 18:33 ` Thomas Monjalon 2014-11-04 5:22 ` Chen, Jing D 2014-10-16 10:07 ` [dpdk-dev] [PATCH v2 5/6] i40e: macaddr add/del enhancement Chen Jing D(Mark) 2014-10-16 10:07 ` [dpdk-dev] [PATCH v2 6/6] i40e: Add full VMDQ pools support Chen Jing D(Mark) 2014-10-21 3:30 ` [dpdk-dev] [PATCH v2 0/6] i40e VMDQ support Cao, Min 2014-11-03 7:54 ` Chen, Jing D 2014-11-04 10:01 ` [dpdk-dev] [PATCH v3 " Chen Jing D(Mark) 2014-11-04 10:01 ` [dpdk-dev] [PATCH v3 1/6] ether: enhancement for " Chen Jing D(Mark) 2014-11-04 10:01 ` [dpdk-dev] [PATCH v3 2/6] igb: change for VMDQ arguments expansion Chen Jing D(Mark) 2014-11-04 10:01 ` [dpdk-dev] [PATCH v3 3/6] ixgbe: " Chen Jing D(Mark) 2014-11-04 10:01 ` [dpdk-dev] [PATCH v3 4/6] i40e: add VMDQ support Chen Jing D(Mark) 2014-11-04 10:01 ` [dpdk-dev] [PATCH v3 5/6] i40e: macaddr add/del enhancement Chen Jing D(Mark) 2014-11-04 10:01 ` [dpdk-dev] [PATCH v3 6/6] i40e: Add full VMDQ pools support Chen Jing D(Mark) 2014-11-04 11:19 ` [dpdk-dev] [PATCH v3 0/6] i40e VMDQ support Ananyev, Konstantin 2014-11-04 23:17 ` Thomas Monjalon 2014-12-11 6:09 ` Cao, Min [this message] 2014-09-23 13:14 ` [dpdk-dev] [PATCH 2/6] igb: change for VMDQ arguments expansion Chen Jing D(Mark) 2014-09-23 13:14 ` [dpdk-dev] [PATCH 3/6] ixgbe: " Chen Jing D(Mark) 2014-09-23 13:14 ` [dpdk-dev] [PATCH 4/6] i40e: add VMDQ support Chen Jing D(Mark) 2014-10-13 16:14 ` De Lara Guarch, Pablo 2014-09-23 13:14 ` [dpdk-dev] [PATCH 5/6] i40e: macaddr add/del enhancement Chen Jing D(Mark) 2014-10-14 14:25 ` Thomas Monjalon 2014-10-15 7:01 ` Chen, Jing D 2014-09-23 13:14 ` [dpdk-dev] [PATCH 6/6] i40e: Add full VMDQ pools support Chen Jing D(Mark) 2014-10-10 10:45 ` [dpdk-dev] [PATCH 0/6] i40e VMDQ support Ananyev, Konstantin 2014-10-14 8:27 ` Chen, Jing D 2014-10-21 3:30 ` Cao, Min
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=B6059B2012717B4390714544B1F509E110DF061A@SHSMSX103.ccr.corp.intel.com \ --to=min.cao@intel.com \ --cc=dev@dpdk.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
DPDK patches and discussions This inbox may be cloned and mirrored by anyone: git clone --mirror https://inbox.dpdk.org/dev/0 dev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 dev dev/ https://inbox.dpdk.org/dev \ dev@dpdk.org public-inbox-index dev Example config snippet for mirrors. Newsgroup available over NNTP: nntp://inbox.dpdk.org/inbox.dpdk.dev AGPL code for this site: git clone https://public-inbox.org/public-inbox.git