Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 25 Oct 2019 22:15:21 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject:   svn commit: r354108 - in stable: 11/usr.bin/netstat 12/usr.bin/netstat
Message-ID:  <201910252215.x9PMFL2G069316@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhb
Date: Fri Oct 25 22:15:20 2019
New Revision: 354108
URL: https://svnweb.freebsd.org/changeset/base/354108

Log:
  MFC 353059: Restore description of packets dropped due to full reassembly queue.
  
  r265408 renamed tcps_rcvmemdrop to tcps_rcvreassfull and gave it a more
  specific description.  r279122 (libxo-ification) reverted that change.
  This commit brings it back, but with a small tweak to the description.

Modified:
  stable/12/usr.bin/netstat/inet.c
Directory Properties:
  stable/12/   (props changed)

Changes in other areas also in this revision:
Modified:
  stable/11/usr.bin/netstat/inet.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/12/usr.bin/netstat/inet.c
==============================================================================
--- stable/12/usr.bin/netstat/inet.c	Fri Oct 25 22:04:05 2019	(r354107)
+++ stable/12/usr.bin/netstat/inet.c	Fri Oct 25 22:15:20 2019	(r354108)
@@ -640,8 +640,8 @@ tcp_stats(u_long off, const char *name, int af1 __unus
 	    "{N:/discarded for bad header offset field%s}\n");
 	p1a(tcps_rcvshort, "\t\t{:discard-too-short/%ju} "
 	    "{N:discarded because packet too short}\n");
-	p1a(tcps_rcvmemdrop, "\t\t{:discard-memory-problems/%ju} "
-	    "{N:discarded due to memory problems}\n");
+	p1a(tcps_rcvreassfull, "\t\t{:discard-reassembly-queue-full/%ju} "
+	    "{N:discarded due to full reassembly queue}\n");
 	p(tcps_connattempt, "\t{:connection-requests/%ju} "
 	    "{N:/connection request%s}\n");
 	p(tcps_accepts, "\t{:connections-accepts/%ju} "



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910252215.x9PMFL2G069316>