From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefano Brivio Subject: Re: [PATCH v2 iproute2 1/1] ss: add missing path MTU parameter Date: Fri, 15 Dec 2017 09:45:15 +0100 Message-ID: <20171215094515.386f8e6f@elisabeth> References: <1513281551-31687-1-git-send-email-mrv@mojatatu.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: stephen@networkplumber.org, netdev@vger.kernel.org, jhs@mojatatu.com To: Roman Mashak Return-path: Received: from mx1.redhat.com ([209.132.183.28]:46476 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753744AbdLOIpY (ORCPT ); Fri, 15 Dec 2017 03:45:24 -0500 In-Reply-To: <1513281551-31687-1-git-send-email-mrv@mojatatu.com> Sender: netdev-owner@vger.kernel.org List-ID: Hi Roman, On Thu, 14 Dec 2017 14:59:11 -0500 Roman Mashak wrote: > @@ -1959,6 +1960,8 @@ static void tcp_stats_print(struct tcpstat *s) > > if (s->mss) > printf(" mss:%d", s->mss); > + if (s->pmtu) > + printf(" pmtu:%u", s->pmtu); You'll simply need to change this to out() now, as this print will be buffered. -- Stefano