From owner-cvs-src-old@FreeBSD.ORG Thu Jun 18 21:24:35 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1E05110657C3 for ; Thu, 18 Jun 2009 21:24:35 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0B5FA8FC1A for ; Thu, 18 Jun 2009 21:24:35 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n5ILOY25050793 for ; Thu, 18 Jun 2009 21:24:34 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n5ILOYee050792 for cvs-src-old@freebsd.org; Thu, 18 Jun 2009 21:24:34 GMT (envelope-from jhb@repoman.freebsd.org) Message-Id: <200906182124.n5ILOYee050792@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jhb@repoman.freebsd.org using -f From: John Baldwin Date: Thu, 18 Jun 2009 21:24:23 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_6 Subject: cvs commit: src/sys/netinet tcp_output.c tcp_timer.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Jun 2009 21:24:35 -0000 jhb 2009-06-18 21:24:23 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet tcp_output.c tcp_timer.c Log: SVN rev 194463 on 2009-06-18 21:24:23Z by jhb MFC: Fix overflow edge cases with comparing ticks to t_rcvtime including fixing the TCP keepalive timer to work properly when ticks overflows from INT_MAX to INT_MIN. Note that to preserve the ABI this change just downcasts t_rcvtime to an int when it is subtracted from ticks rather than changing the type of t_rcvtime. Revision Changes Path 1.112.2.3 +1 -1 src/sys/netinet/tcp_output.c 1.74.2.6 +4 -4 src/sys/netinet/tcp_timer.c