From owner-p4-projects@FreeBSD.ORG Thu Dec 13 02:48:34 2007 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id C250016A469; Thu, 13 Dec 2007 02:48:34 +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 45FD416A418 for ; Thu, 13 Dec 2007 02:48:34 +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 4488013C4EA for ; Thu, 13 Dec 2007 02:48:34 +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 lBD2mYxP031500 for ; Thu, 13 Dec 2007 02:48:34 GMT (envelope-from kmacy@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id lBD2mYwd031497 for perforce@freebsd.org; Thu, 13 Dec 2007 02:48:34 GMT (envelope-from kmacy@freebsd.org) Date: Thu, 13 Dec 2007 02:48:34 GMT Message-Id: <200712130248.lBD2mYwd031497@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 130784 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: Thu, 13 Dec 2007 02:48:35 -0000 http://perforce.freebsd.org/chv.cgi?CH=130784 Change 130784 by kmacy@kmacy:storage:toestack on 2007/12/13 02:48:05 fix compile breakage from IFC Affected files ... .. //depot/projects/toestack/sys/netinet/tcp_ofld.h#9 edit .. //depot/projects/toestack/sys/netinet/tcp_var.h#10 edit Differences ... ==== //depot/projects/toestack/sys/netinet/tcp_ofld.h#9 (text+ko) ==== @@ -3,7 +3,7 @@ #define tp_offload(tp) ((tp)->t_flags & TF_TOE) -#define SO_OFFLOADABLE(so) ((so->so_options & SO_NOOFFLOAD) == 0) +#define SO_OFFLOADABLE(so) ((so->so_options & SO_NO_OFFLOAD) == 0) int ofld_connect(struct socket *so, struct sockaddr *nam); int ofld_can_offload(struct tcpcb *tp, struct sockaddr *nam); ==== //depot/projects/toestack/sys/netinet/tcp_var.h#10 (text+ko) ==== @@ -207,7 +207,6 @@ int t_rttlow; /* smallest observerved RTT */ u_int32_t rfbuf_ts; /* recv buffer autoscaling timestamp */ int rfbuf_cnt; /* recv buffer autoscaling byte count */ - void *t_pspare[3]; /* toe usrreqs / toepcb * / congestion algo / vimage / 1 general use */ struct toe_usrreqs *t_tu; /* offload operations vector */ void *t_toe; /* TOE pcb pointer */ char *t_cong_control; /* congestion control algorithm name*/