From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 0387C1C01 for ; Fri, 27 Jul 2018 03:11:50 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 26 Jul 2018 18:11:48 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,407,1526367600"; d="scan'208";a="78202993" Received: from dts-maintain.sh.intel.com (HELO [10.67.119.152]) ([10.67.119.152]) by orsmga002.jf.intel.com with ESMTP; 26 Jul 2018 18:11:47 -0700 To: wenjieli , dts@dpdk.org References: <1532596305-99463-1-git-send-email-wenjiex.a.li@intel.com> From: Lijuan Tu Message-ID: <85ddb41b-ac6f-d393-f1d0-170dda55514a@intel.com> Date: Fri, 27 Jul 2018 17:40:58 +0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 In-Reply-To: <1532596305-99463-1-git-send-email-wenjiex.a.li@intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-US Subject: Re: [dts] [PATCH V1] tests/scatter: mbsize value is not correct for sagepond nic 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: Fri, 27 Jul 2018 01:11:51 -0000 Applied, thanks On 2018年07月26日 17:11, wenjieli wrote: > in set_up_all(), set mbsize = 2048 for sagepond nic, with hardware limitation > > Signed-off-by: wenjieli > --- > tests/TestSuite_scatter.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/TestSuite_scatter.py b/tests/TestSuite_scatter.py > index d9b85b8..d6aef49 100644 > --- a/tests/TestSuite_scatter.py > +++ b/tests/TestSuite_scatter.py > @@ -66,7 +66,7 @@ class TestScatter(TestCase): > if self.nic in ["magnolia_park", "niantic", "sageville", "fortpark", "fortville_eagle", > "fortville_spirit", "fortville_spirit_single", "fortville_25g", > "redrockcanyou", "atwood", "boulderrapid", > - "ironpond", "twinpond", "springfountain", "fortpark_TLV"]: > + "ironpond", "twinpond", "springfountain", "fortpark_TLV", "sagepond"]: > self.mbsize = 2048 > else: > self.mbsize = 1024