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 129302C4A for ; Wed, 5 Jul 2017 18:41:12 +0200 (CEST) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 05 Jul 2017 09:41:11 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.40,312,1496127600"; d="scan'208";a="989008787" Received: from kprzedpe-mobl4.ger.corp.intel.com (HELO [10.252.11.206]) ([10.252.11.206]) by orsmga003.jf.intel.com with ESMTP; 05 Jul 2017 09:41:10 -0700 To: Daniel Mrzyglod References: <20170705152747.55807-1-danielx.t.mrzyglod@intel.com> Cc: dev@dpdk.org From: Declan Doherty Message-ID: Date: Wed, 5 Jul 2017 17:41:10 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 In-Reply-To: <20170705152747.55807-1-danielx.t.mrzyglod@intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH] test/bonding: fix namespace bonding mode4 unit tests X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Jul 2017 16:41:13 -0000 On 05/07/2017 4:27 PM, Daniel Mrzyglod wrote: > ring network driver is limited to 32 characters > the name of device was extened to net_ring_unit_test_mode4_slave_0 which is 33 > > Fixes: 5e41ab250dfa ("app/test: unit tests for bonding mode 4") > > Signed-off-by: Daniel Mrzyglod > --- > test/test/test_link_bonding_mode4.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/test/test/test_link_bonding_mode4.c b/test/test/test_link_bonding_mode4.c > index c6745e8..8b64bbf 100644 > --- a/test/test/test_link_bonding_mode4.c > +++ b/test/test/test_link_bonding_mode4.c > @@ -73,11 +73,11 @@ > #define MAX_PKT_BURST (32) > #define DEF_PKT_BURST (16) > > -#define BONDED_DEV_NAME ("unit_test_mode4_bond_dev") > +#define BONDED_DEV_NAME ("ut_mode4_bond_dev") > > -#define SLAVE_DEV_NAME_FMT ("unit_test_mode4_slave_%d") > -#define SLAVE_RX_QUEUE_FMT ("unit_test_mode4_slave_%d_rx") > -#define SLAVE_TX_QUEUE_FMT ("unit_test_mode4_slave_%d_tx") > +#define SLAVE_DEV_NAME_FMT ("ut_mode4_slave_%d") > +#define SLAVE_RX_QUEUE_FMT ("ut_mode4_slave_%d_rx") > +#define SLAVE_TX_QUEUE_FMT ("ut_mode4_slave_%d_tx") > > #define INVALID_SOCKET_ID (-1) > #define INVALID_PORT_ID (0xFF) > Acked-by: Declan Doherty