From owner-svn-src-all@freebsd.org Sun Aug 14 18:30:31 2016 Return-Path: Delivered-To: svn-src-all@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 E6564BB94BD; Sun, 14 Aug 2016 18:30:31 +0000 (UTC) (envelope-from karels@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (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 B67FD1F85; Sun, 14 Aug 2016 18:30:31 +0000 (UTC) (envelope-from karels@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u7EIUUbk032201; Sun, 14 Aug 2016 18:30:30 GMT (envelope-from karels@FreeBSD.org) Received: (from karels@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7EIUU4r032200; Sun, 14 Aug 2016 18:30:30 GMT (envelope-from karels@FreeBSD.org) Message-Id: <201608141830.u7EIUU4r032200@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: karels set sender to karels@FreeBSD.org using -f From: Mike Karels Date: Sun, 14 Aug 2016 18:30:30 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-releng@freebsd.org Subject: svn commit: r304088 - releng/11.0/sys/netinet X-SVN-Group: releng MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Aug 2016 18:30:32 -0000 Author: karels Date: Sun Aug 14 18:30:30 2016 New Revision: 304088 URL: https://svnweb.freebsd.org/changeset/base/304088 Log: MFC r303978: Fix kernel build with TCP_RFC7413 option The current in_pcb.h includes route.h, which includes sockaddr structures. Including should require ; add it in the appropriate place. PR: 211385 Submitted by: Sergey Kandaurov and iron at mail.ua Reviewed by: gnn Approved by: gnn (mentor) Approved by: re (gjb) Modified: releng/11.0/sys/netinet/tcp_fastopen.c Directory Properties: releng/11.0/ (props changed) Modified: releng/11.0/sys/netinet/tcp_fastopen.c ============================================================================== --- releng/11.0/sys/netinet/tcp_fastopen.c Sun Aug 14 18:05:41 2016 (r304087) +++ releng/11.0/sys/netinet/tcp_fastopen.c Sun Aug 14 18:30:30 2016 (r304088) @@ -108,6 +108,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include