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 0CA5DADF8 for ; Tue, 21 Jun 2016 10:58:24 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga102.jf.intel.com with ESMTP; 21 Jun 2016 01:58:24 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.26,503,1459839600"; d="scan'208";a="1002149360" Received: from stv-crb-56.sh.intel.com (HELO [10.239.128.116]) ([10.239.128.116]) by orsmga002.jf.intel.com with ESMTP; 21 Jun 2016 01:58:22 -0700 Message-ID: <5769026F.8070507@intel.com> Date: Tue, 21 Jun 2016 17:01:35 +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: pengyuan , dts@dpdk.org References: <1465978346-15477-1-git-send-email-yuan.peng@intel.com> In-Reply-To: <1465978346-15477-1-git-send-email-yuan.peng@intel.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [dts] [PATCH] Support fortpark_TLV 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: Tue, 21 Jun 2016 08:58:25 -0000 Thanks yuan, applied this patch. On 06/15/2016 04:12 PM, pengyuan wrote: > Signed-off-by: pengyuan > > diff --git a/framework/settings.py b/framework/settings.py > index 5572e47..2f440c9 100644 > --- a/framework/settings.py > +++ b/framework/settings.py > @@ -77,6 +77,8 @@ NICS = { > 'fortville_spirit_single': '8086:1584', > 'redrockcanyou': '8086:15a4', > 'fortpark':'8086:374c', > + 'fortpark_TLV':'8086:37d0', > + 'fortpark_TLV_vf':'8086:37cd', > 'fvl10g_vf':'8086:154c', > 'atwood': '8086:15d5', > 'ConnectX3':'15b3:1003', > @@ -115,6 +117,8 @@ DRIVERS = { > 'fortville_spirit_single': 'i40e', > 'redrockcanyou': 'fm10k', > 'fortpark':'i40e', > + 'fortpark_TLV':'i40e', > + 'fortpark_TLV_vf':'i40evf', > 'fvl10g_vf':'i40evf', > 'atwood': 'fm10k', > 'ConnectX3':'mlx4_core', > diff --git a/framework/test_case.py b/framework/test_case.py > index 296dbf7..84d15c7 100644 > --- a/framework/test_case.py > +++ b/framework/test_case.py > @@ -104,6 +104,8 @@ class TestCase(object): > bitrate *= 40 > elif nic == 'fortville_eagle': > bitrate *= 10 > + elif nic == 'fortpark_TLV': > + bitrate *= 10 > elif nic == 'redrockcanyou': > bitrate *= 40 >