From owner-cvs-all@FreeBSD.ORG Sat Nov 17 21:54:58 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E13EB16A41A; Sat, 17 Nov 2007 21:54:57 +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 BD6A313C455; Sat, 17 Nov 2007 21:54:57 +0000 (UTC) (envelope-from oleg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id lAHLsvx1040487; Sat, 17 Nov 2007 21:54:57 GMT (envelope-from oleg@repoman.freebsd.org) Received: (from oleg@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id lAHLsvJw040486; Sat, 17 Nov 2007 21:54:57 GMT (envelope-from oleg) Message-Id: <200711172154.lAHLsvJw040486@repoman.freebsd.org> From: Oleg Bulyzhin Date: Sat, 17 Nov 2007 21:54:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet ip_dummynet.c src/sbin/ipfw ipfw.8 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Nov 2007 21:54:59 -0000 oleg 2007-11-17 21:54:57 UTC FreeBSD src repository Modified files: sys/netinet ip_dummynet.c sbin/ipfw ipfw.8 Log: - New sysctl variable: net.inet.ip.dummynet.io_fast If it is set to zero value (default) dummynet module will try to emulate real link as close as possible (bandwidth & latency): packet will not leave pipe faster than it should be on real link with given bandwidth. (This is original behaviour of dummynet which was altered in previous commit) If it is set to non-zero value only bandwidth is enforced: packet's latency can be lower comparing to real link with given bandwidth. - Document recently introduced dummynet(4) sysctl variables. Requested by: luigi, julian MFC after: 3 month Revision Changes Path 1.206 +19 -1 src/sbin/ipfw/ipfw.8 1.113 +6 -3 src/sys/netinet/ip_dummynet.c