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 F2C4C8D94 for ; Mon, 14 Dec 2015 02:35:20 +0100 (CET) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga102.fm.intel.com with ESMTP; 13 Dec 2015 17:35:20 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,424,1444719600"; d="scan'208";a="617423292" Received: from stv-crb-56.sh.intel.com (HELO [10.239.128.116]) ([10.239.128.116]) by FMSMGA003.fm.intel.com with ESMTP; 13 Dec 2015 17:35:19 -0800 Message-ID: <566E1CB2.4070104@intel.com> Date: Mon, 14 Dec 2015 09:34:42 +0800 From: "Liu, Yong" User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: dts@dpdk.org References: <1449982664-4362-1-git-send-email-yong.liu@intel.com> In-Reply-To: <1449982664-4362-1-git-send-email-yong.liu@intel.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [dts] [RFC PATCH 0/8] support fm10k family nics X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Dec 2015 01:35:21 -0000 Merged into next branch. Will merge to master branch after fully validation. On 12/13/2015 12:57 PM, Yong Liu wrote: > fm10k family nics required addtional setup functions for testpoint. All > functions will be enabled after startup and configure testpoint. For some nics > like RubyRapid and BulderRapid, two ports will share one testpoint. > > For clearify nic functions, created another folder named "nics" which will > contained all nic modules. > > Marvin Liu (8): > framework settings: rename nic_name_from_type to get_nic_name > framework crb: add function to retrieve port information > framework: create independent foler for nic modules > nics: add fm10k module for RedRockCanYou family nic > framework: net device object get from net_device module > framework dts: close netdevice related session after exit > conf: add sample for RedRockCanYou family nic > framework project_dpdk: add extra setup after bind driver > > conf/ports.cfg | 6 +- > framework/checkCase.py | 4 +- > framework/crb.py | 8 + > framework/dts.py | 14 +- > framework/dut.py | 22 +- > framework/main.py | 6 +- > framework/net_device.py | 770 ------------------------------------------ > framework/project_dpdk.py | 9 + > framework/settings.py | 3 +- > framework/test_case.py | 4 +- > framework/virt_dut.py | 4 +- > nics/fm10k.py | 164 +++++++++ > nics/net_device.py | 832 ++++++++++++++++++++++++++++++++++++++++++++++ > 13 files changed, 1047 insertions(+), 799 deletions(-) > delete mode 100644 framework/net_device.py > create mode 100644 nics/fm10k.py > create mode 100644 nics/net_device.py >