Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 27 Aug 2010 21:52:05 +0000 (UTC)
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r211901 - stable/8/sys/netinet
Message-ID:  <201008272152.o7RLq5jo008684@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bz
Date: Fri Aug 27 21:52:05 2010
New Revision: 211901
URL: http://svn.freebsd.org/changeset/base/211901

Log:
  MFC r211451:
  
    When calculating the expected memory size for userspace, also take the
    number of syncache entries into account for the surplus we add to account
    for a possible increase of records in the re-entry window.
  
    Discussed with:		jhb, silby

Modified:
  stable/8/sys/netinet/tcp_subr.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/netinet/tcp_subr.c
==============================================================================
--- stable/8/sys/netinet/tcp_subr.c	Fri Aug 27 21:31:15 2010	(r211900)
+++ stable/8/sys/netinet/tcp_subr.c	Fri Aug 27 21:52:05 2010	(r211901)
@@ -1018,7 +1018,7 @@ tcp_pcblist(SYSCTL_HANDLER_ARGS)
 	if (req->oldptr == NULL) {
 		m = syncache_pcbcount();
 		n = V_tcbinfo.ipi_count;
-		n += imax(n / 8, 10);
+		n += imax((m + n) / 8, 10);
 		req->oldidx = 2 * (sizeof xig) +
 		    (m + n) * sizeof(struct xtcpcb);
 		return (0);



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