From owner-cvs-src-old@FreeBSD.ORG Tue Oct 28 14:16:38 2008 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 4A6EE106566B for ; Tue, 28 Oct 2008 14:16:38 +0000 (UTC) (envelope-from oleg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3A9DD8FC0C for ; Tue, 28 Oct 2008 14:16:38 +0000 (UTC) (envelope-from oleg@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 m9SEGbU6024489 for ; Tue, 28 Oct 2008 14:16:37 GMT (envelope-from oleg@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id m9SEGaip024488 for cvs-src-old@freebsd.org; Tue, 28 Oct 2008 14:16:36 GMT (envelope-from oleg@repoman.freebsd.org) Message-Id: <200810281416.m9SEGaip024488@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to oleg@repoman.freebsd.org using -f From: Oleg Bulyzhin Date: Tue, 28 Oct 2008 14:14:57 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src UPDATING src/sys/netinet ip_dummynet.h 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: Tue, 28 Oct 2008 14:16:38 -0000 oleg 2008-10-28 14:14:57 UTC FreeBSD src repository Modified files: . UPDATING sys/netinet ip_dummynet.h Log: SVN rev 184414 on 2008-10-28 14:14:57Z by oleg Type of q_time (start of queue idle time) has changed: uint32_t -> uint64_t. This should fix q_time overflow, which happens after 2^32/(86400*hz) days of uptime (~50days for hz = 1000). q_time overflow cause following: - traffic shaping may not work in 'fast' mode (not enabled by default). - incorrect average queue length calculation in RED/GRED algorithm. NB: due to ABI change this change is not applicable to stable. PR: kern/128401 Revision Changes Path 1.546 +3 -0 src/UPDATING 1.42 +1 -1 src/sys/netinet/ip_dummynet.h