From owner-svn-src-head@FreeBSD.ORG Sun Sep 28 17:09:40 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DADA85BF; Sun, 28 Sep 2014 17:09:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 C7CFECDA; Sun, 28 Sep 2014 17:09:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8SH9eIV047461; Sun, 28 Sep 2014 17:09:40 GMT (envelope-from bz@FreeBSD.org) Received: (from bz@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8SH9e0Y047460; Sun, 28 Sep 2014 17:09:40 GMT (envelope-from bz@FreeBSD.org) Message-Id: <201409281709.s8SH9e0Y047460@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bz set sender to bz@FreeBSD.org using -f From: "Bjoern A. Zeeb" Date: Sun, 28 Sep 2014 17:09:40 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r272261 - head/sys/net X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Sep 2014 17:09:41 -0000 Author: bz Date: Sun Sep 28 17:09:40 2014 New Revision: 272261 URL: http://svnweb.freebsd.org/changeset/base/272261 Log: Move the unconditional #include of net/ifq.h to the very end of file. This seems to allow us to pass a universe with either clang or gcc after r272244 (and r272260) and probably makes it easier to untabgle these chained #includes in the future. Modified: head/sys/net/if_var.h Modified: head/sys/net/if_var.h ============================================================================== --- head/sys/net/if_var.h Sun Sep 28 15:38:21 2014 (r272260) +++ head/sys/net/if_var.h Sun Sep 28 17:09:40 2014 (r272261) @@ -249,8 +249,6 @@ struct ifnet { */ }; -#include /* XXXAO: temporary unconditional include */ - /* for compatibility with other BSDs */ #define if_addrlist if_addrhead #define if_list if_link @@ -608,4 +606,7 @@ int ether_poll_deregister(if_t ifp); #endif /* DEVICE_POLLING */ #endif /* _KERNEL */ + +#include /* XXXAO: temporary unconditional include */ + #endif /* !_NET_IF_VAR_H_ */