From owner-freebsd-current@freebsd.org Fri Aug 26 12:06:35 2016 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D4E9EA93BD8 for ; Fri, 26 Aug 2016 12:06:35 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9A66CE03 for ; Fri, 26 Aug 2016 12:06:35 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost.zedat.fu-berlin.de (Exim 4.85) for freebsd-current@freebsd.org with esmtps (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (envelope-from ) id <1bdFty-003Pzp-Qg>; Fri, 26 Aug 2016 14:06:26 +0200 Received: from p578a69f9.dip0.t-ipconnect.de ([87.138.105.249] helo=freyja.zeit4.iv.bundesimmobilien.de) by inpost2.zedat.fu-berlin.de (Exim 4.85) for freebsd-current@freebsd.org with esmtpsa (TLSv1.2:AES256-GCM-SHA384:256) (envelope-from ) id <1bdFty-000FRc-I8>; Fri, 26 Aug 2016 14:06:26 +0200 Date: Fri, 26 Aug 2016 14:06:19 +0200 From: "O. Hartmann" To: freebsd-current Subject: r304844: compiler error: fastpath.c:1088:39: error: too few arguments to function call, expected 4, have 3 Message-ID: <20160826140619.4d483c5c@freyja.zeit4.iv.bundesimmobilien.de> Organization: FU Berlin X-Mailer: Claws Mail 3.14.0 (GTK+ 2.24.29; amd64-portbld-freebsd12.0) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Originating-IP: 87.138.105.249 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Aug 2016 12:06:35 -0000 Recent CURRENT as of r304844 fails to compile a kernel due to the error shown below. [...] ===> syscons/snake (all) --- all_subdir_tcp/fastpath --- cc_ack_received(tp, th, CC_ACK); ~~~~~~~~~~~~~~~ ^ /usr/src/sys/netinet/tcp_var.h:786:1: note: 'cc_ack_received' declared here void cc_ack_received(struct tcpcb *tp, struct tcphdr *th, ^ /usr/src/sys/modules/tcp/fastpath/../../../netinet/tcp_stacks/fastpath.c:1088:39: error: too few arguments to function call, expected 4, have 3 cc_ack_received(tp, th, CC_DUPACK); [...] regards, oh