From mboxrd@z Thu Jan 1 00:00:00 1970 From: Roman Mashak Subject: Re: [PATCH v2 iproute2 1/1] ss: add missing path MTU parameter Date: Fri, 15 Dec 2017 08:58:53 -0500 Message-ID: <85fu8cum76.fsf@mojatatu.com> References: <1513281551-31687-1-git-send-email-mrv@mojatatu.com> <20171215094515.386f8e6f@elisabeth> Mime-Version: 1.0 Content-Type: text/plain Cc: stephen@networkplumber.org, netdev@vger.kernel.org, jhs@mojatatu.com To: Stefano Brivio Return-path: Received: from mail-it0-f47.google.com ([209.85.214.47]:45924 "EHLO mail-it0-f47.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755426AbdLON6z (ORCPT ); Fri, 15 Dec 2017 08:58:55 -0500 Received: by mail-it0-f47.google.com with SMTP id z6so19673996iti.4 for ; Fri, 15 Dec 2017 05:58:55 -0800 (PST) In-Reply-To: <20171215094515.386f8e6f@elisabeth> (Stefano Brivio's message of "Fri, 15 Dec 2017 09:45:15 +0100") Sender: netdev-owner@vger.kernel.org List-ID: Stefano Brivio writes: > 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. Oh I see why it does not apply, I'll resubmit. Thanks Stefano.