From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id 17AC429C8 for ; Fri, 21 Jul 2017 08:42:30 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 45A9520AD3; Fri, 21 Jul 2017 02:42:29 -0400 (EDT) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Fri, 21 Jul 2017 02:42:29 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc:x-sasl-enc; s=mesmtp; bh=eMGfzELFg1aUZHp 9m1wUUsjEYa0zoypErxyEiLCHWp4=; b=PWd12CsSccGl3TbsN+CitGSf0c9qUDW kdLSEIESCUuYW1gfKiAGuDRXt2NwN/oKrL9KPBhdUj4KazRH55rf83gRc87m2a02 pyJ22ZmX4X1XPpXakxCrkOmmRLvkzNdKuNPBgvhTFGv4RMRGS4zUhC4CyXtMzNYQ yZXHV3fbdHeQ= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc:x-sasl-enc; s= fm1; bh=eMGfzELFg1aUZHp9m1wUUsjEYa0zoypErxyEiLCHWp4=; b=gLuE4hYU 8caWs8t0QPM/1ttsea/aY+U20o9BvifRh7nT5sjKkE+TKDUWvgufo+rUeMkvK3DE sb0xUIW+2KXl1IffgKdgDj3Xac0dvfRnc+57aqt7aCrQbubWU1JODyYBtIVaj5Sp NNC9PS44sYofImRXx/sBltnUur82VdGyCNOFb3yxCSc2YxouE90m5EZoodDHv9xs WhsnBwd0boIP5jm4u4AlwzpFPG2wcih8HS448skax++8yfod/tUd+3tZryvdgOES NDoxd2yVE9q27NHUAGWeFeSsucCfizRdJkeKkt9M1lw5br+dJ7KEwUSFDthW330L IeXSmfEg2dVjEw== X-ME-Sender: X-Sasl-enc: ZT80d7Xk29OQAmz8i6h7FqLDbHy4+M9EeylVOeL73B4i 1500619348 Received: from xps.localnet (unknown [37.169.141.147]) by mail.messagingengine.com (Postfix) with ESMTPA id 56AAA7E322; Fri, 21 Jul 2017 02:42:28 -0400 (EDT) From: Thomas Monjalon To: Declan Doherty Cc: dev@dpdk.org, Jianbo Liu , Herbert Guan Date: Fri, 21 Jul 2017 09:42:26 +0300 Message-ID: <4587531.0fQc3qA4qG@xps> In-Reply-To: References: <1499932836-25309-1-git-send-email-herbert.guan@arm.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] test: fix the parameter issue of test case 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: Fri, 21 Jul 2017 06:42:30 -0000 Declan, you are the bonding maintainer, please confirm this fix. 13/07/2017 11:48, Jianbo Liu: > On 13 July 2017 at 16:00, Herbert Guan wrote: > > When test case "test_balance_l23_tx_burst_ipv4_toggle_ip_addr" is > > calling balance_l23_tx_burst(), the ip_addr instead of mac_addr > > should be toggled according to the test name. > > > > Signed-off-by: Herbert Guan > > --- > > test/test/test_link_bonding.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/test/test/test_link_bonding.c b/test/test/test_link_bonding.c > > index aa2a1a2..12dd91d 100644 > > --- a/test/test/test_link_bonding.c > > +++ b/test/test/test_link_bonding.c > > @@ -2789,7 +2789,7 @@ struct rte_fdir_conf fdir_conf = { > > static int > > test_balance_l23_tx_burst_ipv4_toggle_ip_addr(void) > > { > > - return balance_l23_tx_burst(0, 1, 1, 0); > > + return balance_l23_tx_burst(0, 1, 0, 1); > > } > > > > static int > > -- > > 1.8.3.1 > > > > Acked-by: Jianbo Liu >