From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Marchand Subject: [PATCH 0/5] add mtu and flow control handlers Date: Mon, 26 May 2014 13:31:27 +0200 Message-ID: <1401103892-17225-1-git-send-email-david.marchand@6wind.com> To: dev-VfR2kkLFssw@public.gmane.org Return-path: List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" This patchset introduces 3 new ethdev operations: flow control parameters retrieval and mtu get/set operations. -- David Marchand David Marchand (1): ethdev: add autoneg parameter in flow ctrl accessors Ivan Boule (2): ixgbe: add get/set_mtu to ixgbevf app/testpmd: allow to configure mtu Samuel Gauthier (1): ethdev: add mtu accessors Zijie Pan (1): ethdev: retrieve flow control configuration app/test-pmd/cmdline.c | 54 ++++++++++++ app/test-pmd/config.c | 13 +++ app/test-pmd/testpmd.h | 2 +- lib/librte_ether/rte_ethdev.c | 47 ++++++++++ lib/librte_ether/rte_ethdev.h | 62 ++++++++++++- lib/librte_pmd_e1000/e1000_ethdev.h | 4 + lib/librte_pmd_e1000/em_ethdev.c | 111 +++++++++++++++++++++++ lib/librte_pmd_e1000/em_rxtx.c | 11 +++ lib/librte_pmd_e1000/igb_ethdev.c | 111 +++++++++++++++++++++++ lib/librte_pmd_e1000/igb_rxtx.c | 10 +++ lib/librte_pmd_ixgbe/ixgbe_ethdev.c | 165 ++++++++++++++++++++++++++++++++++- lib/librte_pmd_ixgbe/ixgbe_ethdev.h | 2 + lib/librte_pmd_ixgbe/ixgbe_rxtx.c | 28 +++++- 13 files changed, 614 insertions(+), 6 deletions(-) -- 1.7.10.4