From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 4541BA00E6 for ; Wed, 20 Mar 2019 14:49:40 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 10A165F44; Wed, 20 Mar 2019 14:49:40 +0100 (CET) Received: from dispatch1-us1.ppe-hosted.com (dispatch1-us1.ppe-hosted.com [148.163.129.52]) by dpdk.org (Postfix) with ESMTP id DCAEF568A; Wed, 20 Mar 2019 14:49:35 +0100 (CET) X-Virus-Scanned: Proofpoint Essentials engine Received: from webmail.solarflare.com (uk.solarflare.com [193.34.186.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (No client certificate requested) by mx1-us2.ppe-hosted.com (Proofpoint Essentials ESMTP Server) with ESMTPS id F191BA40097; Wed, 20 Mar 2019 13:49:33 +0000 (UTC) Received: from [192.168.38.17] (91.220.146.112) by ukex01.SolarFlarecom.com (10.17.10.4) with Microsoft SMTP Server (TLS) id 15.0.1395.4; Wed, 20 Mar 2019 13:49:27 +0000 To: David Marchand , CC: , , , , References: <1552318522-18777-1-git-send-email-david.marchand@redhat.com> <1553076154-3907-1-git-send-email-david.marchand@redhat.com> <1553076154-3907-2-git-send-email-david.marchand@redhat.com> From: Andrew Rybchenko Message-ID: <649bf41a-9a55-706c-f140-4ae1fa6e0086@solarflare.com> Date: Wed, 20 Mar 2019 16:49:24 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.5.1 MIME-Version: 1.0 In-Reply-To: <1553076154-3907-2-git-send-email-david.marchand@redhat.com> Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-GB X-Originating-IP: [91.220.146.112] X-ClientProxiedBy: ocex03.SolarFlarecom.com (10.20.40.36) To ukex01.SolarFlarecom.com (10.17.10.4) X-TM-AS-Product-Ver: SMEX-12.5.0.1300-8.5.1010-24500.003 X-TM-AS-Result: No-1.382800-8.000000-10 X-TMASE-MatchedRID: fgYTp5XatxZ2LasmHuCXMSa1MaKuob8PC/ExpXrHizyzrjcceM7LC7p6 uNXZtNFnGiHcq0WQFE4tXweg2cv0t9LDec/x7CA8Z1f+XQd5zc99LQinZ4QefL6qvLNjDYTwIq9 5DjCZh0wUGm4zriL0oQtuKBGekqUpUfEQFBqv0mfrku0fs8/Zz0Y1Q6cg0wCDuPlviJlbjECZA7 BgiYxzl3lTOoGKB7S8O2KCKvhEJvgeaHh5oNsvBt2Uy4aS6kDuOmDDv5hvfsOHzGTHoCwyHhlNK Sp2rPkW5wiX7RWZGYs2CWDRVNNHuzvP8/M0PjTtwL6SxPpr1/I= X-TM-AS-User-Approved-Sender: Yes X-TM-AS-User-Blocked-Sender: No X-TMASE-Result: 10-1.382800-8.000000 X-TMASE-Version: SMEX-12.5.0.1300-8.5.1010-24500.003 X-MDID: 1553089774-6mhjoUxXy_vI Subject: Re: [dpdk-stable] [PATCH v3 1/4] app/testpmd: add missing newline when showing statistics 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: , Errors-To: stable-bounces@dpdk.org Sender: "stable" On 3/20/19 1:02 PM, David Marchand wrote: > Having the standard stats and the rx burst stats on the same line gives a > really long line and is not consistent with the rest. > > Before: > RX-packets: 3542977 TX-packets: 3542971 TX-dropped: 6 RX-bursts : 499440 [24% of 2 pkts + 15% of 1 pkts + 61% of others] > TX-bursts : 499440 [24% of 2 pkts + 15% of 1 pkts + 61% of others] > > After: > RX-packets: 4629969 TX-packets: 4629969 TX-dropped: 0 > RX-bursts : 663328 [19% of 2 pkts + 17% of 3 pkts + 64% of others] > TX-bursts : 663328 [19% of 2 pkts + 17% of 3 pkts + 64% of others] > > Fixes: af75078fece3 ("first public release") > Cc: stable@dpdk.org > > Signed-off-by: David Marchand > Reviewed-by: Rami Rosen Reviewed-by: Andrew Rybchenko