From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id A38C2A2F for ; Wed, 1 Jun 2016 03:29:34 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP; 31 May 2016 18:29:33 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.26,398,1459839600"; d="scan'208";a="966218798" Received: from fmsmsx108.amr.corp.intel.com ([10.18.124.206]) by orsmga001.jf.intel.com with ESMTP; 31 May 2016 18:29:33 -0700 Received: from fmsmsx121.amr.corp.intel.com (10.18.125.36) by FMSMSX108.amr.corp.intel.com (10.18.124.206) with Microsoft SMTP Server (TLS) id 14.3.248.2; Tue, 31 May 2016 18:29:33 -0700 Received: from shsmsx103.ccr.corp.intel.com (10.239.4.69) by fmsmsx121.amr.corp.intel.com (10.18.125.36) with Microsoft SMTP Server (TLS) id 14.3.248.2; Tue, 31 May 2016 18:29:33 -0700 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.150]) by SHSMSX103.ccr.corp.intel.com ([169.254.4.181]) with mapi id 14.03.0248.002; Wed, 1 Jun 2016 09:29:31 +0800 From: "Xu, HuilongX" To: "Jastrzebski, MichalX K" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH] app/test: fix bond device name too long Thread-Index: AQHRuCtsfIUQjDyp+0eE2G6t08aNap/T2JJw Date: Wed, 1 Jun 2016 01:29:30 +0000 Message-ID: References: <1464362453-5732-1-git-send-email-michalx.k.jastrzebski@intel.com> In-Reply-To: <1464362453-5732-1-git-send-email-michalx.k.jastrzebski@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH] app/test: fix bond device name too long 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: Wed, 01 Jun 2016 01:29:35 -0000 Tester-by: huilong xu Test case: link_bonging_autotest Package:dpdk.org master branch newest commit + this patch Test cmdline: ./x86_64-native-linuxapp-gcc/app/test -c ffff -n 1 Exec link_bonging_autotest cmdl Test environment: OS&kernel: dpdk-rhel72 3.10.0-327.el7.x86_64 Gcc: gcc version 4.8.5 20150623 (Red Hat 4.8.5-4) (GCC) Hugepage: 4096*2M > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Michal Jastrzebski > Sent: Friday, May 27, 2016 11:21 PM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH] app/test: fix bond device name too long >=20 > Bond device name was too long (grather than 32 signs) that > cause mempool allocation to fail. >=20 > Fixes: 92073ef961ee ("bond: unit tests") >=20 > Signed-off-by: Michal Jastrzebski > --- > app/test/test_link_bonding.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/app/test/test_link_bonding.c b/app/test/test_link_bonding.c > index 7cbc289..eeb1395 100644 > --- a/app/test/test_link_bonding.c > +++ b/app/test/test_link_bonding.c > @@ -83,7 +83,7 @@ > #define MAX_PKT_BURST (512) > #define DEF_PKT_BURST (16) >=20 > -#define BONDED_DEV_NAME ("unit_test_bonded_device") > +#define BONDED_DEV_NAME ("unit_test_bond_dev") >=20 > #define INVALID_SOCKET_ID (-1) > #define INVALID_PORT_ID (-1) > -- > 1.7.9.5