From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id A6C496895 for ; Thu, 22 May 2014 08:11:20 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga102.jf.intel.com with ESMTP; 21 May 2014 23:06:22 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.98,885,1392192000"; d="scan'208";a="544710736" Received: from shilc102.sh.intel.com ([10.239.39.44]) by orsmga002.jf.intel.com with ESMTP; 21 May 2014 23:11:20 -0700 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shilc102.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id s4M6BFN1026763; Thu, 22 May 2014 14:11:18 +0800 Received: from shecgisg004.sh.intel.com (localhost [127.0.0.1]) by shecgisg004.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id s4M6BDWn032112; Thu, 22 May 2014 14:11:15 +0800 Received: (from couyang@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id s4M6BDsh032108; Thu, 22 May 2014 14:11:13 +0800 From: Ouyang Changchun To: dev@dpdk.org Date: Thu, 22 May 2014 14:11:10 +0800 Message-Id: <1400739073-32011-1-git-send-email-changchun.ouyang@intel.com> X-Mailer: git-send-email 1.7.0.7 Subject: [dpdk-dev] [PATCH 0/3] Support administrative link up and link down 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: Thu, 22 May 2014 06:11:21 -0000 This patch series contain the following 3 items: 1. Add API to support administrative link up and down. 2. Implement the functionality of administrative link up and down in IXGBE PMD. 3. Add command in testpmd to test the functionality of administrative link up and down of PMD. Ouyang Changchun (3): Add API for supporting administrative link up and down. Implement the functionality of administrative link up and down in IXGBE PMD. Add command line to test the functionality of administrative link up and down of PMD in testpmd. app/test-pmd/cmdline.c | 78 +++++++++++++++++++++++++++++++++++++ app/test-pmd/testpmd.c | 14 +++++++ app/test-pmd/testpmd.h | 2 + lib/librte_ether/rte_ethdev.c | 38 ++++++++++++++++++ lib/librte_ether/rte_ethdev.h | 34 ++++++++++++++++ lib/librte_pmd_ixgbe/ixgbe_ethdev.c | 58 +++++++++++++++++++++++++++ 6 files changed, 224 insertions(+) -- 1.9.0