From owner-p4-projects@FreeBSD.ORG Tue Nov 6 04:41:25 2007 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id A4ABC16A41B; Tue, 6 Nov 2007 04:41:25 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 54B7F16A418 for ; Tue, 6 Nov 2007 04:41:25 +0000 (UTC) (envelope-from kmacy@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3803313C494 for ; Tue, 6 Nov 2007 04:41:25 +0000 (UTC) (envelope-from kmacy@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 lA64fPqB082232 for ; Tue, 6 Nov 2007 04:41:25 GMT (envelope-from kmacy@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id lA64fPPQ082229 for perforce@freebsd.org; Tue, 6 Nov 2007 04:41:25 GMT (envelope-from kmacy@freebsd.org) Date: Tue, 6 Nov 2007 04:41:25 GMT Message-Id: <200711060441.lA64fPPQ082229@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to kmacy@freebsd.org using -f From: Kip Macy To: Perforce Change Reviews Cc: Subject: PERFORCE change 128721 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Nov 2007 04:41:25 -0000 http://perforce.freebsd.org/chv.cgi?CH=128721 Change 128721 by kmacy@kmacy:storage:toestack on 2007/11/06 04:40:51 add pointer to name of congestion control algorithm this may seem odd, but the intent is that the system can have an arbitrary number of dynamically added or removed congestion control modules Affected files ... .. //depot/projects/toestack/sys/netinet/tcp_var.h#6 edit Differences ... ==== //depot/projects/toestack/sys/netinet/tcp_var.h#6 (text+ko) ==== @@ -209,6 +209,7 @@ int rfbuf_cnt; /* recv buffer autoscaling byte count */ struct toe_usrreqs *t_tu; /* offload operations vector */ void *t_toe; + char *t_cong_control; /* congestion control algorithm name*/ }; #define IN_FASTRECOVERY(tp) (tp->t_flags & TF_FASTRECOVERY)