From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 346791B4AA for ; Thu, 29 Nov 2018 14:20:54 +0100 (CET) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 5DC413001563; Thu, 29 Nov 2018 13:20:53 +0000 (UTC) Received: from ktraynor.remote.csb (ovpn-117-230.ams2.redhat.com [10.36.117.230]) by smtp.corp.redhat.com (Postfix) with ESMTP id D261B1851E; Thu, 29 Nov 2018 13:20:51 +0000 (UTC) From: Kevin Traynor To: Radu Nicolau Cc: Bernard Iremonger , dpdk stable Date: Thu, 29 Nov 2018 13:19:17 +0000 Message-Id: <20181129132044.7450-1-ktraynor@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.46]); Thu, 29 Nov 2018 13:20:53 +0000 (UTC) Subject: [dpdk-stable] patch 'app/testpmd: fix port status for new bonded devices' has been queued to stable release 18.08.1 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Nov 2018 13:20:54 -0000 Hi, FYI, your patch has been queued to stable release 18.08.1 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 12/08/18. So please shout if anyone has objections. Also note that after the patch there's a diff of the upstream commit vs the patch applied to the branch. If the code is different (ie: not only metadata diffs), due for example to a change in context or macro names, please double check it. Thanks. Kevin Traynor --- >>From 6dc9c99588a04768873c8b2d50c6e157c4ef83cf Mon Sep 17 00:00:00 2001 From: Radu Nicolau Date: Fri, 23 Nov 2018 11:12:29 +0000 Subject: [PATCH] app/testpmd: fix port status for new bonded devices [ backported from upstream commit 0ae8071784f353f426fd8ad9bbab2fe0ba39a670 ] Set port status to stopped for newly added devices. Fixes: 2950a769315e ("bond: testpmd support") Signed-off-by: Radu Nicolau Acked-by: Bernard Iremonger --- app/test-pmd/cmdline.c | 1 + 1 file changed, 1 insertion(+) diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c index 18612d763..d6046c6f1 100644 --- a/app/test-pmd/cmdline.c +++ b/app/test-pmd/cmdline.c @@ -5816,4 +5816,5 @@ static void cmd_create_bonded_device_parsed(void *parsed_result, reconfig(port_id, res->socket); rte_eth_promiscuous_enable(port_id); + ports[port_id].port_status = RTE_PORT_STOPPED; } -- 2.19.0