From owner-svn-src-all@FreeBSD.ORG Fri Nov 23 12:12:07 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9DE471EF; Fri, 23 Nov 2012 12:12:07 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 6842A8FC16; Fri, 23 Nov 2012 12:12:07 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qANCC7FY010334; Fri, 23 Nov 2012 12:12:07 GMT (envelope-from hrs@svn.freebsd.org) Received: (from hrs@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qANCC7xU010332; Fri, 23 Nov 2012 12:12:07 GMT (envelope-from hrs@svn.freebsd.org) Message-Id: <201211231212.qANCC7xU010332@svn.freebsd.org> From: Hiroki Sato Date: Fri, 23 Nov 2012 12:12:07 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r243443 - in head: . sys/sys X-SVN-Group: head 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.14 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: Fri, 23 Nov 2012 12:12:07 -0000 Author: hrs Date: Fri Nov 23 12:12:06 2012 New Revision: 243443 URL: http://svnweb.freebsd.org/changeset/base/243443 Log: Document sin6_scope_id handling change and bump FreeBSD_version to 1000025. Modified: head/UPDATING head/sys/sys/param.h Modified: head/UPDATING ============================================================================== --- head/UPDATING Fri Nov 23 11:23:15 2012 (r243442) +++ head/UPDATING Fri Nov 23 12:12:06 2012 (r243443) @@ -24,6 +24,14 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20121117: + The sin6_scope_id member variable in struct sockaddr_in6 is now + filled by the kernel before passing the structure to the userland via + sysctl or routing socket. This means the KAME-specific embedded scope + id in sin6_addr.s6_addr[2] is always cleared in userland application. + This behavior can be controlled by net.inet6.ip6.deembed_scopeid. + __FreeBSD_version is bumped to 1000025. + 20121105: On i386 and amd64 systems WITH_CLANG_IS_CC is now the default. This means that the world and kernel will be compiled with clang Modified: head/sys/sys/param.h ============================================================================== --- head/sys/sys/param.h Fri Nov 23 11:23:15 2012 (r243442) +++ head/sys/sys/param.h Fri Nov 23 12:12:06 2012 (r243443) @@ -58,7 +58,7 @@ * in the range 5 to 9. */ #undef __FreeBSD_version -#define __FreeBSD_version 1000024 /* Master, propagated to newvers */ +#define __FreeBSD_version 1000025 /* Master, propagated to newvers */ /* * __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD,