From owner-svn-src-projects@FreeBSD.ORG Sun Dec 30 00:05:42 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 181C9FB4; Sun, 30 Dec 2012 00:05:42 +0000 (UTC) (envelope-from linimon@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 EFE868FC0C; Sun, 30 Dec 2012 00:05:41 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBU05fJC077471; Sun, 30 Dec 2012 00:05:41 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBU05fvN077470; Sun, 30 Dec 2012 00:05:41 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201212300005.qBU05fvN077470@svn.freebsd.org> From: Mark Linimon Date: Sun, 30 Dec 2012 00:05:41 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244840 - projects/portbuild/qmanager X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Dec 2012 00:05:42 -0000 Author: linimon (doc,ports committer) Date: Sun Dec 30 00:05:41 2012 New Revision: 244840 URL: http://svnweb.freebsd.org/changeset/base/244840 Log: Try to wean qmanager off its dependence on root. Modified: projects/portbuild/qmanager/qmanager.py Modified: projects/portbuild/qmanager/qmanager.py ============================================================================== --- projects/portbuild/qmanager/qmanager.py Sat Dec 29 22:26:01 2012 (r244839) +++ projects/portbuild/qmanager/qmanager.py Sun Dec 30 00:05:41 2012 (r244840) @@ -72,6 +72,12 @@ CONFIG_FILENAME="server.conf" config = getConfig( pbc, CONFIG_SUBDIR, CONFIG_FILENAME ) QMANAGER_SOCKET_FILE = config.get( 'QMANAGER_SOCKET_FILE' ) +PORTBUILD_USER = config.get( 'PORTBUILD_USER' ) + +# added 20121229 as a fallback. no longer recommended! +portbuild_uid = 0 +if PORTBUILD_USER: + portbuild_uid = getuidbyname( PORTBUILD_USER ) DEBUG = False VERBOSE = False @@ -132,7 +138,7 @@ class Worker(object): def do_add(self, conn): """ Add a machine """ - if conn.uid != 0: + if conn.uid != portbuild_uid: conn.send(408) return @@ -161,7 +167,7 @@ class Worker(object): def do_delete(self, conn): """ Delete a machine """ - if conn.uid != 0: + if conn.uid != portbuild_uid: conn.send(408) return @@ -187,7 +193,7 @@ class Worker(object): def do_update(self, conn): """ Update a machine """ - if conn.uid != 0: + if conn.uid != portbuild_uid: conn.send(408) return @@ -233,7 +239,8 @@ class Worker(object): def do_add_acl(self, conn): """ Add an ACL """ - if conn.uid != 0: + print conn.uid + if conn.uid != portbuild_uid: conn.send(408) return @@ -260,7 +267,7 @@ class Worker(object): def do_update_acl(self, conn): """ Update an ACL """ - if conn.uid != 0: + if conn.uid != portbuild_uid: conn.send(408) return @@ -306,7 +313,7 @@ class Worker(object): def do_del_acl(self, conn): """ Delete an ACL """ - if conn.uid != 0: + if conn.uid != portbuild_uid: conn.send(408) return @@ -388,11 +395,11 @@ class Worker(object): return try: - if job.owner != conn.uid and conn.uid != 0: + if job.owner != conn.uid and conn.uid != portbuild_uid: conn.send(408) return except Exception, e: - print "would have failed at 'if job.owner != conn.uid and conn.uid != 0'" + print "would have failed at 'if job.owner != conn.uid and conn.uid != portbuild_uid'" print e try: print job From owner-svn-src-projects@FreeBSD.ORG Sun Dec 30 00:23:12 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 485042E3; Sun, 30 Dec 2012 00:23:12 +0000 (UTC) (envelope-from linimon@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 22C728FC14; Sun, 30 Dec 2012 00:23:12 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBU0NCU8081063; Sun, 30 Dec 2012 00:23:12 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBU0NB41081060; Sun, 30 Dec 2012 00:23:11 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201212300023.qBU0NB41081060@svn.freebsd.org> From: Mark Linimon Date: Sun, 30 Dec 2012 00:23:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244841 - projects/portbuild/etc/rc.d X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Dec 2012 00:23:12 -0000 Author: linimon (doc,ports committer) Date: Sun Dec 30 00:23:11 2012 New Revision: 244841 URL: http://svnweb.freebsd.org/changeset/base/244841 Log: Rename these scripts in accordance of how rc.d really works. Added: projects/portbuild/etc/rc.d/buildproxy - copied unchanged from r244836, projects/portbuild/etc/rc.d/buildproxy.sh projects/portbuild/etc/rc.d/pollmachine - copied unchanged from r244836, projects/portbuild/etc/rc.d/pollmachine.sh projects/portbuild/etc/rc.d/qmanager - copied unchanged from r244836, projects/portbuild/etc/rc.d/qmanager.sh Deleted: projects/portbuild/etc/rc.d/buildproxy.sh projects/portbuild/etc/rc.d/pollmachine.sh projects/portbuild/etc/rc.d/qmanager.sh Copied: projects/portbuild/etc/rc.d/buildproxy (from r244836, projects/portbuild/etc/rc.d/buildproxy.sh) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/portbuild/etc/rc.d/buildproxy Sun Dec 30 00:23:11 2012 (r244841, copy of r244836, projects/portbuild/etc/rc.d/buildproxy.sh) @@ -0,0 +1,32 @@ +#!/bin/sh +export PATH=/usr/local/bin:${PATH} + +pb=/var/portbuild +config_file=${pb}/conf/server.conf + +if [ ! -f ${config_file} ]; then + echo "$0: ${config_file} must exist!" + exit 1 +fi + +. ${config_file} + +case $1 in + start) + s=${pb}/scripts/buildproxy + if [ -x $s ]; then + running=`ps ax | grep -v grep | grep $s` + if [ -z "${running}" ]; then + ${s} & + echo -n ' buildproxy' + else + echo "buildproxy already running" + fi + fi + + ;; + stop) + # XXX + ;; +esac +echo Copied: projects/portbuild/etc/rc.d/pollmachine (from r244836, projects/portbuild/etc/rc.d/pollmachine.sh) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/portbuild/etc/rc.d/pollmachine Sun Dec 30 00:23:11 2012 (r244841, copy of r244836, projects/portbuild/etc/rc.d/pollmachine.sh) @@ -0,0 +1,32 @@ +#!/bin/sh +export PATH=/usr/local/bin:${PATH} + +pb=/var/portbuild +config_file=${pb}/conf/server.conf + +if [ ! -f ${config_file} ]; then + echo "$0: ${config_file} must exist!" + exit 1 +fi + +. ${config_file} + +case $1 in + start) + s=${pb}/scripts/pollmachine + if [ -x $s ]; then + running=`ps ax | grep -v grep | grep $s` + if [ -z "${running}" ]; then + ${s} -daemon ${SUPPORTED_ARCHS} & + echo -n ' pollmachine' + else + echo "pollmachine already running" + fi + fi + + ;; + stop) + # XXX + ;; +esac +echo Copied: projects/portbuild/etc/rc.d/qmanager (from r244836, projects/portbuild/etc/rc.d/qmanager.sh) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/portbuild/etc/rc.d/qmanager Sun Dec 30 00:23:11 2012 (r244841, copy of r244836, projects/portbuild/etc/rc.d/qmanager.sh) @@ -0,0 +1,32 @@ +#!/bin/sh +export PATH=/usr/local/bin:${PATH} + +pb=/var/portbuild +config_file=${pb}/conf/server.conf + +if [ ! -f ${config_file} ]; then + echo "$0: ${config_file} must exist!" + exit 1 +fi + +. ${config_file} + +case $1 in + start) + s=${pb}/qmanager/qmanager.py + if [ -x $s ]; then + running=`ps ax | grep -v grep | grep $s` + if [ -z "${running}" ]; then + ${s} & + echo -n ' qmanager' + else + echo "qmanager already running" + fi + fi + + ;; + stop) + # XXX + ;; +esac +echo From owner-svn-src-projects@FreeBSD.ORG Sun Dec 30 00:25:16 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 56F433FE; Sun, 30 Dec 2012 00:25:16 +0000 (UTC) (envelope-from linimon@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 39E7F8FC08; Sun, 30 Dec 2012 00:25:16 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBU0PGq4081373; Sun, 30 Dec 2012 00:25:16 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBU0PFpd081367; Sun, 30 Dec 2012 00:25:15 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201212300025.qBU0PFpd081367@svn.freebsd.org> From: Mark Linimon Date: Sun, 30 Dec 2012 00:25:15 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244842 - projects/portbuild/etc/rc.d X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Dec 2012 00:25:16 -0000 Author: linimon (doc,ports committer) Date: Sun Dec 30 00:25:15 2012 New Revision: 244842 URL: http://svnweb.freebsd.org/changeset/base/244842 Log: Continue the process of weaning these things off uid root. buildproxy, by definition, still runs as root, but its whole existance is in the crosshairs. Modified: projects/portbuild/etc/rc.d/buildproxy projects/portbuild/etc/rc.d/pollmachine projects/portbuild/etc/rc.d/qmanager Modified: projects/portbuild/etc/rc.d/buildproxy ============================================================================== --- projects/portbuild/etc/rc.d/buildproxy Sun Dec 30 00:23:11 2012 (r244841) +++ projects/portbuild/etc/rc.d/buildproxy Sun Dec 30 00:25:15 2012 (r244842) @@ -1,4 +1,7 @@ #!/bin/sh +# +# installed by the portbuild application +# export PATH=/usr/local/bin:${PATH} pb=/var/portbuild Modified: projects/portbuild/etc/rc.d/pollmachine ============================================================================== --- projects/portbuild/etc/rc.d/pollmachine Sun Dec 30 00:23:11 2012 (r244841) +++ projects/portbuild/etc/rc.d/pollmachine Sun Dec 30 00:25:15 2012 (r244842) @@ -1,4 +1,7 @@ #!/bin/sh +# +# installed by the portbuild application +# export PATH=/usr/local/bin:${PATH} pb=/var/portbuild @@ -8,6 +11,10 @@ if [ ! -f ${config_file} ]; then echo "$0: ${config_file} must exist!" exit 1 fi +if [ -z "${PORTBUILD_USER}" ]; then + echo "$0: You must define PORTBUILD_USER in ${config_file}." + exit 1 +fi . ${config_file} @@ -17,7 +24,7 @@ case $1 in if [ -x $s ]; then running=`ps ax | grep -v grep | grep $s` if [ -z "${running}" ]; then - ${s} -daemon ${SUPPORTED_ARCHS} & + su - ${PORTBUILD_USER} -c "${s} -daemon ${SUPPORTED_ARCHS}" & echo -n ' pollmachine' else echo "pollmachine already running" Modified: projects/portbuild/etc/rc.d/qmanager ============================================================================== --- projects/portbuild/etc/rc.d/qmanager Sun Dec 30 00:23:11 2012 (r244841) +++ projects/portbuild/etc/rc.d/qmanager Sun Dec 30 00:25:15 2012 (r244842) @@ -1,4 +1,7 @@ #!/bin/sh +# +# installed by the portbuild application +# export PATH=/usr/local/bin:${PATH} pb=/var/portbuild @@ -8,6 +11,10 @@ if [ ! -f ${config_file} ]; then echo "$0: ${config_file} must exist!" exit 1 fi +if [ -z "${PORTBUILD_USER}" ]; then + echo "$0: You must define PORTBUILD_USER in ${config_file}." + exit 1 +fi . ${config_file} @@ -17,7 +24,7 @@ case $1 in if [ -x $s ]; then running=`ps ax | grep -v grep | grep $s` if [ -z "${running}" ]; then - ${s} & + su - ${PORTBUILD_USER} -c "${s}" & echo -n ' qmanager' else echo "qmanager already running" From owner-svn-src-projects@FreeBSD.ORG Sun Dec 30 00:28:51 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6E3E2576; Sun, 30 Dec 2012 00:28:51 +0000 (UTC) (envelope-from linimon@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 524D48FC08; Sun, 30 Dec 2012 00:28:51 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBU0SpmP081883; Sun, 30 Dec 2012 00:28:51 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBU0SpsP081882; Sun, 30 Dec 2012 00:28:51 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201212300028.qBU0SpsP081882@svn.freebsd.org> From: Mark Linimon Date: Sun, 30 Dec 2012 00:28:51 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244843 - projects/portbuild/crontabs X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Dec 2012 00:28:51 -0000 Author: linimon (doc,ports committer) Date: Sun Dec 30 00:28:50 2012 New Revision: 244843 URL: http://svnweb.freebsd.org/changeset/base/244843 Log: Continue the de-orbit burn of the 'portmgr' user. Added: projects/portbuild/crontabs/portbuild - copied unchanged from r244836, projects/portbuild/crontabs/portmgr Deleted: projects/portbuild/crontabs/portmgr Copied: projects/portbuild/crontabs/portbuild (from r244836, projects/portbuild/crontabs/portmgr) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/portbuild/crontabs/portbuild Sun Dec 30 00:28:50 2012 (r244843, copy of r244836, projects/portbuild/crontabs/portmgr) @@ -0,0 +1,10 @@ +# DO NOT EDIT THIS FILE - edit the master and reinstall. +# (/tmp/crontab.GlSF7IFIHx installed on Tue Nov 20 19:57:41 2012) +# (Cron version -- $FreeBSD: release/9.0.0/usr.sbin/cron/crontab/crontab.c 185041 2008-11-18 00:39:50Z matteo $) +# +# portmgr crontab +# +SCRIPTS="/var/portbuild/scripts/" +ERRORLOGS="/var/portbuild/errorlogs/" +# +0,15,30,45 * * * * cd ${ERRORLOGS} && ${SCRIPTS}/dopackagestats From owner-svn-src-projects@FreeBSD.ORG Sun Dec 30 00:45:43 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5451B800; Sun, 30 Dec 2012 00:45:43 +0000 (UTC) (envelope-from linimon@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 38E168FC08; Sun, 30 Dec 2012 00:45:43 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBU0jhmv084328; Sun, 30 Dec 2012 00:45:43 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBU0jhFW084327; Sun, 30 Dec 2012 00:45:43 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201212300045.qBU0jhFW084327@svn.freebsd.org> From: Mark Linimon Date: Sun, 30 Dec 2012 00:45:43 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244844 - projects/portbuild/tools X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Dec 2012 00:45:43 -0000 Author: linimon (doc,ports committer) Date: Sun Dec 30 00:45:42 2012 New Revision: 244844 URL: http://svnweb.freebsd.org/changeset/base/244844 Log: Make this create a couple of directories. This is part of the removal of running things as root, which has access to /var/run. Modified: projects/portbuild/tools/mkportbuild Modified: projects/portbuild/tools/mkportbuild ============================================================================== --- projects/portbuild/tools/mkportbuild Sun Dec 30 00:28:50 2012 (r244843) +++ projects/portbuild/tools/mkportbuild Sun Dec 30 00:45:42 2012 (r244844) @@ -88,4 +88,14 @@ fi echo "checking out the repository ..." su -m ${PORTBUILD_USER} -c "${VCS_CHECKOUT_COMMAND} ${VCS_PORTBUILD_REPOSITORY} ${ZFS_MOUNTPOINT}/portbuild" || exit 1 -echo "$0: done. You should now be able to edit files in ${ZFS_MOUNTPOINT}/portbuild/conf." +echo "$0: you should now be able to edit files in ${ZFS_MOUNTPOINT}/portbuild/conf." + +# create convenience directories. failure is annoying but non-fatal. +extra_dirs="lockfiles log" +for extra_dir in ${extra_dirs}; do + if [ ! -d ${ZFS_MOUNTPOINT}/portbuild/${extra_dir} ]; then + su -m ${PORTBUILD_USER} -c "mkdir ${ZFS_MOUNTPOINT}/portbuild/${extra_dir}" + fi +done + +echo "$0: done." From owner-svn-src-projects@FreeBSD.ORG Sun Dec 30 00:47:31 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F0C1A923; Sun, 30 Dec 2012 00:47:30 +0000 (UTC) (envelope-from marcel@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 D347D8FC08; Sun, 30 Dec 2012 00:47:30 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBU0lUUe084595; Sun, 30 Dec 2012 00:47:30 GMT (envelope-from marcel@svn.freebsd.org) Received: (from marcel@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBU0lUdH084593; Sun, 30 Dec 2012 00:47:30 GMT (envelope-from marcel@svn.freebsd.org) Message-Id: <201212300047.qBU0lUdH084593@svn.freebsd.org> From: Marcel Moolenaar Date: Sun, 30 Dec 2012 00:47:30 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244845 - projects/altix2/sys/dev/isp X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Dec 2012 00:47:31 -0000 Author: marcel Date: Sun Dec 30 00:47:30 2012 New Revision: 244845 URL: http://svnweb.freebsd.org/changeset/base/244845 Log: o Convert the busdma_sync operations. o Improve busdma_mem_alloc buffer allocation. Modified: projects/altix2/sys/dev/isp/isp_freebsd.h projects/altix2/sys/dev/isp/isp_pci.c Modified: projects/altix2/sys/dev/isp/isp_freebsd.h ============================================================================== --- projects/altix2/sys/dev/isp/isp_freebsd.h Sun Dec 30 00:45:42 2012 (r244844) +++ projects/altix2/sys/dev/isp/isp_freebsd.h Sun Dec 30 00:47:30 2012 (r244845) @@ -427,22 +427,22 @@ switch (type) { \ case SYNC_SFORDEV: \ { \ struct isp_fc *fc = ISP_FC_PC(isp, chan); \ - busdma_sync(fc->tdmd, BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE); \ + busdma_sync(fc->tdmd, BUSDMA_SYNC_PREREAD|BUSDMA_SYNC_PREWRITE); \ break; \ } \ case SYNC_REQUEST: \ busdma_sync(isp->isp_osinfo.cdmd, \ - BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE); \ + BUSDMA_SYNC_PREREAD | BUSDMA_SYNC_PREWRITE); \ break; \ case SYNC_SFORCPU: \ { \ struct isp_fc *fc = ISP_FC_PC(isp, chan); \ - busdma_sync(fc->tdmd, BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE); \ + busdma_sync(fc->tdmd, BUSDMA_SYNC_POSTREAD|BUSDMA_SYNC_POSTWRITE); \ break; \ } \ case SYNC_RESULT: \ busdma_sync(isp->isp_osinfo.cdmd, \ - BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE); \ + BUSDMA_SYNC_POSTREAD | BUSDMA_SYNC_POSTWRITE); \ break; \ case SYNC_REG: \ bus_space_barrier(isp->isp_osinfo.bus_tag, \ Modified: projects/altix2/sys/dev/isp/isp_pci.c ============================================================================== --- projects/altix2/sys/dev/isp/isp_pci.c Sun Dec 30 00:45:42 2012 (r244844) +++ projects/altix2/sys/dev/isp/isp_pci.c Sun Dec 30 00:47:30 2012 (r244845) @@ -1451,6 +1451,10 @@ isp_pci_mbxdma(ispsoftc_t *isp) bus_size_t slim; /* segment size */ bus_addr_t llim; /* low limit of unavailable dma */ bus_addr_t hlim; /* high limit of unavailable dma */ + isp_ecmd_t *ecmd; + uintptr_t vaddr; + bus_addr_t busaddr; + size_t size; /* * Already been here? If so, leave... @@ -1590,15 +1594,45 @@ isp_pci_mbxdma(ispsoftc_t *isp) return (error); } - isp->isp_rquest = (void *)busdma_md_get_vaddr(isp->isp_osinfo.cdmd, 0); - isp->isp_rquest_dma = busdma_md_get_busaddr(isp->isp_osinfo.cdmd, 0); - isp->isp_result_dma = isp->isp_rquest_dma + ISP_QUEUE_SIZE(RQUEST_QUEUE_LEN(isp)); - isp->isp_result = (char *)isp->isp_rquest + ISP_QUEUE_SIZE(RQUEST_QUEUE_LEN(isp)); + busaddr = busdma_md_get_busaddr(isp->isp_osinfo.cdmd, 0); + vaddr = busdma_md_get_vaddr(isp->isp_osinfo.cdmd, 0); + size = busdma_md_get_size(isp->isp_osinfo.cdmd, 0); + isp_prt(isp, ISP_LOGDEBUG0, "request/result area @ 0x%jx/0x%jx", + (uintmax_t)busaddr, (uintmax_t)size); + + isp->isp_rquest = (void *)vaddr; + isp->isp_rquest_dma = busaddr; + size = ISP_QUEUE_SIZE(RQUEST_QUEUE_LEN(isp)); + busaddr += size; + vaddr += size; + + isp->isp_result = (void *)vaddr; + isp->isp_result_dma = busaddr; + size = ISP_QUEUE_SIZE(RESULT_QUEUE_LEN(isp)); + busaddr += size; + vaddr += size; + + if (isp->isp_type >= ISP_HA_FC_2300) { + isp->isp_osinfo.ecmd_base = (void *)vaddr; + isp->isp_osinfo.ecmd_dma = busaddr; + size = N_XCMDS * XCMD_SIZE; + busaddr += size; + vaddr += size; + + isp->isp_osinfo.ecmd_free = isp->isp_osinfo.ecmd_base; + for (ecmd = isp->isp_osinfo.ecmd_free; + ecmd < &isp->isp_osinfo.ecmd_free[N_XCMDS]; ecmd++) { + if (ecmd == &isp->isp_osinfo.ecmd_free[N_XCMDS - 1]) + ecmd->next = NULL; + else + ecmd->next = ecmd + 1; + } + } #ifdef ISP_TARGET_MODE if (IS_24XX(isp)) { - isp->isp_atioq_dma = isp->isp_result_dma + ISP_QUEUE_SIZE(RESULT_QUEUE_LEN(isp)); - isp->isp_atioq = (char *)isp->isp_result + ISP_QUEUE_SIZE(RESULT_QUEUE_LEN(isp)); + isp->isp_atioq_dma = busaddr; + isp->isp_atioq = (void *)vaddr; } #endif @@ -1615,13 +1649,13 @@ isp_pci_mbxdma(ispsoftc_t *isp) busdma_tag_destroy(fc->tdmat); goto bad; } + busaddr = busdma_md_get_busaddr(fc->tdmd, 0); + size = busdma_md_get_size(fc->tdmd, 0); + vaddr = busdma_md_get_vaddr(fc->tdmd, 0); isp_prt(isp, ISP_LOGDEBUG0, "scdma @ 0x%jx/0x%jx", - (uintmax_t)busdma_md_get_busaddr(fc->tdmd, 0), - (uintmax_t)busdma_md_get_size(fc->tdmd, 0)); - FCPARAM(isp, cmap)->isp_scdma = - busdma_md_get_busaddr(fc->tdmd, 0); - FCPARAM(isp, cmap)->isp_scratch = - (void *)busdma_md_get_vaddr(fc->tdmd, 0); + (uintmax_t)busaddr, (uintmax_t)size); + FCPARAM(isp, cmap)->isp_scdma = busaddr; + FCPARAM(isp, cmap)->isp_scratch = (void *)vaddr; if (isp->isp_type >= ISP_HA_FC_2300) { for (i = 0; i < INITIAL_NEXUS_COUNT; i++) { struct isp_nexus *n = malloc(sizeof (struct isp_nexus), M_DEVBUF, M_NOWAIT | M_ZERO); @@ -1689,7 +1723,6 @@ typedef struct { void *cmd_token; void *rq; /* original request */ int error; - bus_size_t mapsize; } mush_t; #define MUSHERR_NOQENTRIES -2 @@ -1714,9 +1747,8 @@ tdma_cb(void *arg, busdma_md_t md, int e csio = mp->cmd_token; isp = mp->isp; rq = mp->rq; - ddir = ISP_NOXFR; - nseg = busdma_md_get_nsegs(md); - if (nseg) { + if (md != NULL) { + nseg = busdma_md_get_nsegs(md); if (isp->isp_osinfo.sixtyfourbit) { if (nseg >= ISP_NSEG64_MAX) { isp_prt(isp, ISP_LOGERR, "number of segments (%d) exceed maximum we can support (%d)", nseg, ISP_NSEG64_MAX); @@ -1734,12 +1766,19 @@ tdma_cb(void *arg, busdma_md_t md, int e } } if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { - busdma_sync(PISP_PCMD(csio)->dmap, BUS_DMASYNC_PREWRITE); + busdma_sync(PISP_PCMD(csio)->dmap, + BUSDMA_SYNC_PREWRITE); ddir = ISP_TO_DEVICE; } else if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_OUT) { - busdma_sync(PISP_PCMD(csio)->dmap, BUS_DMASYNC_PREREAD); + busdma_sync(PISP_PCMD(csio)->dmap, BUSDMA_SYNC_PREREAD); ddir = ISP_FROM_DEVICE; + } else { + md = NULL; + ddir = ISP_NOXFR; } + } else { + md = NULL; + ddir = ISP_NOXFR; } error = isp_send_tgt_cmd(isp, rq, md, XS_XFRLEN(csio), ddir, &csio->sense_data, csio->sense_len); @@ -1772,9 +1811,8 @@ dma_cb(void *arg, busdma_md_t md, int er csio = mp->cmd_token; isp = mp->isp; rq = mp->rq; - ddir = ISP_NOXFR; - nseg = busdma_md_get_nsegs(md); - if (nseg) { + if (md != NULL) { + nseg = busdma_md_get_nsegs(md); if (isp->isp_osinfo.sixtyfourbit) { if (nseg >= ISP_NSEG64_MAX) { isp_prt(isp, ISP_LOGERR, "number of segments (%d) exceed maximum we can support (%d)", nseg, ISP_NSEG64_MAX); @@ -1794,12 +1832,17 @@ dma_cb(void *arg, busdma_md_t md, int er } } if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) { - busdma_sync(PISP_PCMD(csio)->dmap, BUS_DMASYNC_PREREAD); + busdma_sync(PISP_PCMD(csio)->dmap, BUSDMA_SYNC_PREREAD); ddir = ISP_FROM_DEVICE; } else if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_OUT) { - busdma_sync(PISP_PCMD(csio)->dmap, BUS_DMASYNC_PREWRITE); + busdma_sync(PISP_PCMD(csio)->dmap, + BUSDMA_SYNC_PREWRITE); ddir = ISP_TO_DEVICE; + } else { + ddir = ISP_NOXFR; } + } else { + ddir = ISP_NOXFR; } error = isp_send_cmd(isp, rq, md, XS_XFRLEN(csio), ddir, (ispds64_t *)csio->req_map); @@ -1826,7 +1869,6 @@ isp_pci_dmasetup(ispsoftc_t *isp, struct mp->cmd_token = csio; mp->rq = ff; mp->error = 0; - mp->mapsize = 0; #ifdef ISP_TARGET_MODE if (csio->ccb_h.func_code == XPT_CONT_TARGET_IO) From owner-svn-src-projects@FreeBSD.ORG Sun Dec 30 00:49:57 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 687BCB3C; Sun, 30 Dec 2012 00:49:57 +0000 (UTC) (envelope-from marcel@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 420FB8FC0C; Sun, 30 Dec 2012 00:49:57 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBU0nvtO084933; Sun, 30 Dec 2012 00:49:57 GMT (envelope-from marcel@svn.freebsd.org) Received: (from marcel@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBU0nune084931; Sun, 30 Dec 2012 00:49:56 GMT (envelope-from marcel@svn.freebsd.org) Message-Id: <201212300049.qBU0nune084931@svn.freebsd.org> From: Marcel Moolenaar Date: Sun, 30 Dec 2012 00:49:56 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244846 - in projects/altix2/sys: kern sys X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Dec 2012 00:49:57 -0000 Author: marcel Date: Sun Dec 30 00:49:56 2012 New Revision: 244846 URL: http://svnweb.freebsd.org/changeset/base/244846 Log: o Redefine the BUSDMA_SYNC_ operations to not conflict with the BUS_DMASYNC_ operations. o Add BUSDMA_ALLOC_ZERO for allocation of pre-zeroed memory. Modified: projects/altix2/sys/kern/subr_busdma.c projects/altix2/sys/sys/busdma.h Modified: projects/altix2/sys/kern/subr_busdma.c ============================================================================== --- projects/altix2/sys/kern/subr_busdma.c Sun Dec 30 00:47:30 2012 (r244845) +++ projects/altix2/sys/kern/subr_busdma.c Sun Dec 30 00:49:56 2012 (r244846) @@ -161,6 +161,8 @@ SYSINIT(busdma_kmem, SI_SUB_KMEM, SI_ORD /* Section 3.2: Debugging & tracing. */ +#define BUSDMA_DEBUG 1 + static void _busdma_mtag_dump(const char *func, device_t dev, struct busdma_mtag *mtag) { @@ -235,6 +237,7 @@ _busdma_data_dump(const char *func, stru continue; pa = MAX(seg->mds_busaddr, addr); sz = MIN(seg->mds_busaddr + seg->mds_size, addr + len) - pa; + sz = MIN(sz, 128); /* XXX arbitrary limit */ va = (void *)(seg->mds_vaddr + (pa - seg->mds_busaddr)); printf("%#jx: %*D\n", (uintmax_t)pa, sz, va, " "); } @@ -731,7 +734,7 @@ busdma_mem_alloc(struct busdma_tag *tag, struct busdma_mtag mtag; vm_size_t maxsz; u_int idx; - int error; + int error, mflags; CTR3(KTR_BUSDMA, "%s: tag=%p, flags=%#x", __func__, tag, flags); @@ -754,6 +757,9 @@ busdma_mem_alloc(struct busdma_tag *tag, goto fail; } + mflags = 0; + mflags |= (flags & BUSDMA_ALLOC_ZERO) ? M_ZERO : 0; + idx = 0; maxsz = tag->dt_maxsz; while (maxsz > 0 && idx < tag->dt_nsegs) { @@ -767,7 +773,7 @@ busdma_mem_alloc(struct busdma_tag *tag, seg->mds_paddr = ~0UL; seg->mds_size = MIN(maxsz, mtag.dmt_maxsz); seg->mds_vaddr = kmem_alloc_contig(kernel_map, seg->mds_size, - 0, mtag.dmt_minaddr, mtag.dmt_maxaddr, mtag.dmt_align, + mflags, mtag.dmt_minaddr, mtag.dmt_maxaddr, mtag.dmt_align, mtag.dmt_bndry, VM_MEMATTR_DEFAULT); if (seg->mds_vaddr == 0) { /* TODO: try a smaller segment size */ @@ -830,7 +836,8 @@ busdma_sync(struct busdma_md *md, u_int CTR3(KTR_BUSDMA, "%s: md=%p, op=%#x", __func__, md, op); - if ((op & BUSDMA_SYNC_PREWRITE) || (op & BUSDMA_SYNC_POSTREAD)) + if ((op & BUSDMA_SYNC_PREWRITE) == BUSDMA_SYNC_PREWRITE || + (op & BUSDMA_SYNC_POSTREAD) == BUSDMA_SYNC_POSTREAD) _busdma_data_dump(__func__, md, 0UL, ~0UL); } @@ -842,6 +849,7 @@ busdma_sync_range(struct busdma_md *md, CTR5(KTR_BUSDMA, "%s: md=%p, op=%#x, addr=%#jx, len=%#jx", __func__, md, op, (uintmax_t)addr, (uintmax_t)len); - if ((op & BUSDMA_SYNC_PREWRITE) || (op & BUSDMA_SYNC_POSTREAD)) + if ((op & BUSDMA_SYNC_PREWRITE) == BUSDMA_SYNC_PREWRITE || + (op & BUSDMA_SYNC_POSTREAD) == BUSDMA_SYNC_POSTREAD) _busdma_data_dump(__func__, md, addr, len); } Modified: projects/altix2/sys/sys/busdma.h ============================================================================== --- projects/altix2/sys/sys/busdma.h Sun Dec 30 00:47:30 2012 (r244845) +++ projects/altix2/sys/sys/busdma.h Sun Dec 30 00:49:56 2012 (r244846) @@ -133,6 +133,8 @@ busdma_md_get_pointer(busdma_md_t md, u_ */ int busdma_mem_alloc(busdma_tag_t tag, u_int flags, busdma_md_t *md_p); +#define BUSDMA_ALLOC_ZERO 0x10000 + /* * busdma_mem_free * returns: errno value @@ -146,10 +148,10 @@ int busdma_stop(busdma_md_t md); void busdma_sync(busdma_md_t md, u_int); void busdma_sync_range(busdma_md_t md, u_int, vm_paddr_t, vm_size_t); -#define BUSDMA_SYNC_READ 0x1 -#define BUSDMA_SYNC_WRITE 0x2 -#define BUSDMA_SYNC_BEFORE 0x0 -#define BUSDMA_SYNC_AFTER 0x4 +#define BUSDMA_SYNC_READ 0x10000 +#define BUSDMA_SYNC_WRITE 0x20000 +#define BUSDMA_SYNC_BEFORE 0x40000 +#define BUSDMA_SYNC_AFTER 0x80000 #define BUSDMA_SYNC_PREREAD (BUSDMA_SYNC_BEFORE | BUSDMA_SYNC_READ) #define BUSDMA_SYNC_PREWRITE (BUSDMA_SYNC_BEFORE | BUSDMA_SYNC_WRITE) From owner-svn-src-projects@FreeBSD.ORG Sun Dec 30 00:56:15 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 35464C7B; Sun, 30 Dec 2012 00:56:15 +0000 (UTC) (envelope-from linimon@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 1060C8FC08; Sun, 30 Dec 2012 00:56:15 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBU0uERV085886; Sun, 30 Dec 2012 00:56:14 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBU0uEbE085884; Sun, 30 Dec 2012 00:56:14 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201212300056.qBU0uEbE085884@svn.freebsd.org> From: Mark Linimon Date: Sun, 30 Dec 2012 00:56:14 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244847 - projects/portbuild/crontabs X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Dec 2012 00:56:15 -0000 Author: linimon (doc,ports committer) Date: Sun Dec 30 00:56:14 2012 New Revision: 244847 URL: http://svnweb.freebsd.org/changeset/base/244847 Log: Continue migrating tasks away from root and onto portbuild. While here, reformat the entries, move the logfiles and lockfiles, and refactor constants. Modified: projects/portbuild/crontabs/portbuild projects/portbuild/crontabs/root Modified: projects/portbuild/crontabs/portbuild ============================================================================== --- projects/portbuild/crontabs/portbuild Sun Dec 30 00:49:56 2012 (r244846) +++ projects/portbuild/crontabs/portbuild Sun Dec 30 00:56:14 2012 (r244847) @@ -2,9 +2,31 @@ # (/tmp/crontab.GlSF7IFIHx installed on Tue Nov 20 19:57:41 2012) # (Cron version -- $FreeBSD: release/9.0.0/usr.sbin/cron/crontab/crontab.c 185041 2008-11-18 00:39:50Z matteo $) # -# portmgr crontab +# portbuild crontab # -SCRIPTS="/var/portbuild/scripts/" -ERRORLOGS="/var/portbuild/errorlogs/" +PORTBUILD="/a/portbuild" +ERRORLOGS="${PORTBUILD}/errorlogs/" +LOCKFILES="${PORTBUILD}/lockfiles/" +SCRIPTS="${PORTBUILD}/scripts/" # -0,15,30,45 * * * * cd ${ERRORLOGS} && ${SCRIPTS}/dopackagestats +# Update package statistics +# +#0,15,30,45 * * * * cd ${ERRORLOGS} && ${SCRIPTS}/dopackagestats +# +# Update logs. Uncomment the ones for architectures you support. +# +#0,10,20,30,40,50 * * * * lockf -k -t 0 ${LOCKFILES}/dologs.lock ${SCRIPTS}/dologs amd64 > /dev/null 2>&1 +#1,11,21,31,41,51 * * * * lockf -k -t 1 ${LOCKFILES}/dologs.lock ${SCRIPTS}/dologs arm > /dev/null 2>&1 +#2,12,22,32,42,52 * * * * lockf -k -t 0 ${LOCKFILES}/dologs.lock ${SCRIPTS}/dologs i386 > /dev/null 2>&1 +#3,13,23,33,43,53 * * * * lockf -k -t 0 ${LOCKFILES}/dologs.lock ${SCRIPTS}/dologs ia64 > /dev/null 2>&1 +#4,14,24,34,44,54 * * * * lockf -k -t 0 ${LOCKFILES}/dologs.lock ${SCRIPTS}/dologs mips > /dev/null 2>&1 +#5,15,25,35,45,55 * * * * lockf -k -t 1 ${LOCKFILES}/dologs.lock ${SCRIPTS}/dologs powerpc > /dev/null 2>&1 +#6,16,26,36,46,56 * * * * lockf -k -t 0 ${LOCKFILES}/dologs.lock ${SCRIPTS}/dologs sparc64 > /dev/null 2>&1 +# +# VCS update of ports +# +#0 */3 * * * lockf -t 0 -k ${LOCKFILES}/updatesnap.ports.lock ${SCRIPTS}/updatesnap.ports +# +# VCS update of src +# +#0 2 * * * lockf -t 0 -k ${LOCKFILES}/updatesnap.lock ${SCRIPTS}/updatesnap Modified: projects/portbuild/crontabs/root ============================================================================== --- projects/portbuild/crontabs/root Sun Dec 30 00:49:56 2012 (r244846) +++ projects/portbuild/crontabs/root Sun Dec 30 00:56:14 2012 (r244847) @@ -4,21 +4,21 @@ TERM=xterm # # Update logs # -2,12,22,32,42,52 * * * * su ports-i386 -c "lockf -k -t 0 /var/portbuild/errorlogs/lock /var/portbuild/scripts/dologs i386" > /dev/null 2>&1 -5,15,25,35,45,55 * * * * su ports-sparc64 -c "lockf -k -t 0 /var/portbuild/errorlogs/lock /var/portbuild/scripts/dologs sparc64" > /dev/null 2>&1 -6,16,26,36,46,56 * * * * su ports-ia64 -c "lockf -k -t 0 /var/portbuild/errorlogs/lock /var/portbuild/scripts/dologs ia64" > /dev/null 2>&1 -8,18,28,38,48,58 * * * * su ports-amd64 -c "lockf -k -t 0 /var/portbuild/errorlogs/lock /var/portbuild/scripts/dologs amd64" > /dev/null 2>&1 -0,10,20,30,40,50 * * * * su ports-powerpc -c "lockf -k -t 0 /var/portbuild/errorlogs/lock /var/portbuild/scripts/dologs powerpc" > /dev/null 2>&1 -1,11,21,31,41,51 * * * * su ports-arm -c "lockf -k -t 1 /var/portbuild/errorlogs/lock /var/portbuild/scripts/dologs arm" > /dev/null 2>&1 -7,17,27,37,47,57 * * * * su ports-mips -c "lockf -k -t 1 /var/portbuild/errorlogs/lock /var/portbuild/scripts/dologs mips" > /dev/null 2>&1 +##2,12,22,32,42,52 * * * * su ports-i386 -c "lockf -k -t 0 /var/portbuild/errorlogs/lock /var/portbuild/scripts/dologs i386" > /dev/null 2>&1 +##5,15,25,35,45,55 * * * * su ports-sparc64 -c "lockf -k -t 0 /var/portbuild/errorlogs/lock /var/portbuild/scripts/dologs sparc64" > /dev/null 2>&1 +##6,16,26,36,46,56 * * * * su ports-ia64 -c "lockf -k -t 0 /var/portbuild/errorlogs/lock /var/portbuild/scripts/dologs ia64" > /dev/null 2>&1 +##8,18,28,38,48,58 * * * * su ports-amd64 -c "lockf -k -t 0 /var/portbuild/errorlogs/lock /var/portbuild/scripts/dologs amd64" > /dev/null 2>&1 +##0,10,20,30,40,50 * * * * su ports-powerpc -c "lockf -k -t 0 /var/portbuild/errorlogs/lock /var/portbuild/scripts/dologs powerpc" > /dev/null 2>&1 +##1,11,21,31,41,51 * * * * su ports-arm -c "lockf -k -t 1 /var/portbuild/errorlogs/lock /var/portbuild/scripts/dologs arm" > /dev/null 2>&1 +##7,17,27,37,47,57 * * * * su ports-mips -c "lockf -k -t 1 /var/portbuild/errorlogs/lock /var/portbuild/scripts/dologs mips" > /dev/null 2>&1 # # Compress old logs to save space # # XXX MCL this is totally naive and livelocks the machine. XXX TODO -50 5 * * * lockf -t 0 -k /var/run/busybusybusy.lock find /var/portbuild/*/archive/ -name \*.log -mtime +7 | xargs bzip2 -9f +#50 5 * * * lockf -t 0 -k /var/run/busybusybusy.lock find /var/portbuild/*/archive/ -name \*.log -mtime +7 | xargs bzip2 -9f # # Clean up old chroots on client machines -30 * * * * /var/portbuild/scripts/do-cleanup-chroots all +#30 * * * * /var/portbuild/scripts/do-cleanup-chroots all # Backup ZFS filesystems # XXX MCL script not yet converted @@ -29,7 +29,7 @@ TERM=xterm #50 3 * * * lockf -t 0 -k /var/run/busybusybusy.lock /var/portbuild/scripts/zexpire # VCS update of ports -0 */3 * * * lockf -t 0 -k /var/run/updatesnap.ports.lock /var/portbuild/scripts/updatesnap.ports +##0 */3 * * * lockf -t 0 -k /var/run/updatesnap.ports.lock /var/portbuild/scripts/updatesnap.ports # VCS update of src # NOTE: temporarily halt this whenever RELENG_X is being tagged -0 2 * * * lockf -t 0 -k /var/run/updatesnap.lock /var/portbuild/scripts/updatesnap +##0 2 * * * lockf -t 0 -k /var/run/updatesnap.lock /var/portbuild/scripts/updatesnap From owner-svn-src-projects@FreeBSD.ORG Sun Dec 30 00:58:38 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3843ED96; Sun, 30 Dec 2012 00:58:38 +0000 (UTC) (envelope-from linimon@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 1E34A8FC0C; Sun, 30 Dec 2012 00:58:38 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBU0wb0q086205; Sun, 30 Dec 2012 00:58:37 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBU0wbqb086204; Sun, 30 Dec 2012 00:58:37 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201212300058.qBU0wbqb086204@svn.freebsd.org> From: Mark Linimon Date: Sun, 30 Dec 2012 00:58:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244848 - projects/portbuild/scripts X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Dec 2012 00:58:38 -0000 Author: linimon (doc,ports committer) Date: Sun Dec 30 00:58:37 2012 New Revision: 244848 URL: http://svnweb.freebsd.org/changeset/base/244848 Log: Since this no longer runs as root, move its logfile to the new portbuild/log directory. Modified: projects/portbuild/scripts/pollmachine Modified: projects/portbuild/scripts/pollmachine ============================================================================== --- projects/portbuild/scripts/pollmachine Sun Dec 30 00:56:14 2012 (r244847) +++ projects/portbuild/scripts/pollmachine Sun Dec 30 00:58:37 2012 (r244848) @@ -298,7 +298,7 @@ PORTBUILD_USER = config.get( 'PORTBUILD_ logging.basicConfig(level=logging.INFO, format='[%(asctime)s] %(message)s', datefmt='%d %b %Y %H:%M:%S', - filename='/var/log/pollmachine.log', filemode='w') + filename=pbc+'/log/pollmachine.log', filemode='w') log_console = logging.StreamHandler() log_console.setLevel(logging.INFO) From owner-svn-src-projects@FreeBSD.ORG Sun Dec 30 01:32:16 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 85FACFF3; Sun, 30 Dec 2012 01:32:16 +0000 (UTC) (envelope-from brooks@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 6B5B88FC0C; Sun, 30 Dec 2012 01:32:16 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBU1WGOd091446; Sun, 30 Dec 2012 01:32:16 GMT (envelope-from brooks@svn.freebsd.org) Received: (from brooks@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBU1WGj1091445; Sun, 30 Dec 2012 01:32:16 GMT (envelope-from brooks@svn.freebsd.org) Message-Id: <201212300132.qBU1WGj1091445@svn.freebsd.org> From: Brooks Davis Date: Sun, 30 Dec 2012 01:32:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244849 - projects/mtree/tools/build X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Dec 2012 01:32:16 -0000 Author: brooks Date: Sun Dec 30 01:32:15 2012 New Revision: 244849 URL: http://svnweb.freebsd.org/changeset/base/244849 Log: Make the gid_from_group and uid_from_user stubs actually work so install works as expected. We may yet want to implement user and group cache support so -N works and we can eliminate the need to bootstrap new user entries in passwd and groups. Modified: projects/mtree/tools/build/pwcache-stub.c Modified: projects/mtree/tools/build/pwcache-stub.c ============================================================================== --- projects/mtree/tools/build/pwcache-stub.c Sun Dec 30 00:58:37 2012 (r244848) +++ projects/mtree/tools/build/pwcache-stub.c Sun Dec 30 01:32:15 2012 (r244849) @@ -29,13 +29,13 @@ */ #include +#include + +#include #include __FBSDID("$FreeBSD$"); -struct group; -struct passwd; - int pwcache_groupdb( int (*a_setgroupent)(int) __unused, @@ -59,15 +59,23 @@ pwcache_userdb( } int -gid_from_group(const char *group __unused, gid_t *gid __unused) +gid_from_group(const char *group, gid_t *gid) { - - return (-1); + struct group *grp; + + if ((grp = getgrnam(group)) == NULL) + return (-1); + *gid = grp->gr_gid; + return (0); } int -uid_from_user(const char *user __unused, uid_t *uid __unused) +uid_from_user(const char *user, uid_t *uid) { + struct passwd *pwd; - return(-1); + if ((pwd = getpwnam(user)) == NULL) + return(-1); + *uid = pwd->pw_uid; + return(0); } From owner-svn-src-projects@FreeBSD.ORG Sun Dec 30 05:59:11 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B82C378A; Sun, 30 Dec 2012 05:59:11 +0000 (UTC) (envelope-from marcel@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 52BEB8FC0C; Sun, 30 Dec 2012 05:59:11 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBU5xBKK037276; Sun, 30 Dec 2012 05:59:11 GMT (envelope-from marcel@svn.freebsd.org) Received: (from marcel@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBU5xARQ037274; Sun, 30 Dec 2012 05:59:10 GMT (envelope-from marcel@svn.freebsd.org) Message-Id: <201212300559.qBU5xARQ037274@svn.freebsd.org> From: Marcel Moolenaar Date: Sun, 30 Dec 2012 05:59:10 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244851 - in projects/altix2/sys: kern sys X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Dec 2012 05:59:11 -0000 Author: marcel Date: Sun Dec 30 05:59:10 2012 New Revision: 244851 URL: http://svnweb.freebsd.org/changeset/base/244851 Log: o Add busdma_md_get_tag() o Add busdma_tag_get_maxaddr() Modified: projects/altix2/sys/kern/subr_busdma.c projects/altix2/sys/sys/busdma.h Modified: projects/altix2/sys/kern/subr_busdma.c ============================================================================== --- projects/altix2/sys/kern/subr_busdma.c Sun Dec 30 04:22:34 2012 (r244850) +++ projects/altix2/sys/kern/subr_busdma.c Sun Dec 30 05:59:10 2012 (r244851) @@ -161,8 +161,6 @@ SYSINIT(busdma_kmem, SI_SUB_KMEM, SI_ORD /* Section 3.2: Debugging & tracing. */ -#define BUSDMA_DEBUG 1 - static void _busdma_mtag_dump(const char *func, device_t dev, struct busdma_mtag *mtag) { @@ -544,6 +542,15 @@ busdma_tag_destroy(struct busdma_tag *ta return (0); } +bus_addr_t +busdma_tag_get_maxaddr(struct busdma_tag *tag) +{ + + CTR2(KTR_BUSDMA, "%s: tag=%p", __func__, tag); + + return ((tag != NULL) ? tag->dt_maxaddr : 0UL); +} + int busdma_md_create(struct busdma_tag *tag, u_int flags, struct busdma_md **md_p) { @@ -632,6 +639,15 @@ busdma_md_get_size(struct busdma_md *md, return (size); } +struct busdma_tag * +busdma_md_get_tag(struct busdma_md *md) +{ + + CTR2(KTR_BUSDMA, "%s: md=%p", __func__, md); + + return ((md != NULL) ? md->md_tag : NULL); +} + vm_offset_t busdma_md_get_vaddr(struct busdma_md *md, u_int idx) { Modified: projects/altix2/sys/sys/busdma.h ============================================================================== --- projects/altix2/sys/sys/busdma.h Sun Dec 30 04:22:34 2012 (r244850) +++ projects/altix2/sys/sys/busdma.h Sun Dec 30 05:59:10 2012 (r244851) @@ -92,6 +92,8 @@ int busdma_tag_derive(busdma_tag_t tag, */ int busdma_tag_destroy(busdma_tag_t tag); +bus_addr_t busdma_tag_get_maxaddr(busdma_tag_t tag); + /* * */ @@ -112,6 +114,7 @@ int busdma_md_load_uio(busdma_md_t md, s busdma_callback_f cb, void *arg, u_int flags); int busdma_md_unload(busdma_md_t md); u_int busdma_md_get_nsegs(busdma_md_t md); +busdma_tag_t busdma_md_get_tag(busdma_md_t md); bus_addr_t busdma_md_get_busaddr(busdma_md_t md, u_int idx); vm_paddr_t busdma_md_get_paddr(busdma_md_t md, u_int idx); vm_offset_t busdma_md_get_vaddr(busdma_md_t md, u_int idx); From owner-svn-src-projects@FreeBSD.ORG Sun Dec 30 06:00:56 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3C6328D3; Sun, 30 Dec 2012 06:00:56 +0000 (UTC) (envelope-from marcel@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 20DA38FC0A; Sun, 30 Dec 2012 06:00:56 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBU60uGV037639; Sun, 30 Dec 2012 06:00:56 GMT (envelope-from marcel@svn.freebsd.org) Received: (from marcel@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBU60tc3037638; Sun, 30 Dec 2012 06:00:55 GMT (envelope-from marcel@svn.freebsd.org) Message-Id: <201212300600.qBU60tc3037638@svn.freebsd.org> From: Marcel Moolenaar Date: Sun, 30 Dec 2012 06:00:55 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244852 - projects/altix2/sys/ia64/sgisn X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Dec 2012 06:00:56 -0000 Author: marcel Date: Sun Dec 30 06:00:55 2012 New Revision: 244852 URL: http://svnweb.freebsd.org/changeset/base/244852 Log: Use 64-bit direct mapped DMA for devices that support it (e.g. isp(4)). Modified: projects/altix2/sys/ia64/sgisn/sgisn_pcib.c Modified: projects/altix2/sys/ia64/sgisn/sgisn_pcib.c ============================================================================== --- projects/altix2/sys/ia64/sgisn/sgisn_pcib.c Sun Dec 30 05:59:10 2012 (r244851) +++ projects/altix2/sys/ia64/sgisn/sgisn_pcib.c Sun Dec 30 06:00:55 2012 (r244852) @@ -506,12 +506,22 @@ sgisn_pcib_iommu_xlate(device_t dev, bus static int sgisn_pcib_iommu_map(device_t dev, busdma_md_t md, u_int idx, bus_addr_t *ba_p) { - bus_addr_t bndry = 0x80000000UL; + struct sgisn_pcib_softc *sc = device_get_softc(dev); + busdma_tag_t tag; + bus_addr_t maxaddr = 0x80000000UL; bus_addr_t ba; ba = *ba_p; - if (ba < bndry) { - ba |= bndry; + if (ba < maxaddr) { + ba |= maxaddr; + *ba_p = ba; + return (0); + } + + tag = busdma_md_get_tag(md); + maxaddr = busdma_tag_get_maxaddr(tag); + if (maxaddr == ~0UL) { + ba |= ((u_long)sc->sc_fwbus->fw_hub_xid << 60) | (1UL << 59); *ba_p = ba; return (0); } From owner-svn-src-projects@FreeBSD.ORG Sun Dec 30 17:28:11 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1F30753D; Sun, 30 Dec 2012 17:28:11 +0000 (UTC) (envelope-from jhibbits@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 01B2D8FC12; Sun, 30 Dec 2012 17:28:11 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBUHSAh7046733; Sun, 30 Dec 2012 17:28:10 GMT (envelope-from jhibbits@svn.freebsd.org) Received: (from jhibbits@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBUHS8XQ046715; Sun, 30 Dec 2012 17:28:08 GMT (envelope-from jhibbits@svn.freebsd.org) Message-Id: <201212301728.qBUHS8XQ046715@svn.freebsd.org> From: Justin Hibbits Date: Sun, 30 Dec 2012 17:28:08 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244868 - in projects/pmac_pmu/sys: conf powerpc/aim powerpc/cpufreq powerpc/include powerpc/powermac powerpc/powerpc X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Dec 2012 17:28:11 -0000 Author: jhibbits Date: Sun Dec 30 17:28:08 2012 New Revision: 244868 URL: http://svnweb.freebsd.org/changeset/base/244868 Log: Initial changes for PMU sleep/speed-change/resume. With this code, the PMU successfully changes speed on the CPU (MPC745x-based machines), but upon wake-up the machine panics. Added: projects/pmac_pmu/sys/powerpc/cpufreq/pmufreq.c Modified: projects/pmac_pmu/sys/conf/files.powerpc projects/pmac_pmu/sys/powerpc/aim/mp_cpudep.c projects/pmac_pmu/sys/powerpc/include/cpu.h projects/pmac_pmu/sys/powerpc/include/pcpu.h projects/pmac_pmu/sys/powerpc/include/spr.h projects/pmac_pmu/sys/powerpc/powermac/macio.c projects/pmac_pmu/sys/powerpc/powermac/maciovar.h projects/pmac_pmu/sys/powerpc/powermac/platform_powermac.c projects/pmac_pmu/sys/powerpc/powermac/pmu.c projects/pmac_pmu/sys/powerpc/powermac/pmuvar.h projects/pmac_pmu/sys/powerpc/powermac/uninorth.c projects/pmac_pmu/sys/powerpc/powermac/uninorthpci.c projects/pmac_pmu/sys/powerpc/powermac/uninorthvar.h projects/pmac_pmu/sys/powerpc/powermac/viareg.h projects/pmac_pmu/sys/powerpc/powerpc/mp_machdep.c Modified: projects/pmac_pmu/sys/conf/files.powerpc ============================================================================== --- projects/pmac_pmu/sys/conf/files.powerpc Sun Dec 30 16:41:17 2012 (r244867) +++ projects/pmac_pmu/sys/conf/files.powerpc Sun Dec 30 17:28:08 2012 (r244868) @@ -116,6 +116,7 @@ powerpc/booke/trap.c optional booke powerpc/booke/vm_machdep.c optional booke powerpc/cpufreq/dfs.c optional cpufreq powerpc/cpufreq/pcr.c optional cpufreq aim +powerpc/cpufreq/pmufreq.c optional cpufreq aim powerpc/fpu/fpu_add.c optional fpu_emu powerpc powerpc/fpu/fpu_compare.c optional fpu_emu powerpc powerpc/fpu/fpu_div.c optional fpu_emu powerpc Modified: projects/pmac_pmu/sys/powerpc/aim/mp_cpudep.c ============================================================================== --- projects/pmac_pmu/sys/powerpc/aim/mp_cpudep.c Sun Dec 30 16:41:17 2012 (r244867) +++ projects/pmac_pmu/sys/powerpc/aim/mp_cpudep.c Sun Dec 30 17:28:08 2012 (r244868) @@ -322,17 +322,13 @@ cpudep_ap_setup() mtspr(SPR_CELL_TSRL, bsp_state[5]); break; - case MPC7450: - case MPC7455: - case MPC7457: - /* Only MPC745x CPUs have an L3 cache. */ - reg = mpc745x_l3_enable(bsp_state[3]); - - /* Fallthrough */ case MPC7400: case MPC7410: case MPC7447A: case MPC7448: + case MPC7450: + case MPC7455: + case MPC7457: /* XXX: Program the CPU ID into PIR */ __asm __volatile("mtspr 1023,%0" :: "r"(PCPU_GET(cpuid))); @@ -342,6 +338,17 @@ cpudep_ap_setup() mtspr(SPR_HID0, bsp_state[0]); isync(); mtspr(SPR_HID1, bsp_state[1]); isync(); + /* Now enable the L3 cache. */ + switch (vers) { + case MPC7450: + case MPC7455: + case MPC7457: + /* Only MPC745x CPUs have an L3 cache. */ + reg = mpc745x_l3_enable(bsp_state[3]); + default: + break; + } + reg = mpc74xx_l2_enable(bsp_state[2]); reg = mpc74xx_l1d_enable(); reg = mpc74xx_l1i_enable(); Added: projects/pmac_pmu/sys/powerpc/cpufreq/pmufreq.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/pmac_pmu/sys/powerpc/cpufreq/pmufreq.c Sun Dec 30 17:28:08 2012 (r244868) @@ -0,0 +1,226 @@ +/*- + * Copyright (c) 2011 Justin Hibbits + * Copyright (c) 2009 Nathan Whitehorn + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +#include +__FBSDID("$FreeBSD: head/sys/powerpc/cpufreq/pmufreq.c 217065 2011-01-06 20:19:01Z andreast $"); + +#include +#include +#include +#include +#include +#include + +#include +#include + +#include "cpufreq_if.h" +#include "powerpc/powermac/pmuvar.h" + +struct pmufreq_softc { + device_t dev; + uint32_t minfreq; + uint32_t maxfreq; + uint32_t curfreq; +}; + +static void pmufreq_identify(driver_t *driver, device_t parent); +static int pmufreq_probe(device_t dev); +static int pmufreq_attach(device_t dev); +static int pmufreq_settings(device_t dev, struct cf_setting *sets, int *count); +static int pmufreq_set(device_t dev, const struct cf_setting *set); +static int pmufreq_get(device_t dev, struct cf_setting *set); +static int pmufreq_type(device_t dev, int *type); + +static device_method_t pmufreq_methods[] = { + /* Device interface */ + DEVMETHOD(device_identify, pmufreq_identify), + DEVMETHOD(device_probe, pmufreq_probe), + DEVMETHOD(device_attach, pmufreq_attach), + + /* cpufreq interface */ + DEVMETHOD(cpufreq_drv_set, pmufreq_set), + DEVMETHOD(cpufreq_drv_get, pmufreq_get), + DEVMETHOD(cpufreq_drv_type, pmufreq_type), + DEVMETHOD(cpufreq_drv_settings, pmufreq_settings), + + {0, 0} +}; + +static driver_t pmufreq_driver = { + "pmufreq", + pmufreq_methods, + sizeof(struct pmufreq_softc) +}; + +static devclass_t pmufreq_devclass; +DRIVER_MODULE(pmufreq, cpu, pmufreq_driver, pmufreq_devclass, 0, 0); + +static void +pmufreq_identify(driver_t *driver, device_t parent) +{ + uint16_t vers; + vers = mfpvr() >> 16; + + /* Check for an MPC7455 CPU */ + switch (vers) { + case MPC7455: + break; + default: + return; + } + + /* Make sure we're not being doubly invoked. */ + if (device_find_child(parent, "pmufreq", -1) != NULL) + return; + + /* + * We attach a child for every CPU since settings need to + * be performed on every CPU in the SMP case. + */ + if (BUS_ADD_CHILD(parent, 10, "pmufreq", -1) == NULL) + device_printf(parent, "add pmufreq child failed\n"); +} + +static int +pmufreq_probe(device_t dev) +{ + uint32_t min_freq; + struct pmufreq_softc *sc; + phandle_t node; + + if (resource_disabled("pmufreq", 0)) + return (ENXIO); + + sc = device_get_softc(dev); + node = ofw_bus_get_node(device_get_parent(dev)); + /* + * A scalable MPC7455 has min-clock-frequency/max-clock-frequency as OFW + * properties of the 'cpu' node. + */ + if (OF_getprop(node, "min-clock-frequency", &min_freq, sizeof(min_freq)) == -1) + return (ENXIO); + device_set_desc(dev, "PMU-based frequency scaling"); + return (0); +} + +static int +pmufreq_attach(device_t dev) +{ + struct pmufreq_softc *sc; + phandle_t node; + + sc = device_get_softc(dev); + sc->dev = dev; + + node = ofw_bus_get_node(device_get_parent(dev)); + OF_getprop(node, "min-clock-frequency", &sc->minfreq, sizeof(sc->minfreq)); + OF_getprop(node, "max-clock-frequency", &sc->maxfreq, sizeof(sc->maxfreq)); + OF_getprop(node, "rounded-clock-frequency", &sc->curfreq, sizeof(sc->curfreq)); + sc->minfreq /= 1000000; + sc->maxfreq /= 1000000; + sc->curfreq /= 1000000; + + cpufreq_register(dev); + return (0); +} + +static int +pmufreq_settings(device_t dev, struct cf_setting *sets, int *count) +{ + struct pmufreq_softc *sc; + + sc = device_get_softc(dev); + if (sets == NULL || count == NULL) + return (EINVAL); + if (*count < 2) + return (E2BIG); + + /* Return a list of valid settings for this driver. */ + memset(sets, CPUFREQ_VAL_UNKNOWN, sizeof(*sets) * 2); + + sets[0].freq = sc->maxfreq; sets[0].dev = dev; + sets[1].freq = sc->minfreq; sets[1].dev = dev; + /* Set high latency for CPU frequency changes, it's a tedious process. */ + sets[0].lat = 1000000; + sets[1].lat = 1000000; + *count = 2; + + return (0); +} + +static int +pmufreq_set(device_t dev, const struct cf_setting *set) +{ + struct pmufreq_softc *sc; + int speed_sel; + int error; + + if (set == NULL) + return (EINVAL); + + sc = device_get_softc(dev); + + if (set->freq == sc->maxfreq) + speed_sel = 1; + else + speed_sel = 0; + + error = pmu_set_speed(speed_sel); + if (error == 0) + sc->curfreq = set->freq; + + printf("exit from here\n"); + return error; +} + +static int +pmufreq_get(device_t dev, struct cf_setting *set) +{ + struct pmufreq_softc *sc; + + if (set == NULL) + return (EINVAL); + sc = device_get_softc(dev); + + set->freq = sc->curfreq; + set->dev = dev; + + return (0); +} + +static int +pmufreq_type(device_t dev, int *type) +{ + + if (type == NULL) + return (EINVAL); + + *type = CPUFREQ_TYPE_ABSOLUTE; + return (0); +} + Modified: projects/pmac_pmu/sys/powerpc/include/cpu.h ============================================================================== --- projects/pmac_pmu/sys/powerpc/include/cpu.h Sun Dec 30 16:41:17 2012 (r244867) +++ projects/pmac_pmu/sys/powerpc/include/cpu.h Sun Dec 30 17:28:08 2012 (r244868) @@ -98,4 +98,6 @@ void cpu_reset(void); void fork_trampoline(void); void swi_vm(void *); +void flush_disable_caches(void); + #endif /* _MACHINE_CPU_H_ */ Modified: projects/pmac_pmu/sys/powerpc/include/pcpu.h ============================================================================== --- projects/pmac_pmu/sys/powerpc/include/pcpu.h Sun Dec 30 16:41:17 2012 (r244867) +++ projects/pmac_pmu/sys/powerpc/include/pcpu.h Sun Dec 30 17:28:08 2012 (r244868) @@ -49,7 +49,8 @@ struct pmap; uint32_t pc_ipimask; \ register_t pc_tempsave[CPUSAVE_LEN]; \ register_t pc_disisave[CPUSAVE_LEN]; \ - register_t pc_dbsave[CPUSAVE_LEN]; + register_t pc_dbsave[CPUSAVE_LEN]; \ + void *pc_restore; #define PCPU_MD_AIM32_FIELDS Modified: projects/pmac_pmu/sys/powerpc/include/spr.h ============================================================================== --- projects/pmac_pmu/sys/powerpc/include/spr.h Sun Dec 30 16:41:17 2012 (r244867) +++ projects/pmac_pmu/sys/powerpc/include/spr.h Sun Dec 30 17:28:08 2012 (r244868) @@ -518,6 +518,8 @@ #define MSSCR0_EMODE 0x00200000 /* 10: MPX bus mode (read-only) */ #define MSSCR0_ABD 0x00100000 /* 11: address bus driven (read-only) */ #define MSSCR0_MBZ 0x000fffff /* 12-31: must be zero */ +#define MSSCR0_L2PFE 0x00000003 /* 30-31: L2 prefetch enable */ +#define SPR_LDSTCR 0x3f8 /* .6. Load/Store Control Register */ #define SPR_L2PM 0x3f8 /* .6. L2 Private Memory Control Register */ #define SPR_L2CR 0x3f9 /* .6. L2 Control Register */ #define L2CR_L2E 0x80000000 /* 0: L2 enable */ @@ -542,12 +544,14 @@ Setting this bit disables instruction caching. */ #define L2CR_L2I 0x00200000 /* 10: L2 global invalidate. */ +#define L2CR_L2IO_7450 0x00010000 /* 11: L2 instruction-only (MPC745x). */ #define L2CR_L2CTL 0x00100000 /* 11: L2 RAM control (ZZ enable). Enables automatic operation of the L2ZZ (low-power mode) signal. */ #define L2CR_L2WT 0x00080000 /* 12: L2 write-through. */ #define L2CR_L2TS 0x00040000 /* 13: L2 test support. */ #define L2CR_L2OH 0x00030000 /* 14-15: L2 output hold. */ +#define L2CR_L2DO_7450 0x00010000 /* 15: L2 data-only (MPC745x). */ #define L2CR_L2SL 0x00008000 /* 16: L2 DLL slow. */ #define L2CR_L2DF 0x00004000 /* 17: L2 differential clock. */ #define L2CR_L2BYP 0x00002000 /* 18: L2 DLL bypass. */ Modified: projects/pmac_pmu/sys/powerpc/powermac/macio.c ============================================================================== --- projects/pmac_pmu/sys/powerpc/powermac/macio.c Sun Dec 30 16:41:17 2012 (r244867) +++ projects/pmac_pmu/sys/powerpc/powermac/macio.c Sun Dec 30 17:28:08 2012 (r244868) @@ -69,12 +69,17 @@ struct macio_softc { /* FCR registers */ int sc_memrid; struct resource *sc_memr; + int sc_rev; + int sc_devid; + uint32_t saved_fcrs[6]; }; static MALLOC_DEFINE(M_MACIO, "macio", "macio device information"); static int macio_probe(device_t); static int macio_attach(device_t); +static int macio_suspend(device_t); +static int macio_resume(device_t); static int macio_print_child(device_t dev, device_t child); static void macio_probe_nomatch(device_t, device_t); static struct resource *macio_alloc_resource(device_t, device_t, int, int *, @@ -97,8 +102,8 @@ static device_method_t macio_methods[] = DEVMETHOD(device_attach, macio_attach), DEVMETHOD(device_detach, bus_generic_detach), DEVMETHOD(device_shutdown, bus_generic_shutdown), - DEVMETHOD(device_suspend, bus_generic_suspend), - DEVMETHOD(device_resume, bus_generic_resume), + DEVMETHOD(device_suspend, macio_suspend), + DEVMETHOD(device_resume, macio_resume), /* Bus interface */ DEVMETHOD(bus_print_child, macio_print_child), @@ -319,6 +324,13 @@ macio_attach(device_t dev) } /* + * If possible, get the device ID and revision ID. + */ + OF_getprop(root, "revision-id", &sc->sc_rev, sizeof(sc->sc_rev)); + OF_getprop(root, "device-id", &sc->sc_devid, sizeof(sc->sc_devid)); + + + /* * Iterate through the sub-devices */ for (child = OF_child(root); child != 0; child = OF_peer(child)) { @@ -605,3 +617,96 @@ macio_get_devinfo(device_t dev, device_t dinfo = device_get_ivars(child); return (&dinfo->mdi_obdinfo); } + +static int macio_suspend(device_t dev) +{ + int error; + uint32_t temp; + struct macio_softc *sc = device_get_softc(dev); + + error = bus_generic_suspend(dev); + + if (error) + return (error); + + sc->saved_fcrs[0] = bus_read_4(sc->sc_memr, KEYLARGO_FCR0); + sc->saved_fcrs[1] = bus_read_4(sc->sc_memr, KEYLARGO_FCR1); + sc->saved_fcrs[2] = bus_read_4(sc->sc_memr, KEYLARGO_FCR2); + sc->saved_fcrs[3] = bus_read_4(sc->sc_memr, KEYLARGO_FCR3); + + temp = bus_read_4(sc->sc_memr, KEYLARGO_FCR0); + temp |= FCR0_USB_REF_SUSPEND; + temp &= ~(FCR0_SCCA_ENABLE | FCR0_SCCB_ENABLE | + FCR0_SCC_CELL_ENABLE | FCR0_IRDA_ENABLE | + FCR0_IRDA_CLK32_ENABLE | + FCR0_IRDA_CLK19_ENABLE); + bus_write_4(sc->sc_memr, KEYLARGO_FCR0, temp); + DELAY(1000); + + if (sc->sc_devid == 0x22) { + temp = bus_read_4(sc->sc_memr, KEYLARGO_MEDIABAY); + temp |= KEYLARGO_MB0_DEV_ENABLE; + bus_write_4(sc->sc_memr, KEYLARGO_MEDIABAY, temp); + } + + temp = bus_read_4(sc->sc_memr, KEYLARGO_FCR1); + temp &= ~(FCR1_AUDIO_SEL_22MCLK | FCR1_AUDIO_CLK_ENABLE | + FCR1_AUDIO_CLKOUT_ENABLE | FCR1_AUDIO_CELL_ENABLE | + FCR1_I2S0_CELL_ENABLE | FCR1_I2S0_CLK_ENABLE | + FCR1_I2S0_ENABLE | + FCR1_I2S1_CELL_ENABLE | FCR1_I2S1_CLK_ENABLE | + FCR1_I2S1_ENABLE | + FCR1_EIDE0_ENABLE | FCR1_EIDE0_RESET | + FCR1_EIDE1_ENABLE | FCR1_EIDE1_RESET | + FCR1_UIDE_ENABLE + ); + bus_write_4(sc->sc_memr, KEYLARGO_FCR1, temp); + + temp = bus_read_4(sc->sc_memr, KEYLARGO_FCR2); + temp &= ~FCR2_IOBUS_ENABLE; + bus_write_4(sc->sc_memr, KEYLARGO_FCR2, temp); + + temp = bus_read_4(sc->sc_memr, KEYLARGO_FCR3); + temp |= (FCR3_SHUTDOWN_PLL_KW6 | FCR3_SHUTDOWN_PLL_KW4 | + FCR3_SHUTDOWN_PLL_KW35 | FCR3_SHUTDOWN_PLL_KW12); + temp &= ~(FCR3_CLK_66_ENABLE | FCR3_CLK_49_ENABLE | + FCR3_CLK_45_ENABLE | FCR3_CLK_31_ENABLE | + FCR3_TMR_CLK18_ENABLE | FCR3_I2S1_CLK18_ENABLE | + FCR3_I2S0_CLK18_ENABLE | FCR3_VA_CLK16_ENABLE); + if (sc->sc_rev >= 2) + temp |= (FCR3_SHUTDOWN_PLL_2X | FCR3_SHUTDOWN_PLL_TOTAL); + bus_write_4(sc->sc_memr, KEYLARGO_FCR3, temp); + /* Delay for a millisecond to let things settle. */ + temp = bus_read_4(sc->sc_memr, KEYLARGO_FCR0); + DELAY(1000); + + return (0); +} + +static int macio_resume(device_t dev) +{ + struct macio_softc *sc = device_get_softc(dev); + + bus_write_4(sc->sc_memr, KEYLARGO_FCR0, sc->saved_fcrs[0]); + bus_read_4(sc->sc_memr, KEYLARGO_FCR0); + DELAY(10); + bus_write_4(sc->sc_memr, KEYLARGO_FCR1, sc->saved_fcrs[1]); + bus_read_4(sc->sc_memr, KEYLARGO_FCR1); + DELAY(10); + bus_write_4(sc->sc_memr, KEYLARGO_FCR2, sc->saved_fcrs[2]); + bus_read_4(sc->sc_memr, KEYLARGO_FCR2); + DELAY(10); + bus_write_4(sc->sc_memr, KEYLARGO_FCR3, sc->saved_fcrs[3]); + bus_read_4(sc->sc_memr, KEYLARGO_FCR3); + DELAY(10); + bus_write_4(sc->sc_memr, KEYLARGO_FCR4, sc->saved_fcrs[4]); + bus_read_4(sc->sc_memr, KEYLARGO_FCR4); + DELAY(10); + bus_write_4(sc->sc_memr, KEYLARGO_FCR5, sc->saved_fcrs[5]); + bus_read_4(sc->sc_memr, KEYLARGO_FCR5); + DELAY(10); + + bus_generic_resume(dev); + + return (0); +} Modified: projects/pmac_pmu/sys/powerpc/powermac/maciovar.h ============================================================================== --- projects/pmac_pmu/sys/powerpc/powermac/maciovar.h Sun Dec 30 16:41:17 2012 (r244867) +++ projects/pmac_pmu/sys/powerpc/powermac/maciovar.h Sun Dec 30 17:28:08 2012 (r244868) @@ -43,10 +43,77 @@ #define HEATHROW_FCR 0x38 #define KEYLARGO_FCR0 0x38 #define KEYLARGO_FCR1 0x3c +#define KEYLARGO_FCR2 0x40 +#define KEYLARGO_FCR3 0x44 +#define KEYLARGO_FCR4 0x48 +#define KEYLARGO_FCR5 0x4c #define FCR_ENET_ENABLE 0x60000000 #define FCR_ENET_RESET 0x80000000 +#define KEYLARGO_MEDIABAY 0x34 +#define KEYLARGO_MB0_DEV_ENABLE 0x00001000 +#define KEYLARGO_MB0_DEV_POWER 0x00000400 +#define KEYLARGO_MB0_DEV_RESET 0x00000200 +#define KEYLARGO_MB0_ENABLE 0x00000100 +#define KEYLARGO_MB1_DEV_ENABLE 0x10000000 +#define KEYLARGO_MB1_DEV_POWER 0x04000000 +#define KEYLARGO_MB1_DEV_RESET 0x02000000 +#define KEYLARGO_MB1_ENABLE 0x01000000 + +#define KEYLARGO_GPIO_BASE 0x6a +#define KEYLARGO_GPIO_LEVELS_0 0x50 +#define KEYLARGO_GPIO_LEVELS_1 0x54 + +#define KEYLARGO_EXTINT_GPIO_REG_BASE 0x58 + +#define FCR0_CHOOSE_SCCB 0x00000001 +#define FCR0_CHOOSE_SCCA 0x00000002 +#define FCR0_SLOW_SCC_PCLK 0x00000004 +#define FCR0_RESET_SCC 0x00000008 +#define FCR0_SCCA_ENABLE 0x00000010 +#define FCR0_SCCB_ENABLE 0x00000020 +#define FCR0_SCC_CELL_ENABLE 0x00000040 +#define FCR0_IRDA_ENABLE 0x00008000 +#define FCR0_IRDA_CLK32_ENABLE 0x00010000 +#define FCR0_IRDA_CLK19_ENABLE 0x00020000 + +#define FCR0_USB_REF_SUSPEND 0x10000000 + +#define FCR1_AUDIO_SEL_22MCLK 0x00000002 +#define FCR1_AUDIO_CLK_ENABLE 0x00000008 +#define FCR1_AUDIO_CLKOUT_ENABLE 0x00000020 +#define FCR1_AUDIO_CELL_ENABLE 0x00000040 +#define FCR1_I2S0_CELL_ENABLE 0x00000400 +#define FCR1_I2S0_CLK_ENABLE 0x00001000 +#define FCR1_I2S0_ENABLE 0x00002000 +#define FCR1_I2S1_CELL_ENABLE 0x00020000 +#define FCR1_I2S1_CLK_ENABLE 0x00080000 +#define FCR1_I2S1_ENABLE 0x00100000 +#define FCR1_EIDE0_ENABLE 0x00800000 +#define FCR1_EIDE0_RESET 0x01000000 +#define FCR1_EIDE1_ENABLE 0x04000000 +#define FCR1_EIDE1_RESET 0x08000000 +#define FCR1_UIDE_ENABLE 0x20000000 +#define FCR1_UIDE_RESET 0x40000000 + +#define FCR2_IOBUS_ENABLE 0x00000002 + +#define FCR3_SHUTDOWN_PLL_TOTAL 0x00000001 +#define FCR3_SHUTDOWN_PLL_KW6 0x00000002 +#define FCR3_SHUTDOWN_PLL_KW4 0x00000004 +#define FCR3_SHUTDOWN_PLL_KW35 0x00000008 +#define FCR3_SHUTDOWN_PLL_KW12 0x00000010 +#define FCR3_SHUTDOWN_PLL_2X 0x00000080 +#define FCR3_CLK_66_ENABLE 0x00000100 +#define FCR3_CLK_49_ENABLE 0x00000200 +#define FCR3_CLK_45_ENABLE 0x00000400 +#define FCR3_CLK_31_ENABLE 0x00000800 +#define FCR3_TMR_CLK18_ENABLE 0x00001000 +#define FCR3_I2S1_CLK18_ENABLE 0x00002000 +#define FCR3_I2S0_CLK18_ENABLE 0x00004000 +#define FCR3_VA_CLK16_ENABLE 0x00008000 + /* * Format of a macio reg property entry. */ Modified: projects/pmac_pmu/sys/powerpc/powermac/platform_powermac.c ============================================================================== --- projects/pmac_pmu/sys/powerpc/powermac/platform_powermac.c Sun Dec 30 16:41:17 2012 (r244867) +++ projects/pmac_pmu/sys/powerpc/powermac/platform_powermac.c Sun Dec 30 17:28:08 2012 (r244868) @@ -280,6 +280,97 @@ powermac_smp_start_cpu(platform_t plat, #endif } +/* From p3-53 of the MPC7450 RISC Microprocessor Family Reference Manual */ +void +flush_disable_caches(void) +{ + register_t msr; + register_t msscr0; + register_t cache_reg; + volatile uint32_t *romp; + uint32_t temp; + int i; + int x; + + msr = mfmsr(); + powerpc_sync(); + mtmsr(msr & ~(PSL_EE | PSL_DR)); + msscr0 = mfspr(SPR_MSSCR0); + msscr0 &= ~MSSCR0_L2PFE; + mtspr(SPR_MSSCR0, msscr0); + powerpc_sync(); + isync(); + __asm__ __volatile__("dssall; sync"); + powerpc_sync(); + isync(); + __asm__ __volatile__("dcbf 0,%0" :: "r"(0)); + __asm__ __volatile__("dcbf 0,%0" :: "r"(0)); + __asm__ __volatile__("dcbf 0,%0" :: "r"(0)); + + /* Lock the L1 Data cache. */ + mtspr(SPR_LDSTCR, mfspr(SPR_LDSTCR) | 0xFF); + powerpc_sync(); + isync(); + + mtspr(SPR_LDSTCR, 0); + + romp = (uint32_t *)0xfff00000; + x = 0xfe; + + for (; x != 0xff;) { + mtspr(SPR_LDSTCR, x); + for (i = 0; i < 128; i++) { + temp = *romp; + romp += 32/sizeof(*romp); + } + x = ((x << 1) | 1) & 0xff; + } + + cache_reg = mfspr(SPR_L2CR); + if (cache_reg & L2CR_L2E) { + cache_reg &= ~(L2CR_L2IO_7450 | L2CR_L2DO_7450); + mtspr(SPR_L2CR, cache_reg); + powerpc_sync(); + mtspr(SPR_L2CR, cache_reg | L2CR_L2HWF); + while (mfspr(SPR_L2CR) & L2CR_L2HWF) + ; /* Busy wait for cache to flush */ + powerpc_sync(); + cache_reg &= ~L2CR_L2E; + mtspr(SPR_L2CR, cache_reg); + powerpc_sync(); + mtspr(SPR_L2CR, cache_reg | L2CR_L2I); + powerpc_sync(); + while (mfspr(SPR_L2CR) & L2CR_L2I) + ; /* Busy wait for L2 cache invalidate */ + powerpc_sync(); + } + + cache_reg = mfspr(SPR_L3CR); + if (cache_reg & L3CR_L3E) { + cache_reg &= ~(L3CR_L3IO | L3CR_L3DO); + mtspr(SPR_L3CR, cache_reg); + powerpc_sync(); + mtspr(SPR_L3CR, cache_reg | L3CR_L3HWF); + while (mfspr(SPR_L3CR) & L3CR_L3HWF) + ; /* Busy wait for cache to flush */ + powerpc_sync(); + cache_reg &= ~L3CR_L3E; + mtspr(SPR_L3CR, cache_reg); + powerpc_sync(); + mtspr(SPR_L3CR, cache_reg | L3CR_L3I); + powerpc_sync(); + while (mfspr(SPR_L3CR) & L3CR_L3I) + ; /* Busy wait for L3 cache invalidate */ + powerpc_sync(); + } + + mtspr(SPR_HID0, mfspr(SPR_HID0) & ~HID0_DCE); + powerpc_sync(); + isync(); + + mtmsr(msr); +} + static void powermac_reset(platform_t platform) { Modified: projects/pmac_pmu/sys/powerpc/powermac/pmu.c ============================================================================== --- projects/pmac_pmu/sys/powerpc/powermac/pmu.c Sun Dec 30 16:41:17 2012 (r244867) +++ projects/pmac_pmu/sys/powerpc/powermac/pmu.c Sun Dec 30 17:28:08 2012 (r244868) @@ -43,11 +43,18 @@ __FBSDID("$FreeBSD$"); #include #include +#include +#include /* For save_vec() */ #include +#include +#include /* For save_fpu() */ +#include #include #include +#include #include #include +#include #include #include @@ -60,6 +67,10 @@ __FBSDID("$FreeBSD$"); #include "pmuvar.h" #include "viareg.h" +#define PMU_DEFAULTS PMU_INT_TICK | PMU_INT_ADB | \ + PMU_INT_PCEJECT | PMU_INT_SNDBRT | \ + PMU_INT_BATTERY | PMU_INT_ENVIRONMENT + /* * Bus interface */ @@ -89,10 +100,13 @@ static u_int pmu_poll(device_t dev); static void pmu_shutdown(void *xsc, int howto); static void pmu_set_sleepled(void *xsc, int onoff); static int pmu_server_mode(SYSCTL_HANDLER_ARGS); +static int pmu_sleep(SYSCTL_HANDLER_ARGS); static int pmu_acline_state(SYSCTL_HANDLER_ARGS); static int pmu_query_battery(struct pmu_softc *sc, int batt, struct pmu_battstate *info); static int pmu_battquery_sysctl(SYSCTL_HANDLER_ARGS); +static void pmu_restore_state(struct pmu_softc *sc); +static void pmu_save_state(struct pmu_softc *sc); /* * List of battery-related sysctls we might ask for @@ -193,7 +207,7 @@ static signed char pm_send_cmd_type[] = 0x02, -1, -1, -1, -1, -1, -1, -1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -1, -1, 0x01, 0x01, 0x01, -1, -1, -1, -1, -1, - 0x00, 0x00, -1, -1, -1, -1, 0x04, 0x04, + 0x00, 0x00, -1, -1, -1, 0x05, 0x04, 0x04, 0x04, -1, 0x00, -1, -1, -1, -1, -1, 0x00, -1, -1, -1, -1, -1, -1, -1, 0x01, 0x02, -1, -1, -1, -1, -1, -1, @@ -229,7 +243,7 @@ static signed char pm_receive_cmd_type[] 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x03, 0x09, -1, -1, -1, -1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - -1, -1, -1, -1, -1, -1, 0x01, 0x01, + -1, -1, -1, -1, -1, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, -1, -1, -1, -1, -1, -1, -1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, @@ -357,12 +371,13 @@ pmu_attach(device_t dev) /* Init PMU */ - reg = PMU_INT_TICK | PMU_INT_ADB | PMU_INT_PCEJECT | PMU_INT_SNDBRT; - reg |= PMU_INT_BATTERY; - reg |= PMU_INT_ENVIRONMENT; + pmu_write_reg(sc, vBufB, pmu_read_reg(sc, vBufB) | vPB4); + pmu_write_reg(sc, vDirB, (pmu_read_reg(sc, vDirB) | vPB4) & ~vPB3); + + reg = PMU_DEFAULTS; pmu_send(sc, PMU_SET_IMASK, 1, ®, 16, resp); - pmu_write_reg(sc, vIER, 0x90); /* make sure VIA interrupts are on */ + pmu_write_reg(sc, vIER, 0x94); /* make sure VIA interrupts are on */ pmu_send(sc, PMU_SYSTEM_READY, 1, cmd, 16, resp); pmu_send(sc, PMU_GET_VERSION, 1, cmd, 16, resp); @@ -407,6 +422,10 @@ pmu_attach(device_t dev) "server_mode", CTLTYPE_INT | CTLFLAG_RW, sc, 0, pmu_server_mode, "I", "Enable reboot after power failure"); + SYSCTL_ADD_PROC(ctx, SYSCTL_CHILDREN(tree), OID_AUTO, + "sleep", CTLTYPE_INT | CTLFLAG_RW, sc, 0, + pmu_sleep, "I", "Put the machine to sleep"); + if (sc->sc_batteries > 0) { struct sysctl_oid *oid, *battroot; char battnum[2]; @@ -464,6 +483,7 @@ pmu_attach(device_t dev) } } + sc->lid_closed = 0; /* * Set up LED interface */ @@ -515,6 +535,34 @@ pmu_write_reg(struct pmu_softc *sc, u_in bus_write_1(sc->sc_memr, offset, value); } +static void +pmu_save_state(struct pmu_softc *sc) +{ + sc->saved_regs[0] = pmu_read_reg(sc, vBufA); + sc->saved_regs[1] = pmu_read_reg(sc, vDirA); + sc->saved_regs[2] = pmu_read_reg(sc, vBufB); + sc->saved_regs[3] = pmu_read_reg(sc, vDirB); + sc->saved_regs[4] = pmu_read_reg(sc, vPCR); + sc->saved_regs[5] = pmu_read_reg(sc, vACR); + sc->saved_regs[6] = pmu_read_reg(sc, vIER); + sc->saved_regs[7] = pmu_read_reg(sc, vT1C); + sc->saved_regs[8] = pmu_read_reg(sc, vT1CH); +} + +static void +pmu_restore_state(struct pmu_softc *sc) +{ + pmu_write_reg(sc, vBufA, sc->saved_regs[0]); + pmu_write_reg(sc, vDirA, sc->saved_regs[1]); + pmu_write_reg(sc, vBufB, sc->saved_regs[2]); + pmu_write_reg(sc, vDirB, sc->saved_regs[3]); + pmu_write_reg(sc, vPCR, sc->saved_regs[4]); + pmu_write_reg(sc, vACR, sc->saved_regs[5]); + pmu_write_reg(sc, vIER, sc->saved_regs[6]); + pmu_write_reg(sc, vT1C, sc->saved_regs[7]); + pmu_write_reg(sc, vT1CH, sc->saved_regs[8]); +} + static int pmu_send_byte(struct pmu_softc *sc, uint8_t data) { @@ -1018,3 +1066,178 @@ pmu_settime(device_t dev, struct timespe return (0); } +static jmp_buf resetjb; +static register_t sprgs[4]; +static register_t srrs[2]; +/* static register_t sprs[1]; */ +extern void *ap_pcpu; +extern int unin_chip_sleep(device_t dev, int idle); +extern int unin_chip_resume(device_t dev); +extern u_quad_t ap_timebase; +extern void move_sp(uint32_t *newptr); +extern void pmu_sleep_int(void); +extern void low_sleep_handler(void); + +void pmu_sleep_int(void) +{ + register_t hid0; + register_t msr; + register_t saved_msr; + ap_pcpu = pcpup; + + PCPU_SET(restore, &resetjb); + + *(unsigned long *)0x80 = 0x100; + saved_msr = mfmsr(); + ap_timebase = mftb(); + flush_disable_caches(); + if (PCPU_GET(fputhread) != NULL) + save_fpu(PCPU_GET(fputhread)); + if (PCPU_GET(vecthread) != NULL) + save_vec(PCPU_GET(vecthread)); + if (setjmp(resetjb) == 0) { + sprgs[0] = mfspr(SPR_SPRG0); + sprgs[1] = mfspr(SPR_SPRG1); + sprgs[2] = mfspr(SPR_SPRG2); + sprgs[3] = mfspr(SPR_SPRG3); + srrs[0] = mfspr(SPR_SRR0); + srrs[1] = mfspr(SPR_SRR1); + hid0 = mfspr(SPR_HID0); + hid0 = (hid0 & ~(HID0_DOZE | HID0_NAP)) | HID0_SLEEP; + powerpc_sync(); + isync(); + mtspr(SPR_HID0, hid0); + powerpc_sync(); + + msr = mfmsr() | PSL_POW; + while (1) + mtmsr(msr); + } + pmap_activate(curthread); + powerpc_sync(); + mtspr(SPR_SPRG0, sprgs[0]); + mtspr(SPR_SPRG1, sprgs[1]); + mtspr(SPR_SPRG2, sprgs[2]); + mtspr(SPR_SPRG3, sprgs[3]); + mtspr(SPR_SRR0, srrs[0]); + mtspr(SPR_SRR1, srrs[1]); + mtmsr(saved_msr); + powerpc_sync(); +} + +static int +pmu_sleep(SYSCTL_HANDLER_ARGS) +{ + u_int sleep = 0; + int error; + struct pmu_softc *sc = arg1; + uint8_t clrcmd[] = {PMU_PWR_CLR_POWERUP_EVENTS, 0xff, 0xff}; + uint8_t setcmd[] = {PMU_PWR_SET_POWERUP_EVENTS, 0, PMU_PWR_WAKEUP_LID_OPEN|PMU_PWR_WAKEUP_KEY}; + uint8_t sleepcmd[] = {'M', 'A', 'T', 'T'}; + uint8_t resp[16]; + uint8_t reg; + uint8_t cmd[2] = {2, 0}; + + error = sysctl_handle_int(oidp, &sleep, 0, req); + + if (error || !req->newptr) + return (error); + + error = DEVICE_SUSPEND(root_bus); + mtx_lock(&sc->sc_mutex); + if (error == 0) { + mtx_lock(&Giant); + spinlock_enter(); + reg = 0; + pmu_send(sc, PMU_SET_IMASK, 1, ®, 16, resp); + pmu_send(sc, PMU_POWER_EVENTS, 3, clrcmd, 16, resp); + pmu_send(sc, PMU_POWER_EVENTS, 3, setcmd, 2, resp); + pmu_save_state(sc); + + pmu_send(sc, PMU_SLEEP, 4, sleepcmd, 16, resp); + unin_chip_sleep(NULL, 0); + pmu_sleep_int(); + unin_chip_resume(NULL); + + pmu_restore_state(sc); + pmu_send(sc, PMU_SYSTEM_READY, 1, cmd, 16, resp); + reg = PMU_DEFAULTS; + pmu_send(sc, PMU_SET_IMASK, 1, ®, 16, resp); + spinlock_exit(); + mtx_unlock(&Giant); + } + mtx_unlock(&sc->sc_mutex); + printf("failure: %d\n", error); + DEVICE_RESUME(root_bus); + + return (error); +} + +static void +pmu_print_registers(void) +{ + register_t reg; + int i; + + printf("curthread: %p\n", curthread); + printf("srr0: %"PRIxPTR"\n", mfspr(SPR_SRR0)); + printf("DBAT0U %"PRIxPTR"\n", mfspr(SPR_DBAT0U)); + printf("DBAT0L %"PRIxPTR"\n", mfspr(SPR_DBAT0L)); + printf("DBAT1U %"PRIxPTR"\n", mfspr(SPR_DBAT1U)); + printf("DBAT1L %"PRIxPTR"\n", mfspr(SPR_DBAT1L)); + printf("DBAT2U %"PRIxPTR"\n", mfspr(SPR_DBAT2U)); + printf("DBAT2L %"PRIxPTR"\n", mfspr(SPR_DBAT2L)); + printf("DBAT3U %"PRIxPTR"\n", mfspr(SPR_DBAT3U)); + printf("DBAT3L %"PRIxPTR"\n", mfspr(SPR_DBAT3L)); + printf("IBAT0U %"PRIxPTR"\n", mfspr(SPR_IBAT0U)); + printf("IBAT0L %"PRIxPTR"\n", mfspr(SPR_IBAT0L)); + printf("IBAT1U %"PRIxPTR"\n", mfspr(SPR_IBAT1U)); + printf("IBAT1L %"PRIxPTR"\n", mfspr(SPR_IBAT1L)); + printf("IBAT2U %"PRIxPTR"\n", mfspr(SPR_IBAT2U)); + printf("IBAT2L %"PRIxPTR"\n", mfspr(SPR_IBAT2L)); + printf("IBAT3U %"PRIxPTR"\n", mfspr(SPR_IBAT3U)); + printf("IBAT3L %"PRIxPTR"\n", mfspr(SPR_IBAT3L)); + + for (i = 0; i < 16; i++) { + reg = mfsrin(i << ADDR_SR_SHFT); + printf("sr%d = %"PRIxPTR"\n", i, reg); + } + reg = mfspr(SPR_SDR1); + printf("SDR1 = %"PRIxPTR"\n", reg); +} + +int +pmu_set_speed(int high_speed) +{ + struct pmu_softc *sc; + uint8_t sleepcmd[] = {'W', 'O', 'O', 'F', 0}; + uint8_t resp[16]; + + sc = device_get_softc(pmu); + pmu_write_reg(sc, vIER, 0x10); + spinlock_enter(); + mtdec(0x7fffffff); + mb(); + mtdec(0x7fffffff); + + /* The PMU speed change command actually uses '1' to denote low-speed. */ + if (high_speed) + sleepcmd[4] = 0; + else + sleepcmd[4] = 1; + + mtx_lock(&sc->sc_mutex); + pmu_send(sc, PMU_CPU_SPEED, 5, sleepcmd, 16, resp); + mtx_unlock(&sc->sc_mutex); + pmu_print_registers(); + unin_chip_sleep(NULL, 1); + pmu_sleep_int(); + unin_chip_resume(NULL); + + pmu_print_registers(); +// mtdec(1); + spinlock_exit(); + pmu_write_reg(sc, vIER, 0x90); + + return (0); +} Modified: projects/pmac_pmu/sys/powerpc/powermac/pmuvar.h ============================================================================== --- projects/pmac_pmu/sys/powerpc/powermac/pmuvar.h Sun Dec 30 16:41:17 2012 (r244867) +++ projects/pmac_pmu/sys/powerpc/powermac/pmuvar.h Sun Dec 30 17:28:08 2012 (r244868) @@ -161,6 +161,7 @@ struct pmu_softc { int sc_batteries; struct cdev *sc_leddev; int lid_closed; + uint8_t saved_regs[9]; }; struct pmu_battstate { @@ -172,4 +173,6 @@ struct pmu_battstate { int voltage; }; +int pmu_set_speed(int high_speed); + #endif /* PMUVAR_H */ Modified: projects/pmac_pmu/sys/powerpc/powermac/uninorth.c ============================================================================== --- projects/pmac_pmu/sys/powerpc/powermac/uninorth.c Sun Dec 30 16:41:17 2012 (r244867) +++ projects/pmac_pmu/sys/powerpc/powermac/uninorth.c Sun Dec 30 17:28:08 2012 (r244868) @@ -65,6 +65,8 @@ static MALLOC_DEFINE(M_UNIN, "unin", "un static int unin_chip_probe(device_t); static int unin_chip_attach(device_t); +static int unin_chip_suspend(device_t); +//static int unin_chip_resume(device_t); /* * Bus interface. @@ -102,6 +104,8 @@ static device_method_t unin_chip_methods /* Device interface */ DEVMETHOD(device_probe, unin_chip_probe), DEVMETHOD(device_attach, unin_chip_attach), + DEVMETHOD(device_suspend, unin_chip_suspend), + DEVMETHOD(device_resume, unin_chip_resume), /* Bus interface */ *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Sun Dec 30 21:07:22 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 976EDC54; Sun, 30 Dec 2012 21:07:22 +0000 (UTC) (envelope-from jeff@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 7913E8FC0C; Sun, 30 Dec 2012 21:07:22 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBUL7Mta080744; Sun, 30 Dec 2012 21:07:22 GMT (envelope-from jeff@svn.freebsd.org) Received: (from jeff@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBUL7LRi080738; Sun, 30 Dec 2012 21:07:21 GMT (envelope-from jeff@svn.freebsd.org) Message-Id: <201212302107.qBUL7LRi080738@svn.freebsd.org> From: Jeff Roberson Date: Sun, 30 Dec 2012 21:07:21 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244870 - in projects/physbio/sys: arm/arm ia64/ia64 powerpc/powerpc sparc64/include sparc64/sparc64 X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Dec 2012 21:07:22 -0000 Author: jeff Date: Sun Dec 30 21:07:21 2012 New Revision: 244870 URL: http://svnweb.freebsd.org/changeset/base/244870 Log: - Resolve some compile errors discovered during make universe. Sponsored by: EMC / Isilon Storage Division Modified: projects/physbio/sys/arm/arm/busdma_machdep-v6.c projects/physbio/sys/ia64/ia64/busdma_machdep.c projects/physbio/sys/powerpc/powerpc/busdma_machdep.c projects/physbio/sys/sparc64/include/bus_dma.h projects/physbio/sys/sparc64/sparc64/iommu.c Modified: projects/physbio/sys/arm/arm/busdma_machdep-v6.c ============================================================================== --- projects/physbio/sys/arm/arm/busdma_machdep-v6.c Sun Dec 30 17:54:25 2012 (r244869) +++ projects/physbio/sys/arm/arm/busdma_machdep-v6.c Sun Dec 30 21:07:21 2012 (r244870) @@ -1084,7 +1084,7 @@ _bus_dmamap_sync(bus_dma_tag_t dmat, bus (void *)bpage->vaddr, bpage->datacount); else - physcopyout(page->dataaddr, + physcopyout(bpage->dataaddr, (void *)bpage->vaddr, bpage->datacount); cpu_dcache_wb_range((vm_offset_t)bpage->vaddr, Modified: projects/physbio/sys/ia64/ia64/busdma_machdep.c ============================================================================== --- projects/physbio/sys/ia64/ia64/busdma_machdep.c Sun Dec 30 17:54:25 2012 (r244869) +++ projects/physbio/sys/ia64/ia64/busdma_machdep.c Sun Dec 30 21:07:21 2012 (r244870) @@ -536,7 +536,7 @@ _bus_dmamap_count_pages(bus_dma_tag_t dm } } -static void +static int _bus_dmamap_reserve_pages(bus_dma_tag_t dmat, bus_dmamap_t map, int flags) { @@ -558,7 +558,7 @@ _bus_dmamap_reserve_pages(bus_dma_tag_t } mtx_unlock(&bounce_lock); - return (0) + return (0); } /* @@ -669,7 +669,7 @@ _bus_dmamap_load_buffer(bus_dma_tag_t dm bus_size_t sgsize; bus_addr_t curaddr; vm_offset_t vaddr; - bus_addr_t paddr; + int error; if (map == NULL) map = &nobounce_dmamap; Modified: projects/physbio/sys/powerpc/powerpc/busdma_machdep.c ============================================================================== --- projects/physbio/sys/powerpc/powerpc/busdma_machdep.c Sun Dec 30 17:54:25 2012 (r244869) +++ projects/physbio/sys/powerpc/powerpc/busdma_machdep.c Sun Dec 30 21:07:21 2012 (r244870) @@ -769,7 +769,7 @@ _bus_dmamap_load_buffer(bus_dma_tag_t dm bus_size_t sgsize; bus_addr_t curaddr; vm_offset_t vaddr; - bus_addr_t paddr; + int error; if (segs == NULL) segs = map->segments; @@ -891,12 +891,12 @@ _bus_dmamap_sync(bus_dma_tag_t dmat, bus if (op & BUS_DMASYNC_PREWRITE) { while (bpage != NULL) { - if (page->datavaddr != 0) + if (bpage->datavaddr != 0) bcopy((void *)bpage->datavaddr, (void *)bpage->vaddr, bpage->datacount); else - physcopyout(page->dataaddr, + physcopyout(bpage->dataaddr, (void *)bpage->vaddr, bpage->datacount); bpage = STAILQ_NEXT(bpage, links); @@ -906,7 +906,7 @@ _bus_dmamap_sync(bus_dma_tag_t dmat, bus if (op & BUS_DMASYNC_POSTREAD) { while (bpage != NULL) { - if (page->datavaddr != 0) + if (bpage->datavaddr != 0) bcopy((void *)bpage->vaddr, (void *)bpage->datavaddr, bpage->datacount); Modified: projects/physbio/sys/sparc64/include/bus_dma.h ============================================================================== --- projects/physbio/sys/sparc64/include/bus_dma.h Sun Dec 30 17:54:25 2012 (r244869) +++ projects/physbio/sys/sparc64/include/bus_dma.h Sun Dec 30 21:07:21 2012 (r244870) @@ -85,7 +85,8 @@ struct bus_dma_methods { void *buf, bus_size_t buflen, struct pmap *pmap, int flags, bus_dma_segment_t *segs, int *segp); void (*dm_dmamap_waitok)(bus_dma_tag_t dmat, bus_dmamap_t map, - bus_dmamap_callback_t *callback, void *callback_arg); + bus_dma_memory_t mem, bus_dmamap_callback_t *callback, + void *callback_arg); bus_dma_segment_t *(*dm_dmamap_complete)(bus_dma_tag_t dmat, bus_dmamap_t map, bus_dma_segment_t *segs, int nsegs, int error); void (*dm_dmamap_unload)(bus_dma_tag_t, bus_dmamap_t); @@ -128,7 +129,7 @@ struct bus_dma_tag { #define bus_dmamap_destroy(t, p) \ ((t)->dt_mt->dm_dmamap_destroy((t), (p))) #define _bus_dmamap_load_phys(t, m, b, l, f, s, sp) \ - ((t)->dt_mt->dm_dmamap_load_buffer((t), (m), (b), (l), \ + ((t)->dt_mt->dm_dmamap_load_phys((t), (m), (b), (l), \ (f), (s), (sp))) #define _bus_dmamap_load_buffer(t, m, b, l, p, f, s, sp) \ ((t)->dt_mt->dm_dmamap_load_buffer((t), (m), (b), (l), (p), \ Modified: projects/physbio/sys/sparc64/sparc64/iommu.c ============================================================================== --- projects/physbio/sys/sparc64/sparc64/iommu.c Sun Dec 30 17:54:25 2012 (r244869) +++ projects/physbio/sys/sparc64/sparc64/iommu.c Sun Dec 30 21:07:21 2012 (r244870) @@ -851,7 +851,7 @@ iommu_dvmamap_destroy(bus_dma_tag_t dt, * the starting segment on entrace, and the ending segment on exit. */ static int -iommu_dvmamap_load_phys(bus_dma_tag_t dmat, bus_dmamap_t map, vm_paddr_t buf, +iommu_dvmamap_load_phys(bus_dma_tag_t dt, bus_dmamap_t map, vm_paddr_t buf, bus_size_t buflen, int flags, bus_dma_segment_t *segs, int *segp) { bus_addr_t amask, dvmaddr, dvmoffs; From owner-svn-src-projects@FreeBSD.ORG Sun Dec 30 21:47:17 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AFB0966D; Sun, 30 Dec 2012 21:47:17 +0000 (UTC) (envelope-from gavin@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 883188FC08; Sun, 30 Dec 2012 21:47:17 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBULlHB2087348; Sun, 30 Dec 2012 21:47:17 GMT (envelope-from gavin@svn.freebsd.org) Received: (from gavin@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBULlEvf087331; Sun, 30 Dec 2012 21:47:14 GMT (envelope-from gavin@svn.freebsd.org) Message-Id: <201212302147.qBULlEvf087331@svn.freebsd.org> From: Gavin Atkinson Date: Sun, 30 Dec 2012 21:47:14 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244872 - in projects/pciehp: . bin/date bin/df bin/ln bin/ls bin/mv bin/ps bin/sh bin/test cddl/contrib/opensolaris/cmd/zdb cddl/contrib/opensolaris/cmd/zfs cddl/contrib/opensolaris/cm... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Dec 2012 21:47:17 -0000 Author: gavin Date: Sun Dec 30 21:47:11 2012 New Revision: 244872 URL: http://svnweb.freebsd.org/changeset/base/244872 Log: Merge r241782 through r244869 from head. Added: projects/pciehp/cddl/contrib/opensolaris/cmd/zpool/zpool-features.7 - copied unchanged from r244869, head/cddl/contrib/opensolaris/cmd/zpool/zpool-features.7 projects/pciehp/cddl/contrib/opensolaris/lib/libdtrace/powerpc/ - copied from r244869, head/cddl/contrib/opensolaris/lib/libdtrace/powerpc/ projects/pciehp/contrib/atf/FREEBSD-Xlist - copied unchanged from r244869, head/contrib/atf/FREEBSD-Xlist projects/pciehp/contrib/atf/FREEBSD-upgrade - copied unchanged from r244869, head/contrib/atf/FREEBSD-upgrade projects/pciehp/contrib/bind9/lib/dns/opensslecdsa_link.c - copied unchanged from r244869, head/contrib/bind9/lib/dns/opensslecdsa_link.c projects/pciehp/contrib/bmake/unit-tests/order - copied unchanged from r244869, head/contrib/bmake/unit-tests/order projects/pciehp/contrib/libc++/CREDITS.TXT - copied unchanged from r244869, head/contrib/libc++/CREDITS.TXT projects/pciehp/contrib/libc++/LICENSE.TXT - copied unchanged from r244869, head/contrib/libc++/LICENSE.TXT projects/pciehp/contrib/libc-vis/ - copied from r244869, head/contrib/libc-vis/ projects/pciehp/contrib/llvm/include/llvm/ADT/MapVector.h - copied unchanged from r244869, head/contrib/llvm/include/llvm/ADT/MapVector.h projects/pciehp/contrib/llvm/include/llvm/AddressingMode.h - copied unchanged from r244869, head/contrib/llvm/include/llvm/AddressingMode.h projects/pciehp/contrib/llvm/include/llvm/Analysis/DependenceAnalysis.h - copied unchanged from r244869, head/contrib/llvm/include/llvm/Analysis/DependenceAnalysis.h projects/pciehp/contrib/llvm/include/llvm/Analysis/ProfileDataLoader.h - copied unchanged from r244869, head/contrib/llvm/include/llvm/Analysis/ProfileDataLoader.h projects/pciehp/contrib/llvm/include/llvm/Analysis/ProfileDataTypes.h - copied unchanged from r244869, head/contrib/llvm/include/llvm/Analysis/ProfileDataTypes.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/CommandFlags.h - copied unchanged from r244869, head/contrib/llvm/include/llvm/CodeGen/CommandFlags.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/MachinePostDominators.h - copied unchanged from r244869, head/contrib/llvm/include/llvm/CodeGen/MachinePostDominators.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/ScheduleDAGILP.h - copied unchanged from r244869, head/contrib/llvm/include/llvm/CodeGen/ScheduleDAGILP.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/TargetSchedule.h - copied unchanged from r244869, head/contrib/llvm/include/llvm/CodeGen/TargetSchedule.h projects/pciehp/contrib/llvm/include/llvm/DataLayout.h - copied unchanged from r244869, head/contrib/llvm/include/llvm/DataLayout.h projects/pciehp/contrib/llvm/include/llvm/ExecutionEngine/ObjectBuffer.h - copied unchanged from r244869, head/contrib/llvm/include/llvm/ExecutionEngine/ObjectBuffer.h projects/pciehp/contrib/llvm/include/llvm/ExecutionEngine/ObjectImage.h - copied unchanged from r244869, head/contrib/llvm/include/llvm/ExecutionEngine/ObjectImage.h projects/pciehp/contrib/llvm/include/llvm/Object/RelocVisitor.h - copied unchanged from r244869, head/contrib/llvm/include/llvm/Object/RelocVisitor.h projects/pciehp/contrib/llvm/include/llvm/Target/TargetTransformImpl.h - copied unchanged from r244869, head/contrib/llvm/include/llvm/Target/TargetTransformImpl.h projects/pciehp/contrib/llvm/include/llvm/TargetTransformInfo.h - copied unchanged from r244869, head/contrib/llvm/include/llvm/TargetTransformInfo.h projects/pciehp/contrib/llvm/include/llvm/Transforms/Utils/BypassSlowDivision.h - copied unchanged from r244869, head/contrib/llvm/include/llvm/Transforms/Utils/BypassSlowDivision.h projects/pciehp/contrib/llvm/include/llvm/Transforms/Utils/IntegerDivision.h - copied unchanged from r244869, head/contrib/llvm/include/llvm/Transforms/Utils/IntegerDivision.h projects/pciehp/contrib/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h - copied unchanged from r244869, head/contrib/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h projects/pciehp/contrib/llvm/lib/Analysis/CostModel.cpp - copied unchanged from r244869, head/contrib/llvm/lib/Analysis/CostModel.cpp projects/pciehp/contrib/llvm/lib/Analysis/DependenceAnalysis.cpp - copied unchanged from r244869, head/contrib/llvm/lib/Analysis/DependenceAnalysis.cpp projects/pciehp/contrib/llvm/lib/Analysis/ProfileDataLoader.cpp - copied unchanged from r244869, head/contrib/llvm/lib/Analysis/ProfileDataLoader.cpp projects/pciehp/contrib/llvm/lib/Analysis/ProfileDataLoaderPass.cpp - copied unchanged from r244869, head/contrib/llvm/lib/Analysis/ProfileDataLoaderPass.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachinePostDominators.cpp - copied unchanged from r244869, head/contrib/llvm/lib/CodeGen/MachinePostDominators.cpp projects/pciehp/contrib/llvm/lib/CodeGen/StackColoring.cpp - copied unchanged from r244869, head/contrib/llvm/lib/CodeGen/StackColoring.cpp projects/pciehp/contrib/llvm/lib/CodeGen/TargetSchedule.cpp - copied unchanged from r244869, head/contrib/llvm/lib/CodeGen/TargetSchedule.cpp projects/pciehp/contrib/llvm/lib/DebugInfo/DWARFDebugRangeList.cpp - copied unchanged from r244869, head/contrib/llvm/lib/DebugInfo/DWARFDebugRangeList.cpp projects/pciehp/contrib/llvm/lib/DebugInfo/DWARFDebugRangeList.h - copied unchanged from r244869, head/contrib/llvm/lib/DebugInfo/DWARFDebugRangeList.h projects/pciehp/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventsWrapper.h - copied unchanged from r244869, head/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventsWrapper.h projects/pciehp/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/ittnotify_config.h - copied unchanged from r244869, head/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/ittnotify_config.h projects/pciehp/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/ittnotify_types.h - copied unchanged from r244869, head/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/ittnotify_types.h projects/pciehp/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.c - copied unchanged from r244869, head/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.c projects/pciehp/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.h - copied unchanged from r244869, head/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.h projects/pciehp/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/ObjectImageCommon.h - copied unchanged from r244869, head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/ObjectImageCommon.h projects/pciehp/contrib/llvm/lib/Target/ARM/ARMScheduleSwift.td - copied unchanged from r244869, head/contrib/llvm/lib/Target/ARM/ARMScheduleSwift.td projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp - copied unchanged from r244869, head/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.h - copied unchanged from r244869, head/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.h projects/pciehp/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsDirectObjLower.cpp - copied unchanged from r244869, head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsDirectObjLower.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsDirectObjLower.h - copied unchanged from r244869, head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsDirectObjLower.h projects/pciehp/contrib/llvm/lib/Target/Mips/MipsDSPInstrFormats.td - copied unchanged from r244869, head/contrib/llvm/lib/Target/Mips/MipsDSPInstrFormats.td projects/pciehp/contrib/llvm/lib/Target/Mips/MipsDSPInstrInfo.td - copied unchanged from r244869, head/contrib/llvm/lib/Target/Mips/MipsDSPInstrInfo.td projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500mc.td - copied unchanged from r244869, head/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500mc.td projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCScheduleE5500.td - copied unchanged from r244869, head/contrib/llvm/lib/Target/PowerPC/PPCScheduleE5500.td projects/pciehp/contrib/llvm/lib/Target/TargetTransformImpl.cpp - copied unchanged from r244869, head/contrib/llvm/lib/Target/TargetTransformImpl.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86InstrTSX.td - copied unchanged from r244869, head/contrib/llvm/lib/Target/X86/X86InstrTSX.td projects/pciehp/contrib/llvm/lib/Transforms/IPO/BarrierNoopPass.cpp - copied unchanged from r244869, head/contrib/llvm/lib/Transforms/IPO/BarrierNoopPass.cpp projects/pciehp/contrib/llvm/lib/Transforms/Instrumentation/BlackList.cpp - copied unchanged from r244869, head/contrib/llvm/lib/Transforms/Instrumentation/BlackList.cpp projects/pciehp/contrib/llvm/lib/Transforms/Instrumentation/BlackList.h - copied unchanged from r244869, head/contrib/llvm/lib/Transforms/Instrumentation/BlackList.h projects/pciehp/contrib/llvm/lib/Transforms/Scalar/SROA.cpp - copied unchanged from r244869, head/contrib/llvm/lib/Transforms/Scalar/SROA.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/BypassSlowDivision.cpp - copied unchanged from r244869, head/contrib/llvm/lib/Transforms/Utils/BypassSlowDivision.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/IntegerDivision.cpp - copied unchanged from r244869, head/contrib/llvm/lib/Transforms/Utils/IntegerDivision.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/MetaRenamer.cpp - copied unchanged from r244869, head/contrib/llvm/lib/Transforms/Utils/MetaRenamer.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp - copied unchanged from r244869, head/contrib/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp projects/pciehp/contrib/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp - copied unchanged from r244869, head/contrib/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp projects/pciehp/contrib/llvm/lib/VMCore/AttributesImpl.h - copied unchanged from r244869, head/contrib/llvm/lib/VMCore/AttributesImpl.h projects/pciehp/contrib/llvm/lib/VMCore/DataLayout.cpp - copied unchanged from r244869, head/contrib/llvm/lib/VMCore/DataLayout.cpp projects/pciehp/contrib/llvm/lib/VMCore/TargetTransformInfo.cpp - copied unchanged from r244869, head/contrib/llvm/lib/VMCore/TargetTransformInfo.cpp projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/CommentCommands.td - copied unchanged from r244869, head/contrib/llvm/tools/clang/include/clang/AST/CommentCommands.td projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/CommentHTMLTags.td - copied unchanged from r244869, head/contrib/llvm/tools/clang/include/clang/AST/CommentHTMLTags.td projects/pciehp/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTTypeTraits.h - copied unchanged from r244869, head/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTTypeTraits.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Analysis/DomainSpecific/ObjCNoReturn.h - copied unchanged from r244869, head/contrib/llvm/tools/clang/include/clang/Analysis/DomainSpecific/ObjCNoReturn.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.def - copied unchanged from r244869, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.def projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.h - copied unchanged from r244869, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.def - copied unchanged from r244869, head/contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.def projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.def - copied unchanged from r244869, head/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.def projects/pciehp/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearchOptions.h - copied unchanged from r244869, head/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearchOptions.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Lex/PPMutationListener.h - copied unchanged from r244869, head/contrib/llvm/tools/clang/include/clang/Lex/PPMutationListener.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorOptions.h - copied unchanged from r244869, head/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorOptions.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Rewrite/Core/ - copied from r244869, head/contrib/llvm/tools/clang/include/clang/Rewrite/Core/ projects/pciehp/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/ - copied from r244869, head/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/ projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/MultiplexExternalSemaSource.h - copied unchanged from r244869, head/contrib/llvm/tools/clang/include/clang/Sema/MultiplexExternalSemaSource.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Analyses.def - copied unchanged from r244869, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Analyses.def projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h - copied unchanged from r244869, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h - copied unchanged from r244869, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Tooling/CommonOptionsParser.h - copied unchanged from r244869, head/contrib/llvm/tools/clang/include/clang/Tooling/CommonOptionsParser.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabasePluginRegistry.h - copied unchanged from r244869, head/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabasePluginRegistry.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Tooling/FileMatchTrie.h - copied unchanged from r244869, head/contrib/llvm/tools/clang/include/clang/Tooling/FileMatchTrie.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Tooling/JSONCompilationDatabase.h - copied unchanged from r244869, head/contrib/llvm/tools/clang/include/clang/Tooling/JSONCompilationDatabase.h projects/pciehp/contrib/llvm/tools/clang/lib/Analysis/BodyFarm.cpp - copied unchanged from r244869, head/contrib/llvm/tools/clang/lib/Analysis/BodyFarm.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Analysis/BodyFarm.h - copied unchanged from r244869, head/contrib/llvm/tools/clang/lib/Analysis/BodyFarm.h projects/pciehp/contrib/llvm/tools/clang/lib/Analysis/ObjCNoReturn.cpp - copied unchanged from r244869, head/contrib/llvm/tools/clang/lib/Analysis/ObjCNoReturn.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Driver/SanitizerArgs.h - copied unchanged from r244869, head/contrib/llvm/tools/clang/lib/Driver/SanitizerArgs.h projects/pciehp/contrib/llvm/tools/clang/lib/Headers/__wmmintrin_aes.h - copied unchanged from r244869, head/contrib/llvm/tools/clang/lib/Headers/__wmmintrin_aes.h projects/pciehp/contrib/llvm/tools/clang/lib/Headers/__wmmintrin_pclmul.h - copied unchanged from r244869, head/contrib/llvm/tools/clang/lib/Headers/__wmmintrin_pclmul.h projects/pciehp/contrib/llvm/tools/clang/lib/Headers/f16cintrin.h - copied unchanged from r244869, head/contrib/llvm/tools/clang/lib/Headers/f16cintrin.h projects/pciehp/contrib/llvm/tools/clang/lib/Headers/rtmintrin.h - copied unchanged from r244869, head/contrib/llvm/tools/clang/lib/Headers/rtmintrin.h projects/pciehp/contrib/llvm/tools/clang/lib/Rewrite/Core/ - copied from r244869, head/contrib/llvm/tools/clang/lib/Rewrite/Core/ projects/pciehp/contrib/llvm/tools/clang/lib/Rewrite/Frontend/ - copied from r244869, head/contrib/llvm/tools/clang/lib/Rewrite/Frontend/ projects/pciehp/contrib/llvm/tools/clang/lib/Sema/MultiplexExternalSemaSource.cpp - copied unchanged from r244869, head/contrib/llvm/tools/clang/lib/Sema/MultiplexExternalSemaSource.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/ScopeInfo.cpp - copied unchanged from r244869, head/contrib/llvm/tools/clang/lib/Sema/ScopeInfo.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaStmtAsm.cpp - copied unchanged from r244869, head/contrib/llvm/tools/clang/lib/Sema/SemaStmtAsm.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp - copied unchanged from r244869, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp - copied unchanged from r244869, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp - copied unchanged from r244869, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp - copied unchanged from r244869, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp - copied unchanged from r244869, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ConstraintManager.cpp - copied unchanged from r244869, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ConstraintManager.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Tooling/CommonOptionsParser.cpp - copied unchanged from r244869, head/contrib/llvm/tools/clang/lib/Tooling/CommonOptionsParser.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Tooling/FileMatchTrie.cpp - copied unchanged from r244869, head/contrib/llvm/tools/clang/lib/Tooling/FileMatchTrie.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.cpp - copied unchanged from r244869, head/contrib/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.cpp projects/pciehp/contrib/llvm/tools/clang/utils/TableGen/ClangCommentCommandInfoEmitter.cpp - copied unchanged from r244869, head/contrib/llvm/tools/clang/utils/TableGen/ClangCommentCommandInfoEmitter.cpp projects/pciehp/contrib/llvm/tools/clang/utils/TableGen/ClangCommentHTMLTagsEmitter.cpp - copied unchanged from r244869, head/contrib/llvm/tools/clang/utils/TableGen/ClangCommentHTMLTagsEmitter.cpp projects/pciehp/contrib/llvm/tools/lli/RecordingMemoryManager.cpp - copied unchanged from r244869, head/contrib/llvm/tools/lli/RecordingMemoryManager.cpp projects/pciehp/contrib/llvm/tools/lli/RecordingMemoryManager.h - copied unchanged from r244869, head/contrib/llvm/tools/lli/RecordingMemoryManager.h projects/pciehp/contrib/llvm/tools/lli/RemoteTarget.cpp - copied unchanged from r244869, head/contrib/llvm/tools/lli/RemoteTarget.cpp projects/pciehp/contrib/llvm/tools/lli/RemoteTarget.h - copied unchanged from r244869, head/contrib/llvm/tools/lli/RemoteTarget.h projects/pciehp/contrib/llvm/utils/TableGen/CodeGenMapTable.cpp - copied unchanged from r244869, head/contrib/llvm/utils/TableGen/CodeGenMapTable.cpp projects/pciehp/contrib/mknod/ - copied from r244869, head/contrib/mknod/ projects/pciehp/contrib/mtree/ - copied from r244869, head/contrib/mtree/ projects/pciehp/contrib/openbsm/bin/auditdistd/ - copied from r244869, head/contrib/openbsm/bin/auditdistd/ projects/pciehp/contrib/openbsm/compat/closefrom.h - copied unchanged from r244869, head/contrib/openbsm/compat/closefrom.h projects/pciehp/contrib/openbsm/compat/compat.h - copied unchanged from r244869, head/contrib/openbsm/compat/compat.h projects/pciehp/contrib/openbsm/compat/endian_enc.h - copied unchanged from r244869, head/contrib/openbsm/compat/endian_enc.h projects/pciehp/contrib/openbsm/compat/flopen.h - copied unchanged from r244869, head/contrib/openbsm/compat/flopen.h projects/pciehp/contrib/openbsm/compat/pidfile.h - copied unchanged from r244869, head/contrib/openbsm/compat/pidfile.h projects/pciehp/contrib/openbsm/compat/vis.h - copied unchanged from r244869, head/contrib/openbsm/compat/vis.h projects/pciehp/contrib/openbsm/config/ylwrap - copied unchanged from r244869, head/contrib/openbsm/config/ylwrap projects/pciehp/contrib/openbsm/m4/ - copied from r244869, head/contrib/openbsm/m4/ projects/pciehp/etc/atf/ - copied from r244869, head/etc/atf/ projects/pciehp/etc/rc.d/auditdistd - copied unchanged from r244869, head/etc/rc.d/auditdistd projects/pciehp/lib/atf/ - copied from r244869, head/lib/atf/ projects/pciehp/lib/clang/include/MipsGenAsmMatcher.inc - copied unchanged from r244869, head/lib/clang/include/MipsGenAsmMatcher.inc projects/pciehp/lib/clang/include/MipsGenMCPseudoLowering.inc - copied unchanged from r244869, head/lib/clang/include/MipsGenMCPseudoLowering.inc projects/pciehp/lib/clang/include/clang/AST/CommentCommandInfo.inc - copied unchanged from r244869, head/lib/clang/include/clang/AST/CommentCommandInfo.inc projects/pciehp/lib/clang/include/clang/AST/CommentHTMLTags.inc - copied unchanged from r244869, head/lib/clang/include/clang/AST/CommentHTMLTags.inc projects/pciehp/lib/clang/include/clang/AST/CommentHTMLTagsProperties.inc - copied unchanged from r244869, head/lib/clang/include/clang/AST/CommentHTMLTagsProperties.inc projects/pciehp/lib/clang/libclangrewritecore/ - copied from r244869, head/lib/clang/libclangrewritecore/ projects/pciehp/lib/clang/libclangrewritefrontend/ - copied from r244869, head/lib/clang/libclangrewritefrontend/ projects/pciehp/lib/libc/gen/unvis-compat.c - copied unchanged from r244869, head/lib/libc/gen/unvis-compat.c projects/pciehp/lib/libc/gen/waitid.c - copied unchanged from r244869, head/lib/libc/gen/waitid.c projects/pciehp/lib/libc/nls/zh_CN.GB18030.msg - copied unchanged from r244869, head/lib/libc/nls/zh_CN.GB18030.msg projects/pciehp/lib/libc/nls/zh_CN.GB2312.msg - copied unchanged from r244869, head/lib/libc/nls/zh_CN.GB2312.msg projects/pciehp/lib/libc/nls/zh_CN.UTF-8.msg - copied unchanged from r244869, head/lib/libc/nls/zh_CN.UTF-8.msg projects/pciehp/lib/libcrypt/tests/ - copied from r244869, head/lib/libcrypt/tests/ projects/pciehp/lib/libnetbsd/ - copied from r244869, head/lib/libnetbsd/ projects/pciehp/lib/libstand/amd64/ - copied from r244869, head/lib/libstand/amd64/ projects/pciehp/lib/libutil/pw_util.3 - copied unchanged from r244869, head/lib/libutil/pw_util.3 projects/pciehp/libexec/atf/ - copied from r244869, head/libexec/atf/ projects/pciehp/share/atf/ - copied from r244869, head/share/atf/ projects/pciehp/share/doc/atf/ - copied from r244869, head/share/doc/atf/ projects/pciehp/share/examples/atf/ - copied from r244869, head/share/examples/atf/ projects/pciehp/share/mk/atf.test.mk - copied unchanged from r244869, head/share/mk/atf.test.mk projects/pciehp/share/mk/bsd.progs.mk - copied unchanged from r244869, head/share/mk/bsd.progs.mk projects/pciehp/share/mk/bsd.test.mk - copied unchanged from r244869, head/share/mk/bsd.test.mk projects/pciehp/share/syscons/keymaps/danish.iso.macbook.kbd - copied unchanged from r244869, head/share/syscons/keymaps/danish.iso.macbook.kbd projects/pciehp/share/syscons/keymaps/us.dvorakp.kbd - copied unchanged from r244869, head/share/syscons/keymaps/us.dvorakp.kbd projects/pciehp/share/xml/ - copied from r244869, head/share/xml/ projects/pciehp/share/xsl/ - copied from r244869, head/share/xsl/ projects/pciehp/sys/arm/arm/cpufunc_asm_arm11x6.S - copied unchanged from r244869, head/sys/arm/arm/cpufunc_asm_arm11x6.S projects/pciehp/sys/arm/arm/pl190.c - copied unchanged from r244869, head/sys/arm/arm/pl190.c projects/pciehp/sys/arm/broadcom/bcm2835/bcm2835_gpio.c - copied unchanged from r244869, head/sys/arm/broadcom/bcm2835/bcm2835_gpio.c projects/pciehp/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c - copied unchanged from r244869, head/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c projects/pciehp/sys/arm/conf/Makefile - copied unchanged from r244869, head/sys/arm/conf/Makefile projects/pciehp/sys/arm/conf/NOTES - copied unchanged from r244869, head/sys/arm/conf/NOTES projects/pciehp/sys/arm/conf/VERSATILEPB - copied unchanged from r244869, head/sys/arm/conf/VERSATILEPB projects/pciehp/sys/arm/versatile/ - copied from r244869, head/sys/arm/versatile/ projects/pciehp/sys/boot/fdt/dts/versatilepb.dts - copied unchanged from r244869, head/sys/boot/fdt/dts/versatilepb.dts projects/pciehp/sys/boot/ficl64/ - copied from r244869, head/sys/boot/ficl64/ projects/pciehp/sys/boot/forth/menusets.4th - copied unchanged from r244869, head/sys/boot/forth/menusets.4th projects/pciehp/sys/boot/forth/menusets.4th.8 - copied unchanged from r244869, head/sys/boot/forth/menusets.4th.8 projects/pciehp/sys/cddl/contrib/opensolaris/uts/powerpc/ - copied from r244869, head/sys/cddl/contrib/opensolaris/uts/powerpc/ projects/pciehp/sys/cddl/dev/dtrace/powerpc/ - copied from r244869, head/sys/cddl/dev/dtrace/powerpc/ projects/pciehp/sys/contrib/dev/acpica/components/disassembler/dmdeferred.c - copied unchanged from r244869, head/sys/contrib/dev/acpica/components/disassembler/dmdeferred.c projects/pciehp/sys/dev/ath/if_ath_alq.c - copied unchanged from r244869, head/sys/dev/ath/if_ath_alq.c projects/pciehp/sys/dev/ath/if_ath_alq.h - copied unchanged from r244869, head/sys/dev/ath/if_ath_alq.h projects/pciehp/sys/kern/subr_busdma_bufalloc.c - copied unchanged from r244869, head/sys/kern/subr_busdma_bufalloc.c projects/pciehp/sys/mips/cavium/octeon_pci_console.c - copied unchanged from r244869, head/sys/mips/cavium/octeon_pci_console.c projects/pciehp/sys/powerpc/conf/WII - copied unchanged from r244869, head/sys/powerpc/conf/WII projects/pciehp/sys/powerpc/wii/locore.S - copied unchanged from r244869, head/sys/powerpc/wii/locore.S projects/pciehp/sys/rpc/krpc.h - copied unchanged from r244869, head/sys/rpc/krpc.h projects/pciehp/sys/security/audit/bsm_domain.c - copied unchanged from r244869, head/sys/security/audit/bsm_domain.c projects/pciehp/sys/security/audit/bsm_errno.c - copied unchanged from r244869, head/sys/security/audit/bsm_errno.c projects/pciehp/sys/security/audit/bsm_fcntl.c - copied unchanged from r244869, head/sys/security/audit/bsm_fcntl.c projects/pciehp/sys/security/audit/bsm_socket_type.c - copied unchanged from r244869, head/sys/security/audit/bsm_socket_type.c projects/pciehp/sys/security/audit/bsm_token.c - copied unchanged from r244869, head/sys/security/audit/bsm_token.c projects/pciehp/sys/sys/busdma_bufalloc.h - copied unchanged from r244869, head/sys/sys/busdma_bufalloc.h projects/pciehp/sys/ufs/ffs/ffs_suspend.c - copied unchanged from r244869, head/sys/ufs/ffs/ffs_suspend.c projects/pciehp/tools/build/options/WITHOUT_ATF - copied unchanged from r244869, head/tools/build/options/WITHOUT_ATF projects/pciehp/tools/build/options/WITHOUT_CLANG_IS_CC - copied unchanged from r244869, head/tools/build/options/WITHOUT_CLANG_IS_CC projects/pciehp/tools/regression/bin/sh/builtins/alias3.0 - copied unchanged from r244869, head/tools/regression/bin/sh/builtins/alias3.0 projects/pciehp/tools/regression/bin/sh/builtins/alias3.0.stdout - copied unchanged from r244869, head/tools/regression/bin/sh/builtins/alias3.0.stdout projects/pciehp/tools/regression/bin/sh/errors/write-error1.0 - copied unchanged from r244869, head/tools/regression/bin/sh/errors/write-error1.0 projects/pciehp/tools/regression/bin/sh/parser/alias10.0 - copied unchanged from r244869, head/tools/regression/bin/sh/parser/alias10.0 projects/pciehp/tools/regression/bin/sh/parser/alias9.0 - copied unchanged from r244869, head/tools/regression/bin/sh/parser/alias9.0 projects/pciehp/tools/regression/filemon/timed-forkb.c - copied unchanged from r244869, head/tools/regression/filemon/timed-forkb.c projects/pciehp/tools/regression/usr.bin/printf/regress.zero.out - copied unchanged from r244869, head/tools/regression/usr.bin/printf/regress.zero.out projects/pciehp/tools/tools/ath/athalq/ - copied from r244869, head/tools/tools/ath/athalq/ projects/pciehp/usr.bin/atf/ - copied from r244869, head/usr.bin/atf/ projects/pciehp/usr.bin/ssh-copy-id/ - copied from r244869, head/usr.bin/ssh-copy-id/ projects/pciehp/usr.sbin/auditdistd/ - copied from r244869, head/usr.sbin/auditdistd/ projects/pciehp/usr.sbin/bsdconfig/include/usage.hlp - copied unchanged from r244869, head/usr.sbin/bsdconfig/include/usage.hlp projects/pciehp/usr.sbin/bsdconfig/networking/include/tcp.hlp - copied unchanged from r244869, head/usr.sbin/bsdconfig/networking/include/tcp.hlp projects/pciehp/usr.sbin/bsdconfig/security/include/securelevel.hlp - copied unchanged from r244869, head/usr.sbin/bsdconfig/security/include/securelevel.hlp projects/pciehp/usr.sbin/bsdconfig/usermgmt/include/usermgmt.hlp - copied unchanged from r244869, head/usr.sbin/bsdconfig/usermgmt/include/usermgmt.hlp projects/pciehp/usr.sbin/bsdinstall/partedit/sade.8 - copied unchanged from r244869, head/usr.sbin/bsdinstall/partedit/sade.8 projects/pciehp/usr.sbin/nmtree/ - copied from r244869, head/usr.sbin/nmtree/ projects/pciehp/usr.sbin/pkg/dns_utils.c - copied unchanged from r244869, head/usr.sbin/pkg/dns_utils.c projects/pciehp/usr.sbin/pkg/dns_utils.h - copied unchanged from r244869, head/usr.sbin/pkg/dns_utils.h projects/pciehp/usr.sbin/pkg_install/lib/pkgng.c - copied unchanged from r244869, head/usr.sbin/pkg_install/lib/pkgng.c Deleted: projects/pciehp/cddl/contrib/opensolaris/cmd/zpool/zpool-features.5 projects/pciehp/contrib/libc++/src/support/ projects/pciehp/contrib/llvm/include/llvm/ADT/Trie.h projects/pciehp/contrib/llvm/include/llvm/Analysis/LoopDependenceAnalysis.h projects/pciehp/contrib/llvm/include/llvm/ExecutionEngine/IntelJITEventsWrapper.h projects/pciehp/contrib/llvm/include/llvm/TableGen/TableGenAction.h projects/pciehp/contrib/llvm/include/llvm/Target/TargetData.h projects/pciehp/contrib/llvm/include/llvm/Target/TargetELFWriterInfo.h projects/pciehp/contrib/llvm/lib/Analysis/LoopDependenceAnalysis.cpp projects/pciehp/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.cpp projects/pciehp/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.h projects/pciehp/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/ObjectImage.h projects/pciehp/contrib/llvm/lib/TableGen/TableGenAction.cpp projects/pciehp/contrib/llvm/lib/Target/AMDGPU/ projects/pciehp/contrib/llvm/lib/Target/ARM/ARMELFWriterInfo.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMELFWriterInfo.h projects/pciehp/contrib/llvm/lib/Target/MBlaze/MBlazeELFWriterInfo.cpp projects/pciehp/contrib/llvm/lib/Target/MBlaze/MBlazeELFWriterInfo.h projects/pciehp/contrib/llvm/lib/Target/TargetData.cpp projects/pciehp/contrib/llvm/lib/Target/TargetELFWriterInfo.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86ELFWriterInfo.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86ELFWriterInfo.h projects/pciehp/contrib/llvm/lib/Target/X86/X86MCInstLower.h projects/pciehp/contrib/llvm/lib/Transforms/Instrumentation/FunctionBlackList.cpp projects/pciehp/contrib/llvm/lib/Transforms/Instrumentation/FunctionBlackList.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/Analyses.def projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/AnalyzerOptions.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticOptions.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/HeaderSearchOptions.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/PreprocessorOptions.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Rewrite/ASTConsumers.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Rewrite/DeltaTree.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Rewrite/FixItRewriter.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Rewrite/FrontendActions.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Rewrite/HTMLRewrite.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Rewrite/RewriteRope.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Rewrite/Rewriter.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Rewrite/Rewriters.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Rewrite/TokenRewriter.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/DereferenceChecker.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Tooling/CommandLineClangTool.h projects/pciehp/contrib/llvm/tools/clang/lib/Rewrite/DeltaTree.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Rewrite/FixItRewriter.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Rewrite/FrontendActions.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Rewrite/HTMLPrint.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Rewrite/HTMLRewrite.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Rewrite/InclusionRewriter.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Rewrite/RewriteMacros.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Rewrite/RewriteModernObjC.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Rewrite/RewriteObjC.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Rewrite/RewriteRope.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Rewrite/RewriteTest.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Rewrite/Rewriter.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Rewrite/TokenRewriter.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AdjustedReturnValueChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/OSAtomicChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicConstraintManager.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Tooling/CommandLineClangTool.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Tooling/CustomCompilationDatabase.h projects/pciehp/include/vis.h projects/pciehp/lib/clang/libclangrewrite/ projects/pciehp/lib/libc/gen/unvis.3 projects/pciehp/lib/libc/gen/unvis.c projects/pciehp/lib/libc/gen/vis.3 projects/pciehp/lib/libc/gen/vis.c projects/pciehp/lib/libdisk/ projects/pciehp/share/man/man4/harp.4 projects/pciehp/share/man/man4/hfa.4 projects/pciehp/share/man/man4/idt.4 projects/pciehp/share/man/man9/VFS_LOCK_GIANT.9 projects/pciehp/sys/boot/userboot/libstand/amd64/ projects/pciehp/sys/conf/defines projects/pciehp/sys/security/audit/audit_bsm_domain.c projects/pciehp/sys/security/audit/audit_bsm_errno.c projects/pciehp/sys/security/audit/audit_bsm_fcntl.c projects/pciehp/sys/security/audit/audit_bsm_socket_type.c projects/pciehp/sys/security/audit/audit_bsm_token.c projects/pciehp/usr.sbin/pw/edgroup.c projects/pciehp/usr.sbin/sade/ Modified: projects/pciehp/LOCKS projects/pciehp/MAINTAINERS (contents, props changed) projects/pciehp/Makefile projects/pciehp/Makefile.inc1 projects/pciehp/ObsoleteFiles.inc projects/pciehp/UPDATING projects/pciehp/bin/date/netdate.c projects/pciehp/bin/df/df.1 projects/pciehp/bin/df/df.c projects/pciehp/bin/ln/ln.1 projects/pciehp/bin/ls/cmp.c projects/pciehp/bin/ls/extern.h projects/pciehp/bin/ls/ls.1 projects/pciehp/bin/ls/ls.c projects/pciehp/bin/ls/ls.h projects/pciehp/bin/ls/print.c projects/pciehp/bin/ls/util.c projects/pciehp/bin/mv/mv.c projects/pciehp/bin/ps/ps.c projects/pciehp/bin/sh/alias.c projects/pciehp/bin/sh/eval.c projects/pciehp/bin/sh/exec.c projects/pciehp/bin/sh/input.c projects/pciehp/bin/sh/input.h projects/pciehp/bin/sh/jobs.c projects/pciehp/bin/sh/output.c projects/pciehp/bin/sh/output.h projects/pciehp/bin/test/test.1 projects/pciehp/cddl/contrib/opensolaris/cmd/zdb/zdb.c projects/pciehp/cddl/contrib/opensolaris/cmd/zfs/zfs.8 projects/pciehp/cddl/contrib/opensolaris/cmd/zpool/zpool.8 projects/pciehp/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c projects/pciehp/cddl/contrib/opensolaris/cmd/ztest/ztest.c projects/pciehp/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_sendrecv.c projects/pciehp/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h projects/pciehp/cddl/lib/Makefile projects/pciehp/cddl/lib/libdtrace/Makefile projects/pciehp/cddl/sbin/zpool/Makefile projects/pciehp/cddl/usr.sbin/Makefile projects/pciehp/contrib/atf/atf-c/macros.h projects/pciehp/contrib/atf/atf-report/atf-report.cpp projects/pciehp/contrib/atf/atf-run/io.hpp projects/pciehp/contrib/atf/atf-run/requirements_test.cpp projects/pciehp/contrib/atf/atf-sh/atf_check_test.sh projects/pciehp/contrib/atf/doc/atf-test-case.4 projects/pciehp/contrib/bind9/CHANGES projects/pciehp/contrib/bind9/Makefile.in projects/pciehp/contrib/bind9/README projects/pciehp/contrib/bind9/acconfig.h projects/pciehp/contrib/bind9/bin/Makefile.in projects/pciehp/contrib/bind9/bin/check/Makefile.in projects/pciehp/contrib/bind9/bin/check/check-tool.c projects/pciehp/contrib/bind9/bin/confgen/Makefile.in projects/pciehp/contrib/bind9/bin/confgen/unix/Makefile.in projects/pciehp/contrib/bind9/bin/dig/Makefile.in projects/pciehp/contrib/bind9/bin/dig/nslookup.c projects/pciehp/contrib/bind9/bin/dnssec/Makefile.in projects/pciehp/contrib/bind9/bin/dnssec/dnssec-dsfromkey.8 projects/pciehp/contrib/bind9/bin/dnssec/dnssec-dsfromkey.c projects/pciehp/contrib/bind9/bin/dnssec/dnssec-dsfromkey.docbook projects/pciehp/contrib/bind9/bin/dnssec/dnssec-dsfromkey.html projects/pciehp/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.8 projects/pciehp/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.c projects/pciehp/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.docbook projects/pciehp/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.html projects/pciehp/contrib/bind9/bin/dnssec/dnssec-keygen.8 projects/pciehp/contrib/bind9/bin/dnssec/dnssec-keygen.c projects/pciehp/contrib/bind9/bin/dnssec/dnssec-keygen.docbook projects/pciehp/contrib/bind9/bin/dnssec/dnssec-keygen.html projects/pciehp/contrib/bind9/bin/dnssec/dnssec-settime.c projects/pciehp/contrib/bind9/bin/dnssec/dnssec-signzone.c projects/pciehp/contrib/bind9/bin/named/Makefile.in projects/pciehp/contrib/bind9/bin/named/builtin.c projects/pciehp/contrib/bind9/bin/named/config.c projects/pciehp/contrib/bind9/bin/named/controlconf.c projects/pciehp/contrib/bind9/bin/named/convertxsl.pl projects/pciehp/contrib/bind9/bin/named/query.c projects/pciehp/contrib/bind9/bin/named/server.c projects/pciehp/contrib/bind9/bin/named/statschannel.c projects/pciehp/contrib/bind9/bin/named/unix/Makefile.in projects/pciehp/contrib/bind9/bin/nsupdate/Makefile.in projects/pciehp/contrib/bind9/bin/nsupdate/nsupdate.c projects/pciehp/contrib/bind9/bin/rndc/Makefile.in projects/pciehp/contrib/bind9/bin/tools/Makefile.in projects/pciehp/contrib/bind9/config.h.in projects/pciehp/contrib/bind9/configure.in projects/pciehp/contrib/bind9/doc/Makefile.in projects/pciehp/contrib/bind9/doc/arm/Bv9ARM-book.xml projects/pciehp/contrib/bind9/doc/arm/Bv9ARM.ch04.html projects/pciehp/contrib/bind9/doc/arm/Bv9ARM.ch06.html projects/pciehp/contrib/bind9/doc/arm/Bv9ARM.ch07.html projects/pciehp/contrib/bind9/doc/arm/Bv9ARM.ch08.html projects/pciehp/contrib/bind9/doc/arm/Bv9ARM.ch09.html projects/pciehp/contrib/bind9/doc/arm/Bv9ARM.html projects/pciehp/contrib/bind9/doc/arm/Bv9ARM.pdf projects/pciehp/contrib/bind9/doc/arm/Makefile.in projects/pciehp/contrib/bind9/doc/arm/man.arpaname.html projects/pciehp/contrib/bind9/doc/arm/man.ddns-confgen.html projects/pciehp/contrib/bind9/doc/arm/man.dig.html projects/pciehp/contrib/bind9/doc/arm/man.dnssec-dsfromkey.html projects/pciehp/contrib/bind9/doc/arm/man.dnssec-keyfromlabel.html projects/pciehp/contrib/bind9/doc/arm/man.dnssec-keygen.html projects/pciehp/contrib/bind9/doc/arm/man.dnssec-revoke.html projects/pciehp/contrib/bind9/doc/arm/man.dnssec-settime.html projects/pciehp/contrib/bind9/doc/arm/man.dnssec-signzone.html projects/pciehp/contrib/bind9/doc/arm/man.genrandom.html projects/pciehp/contrib/bind9/doc/arm/man.host.html projects/pciehp/contrib/bind9/doc/arm/man.isc-hmac-fixup.html projects/pciehp/contrib/bind9/doc/arm/man.named-checkconf.html projects/pciehp/contrib/bind9/doc/arm/man.named-checkzone.html projects/pciehp/contrib/bind9/doc/arm/man.named-journalprint.html projects/pciehp/contrib/bind9/doc/arm/man.named.html projects/pciehp/contrib/bind9/doc/arm/man.nsec3hash.html projects/pciehp/contrib/bind9/doc/arm/man.nsupdate.html projects/pciehp/contrib/bind9/doc/arm/man.rndc-confgen.html projects/pciehp/contrib/bind9/doc/arm/man.rndc.conf.html projects/pciehp/contrib/bind9/doc/arm/man.rndc.html projects/pciehp/contrib/bind9/doc/misc/Makefile.in projects/pciehp/contrib/bind9/doc/misc/format-options.pl projects/pciehp/contrib/bind9/doc/misc/options projects/pciehp/contrib/bind9/doc/misc/sort-options.pl projects/pciehp/contrib/bind9/isc-config.sh.in projects/pciehp/contrib/bind9/lib/Makefile.in projects/pciehp/contrib/bind9/lib/bind9/Makefile.in projects/pciehp/contrib/bind9/lib/bind9/api projects/pciehp/contrib/bind9/lib/bind9/check.c projects/pciehp/contrib/bind9/lib/bind9/include/Makefile.in projects/pciehp/contrib/bind9/lib/bind9/include/bind9/Makefile.in projects/pciehp/contrib/bind9/lib/dns/Makefile.in projects/pciehp/contrib/bind9/lib/dns/adb.c projects/pciehp/contrib/bind9/lib/dns/api projects/pciehp/contrib/bind9/lib/dns/db.c projects/pciehp/contrib/bind9/lib/dns/dnssec.c projects/pciehp/contrib/bind9/lib/dns/ds.c projects/pciehp/contrib/bind9/lib/dns/dst_api.c projects/pciehp/contrib/bind9/lib/dns/dst_internal.h projects/pciehp/contrib/bind9/lib/dns/dst_openssl.h projects/pciehp/contrib/bind9/lib/dns/dst_parse.c projects/pciehp/contrib/bind9/lib/dns/dst_parse.h projects/pciehp/contrib/bind9/lib/dns/dst_result.c projects/pciehp/contrib/bind9/lib/dns/include/Makefile.in projects/pciehp/contrib/bind9/lib/dns/include/dns/db.h projects/pciehp/contrib/bind9/lib/dns/include/dns/dnssec.h projects/pciehp/contrib/bind9/lib/dns/include/dns/ds.h projects/pciehp/contrib/bind9/lib/dns/include/dns/iptable.h projects/pciehp/contrib/bind9/lib/dns/include/dns/keyvalues.h projects/pciehp/contrib/bind9/lib/dns/include/dns/log.h projects/pciehp/contrib/bind9/lib/dns/include/dns/rdataset.h projects/pciehp/contrib/bind9/lib/dns/include/dns/rpz.h projects/pciehp/contrib/bind9/lib/dns/include/dns/stats.h projects/pciehp/contrib/bind9/lib/dns/include/dns/view.h projects/pciehp/contrib/bind9/lib/dns/include/dns/zone.h projects/pciehp/contrib/bind9/lib/dns/include/dst/Makefile.in projects/pciehp/contrib/bind9/lib/dns/include/dst/dst.h projects/pciehp/contrib/bind9/lib/dns/include/dst/result.h projects/pciehp/contrib/bind9/lib/dns/log.c projects/pciehp/contrib/bind9/lib/dns/master.c projects/pciehp/contrib/bind9/lib/dns/masterdump.c projects/pciehp/contrib/bind9/lib/dns/openssl_link.c projects/pciehp/contrib/bind9/lib/dns/openssldh_link.c projects/pciehp/contrib/bind9/lib/dns/openssldsa_link.c projects/pciehp/contrib/bind9/lib/dns/opensslgost_link.c projects/pciehp/contrib/bind9/lib/dns/opensslrsa_link.c projects/pciehp/contrib/bind9/lib/dns/rbtdb.c projects/pciehp/contrib/bind9/lib/dns/rcode.c projects/pciehp/contrib/bind9/lib/dns/rdata.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/dlv_32769.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/ds_43.c projects/pciehp/contrib/bind9/lib/dns/rdataset.c projects/pciehp/contrib/bind9/lib/dns/resolver.c projects/pciehp/contrib/bind9/lib/dns/rpz.c projects/pciehp/contrib/bind9/lib/dns/spnego_asn1.pl projects/pciehp/contrib/bind9/lib/dns/validator.c projects/pciehp/contrib/bind9/lib/dns/view.c projects/pciehp/contrib/bind9/lib/dns/zone.c projects/pciehp/contrib/bind9/lib/export/Makefile.in projects/pciehp/contrib/bind9/lib/export/dns/Makefile.in projects/pciehp/contrib/bind9/lib/export/dns/include/Makefile.in projects/pciehp/contrib/bind9/lib/export/dns/include/dns/Makefile.in projects/pciehp/contrib/bind9/lib/export/dns/include/dst/Makefile.in projects/pciehp/contrib/bind9/lib/export/irs/include/irs/Makefile.in projects/pciehp/contrib/bind9/lib/export/isc/Makefile.in projects/pciehp/contrib/bind9/lib/export/isc/include/isc/Makefile.in projects/pciehp/contrib/bind9/lib/export/isc/nls/Makefile.in projects/pciehp/contrib/bind9/lib/export/isc/nothreads/Makefile.in projects/pciehp/contrib/bind9/lib/export/isc/nothreads/include/isc/Makefile.in projects/pciehp/contrib/bind9/lib/export/isc/pthreads/Makefile.in projects/pciehp/contrib/bind9/lib/export/isc/pthreads/include/isc/Makefile.in projects/pciehp/contrib/bind9/lib/export/isc/unix/Makefile.in projects/pciehp/contrib/bind9/lib/export/isc/unix/include/isc/Makefile.in projects/pciehp/contrib/bind9/lib/export/isccfg/include/isccfg/Makefile.in projects/pciehp/contrib/bind9/lib/export/samples/Makefile-postinstall.in projects/pciehp/contrib/bind9/lib/export/samples/Makefile.in projects/pciehp/contrib/bind9/lib/irs/Makefile.in projects/pciehp/contrib/bind9/lib/irs/include/Makefile.in projects/pciehp/contrib/bind9/lib/irs/include/irs/Makefile.in projects/pciehp/contrib/bind9/lib/isc/alpha/Makefile.in projects/pciehp/contrib/bind9/lib/isc/alpha/include/Makefile.in projects/pciehp/contrib/bind9/lib/isc/alpha/include/isc/Makefile.in projects/pciehp/contrib/bind9/lib/isc/api projects/pciehp/contrib/bind9/lib/isc/ia64/Makefile.in projects/pciehp/contrib/bind9/lib/isc/ia64/include/Makefile.in projects/pciehp/contrib/bind9/lib/isc/ia64/include/isc/Makefile.in projects/pciehp/contrib/bind9/lib/isc/ia64/include/isc/atomic.h projects/pciehp/contrib/bind9/lib/isc/include/Makefile.in projects/pciehp/contrib/bind9/lib/isc/include/isc/file.h projects/pciehp/contrib/bind9/lib/isc/include/isc/namespace.h projects/pciehp/contrib/bind9/lib/isc/include/isc/task.h projects/pciehp/contrib/bind9/lib/isc/mem.c projects/pciehp/contrib/bind9/lib/isc/mips/Makefile.in projects/pciehp/contrib/bind9/lib/isc/mips/include/Makefile.in projects/pciehp/contrib/bind9/lib/isc/mips/include/isc/Makefile.in projects/pciehp/contrib/bind9/lib/isc/nls/Makefile.in projects/pciehp/contrib/bind9/lib/isc/noatomic/Makefile.in projects/pciehp/contrib/bind9/lib/isc/noatomic/include/Makefile.in projects/pciehp/contrib/bind9/lib/isc/noatomic/include/isc/Makefile.in projects/pciehp/contrib/bind9/lib/isc/nothreads/Makefile.in projects/pciehp/contrib/bind9/lib/isc/nothreads/include/Makefile.in projects/pciehp/contrib/bind9/lib/isc/nothreads/include/isc/Makefile.in projects/pciehp/contrib/bind9/lib/isc/powerpc/Makefile.in projects/pciehp/contrib/bind9/lib/isc/powerpc/include/Makefile.in projects/pciehp/contrib/bind9/lib/isc/powerpc/include/isc/Makefile.in projects/pciehp/contrib/bind9/lib/isc/pthreads/Makefile.in projects/pciehp/contrib/bind9/lib/isc/pthreads/condition.c projects/pciehp/contrib/bind9/lib/isc/pthreads/include/Makefile.in projects/pciehp/contrib/bind9/lib/isc/pthreads/include/isc/Makefile.in projects/pciehp/contrib/bind9/lib/isc/sparc64/Makefile.in projects/pciehp/contrib/bind9/lib/isc/sparc64/include/Makefile.in projects/pciehp/contrib/bind9/lib/isc/sparc64/include/isc/Makefile.in projects/pciehp/contrib/bind9/lib/isc/task.c projects/pciehp/contrib/bind9/lib/isc/task_api.c projects/pciehp/contrib/bind9/lib/isc/unix/Makefile.in projects/pciehp/contrib/bind9/lib/isc/unix/file.c projects/pciehp/contrib/bind9/lib/isc/unix/include/Makefile.in projects/pciehp/contrib/bind9/lib/isc/unix/include/isc/Makefile.in projects/pciehp/contrib/bind9/lib/isc/x86_32/Makefile.in projects/pciehp/contrib/bind9/lib/isc/x86_32/include/Makefile.in projects/pciehp/contrib/bind9/lib/isc/x86_32/include/isc/Makefile.in projects/pciehp/contrib/bind9/lib/isc/x86_64/Makefile.in projects/pciehp/contrib/bind9/lib/isc/x86_64/include/Makefile.in projects/pciehp/contrib/bind9/lib/isc/x86_64/include/isc/Makefile.in projects/pciehp/contrib/bind9/lib/isccc/api projects/pciehp/contrib/bind9/lib/isccc/cc.c projects/pciehp/contrib/bind9/lib/isccc/include/Makefile.in projects/pciehp/contrib/bind9/lib/isccc/include/isccc/Makefile.in projects/pciehp/contrib/bind9/lib/isccfg/api projects/pciehp/contrib/bind9/lib/isccfg/include/Makefile.in projects/pciehp/contrib/bind9/lib/isccfg/include/isccfg/Makefile.in projects/pciehp/contrib/bind9/lib/isccfg/namedconf.c projects/pciehp/contrib/bind9/lib/lwres/Makefile.in projects/pciehp/contrib/bind9/lib/lwres/api projects/pciehp/contrib/bind9/lib/lwres/getaddrinfo.c projects/pciehp/contrib/bind9/lib/lwres/include/Makefile.in projects/pciehp/contrib/bind9/lib/lwres/include/lwres/Makefile.in projects/pciehp/contrib/bind9/lib/lwres/man/Makefile.in projects/pciehp/contrib/bind9/make/rules.in projects/pciehp/contrib/bind9/version projects/pciehp/contrib/binutils/Makefile.in projects/pciehp/contrib/binutils/Makefile.tpl projects/pciehp/contrib/binutils/bfd/elflink.c projects/pciehp/contrib/binutils/gas/config/tc-arm.c projects/pciehp/contrib/binutils/libiberty/Makefile.in projects/pciehp/contrib/bmake/ChangeLog projects/pciehp/contrib/bmake/FILES projects/pciehp/contrib/bmake/Makefile.in projects/pciehp/contrib/bmake/bmake.1 projects/pciehp/contrib/bmake/bmake.cat1 projects/pciehp/contrib/bmake/bsd.after-import.mk projects/pciehp/contrib/bmake/compat.c projects/pciehp/contrib/bmake/cond.c projects/pciehp/contrib/bmake/make.1 projects/pciehp/contrib/bmake/make.c projects/pciehp/contrib/bmake/unit-tests/Makefile.in projects/pciehp/contrib/bmake/unit-tests/test.exp projects/pciehp/contrib/cvs/diff/Makefile.in projects/pciehp/contrib/cvs/lib/Makefile.in projects/pciehp/contrib/dtc/Makefile projects/pciehp/contrib/gcc/Makefile.in projects/pciehp/contrib/gcc/config/arm/arm.h projects/pciehp/contrib/gcc/config/i386/xmmintrin.h projects/pciehp/contrib/gcc/dwarf2out.c projects/pciehp/contrib/gcc/longlong.h projects/pciehp/contrib/gcclibs/libcpp/Makefile.in projects/pciehp/contrib/gcclibs/libdecnumber/Makefile.in projects/pciehp/contrib/gcclibs/libiberty/Makefile.in projects/pciehp/contrib/gdb/gdb/c-valprint.c projects/pciehp/contrib/gdb/gdb/cp-valprint.c projects/pciehp/contrib/gdb/gdb/dwarf2loc.c projects/pciehp/contrib/gdb/gdb/dwarf2read.c projects/pciehp/contrib/gdb/gdb/f-valprint.c projects/pciehp/contrib/gdb/gdb/frame.c projects/pciehp/contrib/gdb/gdb/gdbtypes.c projects/pciehp/contrib/gdb/gdb/gdbtypes.h projects/pciehp/contrib/gdb/gdb/hpread.c projects/pciehp/contrib/gdb/gdb/jv-valprint.c projects/pciehp/contrib/gdb/gdb/p-valprint.c projects/pciehp/contrib/gdb/gdb/parse.c projects/pciehp/contrib/gdb/gdb/scm-valprint.c projects/pciehp/contrib/gdb/gdb/stabsread.c projects/pciehp/contrib/gdb/gdb/stack.c projects/pciehp/contrib/gdb/gdb/valprint.c projects/pciehp/contrib/gdb/gdb/value.h projects/pciehp/contrib/gdb/gdb/varobj.c projects/pciehp/contrib/gdtoa/makefile projects/pciehp/contrib/gperf/lib/Makefile.in projects/pciehp/contrib/jemalloc/ChangeLog projects/pciehp/contrib/jemalloc/FREEBSD-diffs projects/pciehp/contrib/jemalloc/VERSION projects/pciehp/contrib/jemalloc/doc/jemalloc.3 projects/pciehp/contrib/jemalloc/include/jemalloc/internal/arena.h projects/pciehp/contrib/jemalloc/include/jemalloc/internal/chunk.h projects/pciehp/contrib/jemalloc/include/jemalloc/internal/chunk_dss.h projects/pciehp/contrib/jemalloc/include/jemalloc/internal/chunk_mmap.h projects/pciehp/contrib/jemalloc/include/jemalloc/internal/ctl.h projects/pciehp/contrib/jemalloc/include/jemalloc/internal/extent.h projects/pciehp/contrib/jemalloc/include/jemalloc/internal/huge.h projects/pciehp/contrib/jemalloc/include/jemalloc/internal/jemalloc_internal.h projects/pciehp/contrib/jemalloc/include/jemalloc/internal/private_namespace.h projects/pciehp/contrib/jemalloc/include/jemalloc/internal/prof.h projects/pciehp/contrib/jemalloc/include/jemalloc/internal/rtree.h projects/pciehp/contrib/jemalloc/include/jemalloc/jemalloc.h projects/pciehp/contrib/jemalloc/include/jemalloc/jemalloc_defs.h projects/pciehp/contrib/jemalloc/src/arena.c projects/pciehp/contrib/jemalloc/src/base.c projects/pciehp/contrib/jemalloc/src/chunk.c projects/pciehp/contrib/jemalloc/src/chunk_dss.c projects/pciehp/contrib/jemalloc/src/chunk_mmap.c projects/pciehp/contrib/jemalloc/src/ctl.c projects/pciehp/contrib/jemalloc/src/huge.c projects/pciehp/contrib/jemalloc/src/jemalloc.c projects/pciehp/contrib/jemalloc/src/mutex.c projects/pciehp/contrib/jemalloc/src/prof.c projects/pciehp/contrib/jemalloc/src/rtree.c projects/pciehp/contrib/jemalloc/src/stats.c projects/pciehp/contrib/jemalloc/src/tcache.c projects/pciehp/contrib/jemalloc/src/util.c projects/pciehp/contrib/less/NEWS projects/pciehp/contrib/less/README projects/pciehp/contrib/less/configure projects/pciehp/contrib/less/configure.ac projects/pciehp/contrib/less/defines.ds projects/pciehp/contrib/less/defines.h.in projects/pciehp/contrib/less/defines.o2 projects/pciehp/contrib/less/defines.o9 projects/pciehp/contrib/less/defines.wn projects/pciehp/contrib/less/less.man projects/pciehp/contrib/less/less.nro projects/pciehp/contrib/less/lessecho.man projects/pciehp/contrib/less/lessecho.nro projects/pciehp/contrib/less/lesskey.man projects/pciehp/contrib/less/lesskey.nro projects/pciehp/contrib/less/option.c projects/pciehp/contrib/less/output.c projects/pciehp/contrib/less/position.c projects/pciehp/contrib/less/screen.c projects/pciehp/contrib/less/version.c projects/pciehp/contrib/libc++/include/__bit_reference projects/pciehp/contrib/libc++/include/__config projects/pciehp/contrib/libc++/include/__functional_base projects/pciehp/contrib/libc++/include/__functional_base_03 projects/pciehp/contrib/libc++/include/__hash_table projects/pciehp/contrib/libc++/include/__locale projects/pciehp/contrib/libc++/include/__mutex_base projects/pciehp/contrib/libc++/include/__tree projects/pciehp/contrib/libc++/include/__tuple projects/pciehp/contrib/libc++/include/__undef_min_max projects/pciehp/contrib/libc++/include/algorithm projects/pciehp/contrib/libc++/include/array projects/pciehp/contrib/libc++/include/atomic projects/pciehp/contrib/libc++/include/bitset projects/pciehp/contrib/libc++/include/chrono projects/pciehp/contrib/libc++/include/cmath projects/pciehp/contrib/libc++/include/complex projects/pciehp/contrib/libc++/include/condition_variable projects/pciehp/contrib/libc++/include/cstddef projects/pciehp/contrib/libc++/include/cstdio projects/pciehp/contrib/libc++/include/cstdlib projects/pciehp/contrib/libc++/include/cwchar projects/pciehp/contrib/libc++/include/deque projects/pciehp/contrib/libc++/include/exception projects/pciehp/contrib/libc++/include/ext/__hash projects/pciehp/contrib/libc++/include/forward_list projects/pciehp/contrib/libc++/include/fstream projects/pciehp/contrib/libc++/include/functional projects/pciehp/contrib/libc++/include/future projects/pciehp/contrib/libc++/include/ios projects/pciehp/contrib/libc++/include/iosfwd projects/pciehp/contrib/libc++/include/istream projects/pciehp/contrib/libc++/include/iterator projects/pciehp/contrib/libc++/include/list projects/pciehp/contrib/libc++/include/locale projects/pciehp/contrib/libc++/include/map projects/pciehp/contrib/libc++/include/memory projects/pciehp/contrib/libc++/include/mutex projects/pciehp/contrib/libc++/include/new projects/pciehp/contrib/libc++/include/ostream projects/pciehp/contrib/libc++/include/queue projects/pciehp/contrib/libc++/include/random projects/pciehp/contrib/libc++/include/regex projects/pciehp/contrib/libc++/include/stack projects/pciehp/contrib/libc++/include/streambuf projects/pciehp/contrib/libc++/include/string projects/pciehp/contrib/libc++/include/system_error projects/pciehp/contrib/libc++/include/thread projects/pciehp/contrib/libc++/include/tuple projects/pciehp/contrib/libc++/include/type_traits projects/pciehp/contrib/libc++/include/unordered_map projects/pciehp/contrib/libc++/include/utility projects/pciehp/contrib/libc++/include/valarray projects/pciehp/contrib/libc++/include/vector projects/pciehp/contrib/libc++/src/condition_variable.cpp projects/pciehp/contrib/libc++/src/debug.cpp projects/pciehp/contrib/libc++/src/exception.cpp projects/pciehp/contrib/libc++/src/future.cpp projects/pciehp/contrib/libc++/src/ios.cpp projects/pciehp/contrib/libc++/src/iostream.cpp projects/pciehp/contrib/libc++/src/locale.cpp projects/pciehp/contrib/libc++/src/memory.cpp projects/pciehp/contrib/libc++/src/mutex.cpp projects/pciehp/contrib/libc++/src/new.cpp projects/pciehp/contrib/libc++/src/random.cpp projects/pciehp/contrib/libc++/src/stdexcept.cpp projects/pciehp/contrib/libc++/src/thread.cpp projects/pciehp/contrib/libc++/src/typeinfo.cpp projects/pciehp/contrib/libstdc++/config/os/bsd/freebsd/ctype_base.h projects/pciehp/contrib/libstdc++/include/bits/fstream.tcc projects/pciehp/contrib/libstdc++/include/bits/locale_facets.h projects/pciehp/contrib/libstdc++/include/bits/locale_facets.tcc projects/pciehp/contrib/libstdc++/include/bits/streambuf_iterator.h projects/pciehp/contrib/libstdc++/include/debug/safe_iterator.tcc projects/pciehp/contrib/libstdc++/include/ext/ropeimpl.h projects/pciehp/contrib/libstdc++/include/std/std_limits.h projects/pciehp/contrib/libstdc++/include/std/std_sstream.h projects/pciehp/contrib/libstdc++/libsupc++/tinfo.cc projects/pciehp/contrib/libstdc++/src/locale.cc projects/pciehp/contrib/libstdc++/src/strstream.cc projects/pciehp/contrib/libstdc++/src/tree.cc projects/pciehp/contrib/llvm/include/llvm-c/Core.h projects/pciehp/contrib/llvm/include/llvm-c/Disassembler.h projects/pciehp/contrib/llvm/include/llvm-c/Target.h projects/pciehp/contrib/llvm/include/llvm-c/TargetMachine.h projects/pciehp/contrib/llvm/include/llvm-c/Transforms/Vectorize.h projects/pciehp/contrib/llvm/include/llvm/ADT/APFloat.h projects/pciehp/contrib/llvm/include/llvm/ADT/APInt.h projects/pciehp/contrib/llvm/include/llvm/ADT/ArrayRef.h projects/pciehp/contrib/llvm/include/llvm/ADT/BitVector.h projects/pciehp/contrib/llvm/include/llvm/ADT/DAGDeltaAlgorithm.h projects/pciehp/contrib/llvm/include/llvm/ADT/DeltaAlgorithm.h projects/pciehp/contrib/llvm/include/llvm/ADT/DenseMap.h projects/pciehp/contrib/llvm/include/llvm/ADT/DenseMapInfo.h projects/pciehp/contrib/llvm/include/llvm/ADT/EquivalenceClasses.h projects/pciehp/contrib/llvm/include/llvm/ADT/FoldingSet.h projects/pciehp/contrib/llvm/include/llvm/ADT/Hashing.h projects/pciehp/contrib/llvm/include/llvm/ADT/ImmutableList.h projects/pciehp/contrib/llvm/include/llvm/ADT/ImmutableMap.h projects/pciehp/contrib/llvm/include/llvm/ADT/ImmutableSet.h projects/pciehp/contrib/llvm/include/llvm/ADT/Optional.h projects/pciehp/contrib/llvm/include/llvm/ADT/OwningPtr.h projects/pciehp/contrib/llvm/include/llvm/ADT/PackedVector.h projects/pciehp/contrib/llvm/include/llvm/ADT/PointerIntPair.h projects/pciehp/contrib/llvm/include/llvm/ADT/ScopedHashTable.h projects/pciehp/contrib/llvm/include/llvm/ADT/SetVector.h projects/pciehp/contrib/llvm/include/llvm/ADT/SmallBitVector.h projects/pciehp/contrib/llvm/include/llvm/ADT/SmallPtrSet.h projects/pciehp/contrib/llvm/include/llvm/ADT/SmallString.h projects/pciehp/contrib/llvm/include/llvm/ADT/SmallVector.h projects/pciehp/contrib/llvm/include/llvm/ADT/SparseBitVector.h projects/pciehp/contrib/llvm/include/llvm/ADT/SparseSet.h projects/pciehp/contrib/llvm/include/llvm/ADT/StringExtras.h projects/pciehp/contrib/llvm/include/llvm/ADT/StringRef.h projects/pciehp/contrib/llvm/include/llvm/ADT/StringSet.h projects/pciehp/contrib/llvm/include/llvm/ADT/Triple.h projects/pciehp/contrib/llvm/include/llvm/ADT/Twine.h projects/pciehp/contrib/llvm/include/llvm/ADT/ValueMap.h projects/pciehp/contrib/llvm/include/llvm/ADT/ilist.h projects/pciehp/contrib/llvm/include/llvm/Analysis/AliasAnalysis.h projects/pciehp/contrib/llvm/include/llvm/Analysis/AliasSetTracker.h projects/pciehp/contrib/llvm/include/llvm/Analysis/BranchProbabilityInfo.h projects/pciehp/contrib/llvm/include/llvm/Analysis/CallGraph.h projects/pciehp/contrib/llvm/include/llvm/Analysis/CaptureTracking.h projects/pciehp/contrib/llvm/include/llvm/Analysis/CodeMetrics.h projects/pciehp/contrib/llvm/include/llvm/Analysis/ConstantFolding.h projects/pciehp/contrib/llvm/include/llvm/Analysis/Dominators.h projects/pciehp/contrib/llvm/include/llvm/Analysis/IVUsers.h projects/pciehp/contrib/llvm/include/llvm/Analysis/InlineCost.h projects/pciehp/contrib/llvm/include/llvm/Analysis/InstructionSimplify.h projects/pciehp/contrib/llvm/include/llvm/Analysis/IntervalPartition.h projects/pciehp/contrib/llvm/include/llvm/Analysis/LazyValueInfo.h projects/pciehp/contrib/llvm/include/llvm/Analysis/Loads.h projects/pciehp/contrib/llvm/include/llvm/Analysis/LoopInfo.h projects/pciehp/contrib/llvm/include/llvm/Analysis/LoopInfoImpl.h projects/pciehp/contrib/llvm/include/llvm/Analysis/MemoryBuiltins.h projects/pciehp/contrib/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h projects/pciehp/contrib/llvm/include/llvm/Analysis/PHITransAddr.h projects/pciehp/contrib/llvm/include/llvm/Analysis/Passes.h projects/pciehp/contrib/llvm/include/llvm/Analysis/ProfileInfoTypes.h projects/pciehp/contrib/llvm/include/llvm/Analysis/RegionInfo.h projects/pciehp/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h projects/pciehp/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h projects/pciehp/contrib/llvm/include/llvm/Analysis/SparsePropagation.h projects/pciehp/contrib/llvm/include/llvm/Analysis/ValueTracking.h projects/pciehp/contrib/llvm/include/llvm/Argument.h projects/pciehp/contrib/llvm/include/llvm/Attributes.h projects/pciehp/contrib/llvm/include/llvm/BasicBlock.h projects/pciehp/contrib/llvm/include/llvm/Bitcode/Archive.h projects/pciehp/contrib/llvm/include/llvm/Bitcode/BitstreamReader.h projects/pciehp/contrib/llvm/include/llvm/Bitcode/BitstreamWriter.h projects/pciehp/contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.h projects/pciehp/contrib/llvm/include/llvm/CallingConv.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/CallingConvLower.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/FastISel.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/GCMetadata.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/GCMetadataPrinter.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/IntrinsicLowering.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/LiveInterval.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/LiveVariables.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/MachineBranchProbabilityInfo.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/MachineConstantPool.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/MachineFrameInfo.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/MachineFunction.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/MachineInstr.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/MachineInstrBuilder.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/MachineInstrBundle.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/MachineJumpTableInfo.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/MachineLoopInfo.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/MachineMemOperand.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/MachineModuleInfoImpls.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/MachineOperand.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/MachineSSAUpdater.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/PBQP/Graph.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/PBQP/HeuristicBase.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/Passes.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/PseudoSourceValue.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/RegAllocPBQP.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/RegisterClassInfo.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/RegisterPressure.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/RegisterScavenging.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/SchedulerRegistry.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/SelectionDAGNodes.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/ValueTypes.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/ValueTypes.td projects/pciehp/contrib/llvm/include/llvm/Constant.h projects/pciehp/contrib/llvm/include/llvm/Constants.h projects/pciehp/contrib/llvm/include/llvm/DIBuilder.h projects/pciehp/contrib/llvm/include/llvm/DebugInfo.h projects/pciehp/contrib/llvm/include/llvm/DebugInfo/DIContext.h projects/pciehp/contrib/llvm/include/llvm/DefaultPasses.h projects/pciehp/contrib/llvm/include/llvm/DerivedTypes.h projects/pciehp/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h projects/pciehp/contrib/llvm/include/llvm/ExecutionEngine/JITEventListener.h projects/pciehp/contrib/llvm/include/llvm/ExecutionEngine/JITMemoryManager.h projects/pciehp/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h projects/pciehp/contrib/llvm/include/llvm/Function.h projects/pciehp/contrib/llvm/include/llvm/GlobalAlias.h projects/pciehp/contrib/llvm/include/llvm/GlobalValue.h projects/pciehp/contrib/llvm/include/llvm/GlobalVariable.h projects/pciehp/contrib/llvm/include/llvm/IRBuilder.h projects/pciehp/contrib/llvm/include/llvm/InitializePasses.h projects/pciehp/contrib/llvm/include/llvm/InlineAsm.h projects/pciehp/contrib/llvm/include/llvm/InstrTypes.h projects/pciehp/contrib/llvm/include/llvm/Instruction.h projects/pciehp/contrib/llvm/include/llvm/Instructions.h projects/pciehp/contrib/llvm/include/llvm/IntrinsicInst.h projects/pciehp/contrib/llvm/include/llvm/Intrinsics.h projects/pciehp/contrib/llvm/include/llvm/Intrinsics.td projects/pciehp/contrib/llvm/include/llvm/IntrinsicsARM.td projects/pciehp/contrib/llvm/include/llvm/IntrinsicsMips.td projects/pciehp/contrib/llvm/include/llvm/IntrinsicsX86.td projects/pciehp/contrib/llvm/include/llvm/LLVMContext.h projects/pciehp/contrib/llvm/include/llvm/LinkAllPasses.h projects/pciehp/contrib/llvm/include/llvm/MC/MCAsmBackend.h projects/pciehp/contrib/llvm/include/llvm/MC/MCAsmInfo.h projects/pciehp/contrib/llvm/include/llvm/MC/MCAssembler.h projects/pciehp/contrib/llvm/include/llvm/MC/MCCodeEmitter.h projects/pciehp/contrib/llvm/include/llvm/MC/MCContext.h projects/pciehp/contrib/llvm/include/llvm/MC/MCDwarf.h projects/pciehp/contrib/llvm/include/llvm/MC/MCELFObjectWriter.h projects/pciehp/contrib/llvm/include/llvm/MC/MCExpr.h projects/pciehp/contrib/llvm/include/llvm/MC/MCInst.h projects/pciehp/contrib/llvm/include/llvm/MC/MCInstPrinter.h projects/pciehp/contrib/llvm/include/llvm/MC/MCInstrDesc.h projects/pciehp/contrib/llvm/include/llvm/MC/MCLabel.h projects/pciehp/contrib/llvm/include/llvm/MC/MCMachObjectWriter.h projects/pciehp/contrib/llvm/include/llvm/MC/MCObjectFileInfo.h projects/pciehp/contrib/llvm/include/llvm/MC/MCObjectStreamer.h projects/pciehp/contrib/llvm/include/llvm/MC/MCObjectWriter.h projects/pciehp/contrib/llvm/include/llvm/MC/MCParser/AsmLexer.h projects/pciehp/contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.h projects/pciehp/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h projects/pciehp/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserExtension.h projects/pciehp/contrib/llvm/include/llvm/MC/MCParser/MCParsedAsmOperand.h projects/pciehp/contrib/llvm/include/llvm/MC/MCRegisterInfo.h projects/pciehp/contrib/llvm/include/llvm/MC/MCSchedule.h projects/pciehp/contrib/llvm/include/llvm/MC/MCSection.h projects/pciehp/contrib/llvm/include/llvm/MC/MCSectionCOFF.h projects/pciehp/contrib/llvm/include/llvm/MC/MCSectionELF.h projects/pciehp/contrib/llvm/include/llvm/MC/MCSectionMachO.h projects/pciehp/contrib/llvm/include/llvm/MC/MCStreamer.h projects/pciehp/contrib/llvm/include/llvm/MC/MCSubtargetInfo.h projects/pciehp/contrib/llvm/include/llvm/MC/MCSymbol.h projects/pciehp/contrib/llvm/include/llvm/MC/MCTargetAsmLexer.h projects/pciehp/contrib/llvm/include/llvm/MC/MCTargetAsmParser.h projects/pciehp/contrib/llvm/include/llvm/MC/MCValue.h projects/pciehp/contrib/llvm/include/llvm/MC/SubtargetFeature.h projects/pciehp/contrib/llvm/include/llvm/MDBuilder.h projects/pciehp/contrib/llvm/include/llvm/Metadata.h projects/pciehp/contrib/llvm/include/llvm/Object/Archive.h projects/pciehp/contrib/llvm/include/llvm/Object/Binary.h projects/pciehp/contrib/llvm/include/llvm/Object/COFF.h projects/pciehp/contrib/llvm/include/llvm/Object/ELF.h projects/pciehp/contrib/llvm/include/llvm/Object/MachO.h projects/pciehp/contrib/llvm/include/llvm/Object/MachOFormat.h projects/pciehp/contrib/llvm/include/llvm/Object/ObjectFile.h projects/pciehp/contrib/llvm/include/llvm/Operator.h projects/pciehp/contrib/llvm/include/llvm/Pass.h projects/pciehp/contrib/llvm/include/llvm/PassAnalysisSupport.h projects/pciehp/contrib/llvm/include/llvm/PassSupport.h projects/pciehp/contrib/llvm/include/llvm/Support/AlignOf.h projects/pciehp/contrib/llvm/include/llvm/Support/Allocator.h projects/pciehp/contrib/llvm/include/llvm/Support/CallSite.h projects/pciehp/contrib/llvm/include/llvm/Support/Casting.h projects/pciehp/contrib/llvm/include/llvm/Support/CommandLine.h projects/pciehp/contrib/llvm/include/llvm/Support/Compiler.h projects/pciehp/contrib/llvm/include/llvm/Support/DataExtractor.h projects/pciehp/contrib/llvm/include/llvm/Support/ELF.h projects/pciehp/contrib/llvm/include/llvm/Support/FileOutputBuffer.h projects/pciehp/contrib/llvm/include/llvm/Support/FileSystem.h projects/pciehp/contrib/llvm/include/llvm/Support/Format.h projects/pciehp/contrib/llvm/include/llvm/Support/FormattedStream.h projects/pciehp/contrib/llvm/include/llvm/Support/GCOV.h projects/pciehp/contrib/llvm/include/llvm/Support/InstVisitor.h projects/pciehp/contrib/llvm/include/llvm/Support/IntegersSubset.h projects/pciehp/contrib/llvm/include/llvm/Support/IntegersSubsetMapping.h projects/pciehp/contrib/llvm/include/llvm/Support/LEB128.h projects/pciehp/contrib/llvm/include/llvm/Support/LockFileManager.h projects/pciehp/contrib/llvm/include/llvm/Support/MathExtras.h projects/pciehp/contrib/llvm/include/llvm/Support/Memory.h projects/pciehp/contrib/llvm/include/llvm/Support/MemoryBuffer.h projects/pciehp/contrib/llvm/include/llvm/Support/Mutex.h projects/pciehp/contrib/llvm/include/llvm/Support/MutexGuard.h projects/pciehp/contrib/llvm/include/llvm/Support/PathV1.h projects/pciehp/contrib/llvm/include/llvm/Support/PathV2.h projects/pciehp/contrib/llvm/include/llvm/Support/PrettyStackTrace.h projects/pciehp/contrib/llvm/include/llvm/Support/Program.h projects/pciehp/contrib/llvm/include/llvm/Support/RWMutex.h projects/pciehp/contrib/llvm/include/llvm/Support/Regex.h projects/pciehp/contrib/llvm/include/llvm/Support/Registry.h projects/pciehp/contrib/llvm/include/llvm/Support/SourceMgr.h projects/pciehp/contrib/llvm/include/llvm/Support/StreamableMemoryObject.h projects/pciehp/contrib/llvm/include/llvm/Support/TargetFolder.h projects/pciehp/contrib/llvm/include/llvm/Support/TargetRegistry.h projects/pciehp/contrib/llvm/include/llvm/Support/Threading.h projects/pciehp/contrib/llvm/include/llvm/Support/TimeValue.h projects/pciehp/contrib/llvm/include/llvm/Support/Timer.h projects/pciehp/contrib/llvm/include/llvm/Support/ValueHandle.h projects/pciehp/contrib/llvm/include/llvm/Support/YAMLParser.h projects/pciehp/contrib/llvm/include/llvm/Support/circular_raw_ostream.h projects/pciehp/contrib/llvm/include/llvm/Support/raw_os_ostream.h projects/pciehp/contrib/llvm/include/llvm/Support/raw_ostream.h projects/pciehp/contrib/llvm/include/llvm/Support/system_error.h projects/pciehp/contrib/llvm/include/llvm/Support/type_traits.h projects/pciehp/contrib/llvm/include/llvm/SymbolTableListTraits.h projects/pciehp/contrib/llvm/include/llvm/TableGen/Error.h projects/pciehp/contrib/llvm/include/llvm/TableGen/Main.h projects/pciehp/contrib/llvm/include/llvm/TableGen/Record.h projects/pciehp/contrib/llvm/include/llvm/Target/Mangler.h projects/pciehp/contrib/llvm/include/llvm/Target/Target.td projects/pciehp/contrib/llvm/include/llvm/Target/TargetCallingConv.h projects/pciehp/contrib/llvm/include/llvm/Target/TargetInstrInfo.h projects/pciehp/contrib/llvm/include/llvm/Target/TargetIntrinsicInfo.h projects/pciehp/contrib/llvm/include/llvm/Target/TargetLibraryInfo.h projects/pciehp/contrib/llvm/include/llvm/Target/TargetLowering.h projects/pciehp/contrib/llvm/include/llvm/Target/TargetLoweringObjectFile.h projects/pciehp/contrib/llvm/include/llvm/Target/TargetMachine.h projects/pciehp/contrib/llvm/include/llvm/Target/TargetOpcodes.h projects/pciehp/contrib/llvm/include/llvm/Target/TargetOptions.h projects/pciehp/contrib/llvm/include/llvm/Target/TargetRegisterInfo.h projects/pciehp/contrib/llvm/include/llvm/Target/TargetSchedule.td projects/pciehp/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td projects/pciehp/contrib/llvm/include/llvm/Target/TargetSelectionDAGInfo.h projects/pciehp/contrib/llvm/include/llvm/Target/TargetSubtargetInfo.h projects/pciehp/contrib/llvm/include/llvm/Transforms/IPO.h projects/pciehp/contrib/llvm/include/llvm/Transforms/IPO/InlinerPass.h projects/pciehp/contrib/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h projects/pciehp/contrib/llvm/include/llvm/Transforms/Instrumentation.h projects/pciehp/contrib/llvm/include/llvm/Transforms/Scalar.h projects/pciehp/contrib/llvm/include/llvm/Transforms/Utils/AddrModeMatcher.h projects/pciehp/contrib/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h projects/pciehp/contrib/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h projects/pciehp/contrib/llvm/include/llvm/Transforms/Utils/Cloning.h projects/pciehp/contrib/llvm/include/llvm/Transforms/Utils/Local.h projects/pciehp/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdater.h projects/pciehp/contrib/llvm/include/llvm/Transforms/Utils/SimplifyIndVar.h projects/pciehp/contrib/llvm/include/llvm/Transforms/Utils/ValueMapper.h projects/pciehp/contrib/llvm/include/llvm/Transforms/Vectorize.h projects/pciehp/contrib/llvm/include/llvm/Type.h projects/pciehp/contrib/llvm/include/llvm/Use.h projects/pciehp/contrib/llvm/include/llvm/User.h projects/pciehp/contrib/llvm/include/llvm/Value.h projects/pciehp/contrib/llvm/lib/Analysis/AliasAnalysis.cpp projects/pciehp/contrib/llvm/lib/Analysis/AliasSetTracker.cpp projects/pciehp/contrib/llvm/lib/Analysis/Analysis.cpp projects/pciehp/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp projects/pciehp/contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp projects/pciehp/contrib/llvm/lib/Analysis/CaptureTracking.cpp projects/pciehp/contrib/llvm/lib/Analysis/CodeMetrics.cpp projects/pciehp/contrib/llvm/lib/Analysis/ConstantFolding.cpp projects/pciehp/contrib/llvm/lib/Analysis/DominanceFrontier.cpp projects/pciehp/contrib/llvm/lib/Analysis/IPA/CallGraph.cpp projects/pciehp/contrib/llvm/lib/Analysis/IPA/GlobalsModRef.cpp projects/pciehp/contrib/llvm/lib/Analysis/IVUsers.cpp projects/pciehp/contrib/llvm/lib/Analysis/InlineCost.cpp projects/pciehp/contrib/llvm/lib/Analysis/InstructionSimplify.cpp projects/pciehp/contrib/llvm/lib/Analysis/LazyValueInfo.cpp projects/pciehp/contrib/llvm/lib/Analysis/Lint.cpp projects/pciehp/contrib/llvm/lib/Analysis/Loads.cpp projects/pciehp/contrib/llvm/lib/Analysis/LoopInfo.cpp projects/pciehp/contrib/llvm/lib/Analysis/MemoryBuiltins.cpp projects/pciehp/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp projects/pciehp/contrib/llvm/lib/Analysis/NoAliasAnalysis.cpp projects/pciehp/contrib/llvm/lib/Analysis/PHITransAddr.cpp projects/pciehp/contrib/llvm/lib/Analysis/ProfileEstimatorPass.cpp projects/pciehp/contrib/llvm/lib/Analysis/ProfileInfo.cpp projects/pciehp/contrib/llvm/lib/Analysis/RegionInfo.cpp projects/pciehp/contrib/llvm/lib/Analysis/RegionPass.cpp projects/pciehp/contrib/llvm/lib/Analysis/ScalarEvolution.cpp projects/pciehp/contrib/llvm/lib/Analysis/ScalarEvolutionExpander.cpp projects/pciehp/contrib/llvm/lib/Analysis/Trace.cpp projects/pciehp/contrib/llvm/lib/Analysis/ValueTracking.cpp projects/pciehp/contrib/llvm/lib/Archive/ArchiveInternals.h projects/pciehp/contrib/llvm/lib/Archive/ArchiveReader.cpp projects/pciehp/contrib/llvm/lib/AsmParser/LLLexer.cpp projects/pciehp/contrib/llvm/lib/AsmParser/LLParser.cpp projects/pciehp/contrib/llvm/lib/AsmParser/LLParser.h projects/pciehp/contrib/llvm/lib/AsmParser/LLToken.h projects/pciehp/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp projects/pciehp/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.h projects/pciehp/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp projects/pciehp/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.h projects/pciehp/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp projects/pciehp/contrib/llvm/lib/CodeGen/AllocationOrder.cpp projects/pciehp/contrib/llvm/lib/CodeGen/Analysis.cpp projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.cpp projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.h projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.h projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.h projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp projects/pciehp/contrib/llvm/lib/CodeGen/BranchFolding.cpp projects/pciehp/contrib/llvm/lib/CodeGen/CalcSpillWeights.cpp projects/pciehp/contrib/llvm/lib/CodeGen/CallingConvLower.cpp projects/pciehp/contrib/llvm/lib/CodeGen/CodeGen.cpp projects/pciehp/contrib/llvm/lib/CodeGen/CodePlacementOpt.cpp projects/pciehp/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp projects/pciehp/contrib/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp projects/pciehp/contrib/llvm/lib/CodeGen/EarlyIfConversion.cpp projects/pciehp/contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp projects/pciehp/contrib/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp projects/pciehp/contrib/llvm/lib/CodeGen/GCStrategy.cpp projects/pciehp/contrib/llvm/lib/CodeGen/IfConversion.cpp projects/pciehp/contrib/llvm/lib/CodeGen/InlineSpiller.cpp projects/pciehp/contrib/llvm/lib/CodeGen/IntrinsicLowering.cpp projects/pciehp/contrib/llvm/lib/CodeGen/LiveDebugVariables.cpp projects/pciehp/contrib/llvm/lib/CodeGen/LiveInterval.cpp projects/pciehp/contrib/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp projects/pciehp/contrib/llvm/lib/CodeGen/LiveIntervalUnion.h projects/pciehp/contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp projects/pciehp/contrib/llvm/lib/CodeGen/LiveRangeEdit.cpp projects/pciehp/contrib/llvm/lib/CodeGen/LiveRegMatrix.cpp projects/pciehp/contrib/llvm/lib/CodeGen/LiveRegMatrix.h projects/pciehp/contrib/llvm/lib/CodeGen/LiveStackAnalysis.cpp projects/pciehp/contrib/llvm/lib/CodeGen/LiveVariables.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineBranchProbabilityInfo.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineCSE.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineCopyPropagation.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineFunction.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineFunctionPrinterPass.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineInstr.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineInstrBundle.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineLICM.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineLoopInfo.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineModuleInfo.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineModuleInfoImpls.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineScheduler.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineSink.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineTraceMetrics.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineTraceMetrics.h projects/pciehp/contrib/llvm/lib/CodeGen/MachineVerifier.cpp projects/pciehp/contrib/llvm/lib/CodeGen/Passes.cpp projects/pciehp/contrib/llvm/lib/CodeGen/PeepholeOptimizer.cpp projects/pciehp/contrib/llvm/lib/CodeGen/PostRASchedulerList.cpp projects/pciehp/contrib/llvm/lib/CodeGen/ProcessImplicitDefs.cpp projects/pciehp/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp projects/pciehp/contrib/llvm/lib/CodeGen/RegAllocBasic.cpp projects/pciehp/contrib/llvm/lib/CodeGen/RegAllocFast.cpp projects/pciehp/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp projects/pciehp/contrib/llvm/lib/CodeGen/RegAllocPBQP.cpp projects/pciehp/contrib/llvm/lib/CodeGen/RegisterClassInfo.cpp projects/pciehp/contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp projects/pciehp/contrib/llvm/lib/CodeGen/RegisterCoalescer.h projects/pciehp/contrib/llvm/lib/CodeGen/RegisterPressure.cpp projects/pciehp/contrib/llvm/lib/CodeGen/RegisterScavenging.cpp projects/pciehp/contrib/llvm/lib/CodeGen/ScheduleDAG.cpp projects/pciehp/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp projects/pciehp/contrib/llvm/lib/CodeGen/ScheduleDAGPrinter.cpp projects/pciehp/contrib/llvm/lib/CodeGen/ScoreboardHazardRecognizer.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/SDNodeOrdering.h projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/TargetSelectionDAGInfo.cpp projects/pciehp/contrib/llvm/lib/CodeGen/ShrinkWrapping.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SjLjEHPrepare.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SlotIndexes.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SplitKit.cpp projects/pciehp/contrib/llvm/lib/CodeGen/StackProtector.cpp projects/pciehp/contrib/llvm/lib/CodeGen/StackSlotColoring.cpp projects/pciehp/contrib/llvm/lib/CodeGen/StrongPHIElimination.cpp projects/pciehp/contrib/llvm/lib/CodeGen/TailDuplication.cpp projects/pciehp/contrib/llvm/lib/CodeGen/TargetInstrInfoImpl.cpp projects/pciehp/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp projects/pciehp/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp projects/pciehp/contrib/llvm/lib/CodeGen/VirtRegMap.cpp projects/pciehp/contrib/llvm/lib/CodeGen/VirtRegMap.h projects/pciehp/contrib/llvm/lib/DebugInfo/DIContext.cpp projects/pciehp/contrib/llvm/lib/DebugInfo/DWARFCompileUnit.cpp projects/pciehp/contrib/llvm/lib/DebugInfo/DWARFCompileUnit.h projects/pciehp/contrib/llvm/lib/DebugInfo/DWARFContext.cpp projects/pciehp/contrib/llvm/lib/DebugInfo/DWARFContext.h projects/pciehp/contrib/llvm/lib/DebugInfo/DWARFDebugAranges.cpp projects/pciehp/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp projects/pciehp/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.h projects/pciehp/contrib/llvm/lib/DebugInfo/DWARFDebugLine.cpp projects/pciehp/contrib/llvm/lib/DebugInfo/DWARFDebugLine.h projects/pciehp/contrib/llvm/lib/DebugInfo/DWARFFormValue.cpp projects/pciehp/contrib/llvm/lib/DebugInfo/DWARFFormValue.h projects/pciehp/contrib/llvm/lib/ExecutionEngine/ExecutionEngine.cpp projects/pciehp/contrib/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp projects/pciehp/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp projects/pciehp/contrib/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp projects/pciehp/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp projects/pciehp/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h projects/pciehp/contrib/llvm/lib/ExecutionEngine/JIT/JIT.cpp projects/pciehp/contrib/llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp projects/pciehp/contrib/llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.h projects/pciehp/contrib/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp projects/pciehp/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp projects/pciehp/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h projects/pciehp/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/GDBRegistrar.cpp projects/pciehp/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/JITRegistrar.h projects/pciehp/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp projects/pciehp/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp projects/pciehp/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h projects/pciehp/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h projects/pciehp/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp projects/pciehp/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h projects/pciehp/contrib/llvm/lib/ExecutionEngine/TargetSelect.cpp projects/pciehp/contrib/llvm/lib/MC/ELFObjectWriter.cpp projects/pciehp/contrib/llvm/lib/MC/MCAsmBackend.cpp projects/pciehp/contrib/llvm/lib/MC/MCAsmInfo.cpp projects/pciehp/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp projects/pciehp/contrib/llvm/lib/MC/MCAsmInfoDarwin.cpp projects/pciehp/contrib/llvm/lib/MC/MCAsmStreamer.cpp projects/pciehp/contrib/llvm/lib/MC/MCAssembler.cpp projects/pciehp/contrib/llvm/lib/MC/MCContext.cpp projects/pciehp/contrib/llvm/lib/MC/MCDisassembler/Disassembler.cpp projects/pciehp/contrib/llvm/lib/MC/MCDisassembler/EDDisassembler.cpp projects/pciehp/contrib/llvm/lib/MC/MCDwarf.cpp projects/pciehp/contrib/llvm/lib/MC/MCELFObjectTargetWriter.cpp projects/pciehp/contrib/llvm/lib/MC/MCELFStreamer.cpp projects/pciehp/contrib/llvm/lib/MC/MCExpr.cpp projects/pciehp/contrib/llvm/lib/MC/MCInst.cpp projects/pciehp/contrib/llvm/lib/MC/MCInstPrinter.cpp projects/pciehp/contrib/llvm/lib/MC/MCLabel.cpp projects/pciehp/contrib/llvm/lib/MC/MCMachOStreamer.cpp projects/pciehp/contrib/llvm/lib/MC/MCObjectFileInfo.cpp projects/pciehp/contrib/llvm/lib/MC/MCObjectStreamer.cpp projects/pciehp/contrib/llvm/lib/MC/MCParser/AsmLexer.cpp projects/pciehp/contrib/llvm/lib/MC/MCParser/AsmParser.cpp projects/pciehp/contrib/llvm/lib/MC/MCParser/ELFAsmParser.cpp projects/pciehp/contrib/llvm/lib/MC/MCParser/MCAsmLexer.cpp projects/pciehp/contrib/llvm/lib/MC/MCParser/MCAsmParser.cpp projects/pciehp/contrib/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp projects/pciehp/contrib/llvm/lib/MC/MCRegisterInfo.cpp projects/pciehp/contrib/llvm/lib/MC/MCStreamer.cpp projects/pciehp/contrib/llvm/lib/MC/MCSubtargetInfo.cpp projects/pciehp/contrib/llvm/lib/MC/MCSymbol.cpp projects/pciehp/contrib/llvm/lib/MC/MCValue.cpp projects/pciehp/contrib/llvm/lib/MC/MachObjectWriter.cpp projects/pciehp/contrib/llvm/lib/MC/SubtargetFeature.cpp projects/pciehp/contrib/llvm/lib/MC/WinCOFFStreamer.cpp projects/pciehp/contrib/llvm/lib/Object/COFFObjectFile.cpp projects/pciehp/contrib/llvm/lib/Object/MachOObjectFile.cpp projects/pciehp/contrib/llvm/lib/Support/APFloat.cpp projects/pciehp/contrib/llvm/lib/Support/Atomic.cpp projects/pciehp/contrib/llvm/lib/Support/CommandLine.cpp projects/pciehp/contrib/llvm/lib/Support/DAGDeltaAlgorithm.cpp projects/pciehp/contrib/llvm/lib/Support/DataExtractor.cpp projects/pciehp/contrib/llvm/lib/Support/DataStream.cpp projects/pciehp/contrib/llvm/lib/Support/DynamicLibrary.cpp projects/pciehp/contrib/llvm/lib/Support/Errno.cpp projects/pciehp/contrib/llvm/lib/Support/FoldingSet.cpp projects/pciehp/contrib/llvm/lib/Support/Host.cpp projects/pciehp/contrib/llvm/lib/Support/LockFileManager.cpp projects/pciehp/contrib/llvm/lib/Support/Memory.cpp projects/pciehp/contrib/llvm/lib/Support/MemoryBuffer.cpp projects/pciehp/contrib/llvm/lib/Support/SmallVector.cpp projects/pciehp/contrib/llvm/lib/Support/StreamableMemoryObject.cpp projects/pciehp/contrib/llvm/lib/Support/StringMap.cpp projects/pciehp/contrib/llvm/lib/Support/StringRef.cpp projects/pciehp/contrib/llvm/lib/Support/Triple.cpp projects/pciehp/contrib/llvm/lib/Support/Unix/Memory.inc projects/pciehp/contrib/llvm/lib/Support/Unix/Path.inc projects/pciehp/contrib/llvm/lib/Support/Unix/Signals.inc projects/pciehp/contrib/llvm/lib/Support/Windows/Memory.inc projects/pciehp/contrib/llvm/lib/Support/Windows/PathV2.inc projects/pciehp/contrib/llvm/lib/Support/YAMLParser.cpp projects/pciehp/contrib/llvm/lib/Support/raw_ostream.cpp projects/pciehp/contrib/llvm/lib/Support/regexec.c projects/pciehp/contrib/llvm/lib/Support/system_error.cpp projects/pciehp/contrib/llvm/lib/TableGen/Error.cpp projects/pciehp/contrib/llvm/lib/TableGen/Main.cpp projects/pciehp/contrib/llvm/lib/TableGen/Record.cpp projects/pciehp/contrib/llvm/lib/TableGen/TGParser.cpp projects/pciehp/contrib/llvm/lib/TableGen/TGParser.h projects/pciehp/contrib/llvm/lib/Target/ARM/ARM.h projects/pciehp/contrib/llvm/lib/Target/ARM/ARM.td projects/pciehp/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.h projects/pciehp/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.h projects/pciehp/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h projects/pciehp/contrib/llvm/lib/Target/ARM/ARMCallingConv.td projects/pciehp/contrib/llvm/lib/Target/ARM/ARMCodeEmitter.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.h projects/pciehp/contrib/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMFrameLowering.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMHazardRecognizer.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMISelLowering.h projects/pciehp/contrib/llvm/lib/Target/ARM/ARMInstrFormats.td projects/pciehp/contrib/llvm/lib/Target/ARM/ARMInstrInfo.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td projects/pciehp/contrib/llvm/lib/Target/ARM/ARMInstrNEON.td projects/pciehp/contrib/llvm/lib/Target/ARM/ARMInstrThumb.td projects/pciehp/contrib/llvm/lib/Target/ARM/ARMInstrThumb2.td projects/pciehp/contrib/llvm/lib/Target/ARM/ARMInstrVFP.td projects/pciehp/contrib/llvm/lib/Target/ARM/ARMJITInfo.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h projects/pciehp/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.td projects/pciehp/contrib/llvm/lib/Target/ARM/ARMSchedule.td projects/pciehp/contrib/llvm/lib/Target/ARM/ARMScheduleA9.td projects/pciehp/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMSubtarget.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMSubtarget.h projects/pciehp/contrib/llvm/lib/Target/ARM/ARMTargetMachine.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMTargetMachine.h projects/pciehp/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h projects/pciehp/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.h projects/pciehp/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/MLxExpansionPass.cpp projects/pciehp/contrib/llvm/lib/Target/CellSPU/SPUAsmPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/CellSPU/SPUFrameLowering.cpp projects/pciehp/contrib/llvm/lib/Target/CellSPU/SPUISelDAGToDAG.cpp projects/pciehp/contrib/llvm/lib/Target/CellSPU/SPUSubtarget.h projects/pciehp/contrib/llvm/lib/Target/CellSPU/SPUTargetMachine.cpp projects/pciehp/contrib/llvm/lib/Target/CellSPU/SPUTargetMachine.h projects/pciehp/contrib/llvm/lib/Target/CppBackend/CPPBackend.cpp projects/pciehp/contrib/llvm/lib/Target/CppBackend/CPPTargetMachine.h projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonCallingConvLower.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormats.td projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.td projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonPeephole.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.h projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonRemoveSZExtArgs.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonSchedule.td projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV4.td projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.h projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonVarargsCallingConvention.h projects/pciehp/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp projects/pciehp/contrib/llvm/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp projects/pciehp/contrib/llvm/lib/Target/MBlaze/MBlazeAsmPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/MBlaze/MBlazeFrameLowering.cpp projects/pciehp/contrib/llvm/lib/Target/MBlaze/MBlazeIntrinsicInfo.cpp projects/pciehp/contrib/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.cpp projects/pciehp/contrib/llvm/lib/Target/MBlaze/MBlazeTargetMachine.cpp projects/pciehp/contrib/llvm/lib/Target/MBlaze/MBlazeTargetMachine.h projects/pciehp/contrib/llvm/lib/Target/MBlaze/MBlazeTargetObjectFile.cpp projects/pciehp/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCCodeEmitter.cpp projects/pciehp/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp projects/pciehp/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.h projects/pciehp/contrib/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp projects/pciehp/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp projects/pciehp/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.h projects/pciehp/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp projects/pciehp/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.h projects/pciehp/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp projects/pciehp/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.h projects/pciehp/contrib/llvm/lib/Target/Mangler.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h projects/pciehp/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h projects/pciehp/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/Mips.td projects/pciehp/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.h projects/pciehp/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.h projects/pciehp/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.td projects/pciehp/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.h projects/pciehp/contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td projects/pciehp/contrib/llvm/lib/Target/Mips/MipsAnalyzeImmediate.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.h projects/pciehp/contrib/llvm/lib/Target/Mips/MipsCallingConv.td projects/pciehp/contrib/llvm/lib/Target/Mips/MipsCodeEmitter.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsFrameLowering.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsFrameLowering.h projects/pciehp/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsISelLowering.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsISelLowering.h projects/pciehp/contrib/llvm/lib/Target/Mips/MipsInstrFPU.td projects/pciehp/contrib/llvm/lib/Target/Mips/MipsInstrFormats.td projects/pciehp/contrib/llvm/lib/Target/Mips/MipsInstrInfo.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsInstrInfo.h projects/pciehp/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td projects/pciehp/contrib/llvm/lib/Target/Mips/MipsJITInfo.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsJITInfo.h projects/pciehp/contrib/llvm/lib/Target/Mips/MipsLongBranch.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsMCInstLower.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsMCInstLower.h projects/pciehp/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsMachineFunction.h projects/pciehp/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.h projects/pciehp/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.td projects/pciehp/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.h projects/pciehp/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.h projects/pciehp/contrib/llvm/lib/Target/Mips/MipsSubtarget.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsSubtarget.h projects/pciehp/contrib/llvm/lib/Target/Mips/MipsTargetMachine.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsTargetMachine.h projects/pciehp/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.cpp projects/pciehp/contrib/llvm/lib/Target/NVPTX/NVPTX.td projects/pciehp/contrib/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.h projects/pciehp/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp projects/pciehp/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.h projects/pciehp/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.cpp projects/pciehp/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.h projects/pciehp/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.cpp projects/pciehp/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.h projects/pciehp/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp projects/pciehp/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.h projects/pciehp/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCFixupKinds.h projects/pciehp/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPC.td projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.td projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.h projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCInstr64Bit.td projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCInstrAltivec.td projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCInstrFormats.td projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCSchedule.td projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCSchedule440.td projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCScheduleA2.td projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCScheduleG3.td projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCScheduleG4.td projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCScheduleG4Plus.td projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCScheduleG5.td projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.h projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.h projects/pciehp/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.cpp projects/pciehp/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp projects/pciehp/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.td projects/pciehp/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.cpp projects/pciehp/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.h projects/pciehp/contrib/llvm/lib/Target/Target.cpp projects/pciehp/contrib/llvm/lib/Target/TargetLibraryInfo.cpp projects/pciehp/contrib/llvm/lib/Target/TargetLoweringObjectFile.cpp projects/pciehp/contrib/llvm/lib/Target/TargetMachineC.cpp projects/pciehp/contrib/llvm/lib/Target/TargetRegisterInfo.cpp projects/pciehp/contrib/llvm/lib/Target/X86/AsmParser/X86AsmLexer.cpp projects/pciehp/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp projects/pciehp/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp projects/pciehp/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.h projects/pciehp/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c projects/pciehp/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h projects/pciehp/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoderCommon.h projects/pciehp/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.h projects/pciehp/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h projects/pciehp/contrib/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp projects/pciehp/contrib/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h projects/pciehp/contrib/llvm/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp projects/pciehp/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp projects/pciehp/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp projects/pciehp/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp projects/pciehp/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h projects/pciehp/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86.td projects/pciehp/contrib/llvm/lib/Target/X86/X86AsmPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86AsmPrinter.h projects/pciehp/contrib/llvm/lib/Target/X86/X86COFFMachineModuleInfo.h projects/pciehp/contrib/llvm/lib/Target/X86/X86CallingConv.td projects/pciehp/contrib/llvm/lib/Target/X86/X86CodeEmitter.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86FastISel.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86FloatingPoint.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86ISelLowering.h projects/pciehp/contrib/llvm/lib/Target/X86/X86InstrCompiler.td projects/pciehp/contrib/llvm/lib/Target/X86/X86InstrControl.td projects/pciehp/contrib/llvm/lib/Target/X86/X86InstrFMA.td projects/pciehp/contrib/llvm/lib/Target/X86/X86InstrFormats.td projects/pciehp/contrib/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td projects/pciehp/contrib/llvm/lib/Target/X86/X86InstrInfo.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86InstrInfo.h projects/pciehp/contrib/llvm/lib/Target/X86/X86InstrInfo.td projects/pciehp/contrib/llvm/lib/Target/X86/X86InstrMMX.td projects/pciehp/contrib/llvm/lib/Target/X86/X86InstrSSE.td projects/pciehp/contrib/llvm/lib/Target/X86/X86InstrShiftRotate.td projects/pciehp/contrib/llvm/lib/Target/X86/X86InstrXOP.td projects/pciehp/contrib/llvm/lib/Target/X86/X86JITInfo.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86MCInstLower.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86RegisterInfo.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86RegisterInfo.h projects/pciehp/contrib/llvm/lib/Target/X86/X86RegisterInfo.td projects/pciehp/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86Subtarget.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86Subtarget.h projects/pciehp/contrib/llvm/lib/Target/X86/X86TargetMachine.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86TargetMachine.h projects/pciehp/contrib/llvm/lib/Target/X86/X86VZeroUpper.cpp projects/pciehp/contrib/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.cpp projects/pciehp/contrib/llvm/lib/Target/XCore/XCoreISelLowering.cpp projects/pciehp/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.td projects/pciehp/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp projects/pciehp/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp projects/pciehp/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.h projects/pciehp/contrib/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp projects/pciehp/contrib/llvm/lib/Transforms/IPO/ConstantMerge.cpp projects/pciehp/contrib/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp projects/pciehp/contrib/llvm/lib/Transforms/IPO/ExtractGV.cpp projects/pciehp/contrib/llvm/lib/Transforms/IPO/FunctionAttrs.cpp projects/pciehp/contrib/llvm/lib/Transforms/IPO/GlobalOpt.cpp projects/pciehp/contrib/llvm/lib/Transforms/IPO/IPO.cpp projects/pciehp/contrib/llvm/lib/Transforms/IPO/InlineAlways.cpp projects/pciehp/contrib/llvm/lib/Transforms/IPO/InlineSimple.cpp projects/pciehp/contrib/llvm/lib/Transforms/IPO/Inliner.cpp projects/pciehp/contrib/llvm/lib/Transforms/IPO/Internalize.cpp projects/pciehp/contrib/llvm/lib/Transforms/IPO/MergeFunctions.cpp projects/pciehp/contrib/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp projects/pciehp/contrib/llvm/lib/Transforms/IPO/PruneEH.cpp projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstCombine.h projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstCombineWorklist.h projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp projects/pciehp/contrib/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp projects/pciehp/contrib/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp projects/pciehp/contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp projects/pciehp/contrib/llvm/lib/Transforms/Instrumentation/MaximumSpanningTree.h projects/pciehp/contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/ConstantProp.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/DCE.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/EarlyCSE.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/GVN.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/GlobalMerge.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/JumpThreading.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/LICM.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/LoopRotation.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/ObjCARC.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/Reassociate.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/SCCP.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/Scalar.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/AddrModeMatcher.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/BuildLibCalls.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/CloneFunction.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/CodeExtractor.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/LCSSA.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/Local.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/LoopSimplify.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/SSAUpdater.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/SimplifyCFG.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/Utils.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/ValueMapper.cpp projects/pciehp/contrib/llvm/lib/Transforms/Vectorize/BBVectorize.cpp projects/pciehp/contrib/llvm/lib/Transforms/Vectorize/Vectorize.cpp projects/pciehp/contrib/llvm/lib/VMCore/AsmWriter.cpp projects/pciehp/contrib/llvm/lib/VMCore/Attributes.cpp projects/pciehp/contrib/llvm/lib/VMCore/AutoUpgrade.cpp projects/pciehp/contrib/llvm/lib/VMCore/ConstantFold.cpp projects/pciehp/contrib/llvm/lib/VMCore/Constants.cpp projects/pciehp/contrib/llvm/lib/VMCore/ConstantsContext.h projects/pciehp/contrib/llvm/lib/VMCore/Core.cpp projects/pciehp/contrib/llvm/lib/VMCore/DIBuilder.cpp projects/pciehp/contrib/llvm/lib/VMCore/DebugInfo.cpp projects/pciehp/contrib/llvm/lib/VMCore/Dominators.cpp projects/pciehp/contrib/llvm/lib/VMCore/Function.cpp projects/pciehp/contrib/llvm/lib/VMCore/GCOV.cpp projects/pciehp/contrib/llvm/lib/VMCore/IRBuilder.cpp projects/pciehp/contrib/llvm/lib/VMCore/InlineAsm.cpp projects/pciehp/contrib/llvm/lib/VMCore/Instructions.cpp projects/pciehp/contrib/llvm/lib/VMCore/LLVMContext.cpp projects/pciehp/contrib/llvm/lib/VMCore/LLVMContextImpl.cpp projects/pciehp/contrib/llvm/lib/VMCore/LLVMContextImpl.h projects/pciehp/contrib/llvm/lib/VMCore/PassManager.cpp projects/pciehp/contrib/llvm/lib/VMCore/Type.cpp projects/pciehp/contrib/llvm/lib/VMCore/User.cpp projects/pciehp/contrib/llvm/lib/VMCore/Value.cpp projects/pciehp/contrib/llvm/lib/VMCore/ValueTypes.cpp projects/pciehp/contrib/llvm/lib/VMCore/Verifier.cpp projects/pciehp/contrib/llvm/tools/bugpoint/ExtractFunction.cpp projects/pciehp/contrib/llvm/tools/bugpoint/OptimizerDriver.cpp projects/pciehp/contrib/llvm/tools/clang/include/clang-c/Index.h projects/pciehp/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMT.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/ASTConsumer.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/ASTMutationListener.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/Attr.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/BuiltinTypes.def projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/CXXInheritance.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/CanonicalType.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/CharUnits.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/Comment.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/CommentBriefParser.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/CommentCommandTraits.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/CommentLexer.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/CommentParser.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/CommentSema.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/Decl.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/DeclBase.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/DeclCXX.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/DeclFriend.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/DeclObjC.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/DeclTemplate.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/DeclarationName.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/Expr.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/ExprCXX.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/ExprObjC.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/ExternalASTSource.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/NSAPI.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/OperationKinds.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/PrettyPrinter.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/RawCommentList.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/RecordLayout.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/SelectorLocationsKind.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/Stmt.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/StmtCXX.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/StmtObjC.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/TemplateBase.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/Type.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/TypeLoc.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/UnresolvedSet.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/VTableBuilder.h projects/pciehp/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchFinder.h projects/pciehp/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchers.h projects/pciehp/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersInternal.h projects/pciehp/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersMacros.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafety.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisContext.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Analysis/CFG.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/Attr.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/Builtins.def projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsMips.def projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNVPTX.def projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/ConvertUTF.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommentKinds.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/FileManager.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.def projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/Module.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/OnDiskHashTable.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/SourceLocation.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/SourceManager.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/TargetInfo.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/TargetOptions.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/TypeTraits.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td projects/pciehp/contrib/llvm/tools/clang/include/clang/CodeGen/CodeGenAction.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Driver/Action.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Driver/Arg.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Driver/ArgList.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Driver/CC1AsOptions.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Driver/CC1AsOptions.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Driver/Compilation.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Driver/Driver.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Driver/Job.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Driver/OptParser.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Driver/OptTable.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Driver/Option.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Driver/Options.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Driver/Options.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Driver/Tool.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Driver/Types.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/FrontendAction.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/LangStandard.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/LangStandards.def projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/LogDiagnosticPrinter.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/MultiplexConsumer.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticPrinter.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Lex/ExternalPreprocessorSource.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Lex/HeaderMap.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearch.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Lex/Lexer.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Lex/LiteralSupport.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Lex/MacroInfo.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Lex/PPCallbacks.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Lex/PTHLexer.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Lex/PTHManager.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Lex/Preprocessor.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorLexer.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Lex/Token.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Lex/TokenLexer.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Parse/Parser.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/AttributeList.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/LocInfoType.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/Overload.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/Ownership.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/ParsedTemplate.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/Scope.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/ScopeInfo.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/Sema.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/SemaConsumer.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/Template.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/TypoCorrection.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Serialization/ASTDeserializationListener.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Serialization/ASTReader.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Serialization/ASTWriter.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Serialization/ContinuousRangeMap.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Serialization/Module.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Serialization/ModuleManager.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Environment.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintManager.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Tooling/Tooling.h projects/pciehp/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMT.cpp projects/pciehp/contrib/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp projects/pciehp/contrib/llvm/tools/clang/lib/ARCMigrate/Internals.h projects/pciehp/contrib/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp projects/pciehp/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/ASTConsumer.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/ASTImporter.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/CXXInheritance.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/Comment.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/CommentBriefParser.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/CommentCommandTraits.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/CommentDumper.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/CommentLexer.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/CommentParser.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/CommentSema.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/Decl.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/DeclBase.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/DeclCXX.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/DeclObjC.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/DeclPrinter.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/DeclTemplate.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/DumpXML.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/Expr.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/ExprCXX.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/ExprClassification.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/NSAPI.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/ParentMap.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/RawCommentList.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/Stmt.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/StmtDumper.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/StmtProfile.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/TemplateBase.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/Type.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/TypeLoc.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/TypePrinter.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/VTableBuilder.cpp projects/pciehp/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchFinder.cpp projects/pciehp/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchersInternal.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Analysis/CFG.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Analysis/FormatString.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Analysis/ReachableCode.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Analysis/ScanfFormatString.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Basic/ConvertUTF.c projects/pciehp/contrib/llvm/tools/clang/lib/Basic/ConvertUTFWrapper.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Basic/Diagnostic.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Basic/Module.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Basic/SourceLocation.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Basic/SourceManager.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Basic/TargetInfo.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Basic/Targets.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Basic/Version.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/ABIInfo.h projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.h projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.h projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGClass.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGDecl.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGException.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGExpr.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.h projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGRTTI.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayout.h projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CodeGenAction.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.h projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.h projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Driver/Arg.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Driver/ArgList.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Driver/CC1AsOptions.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Driver/Driver.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Driver/DriverOptions.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Driver/OptTable.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Driver/Option.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Driver/ToolChains.h projects/pciehp/contrib/llvm/tools/clang/lib/Driver/Tools.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Driver/Tools.h projects/pciehp/contrib/llvm/tools/clang/lib/Driver/Types.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Driver/WindowsToolChain.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/ASTMerge.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/ChainedDiagnosticConsumer.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/DependencyFile.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/DependencyGraph.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/FrontendAction.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/FrontendActions.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/LogDiagnosticPrinter.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/Warnings.cpp projects/pciehp/contrib/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Headers/altivec.h projects/pciehp/contrib/llvm/tools/clang/lib/Headers/bmi2intrin.h projects/pciehp/contrib/llvm/tools/clang/lib/Headers/cpuid.h projects/pciehp/contrib/llvm/tools/clang/lib/Headers/immintrin.h projects/pciehp/contrib/llvm/tools/clang/lib/Headers/module.map projects/pciehp/contrib/llvm/tools/clang/lib/Headers/unwind.h projects/pciehp/contrib/llvm/tools/clang/lib/Headers/wmmintrin.h projects/pciehp/contrib/llvm/tools/clang/lib/Headers/x86intrin.h projects/pciehp/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h projects/pciehp/contrib/llvm/tools/clang/lib/Lex/HeaderMap.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/HeaderSearch.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/Lexer.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/LiteralSupport.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/MacroArgs.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/MacroInfo.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/ModuleMap.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/PPExpressions.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/PPLexerChange.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/PTHLexer.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/Pragma.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParseAST.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParseDecl.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParseExpr.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParseInit.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParseObjc.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParsePragma.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParsePragma.h projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParseTemplate.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParseTentative.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/Parser.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/RAIIObjectsForParser.h projects/pciehp/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/DelayedDiagnostic.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/IdentifierResolver.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/Sema.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaAttr.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaCast.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaChecking.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaExprMember.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaLambda.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaLookup.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaOverload.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaStmt.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaStmtAttr.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaTemplate.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaType.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/TreeTransform.h projects/pciehp/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Serialization/ASTReader.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Serialization/ASTWriter.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Serialization/GeneratePCH.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Serialization/Module.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Serialization/ModuleManager.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AttrNonNullChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Checkers.td projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdempotentOperationChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerContext.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/TextPathDiagnostics.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.h projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Tooling/Refactoring.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Tooling/Tooling.cpp projects/pciehp/contrib/llvm/tools/clang/tools/driver/cc1_main.cpp projects/pciehp/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp projects/pciehp/contrib/llvm/tools/clang/tools/driver/driver.cpp projects/pciehp/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp projects/pciehp/contrib/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp projects/pciehp/contrib/llvm/tools/clang/utils/TableGen/ClangSACheckersEmitter.cpp projects/pciehp/contrib/llvm/tools/clang/utils/TableGen/NeonEmitter.cpp projects/pciehp/contrib/llvm/tools/clang/utils/TableGen/OptParserEmitter.cpp projects/pciehp/contrib/llvm/tools/clang/utils/TableGen/TableGen.cpp projects/pciehp/contrib/llvm/tools/clang/utils/TableGen/TableGenBackends.h projects/pciehp/contrib/llvm/tools/llc/llc.cpp projects/pciehp/contrib/llvm/tools/lli/lli.cpp projects/pciehp/contrib/llvm/tools/llvm-ar/llvm-ar.cpp projects/pciehp/contrib/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp projects/pciehp/contrib/llvm/tools/llvm-extract/llvm-extract.cpp projects/pciehp/contrib/llvm/tools/llvm-mc/llvm-mc.cpp projects/pciehp/contrib/llvm/tools/llvm-nm/llvm-nm.cpp projects/pciehp/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp projects/pciehp/contrib/llvm/tools/llvm-ranlib/llvm-ranlib.cpp projects/pciehp/contrib/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp projects/pciehp/contrib/llvm/tools/llvm-stress/llvm-stress.cpp projects/pciehp/contrib/llvm/tools/opt/opt.cpp projects/pciehp/contrib/llvm/utils/TableGen/AsmMatcherEmitter.cpp projects/pciehp/contrib/llvm/utils/TableGen/AsmWriterEmitter.cpp projects/pciehp/contrib/llvm/utils/TableGen/AsmWriterInst.cpp projects/pciehp/contrib/llvm/utils/TableGen/CallingConvEmitter.cpp projects/pciehp/contrib/llvm/utils/TableGen/CodeEmitterGen.cpp projects/pciehp/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.cpp projects/pciehp/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.h projects/pciehp/contrib/llvm/utils/TableGen/CodeGenInstruction.cpp projects/pciehp/contrib/llvm/utils/TableGen/CodeGenInstruction.h projects/pciehp/contrib/llvm/utils/TableGen/CodeGenRegisters.cpp projects/pciehp/contrib/llvm/utils/TableGen/CodeGenRegisters.h projects/pciehp/contrib/llvm/utils/TableGen/CodeGenSchedule.cpp projects/pciehp/contrib/llvm/utils/TableGen/CodeGenSchedule.h projects/pciehp/contrib/llvm/utils/TableGen/CodeGenTarget.cpp projects/pciehp/contrib/llvm/utils/TableGen/CodeGenTarget.h projects/pciehp/contrib/llvm/utils/TableGen/DAGISelMatcher.h projects/pciehp/contrib/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp projects/pciehp/contrib/llvm/utils/TableGen/DAGISelMatcherGen.cpp projects/pciehp/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.cpp projects/pciehp/contrib/llvm/utils/TableGen/DisassemblerEmitter.cpp projects/pciehp/contrib/llvm/utils/TableGen/EDEmitter.cpp projects/pciehp/contrib/llvm/utils/TableGen/FastISelEmitter.cpp projects/pciehp/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp projects/pciehp/contrib/llvm/utils/TableGen/InstrInfoEmitter.cpp projects/pciehp/contrib/llvm/utils/TableGen/IntrinsicEmitter.cpp projects/pciehp/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.cpp projects/pciehp/contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp projects/pciehp/contrib/llvm/utils/TableGen/SequenceToOffsetTable.h projects/pciehp/contrib/llvm/utils/TableGen/SetTheory.cpp projects/pciehp/contrib/llvm/utils/TableGen/SetTheory.h projects/pciehp/contrib/llvm/utils/TableGen/SubtargetEmitter.cpp projects/pciehp/contrib/llvm/utils/TableGen/TGValueTypes.cpp projects/pciehp/contrib/llvm/utils/TableGen/TableGen.cpp projects/pciehp/contrib/llvm/utils/TableGen/TableGenBackends.h projects/pciehp/contrib/llvm/utils/TableGen/X86DisassemblerTables.cpp projects/pciehp/contrib/llvm/utils/TableGen/X86ModRMFilters.h projects/pciehp/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp projects/pciehp/contrib/llvm/utils/TableGen/X86RecognizableInstr.h projects/pciehp/contrib/netcat/FREEBSD-vendor projects/pciehp/contrib/netcat/nc.1 projects/pciehp/contrib/netcat/netcat.c projects/pciehp/contrib/netcat/socks.c projects/pciehp/contrib/ntp/arlib/Makefile.in projects/pciehp/contrib/ntp/libntp/Makefile.in projects/pciehp/contrib/ntp/libparse/Makefile.in projects/pciehp/contrib/ntp/ntpd/Makefile.in projects/pciehp/contrib/openbsm/CREDITS projects/pciehp/contrib/openbsm/INSTALL projects/pciehp/contrib/openbsm/LICENSE projects/pciehp/contrib/openbsm/Makefile.am projects/pciehp/contrib/openbsm/Makefile.in projects/pciehp/contrib/openbsm/NEWS projects/pciehp/contrib/openbsm/README projects/pciehp/contrib/openbsm/TODO projects/pciehp/contrib/openbsm/VERSION projects/pciehp/contrib/openbsm/aclocal.m4 projects/pciehp/contrib/openbsm/autogen.sh projects/pciehp/contrib/openbsm/bin/Makefile.am projects/pciehp/contrib/openbsm/bin/Makefile.in projects/pciehp/contrib/openbsm/bin/audit/Makefile.am projects/pciehp/contrib/openbsm/bin/audit/Makefile.in projects/pciehp/contrib/openbsm/bin/audit/audit.8 projects/pciehp/contrib/openbsm/bin/auditd/Makefile.am projects/pciehp/contrib/openbsm/bin/auditd/Makefile.in projects/pciehp/contrib/openbsm/bin/auditd/auditd.8 projects/pciehp/contrib/openbsm/bin/auditd/auditd.c projects/pciehp/contrib/openbsm/bin/auditfilterd/Makefile.am projects/pciehp/contrib/openbsm/bin/auditfilterd/Makefile.in projects/pciehp/contrib/openbsm/bin/auditreduce/Makefile.am projects/pciehp/contrib/openbsm/bin/auditreduce/Makefile.in projects/pciehp/contrib/openbsm/bin/auditreduce/auditreduce.1 projects/pciehp/contrib/openbsm/bin/praudit/Makefile.am projects/pciehp/contrib/openbsm/bin/praudit/Makefile.in projects/pciehp/contrib/openbsm/bin/praudit/praudit.1 projects/pciehp/contrib/openbsm/bin/praudit/praudit.c projects/pciehp/contrib/openbsm/bsm/Makefile.am projects/pciehp/contrib/openbsm/bsm/Makefile.in projects/pciehp/contrib/openbsm/bsm/auditd_lib.h projects/pciehp/contrib/openbsm/bsm/libbsm.h projects/pciehp/contrib/openbsm/compat/endian.h projects/pciehp/contrib/openbsm/config/config.h projects/pciehp/contrib/openbsm/config/config.h.in projects/pciehp/contrib/openbsm/config/ltmain.sh projects/pciehp/contrib/openbsm/configure projects/pciehp/contrib/openbsm/configure.ac projects/pciehp/contrib/openbsm/etc/audit_control projects/pciehp/contrib/openbsm/etc/audit_event projects/pciehp/contrib/openbsm/libauditd/Makefile.am projects/pciehp/contrib/openbsm/libauditd/Makefile.in projects/pciehp/contrib/openbsm/libauditd/auditd_lib.c projects/pciehp/contrib/openbsm/libbsm/Makefile.am projects/pciehp/contrib/openbsm/libbsm/Makefile.in projects/pciehp/contrib/openbsm/libbsm/au_control.3 projects/pciehp/contrib/openbsm/libbsm/au_fcntl_cmd.3 projects/pciehp/contrib/openbsm/libbsm/au_io.3 projects/pciehp/contrib/openbsm/libbsm/audit_submit.3 projects/pciehp/contrib/openbsm/libbsm/bsm_audit.c projects/pciehp/contrib/openbsm/libbsm/bsm_class.c projects/pciehp/contrib/openbsm/libbsm/bsm_control.c projects/pciehp/contrib/openbsm/libbsm/bsm_errno.c projects/pciehp/contrib/openbsm/libbsm/bsm_io.c projects/pciehp/contrib/openbsm/libbsm/bsm_token.c projects/pciehp/contrib/openbsm/libbsm/bsm_user.c projects/pciehp/contrib/openbsm/libbsm/bsm_wrappers.c projects/pciehp/contrib/openbsm/man/Makefile.am projects/pciehp/contrib/openbsm/man/Makefile.in projects/pciehp/contrib/openbsm/man/audit.log.5 projects/pciehp/contrib/openbsm/man/audit_control.5 projects/pciehp/contrib/openbsm/man/auditon.2 projects/pciehp/contrib/openbsm/man/getaudit.2 projects/pciehp/contrib/openbsm/man/setaudit.2 projects/pciehp/contrib/openbsm/modules/Makefile.am projects/pciehp/contrib/openbsm/modules/Makefile.in projects/pciehp/contrib/openbsm/modules/auditfilter_noop/Makefile.am projects/pciehp/contrib/openbsm/modules/auditfilter_noop/Makefile.in projects/pciehp/contrib/openbsm/sys/Makefile.am projects/pciehp/contrib/openbsm/sys/Makefile.in projects/pciehp/contrib/openbsm/sys/bsm/Makefile.am projects/pciehp/contrib/openbsm/sys/bsm/Makefile.in projects/pciehp/contrib/openbsm/sys/bsm/audit_errno.h projects/pciehp/contrib/openbsm/sys/bsm/audit_internal.h projects/pciehp/contrib/openbsm/sys/bsm/audit_kevents.h projects/pciehp/contrib/openbsm/sys/bsm/audit_record.h projects/pciehp/contrib/openbsm/test/Makefile.am projects/pciehp/contrib/openbsm/test/Makefile.in projects/pciehp/contrib/openbsm/test/bsm/Makefile.am projects/pciehp/contrib/openbsm/test/bsm/Makefile.in projects/pciehp/contrib/openbsm/tools/Makefile.am projects/pciehp/contrib/openbsm/tools/Makefile.in projects/pciehp/contrib/opie/libmissing/Makefile.in projects/pciehp/contrib/opie/libopie/Makefile.in projects/pciehp/contrib/sendmail/FREEBSD-upgrade projects/pciehp/contrib/sendmail/LICENSE projects/pciehp/contrib/sendmail/PGPKEYS projects/pciehp/contrib/sendmail/RELEASE_NOTES projects/pciehp/contrib/sendmail/cf/README projects/pciehp/contrib/sendmail/cf/cf/submit.cf projects/pciehp/contrib/sendmail/cf/feature/ldap_routing.m4 projects/pciehp/contrib/sendmail/cf/m4/proto.m4 projects/pciehp/contrib/sendmail/cf/m4/version.m4 projects/pciehp/contrib/sendmail/doc/op/op.me projects/pciehp/contrib/sendmail/include/libmilter/mfapi.h projects/pciehp/contrib/sendmail/include/sm/clock.h projects/pciehp/contrib/sendmail/include/sm/tailq.h projects/pciehp/contrib/sendmail/libmilter/Makefile.m4 projects/pciehp/contrib/sendmail/libmilter/docs/api.html projects/pciehp/contrib/sendmail/libmilter/docs/smfi_setsymlist.html projects/pciehp/contrib/sendmail/libmilter/docs/smfi_settimeout.html projects/pciehp/contrib/sendmail/libmilter/worker.c projects/pciehp/contrib/sendmail/src/Makefile.m4 projects/pciehp/contrib/sendmail/src/TRACEFLAGS projects/pciehp/contrib/sendmail/src/collect.c projects/pciehp/contrib/sendmail/src/conf.c projects/pciehp/contrib/sendmail/src/daemon.c projects/pciehp/contrib/sendmail/src/deliver.c projects/pciehp/contrib/sendmail/src/headers.c projects/pciehp/contrib/sendmail/src/main.c projects/pciehp/contrib/sendmail/src/map.c projects/pciehp/contrib/sendmail/src/milter.c projects/pciehp/contrib/sendmail/src/parseaddr.c projects/pciehp/contrib/sendmail/src/queue.c projects/pciehp/contrib/sendmail/src/sasl.c projects/pciehp/contrib/sendmail/src/savemail.c projects/pciehp/contrib/sendmail/src/sendmail.h projects/pciehp/contrib/sendmail/src/srvrsmtp.c projects/pciehp/contrib/sendmail/src/stab.c projects/pciehp/contrib/sendmail/src/util.c projects/pciehp/contrib/sendmail/src/version.c projects/pciehp/contrib/tcp_wrappers/Makefile projects/pciehp/contrib/tcpdump/Makefile.in projects/pciehp/contrib/top/commands.c projects/pciehp/contrib/top/top.h projects/pciehp/contrib/tzdata/africa projects/pciehp/contrib/tzdata/asia projects/pciehp/contrib/tzdata/australasia projects/pciehp/contrib/tzdata/europe projects/pciehp/contrib/tzdata/northamerica projects/pciehp/contrib/tzdata/southamerica projects/pciehp/contrib/wpa/src/eap_server/eap_server_tls_common.c projects/pciehp/contrib/xz/AUTHORS projects/pciehp/contrib/xz/ChangeLog projects/pciehp/contrib/xz/README projects/pciehp/contrib/xz/THANKS projects/pciehp/contrib/xz/po/de.po projects/pciehp/contrib/xz/po/fr.po projects/pciehp/contrib/xz/po/it.po projects/pciehp/contrib/xz/po/pl.po projects/pciehp/contrib/xz/src/common/sysdefs.h projects/pciehp/contrib/xz/src/liblzma/api/lzma/version.h projects/pciehp/contrib/xz/src/liblzma/simple/simple_coder.c projects/pciehp/contrib/xz/src/liblzma/simple/simple_private.h projects/pciehp/contrib/xz/src/xz/args.c projects/pciehp/contrib/xz/src/xz/coder.c projects/pciehp/contrib/xz/src/xz/message.c projects/pciehp/contrib/xz/src/xz/xz.1 projects/pciehp/crypto/heimdal/appl/ftp/common/Makefile.in projects/pciehp/crypto/heimdal/appl/telnet/libtelnet/Makefile.in projects/pciehp/crypto/heimdal/lib/sl/slc-lex.l projects/pciehp/crypto/openssl/Makefile.org projects/pciehp/crypto/openssl/crypto/Makefile projects/pciehp/crypto/openssl/crypto/rand/rand_unix.c projects/pciehp/etc/Makefile projects/pciehp/etc/defaults/periodic.conf projects/pciehp/etc/defaults/rc.conf projects/pciehp/etc/devd/usb.conf projects/pciehp/etc/disktab projects/pciehp/etc/ftpusers projects/pciehp/etc/group projects/pciehp/etc/login.conf projects/pciehp/etc/mail/aliases projects/pciehp/etc/master.passwd projects/pciehp/etc/motd projects/pciehp/etc/mtree/BSD.include.dist projects/pciehp/etc/mtree/BSD.root.dist projects/pciehp/etc/mtree/BSD.usr.dist projects/pciehp/etc/mtree/BSD.var.dist projects/pciehp/etc/network.subr projects/pciehp/etc/newsyslog.conf projects/pciehp/etc/pccard_ether projects/pciehp/etc/periodic/daily/Makefile projects/pciehp/etc/pf.os projects/pciehp/etc/rc.d/Makefile projects/pciehp/etc/rc.d/ipfw projects/pciehp/etc/rc.d/jail projects/pciehp/etc/rc.d/routing projects/pciehp/etc/rc.d/rtadvd projects/pciehp/etc/rc.d/savecore projects/pciehp/etc/rc.d/sysctl projects/pciehp/etc/rc.subr projects/pciehp/etc/regdomain.xml projects/pciehp/etc/root/dot.cshrc projects/pciehp/etc/root/dot.login projects/pciehp/etc/sendmail/freebsd.mc projects/pciehp/etc/sendmail/freebsd.submit.mc projects/pciehp/games/bcd/bcd.c projects/pciehp/games/caesar/caesar.c projects/pciehp/games/fortune/datfiles/fortunes projects/pciehp/games/fortune/datfiles/freebsd-tips projects/pciehp/games/fortune/fortune/fortune.6 projects/pciehp/games/fortune/fortune/fortune.c projects/pciehp/games/fortune/tools/do_uniq.py projects/pciehp/games/random/randomize_fd.c projects/pciehp/gnu/lib/libgcc/Makefile projects/pciehp/gnu/lib/libstdc++/Makefile projects/pciehp/gnu/lib/libsupc++/Makefile projects/pciehp/gnu/usr.bin/binutils/as/Makefile projects/pciehp/gnu/usr.bin/cc/cc_tools/Makefile projects/pciehp/gnu/usr.bin/send-pr/send-pr.sh projects/pciehp/include/Makefile projects/pciehp/include/paths.h projects/pciehp/include/xlocale/_ctype.h projects/pciehp/lib/Makefile projects/pciehp/lib/bind/config.h projects/pciehp/lib/bind/dns/Makefile projects/pciehp/lib/bind/isc/isc/platform.h projects/pciehp/lib/clang/Makefile projects/pciehp/lib/clang/clang.build.mk projects/pciehp/lib/clang/include/Makefile projects/pciehp/lib/clang/include/clang/Basic/Version.inc projects/pciehp/lib/clang/include/llvm/Config/config.h projects/pciehp/lib/clang/libclanganalysis/Makefile projects/pciehp/lib/clang/libclangast/Makefile projects/pciehp/lib/clang/libclangsema/Makefile projects/pciehp/lib/clang/libclangstaticanalyzercheckers/Makefile projects/pciehp/lib/clang/libclangstaticanalyzercore/Makefile projects/pciehp/lib/clang/libllvmanalysis/Makefile projects/pciehp/lib/clang/libllvmarmcodegen/Makefile projects/pciehp/lib/clang/libllvmcodegen/Makefile projects/pciehp/lib/clang/libllvmcore/Makefile projects/pciehp/lib/clang/libllvmdebuginfo/Makefile projects/pciehp/lib/clang/libllvminstrumentation/Makefile projects/pciehp/lib/clang/libllvmipo/Makefile projects/pciehp/lib/clang/libllvmmcjit/Makefile projects/pciehp/lib/clang/libllvmmipsasmparser/Makefile projects/pciehp/lib/clang/libllvmmipscodegen/Makefile projects/pciehp/lib/clang/libllvmmipsdesc/Makefile projects/pciehp/lib/clang/libllvmscalaropts/Makefile projects/pciehp/lib/clang/libllvmtablegen/Makefile projects/pciehp/lib/clang/libllvmtarget/Makefile projects/pciehp/lib/clang/libllvmtransformutils/Makefile projects/pciehp/lib/clang/libllvmvectorize/Makefile projects/pciehp/lib/clang/libllvmx86codegen/Makefile projects/pciehp/lib/libc++/Makefile projects/pciehp/lib/libc/compat-43/killpg.2 projects/pciehp/lib/libc/gen/Makefile.inc projects/pciehp/lib/libc/gen/Symbol.map projects/pciehp/lib/libc/gen/check_utility_compat.c projects/pciehp/lib/libc/gen/fmtmsg.c projects/pciehp/lib/libc/gen/fstab.c projects/pciehp/lib/libc/gen/getbsize.3 projects/pciehp/lib/libc/gen/getcap.c projects/pciehp/lib/libc/gen/getgrent.c projects/pciehp/lib/libc/gen/getnetgrent.c projects/pciehp/lib/libc/gen/getttyent.c projects/pciehp/lib/libc/gen/getusershell.c projects/pciehp/lib/libc/gen/getutxent.c projects/pciehp/lib/libc/gen/glob.c projects/pciehp/lib/libc/gen/isnan.c projects/pciehp/lib/libc/gen/sysctlbyname.c projects/pciehp/lib/libc/iconv/citrus_mmap.c projects/pciehp/lib/libc/include/namespace.h projects/pciehp/lib/libc/include/un-namespace.h projects/pciehp/lib/libc/locale/collate.c projects/pciehp/lib/libc/locale/setrunelocale.c projects/pciehp/lib/libc/net/getnetent.3 projects/pciehp/lib/libc/net/getprotoent.3 projects/pciehp/lib/libc/net/getservent.3 projects/pciehp/lib/libc/net/ip6opt.c projects/pciehp/lib/libc/net/sctp_sys_calls.c projects/pciehp/lib/libc/nls/Makefile.inc projects/pciehp/lib/libc/nls/msgcat.c projects/pciehp/lib/libc/stdio/fdopen.c projects/pciehp/lib/libc/stdio/flags.c projects/pciehp/lib/libc/stdio/fopen.3 projects/pciehp/lib/libc/stdio/freopen.c projects/pciehp/lib/libc/stdio/getline.3 projects/pciehp/lib/libc/stdio/printf.3 projects/pciehp/lib/libc/sys/Makefile.inc projects/pciehp/lib/libc/sys/Symbol.map projects/pciehp/lib/libc/sys/bind.2 projects/pciehp/lib/libc/sys/fcntl.2 projects/pciehp/lib/libc/sys/getpeername.2 projects/pciehp/lib/libc/sys/getsockname.2 projects/pciehp/lib/libc/sys/kill.2 projects/pciehp/lib/libc/sys/listen.2 projects/pciehp/lib/libc/sys/mlock.2 projects/pciehp/lib/libc/sys/mlockall.2 projects/pciehp/lib/libc/sys/rtprio.2 projects/pciehp/lib/libc/sys/sendfile.2 projects/pciehp/lib/libc/sys/socket.2 projects/pciehp/lib/libc/sys/wait.2 projects/pciehp/lib/libcompiler_rt/Makefile projects/pciehp/lib/libdevstat/devstat.3 projects/pciehp/lib/libdevstat/devstat.c projects/pciehp/lib/libdevstat/devstat.h projects/pciehp/lib/libdwarf/dwarf_init.c projects/pciehp/lib/libfetch/http.c projects/pciehp/lib/libfetch/http.errors projects/pciehp/lib/libgeom/geom_xml2tree.c projects/pciehp/lib/libipsec/policy_parse.y projects/pciehp/lib/libmemstat/memstat_uma.c projects/pciehp/lib/libnetgraph/sock.c projects/pciehp/lib/libpam/modules/pam_krb5/pam_krb5.c projects/pciehp/lib/libpmc/libpmc.c projects/pciehp/lib/libpmc/pmc.ivybridge.3 projects/pciehp/lib/libpmc/pmc.sandybridge.3 projects/pciehp/lib/libpmc/pmc.sandybridgexeon.3 projects/pciehp/lib/libproc/proc_bkpt.c projects/pciehp/lib/libproc/proc_regs.c projects/pciehp/lib/libproc/test/t1-bkpt/t1-bkpt.c projects/pciehp/lib/libradius/Makefile projects/pciehp/lib/libradius/libradius.3 projects/pciehp/lib/libradius/radius.conf.5 projects/pciehp/lib/libradius/radlib.c projects/pciehp/lib/libradius/radlib.h projects/pciehp/lib/libradius/radlib_private.h projects/pciehp/lib/libradius/radlib_vs.h projects/pciehp/lib/libutil/Makefile projects/pciehp/lib/libutil/gr_util.c projects/pciehp/lib/libutil/libutil.h projects/pciehp/lib/libutil/pw_util.c projects/pciehp/lib/msun/src/e_expf.c projects/pciehp/lib/msun/src/e_logf.c projects/pciehp/lib/msun/src/k_rem_pio2.c projects/pciehp/lib/msun/src/s_isnan.c projects/pciehp/libexec/Makefile projects/pciehp/libexec/atrun/atrun.c projects/pciehp/libexec/atrun/atrun.man projects/pciehp/libexec/rtld-elf/Makefile projects/pciehp/libexec/rtld-elf/libmap.c projects/pciehp/libexec/rtld-elf/rtld.c projects/pciehp/libexec/tftpd/tftp-io.c projects/pciehp/libexec/tftpd/tftpd.c projects/pciehp/release/Makefile projects/pciehp/release/doc/share/xml/release.ent projects/pciehp/release/picobsd/build/picobsd projects/pciehp/release/picobsd/floppy.tree/etc/ppp/ppp.conf projects/pciehp/release/picobsd/mfs_tree/etc/remote projects/pciehp/sbin/ccdconfig/ccdconfig.c projects/pciehp/sbin/comcontrol/comcontrol.8 projects/pciehp/sbin/ddb/ddb.c projects/pciehp/sbin/devd/devd.cc projects/pciehp/sbin/devd/devd.hh projects/pciehp/sbin/dump/dump.h projects/pciehp/sbin/dumpfs/dumpfs.c projects/pciehp/sbin/dumpon/dumpon.8 projects/pciehp/sbin/dumpon/dumpon.c projects/pciehp/sbin/fsck/Makefile projects/pciehp/sbin/fsck/fsck.c projects/pciehp/sbin/fsck/fsutil.c projects/pciehp/sbin/fsck/fsutil.h projects/pciehp/sbin/fsck/preen.c projects/pciehp/sbin/fsck_ffs/suj.c projects/pciehp/sbin/fsck_msdosfs/Makefile projects/pciehp/sbin/fsck_msdosfs/boot.c projects/pciehp/sbin/fsck_msdosfs/check.c projects/pciehp/sbin/fsck_msdosfs/dir.c projects/pciehp/sbin/fsck_msdosfs/ext.h projects/pciehp/sbin/fsck_msdosfs/fat.c projects/pciehp/sbin/growfs/growfs.8 projects/pciehp/sbin/growfs/growfs.c projects/pciehp/sbin/hastd/parse.y projects/pciehp/sbin/hastd/pjdlog.h projects/pciehp/sbin/ifconfig/af_inet6.c projects/pciehp/sbin/ifconfig/af_nd6.c projects/pciehp/sbin/ifconfig/ifconfig.8 projects/pciehp/sbin/ifconfig/ifconfig.c projects/pciehp/sbin/ipfw/ipfw.8 projects/pciehp/sbin/mdconfig/mdconfig.8 projects/pciehp/sbin/mdconfig/mdconfig.c projects/pciehp/sbin/mount_nfs/mount_nfs.8 projects/pciehp/sbin/natd/natd.c projects/pciehp/sbin/newfs/mkfs.c projects/pciehp/sbin/newfs/newfs.c projects/pciehp/sbin/newfs/newfs.h projects/pciehp/sbin/ping/ping.c projects/pciehp/sbin/ping6/ping6.c projects/pciehp/sbin/restore/tape.c projects/pciehp/sbin/route/keywords projects/pciehp/sbin/route/route.8 projects/pciehp/sbin/route/route.c projects/pciehp/sbin/savecore/savecore.8 projects/pciehp/sbin/savecore/savecore.c projects/pciehp/sbin/setkey/setkey.8 projects/pciehp/sbin/sysctl/sysctl.8 projects/pciehp/sbin/sysctl/sysctl.c projects/pciehp/sbin/tunefs/tunefs.c projects/pciehp/sbin/umount/umount.c projects/pciehp/secure/usr.bin/bdes/bdes.1 projects/pciehp/share/Makefile projects/pciehp/share/doc/Makefile projects/pciehp/share/examples/Makefile projects/pciehp/share/examples/etc/make.conf projects/pciehp/share/examples/ppp/ppp.conf.sample projects/pciehp/share/examples/ppp/ppp.conf.span-isp projects/pciehp/share/examples/ses/sesd/sesd.0 projects/pciehp/share/examples/ses/srcs/eltsub.c projects/pciehp/share/examples/ses/srcs/sesd.c projects/pciehp/share/i18n/csmapper/Makefile.part projects/pciehp/share/man/man1/Makefile projects/pciehp/share/man/man4/Makefile projects/pciehp/share/man/man4/arcmsr.4 projects/pciehp/share/man/man4/audit.4 projects/pciehp/share/man/man4/carp.4 projects/pciehp/share/man/man4/ddb.4 projects/pciehp/share/man/man4/gdb.4 projects/pciehp/share/man/man4/hptiop.4 projects/pciehp/share/man/man4/hwpmc.4 projects/pciehp/share/man/man4/icmp6.4 projects/pciehp/share/man/man4/ipfirewall.4 projects/pciehp/share/man/man4/ipsec.4 projects/pciehp/share/man/man4/ktr.4 projects/pciehp/share/man/man4/lagg.4 projects/pciehp/share/man/man4/mouse.4 projects/pciehp/share/man/man4/ng_UI.4 projects/pciehp/share/man/man4/ng_async.4 projects/pciehp/share/man/man4/ng_atm.4 projects/pciehp/share/man/man4/ng_atmllc.4 projects/pciehp/share/man/man4/ng_bluetooth.4 projects/pciehp/share/man/man4/ng_bpf.4 projects/pciehp/share/man/man4/ng_bridge.4 projects/pciehp/share/man/man4/ng_bt3c.4 projects/pciehp/share/man/man4/ng_btsocket.4 projects/pciehp/share/man/man4/ng_car.4 projects/pciehp/share/man/man4/ng_ccatm.4 projects/pciehp/share/man/man4/ng_cisco.4 projects/pciehp/share/man/man4/ng_deflate.4 projects/pciehp/share/man/man4/ng_eiface.4 projects/pciehp/share/man/man4/ng_etf.4 projects/pciehp/share/man/man4/ng_ether.4 projects/pciehp/share/man/man4/ng_fec.4 projects/pciehp/share/man/man4/ng_frame_relay.4 projects/pciehp/share/man/man4/ng_gif.4 projects/pciehp/share/man/man4/ng_gif_demux.4 projects/pciehp/share/man/man4/ng_h4.4 projects/pciehp/share/man/man4/ng_hci.4 projects/pciehp/share/man/man4/ng_hole.4 projects/pciehp/share/man/man4/ng_hub.4 projects/pciehp/share/man/man4/ng_iface.4 projects/pciehp/share/man/man4/ng_ksocket.4 projects/pciehp/share/man/man4/ng_l2cap.4 projects/pciehp/share/man/man4/ng_l2tp.4 projects/pciehp/share/man/man4/ng_lmi.4 projects/pciehp/share/man/man4/ng_mppc.4 projects/pciehp/share/man/man4/ng_nat.4 projects/pciehp/share/man/man4/ng_netflow.4 projects/pciehp/share/man/man4/ng_one2many.4 projects/pciehp/share/man/man4/ng_patch.4 projects/pciehp/share/man/man4/ng_ppp.4 projects/pciehp/share/man/man4/ng_pppoe.4 projects/pciehp/share/man/man4/ng_pptpgre.4 projects/pciehp/share/man/man4/ng_pred1.4 projects/pciehp/share/man/man4/ng_rfc1490.4 projects/pciehp/share/man/man4/ng_source.4 projects/pciehp/share/man/man4/ng_split.4 projects/pciehp/share/man/man4/ng_sppp.4 projects/pciehp/share/man/man4/ng_sscfu.4 projects/pciehp/share/man/man4/ng_sscop.4 projects/pciehp/share/man/man4/ng_tag.4 projects/pciehp/share/man/man4/ng_tcpmss.4 projects/pciehp/share/man/man4/ng_tee.4 projects/pciehp/share/man/man4/ng_tty.4 projects/pciehp/share/man/man4/ng_ubt.4 projects/pciehp/share/man/man4/ng_uni.4 projects/pciehp/share/man/man4/ng_vjc.4 projects/pciehp/share/man/man4/ng_vlan.4 projects/pciehp/share/man/man4/stf.4 projects/pciehp/share/man/man4/textdump.4 projects/pciehp/share/man/man4/unix.4 projects/pciehp/share/man/man4/usb_quirk.4 projects/pciehp/share/man/man4/wbwd.4 projects/pciehp/share/man/man5/Makefile projects/pciehp/share/man/man5/core.5 projects/pciehp/share/man/man5/make.conf.5 projects/pciehp/share/man/man5/rc.conf.5 projects/pciehp/share/man/man5/remote.5 projects/pciehp/share/man/man5/src.conf.5 projects/pciehp/share/man/man7/Makefile projects/pciehp/share/man/man7/environ.7 projects/pciehp/share/man/man7/ports.7 projects/pciehp/share/man/man7/tuning.7 projects/pciehp/share/man/man9/Makefile projects/pciehp/share/man/man9/disk.9 projects/pciehp/share/man/man9/domain.9 projects/pciehp/share/man/man9/firmware.9 projects/pciehp/share/man/man9/lock.9 projects/pciehp/share/man/man9/make_dev.9 projects/pciehp/share/man/man9/malloc.9 projects/pciehp/share/man/man9/mbuf.9 projects/pciehp/share/man/man9/mi_switch.9 projects/pciehp/share/man/man9/namei.9 projects/pciehp/share/man/man9/pfil.9 projects/pciehp/share/man/man9/sleep.9 projects/pciehp/share/man/man9/taskqueue.9 projects/pciehp/share/man/man9/timeout.9 projects/pciehp/share/man/man9/zero_copy.9 projects/pciehp/share/man/man9/zone.9 projects/pciehp/share/misc/Makefile projects/pciehp/share/misc/bsd-family-tree projects/pciehp/share/misc/committers-ports.dot projects/pciehp/share/misc/committers-src.dot projects/pciehp/share/misc/flowers (contents, props changed) projects/pciehp/share/misc/iso639 projects/pciehp/share/misc/organization.dot projects/pciehp/share/misc/pci_vendors projects/pciehp/share/mk/Makefile projects/pciehp/share/mk/bsd.compiler.mk projects/pciehp/share/mk/bsd.cpu.mk projects/pciehp/share/mk/bsd.dep.mk projects/pciehp/share/mk/bsd.lib.mk projects/pciehp/share/mk/bsd.libnames.mk projects/pciehp/share/mk/bsd.own.mk projects/pciehp/share/mk/bsd.prog.mk projects/pciehp/share/mk/bsd.subdir.mk projects/pciehp/share/mk/sys.mk projects/pciehp/share/skel/dot.cshrc projects/pciehp/share/syscons/keymaps/INDEX.keymaps projects/pciehp/share/syscons/keymaps/Makefile projects/pciehp/share/syscons/keymaps/spanish.dvorak.kbd projects/pciehp/share/termcap/termcap.src projects/pciehp/sys/Makefile projects/pciehp/sys/amd64/amd64/db_trace.c projects/pciehp/sys/amd64/amd64/fpu.c projects/pciehp/sys/amd64/amd64/identcpu.c projects/pciehp/sys/amd64/amd64/initcpu.c projects/pciehp/sys/amd64/amd64/minidump_machdep.c projects/pciehp/sys/amd64/amd64/pmap.c projects/pciehp/sys/amd64/amd64/uma_machdep.c projects/pciehp/sys/amd64/include/fpu.h projects/pciehp/sys/amd64/include/md_var.h projects/pciehp/sys/amd64/pci/pci_cfgreg.c projects/pciehp/sys/arm/arm/busdma_machdep-v6.c projects/pciehp/sys/arm/arm/busdma_machdep.c projects/pciehp/sys/arm/arm/cpufunc.c projects/pciehp/sys/arm/arm/cpufunc_asm_armv7.S projects/pciehp/sys/arm/arm/elf_trampoline.c projects/pciehp/sys/arm/arm/identcpu.c projects/pciehp/sys/arm/arm/locore.S projects/pciehp/sys/arm/arm/machdep.c projects/pciehp/sys/arm/arm/mpcore_timer.c projects/pciehp/sys/arm/arm/pl310.c projects/pciehp/sys/arm/arm/pmap-v6.c projects/pciehp/sys/arm/arm/pmap.c projects/pciehp/sys/arm/arm/vm_machdep.c projects/pciehp/sys/arm/at91/at91_machdep.c projects/pciehp/sys/arm/at91/files.at91 projects/pciehp/sys/arm/at91/if_ate.c projects/pciehp/sys/arm/at91/if_macb.c projects/pciehp/sys/arm/broadcom/bcm2835/bcm2835_fb.c projects/pciehp/sys/arm/broadcom/bcm2835/bcm2835_machdep.c projects/pciehp/sys/arm/broadcom/bcm2835/bcm2835_systimer.c projects/pciehp/sys/arm/broadcom/bcm2835/files.bcm2835 projects/pciehp/sys/arm/conf/CAMBRIA projects/pciehp/sys/arm/conf/PANDABOARD projects/pciehp/sys/arm/conf/RPI-B projects/pciehp/sys/arm/econa/if_ece.c projects/pciehp/sys/arm/include/armreg.h projects/pciehp/sys/arm/include/cpuconf.h projects/pciehp/sys/arm/include/cpufunc.h projects/pciehp/sys/arm/include/intr.h projects/pciehp/sys/arm/include/machdep.h projects/pciehp/sys/arm/include/pmap.h projects/pciehp/sys/arm/include/vm.h projects/pciehp/sys/arm/lpc/if_lpe.c projects/pciehp/sys/arm/lpc/lpc_gpio.c projects/pciehp/sys/arm/lpc/lpc_machdep.c projects/pciehp/sys/arm/mv/armadaxp/armadaxp_mp.c projects/pciehp/sys/arm/mv/mv_machdep.c projects/pciehp/sys/arm/mv/mvreg.h projects/pciehp/sys/arm/tegra/tegra2_machdep.c projects/pciehp/sys/arm/ti/am335x/am335x_dmtimer.c projects/pciehp/sys/arm/ti/cpsw/if_cpsw.c projects/pciehp/sys/arm/ti/omap4/omap4_mp.c projects/pciehp/sys/arm/ti/ti_machdep.c projects/pciehp/sys/arm/xscale/i80321/ep80219_machdep.c projects/pciehp/sys/arm/xscale/i80321/iq31244_machdep.c projects/pciehp/sys/arm/xscale/ixp425/if_npe.c projects/pciehp/sys/boot/arm/uboot/Makefile projects/pciehp/sys/boot/common/Makefile.inc projects/pciehp/sys/boot/common/disk.c projects/pciehp/sys/boot/common/disk.h projects/pciehp/sys/boot/common/interp.c projects/pciehp/sys/boot/common/interp_forth.c projects/pciehp/sys/boot/efi/Makefile.inc projects/pciehp/sys/boot/efi/libefi/libefi.c projects/pciehp/sys/boot/fdt/dts/bcm2835-rpi-b.dts projects/pciehp/sys/boot/fdt/fdt_loader_cmd.c projects/pciehp/sys/boot/ficl/Makefile projects/pciehp/sys/boot/forth/beastie.4th.8 projects/pciehp/sys/boot/forth/check-password.4th projects/pciehp/sys/boot/forth/check-password.4th.8 projects/pciehp/sys/boot/forth/frames.4th projects/pciehp/sys/boot/forth/loader.4th projects/pciehp/sys/boot/forth/loader.4th.8 projects/pciehp/sys/boot/forth/loader.conf.5 projects/pciehp/sys/boot/forth/menu-commands.4th projects/pciehp/sys/boot/forth/menu.4th projects/pciehp/sys/boot/forth/menu.4th.8 projects/pciehp/sys/boot/forth/menu.rc projects/pciehp/sys/boot/forth/support.4th projects/pciehp/sys/boot/i386/Makefile.inc projects/pciehp/sys/boot/i386/boot2/sio.S projects/pciehp/sys/boot/i386/common/edd.h projects/pciehp/sys/boot/i386/efi/exec.c projects/pciehp/sys/boot/i386/efi/ldscript.amd64 projects/pciehp/sys/boot/i386/efi/reloc.c projects/pciehp/sys/boot/i386/libi386/biosdisk.c projects/pciehp/sys/boot/i386/loader/Makefile projects/pciehp/sys/boot/ia64/common/Makefile projects/pciehp/sys/boot/pc98/Makefile.inc projects/pciehp/sys/boot/pc98/boot2/Makefile projects/pciehp/sys/boot/pc98/boot2/boot2.c projects/pciehp/sys/boot/pc98/btx/btx/btx.S projects/pciehp/sys/boot/pc98/cdboot/Makefile projects/pciehp/sys/boot/pc98/libpc98/comconsole.c projects/pciehp/sys/boot/pc98/loader/Makefile projects/pciehp/sys/boot/powerpc/boot1.chrp/boot1.c projects/pciehp/sys/boot/powerpc/ofw/Makefile projects/pciehp/sys/boot/powerpc/ps3/Makefile projects/pciehp/sys/boot/sparc64/boot1/boot1.c projects/pciehp/sys/boot/sparc64/loader/Makefile projects/pciehp/sys/boot/uboot/common/metadata.c projects/pciehp/sys/boot/uboot/lib/disk.c projects/pciehp/sys/boot/uboot/lib/elf_freebsd.c projects/pciehp/sys/boot/userboot/ficl/Makefile projects/pciehp/sys/boot/userboot/libstand/Makefile projects/pciehp/sys/boot/userboot/test/test.c projects/pciehp/sys/boot/userboot/userboot.h projects/pciehp/sys/boot/userboot/userboot/conf.c projects/pciehp/sys/boot/userboot/userboot/main.c projects/pciehp/sys/boot/userboot/userboot/userboot_disk.c projects/pciehp/sys/boot/zfs/Makefile projects/pciehp/sys/bsm/audit_errno.h projects/pciehp/sys/bsm/audit_internal.h projects/pciehp/sys/bsm/audit_kevents.h projects/pciehp/sys/bsm/audit_record.h projects/pciehp/sys/cam/ata/ata_da.c projects/pciehp/sys/cam/ata/ata_xpt.c projects/pciehp/sys/cam/cam.h projects/pciehp/sys/cam/cam_periph.c projects/pciehp/sys/cam/cam_xpt.c projects/pciehp/sys/cam/ctl/ctl.c projects/pciehp/sys/cam/ctl/ctl_backend_block.c projects/pciehp/sys/cam/ctl/ctl_frontend_cam_sim.c projects/pciehp/sys/cam/ctl/scsi_ctl.c projects/pciehp/sys/cam/scsi/scsi_ch.c projects/pciehp/sys/cam/scsi/scsi_da.c projects/pciehp/sys/cam/scsi/scsi_enc.c projects/pciehp/sys/cam/scsi/scsi_enc_internal.h projects/pciehp/sys/cam/scsi/scsi_enc_ses.c projects/pciehp/sys/cam/scsi/scsi_pass.c projects/pciehp/sys/cam/scsi/scsi_pt.c projects/pciehp/sys/cam/scsi/scsi_sg.c projects/pciehp/sys/cddl/compat/opensolaris/kern/opensolaris_cmn_err.c projects/pciehp/sys/cddl/compat/opensolaris/kern/opensolaris_kobj.c projects/pciehp/sys/cddl/compat/opensolaris/kern/opensolaris_kstat.c projects/pciehp/sys/cddl/compat/opensolaris/kern/opensolaris_lookup.c projects/pciehp/sys/cddl/compat/opensolaris/kern/opensolaris_vfs.c projects/pciehp/sys/cddl/compat/opensolaris/sys/kstat.h projects/pciehp/sys/cddl/compat/opensolaris/sys/vnode.h projects/pciehp/sys/cddl/contrib/opensolaris/common/zfs/zfs_prop.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/gfs.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/space_map.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/arc.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dbuf.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab_impl.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/space_map.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_znode.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_impl.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/trim_map.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_file.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ctldir.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_dir.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/sys/procset.h projects/pciehp/sys/cddl/dev/dtrace/dtrace_debug.c projects/pciehp/sys/cddl/dev/lockstat/lockstat.c projects/pciehp/sys/cddl/dev/profile/profile.c projects/pciehp/sys/compat/freebsd32/freebsd32.h projects/pciehp/sys/compat/freebsd32/freebsd32_misc.c projects/pciehp/sys/compat/freebsd32/freebsd32_proto.h projects/pciehp/sys/compat/freebsd32/freebsd32_syscall.h projects/pciehp/sys/compat/freebsd32/freebsd32_syscalls.c projects/pciehp/sys/compat/freebsd32/freebsd32_sysent.c projects/pciehp/sys/compat/freebsd32/freebsd32_systrace_args.c projects/pciehp/sys/compat/freebsd32/syscalls.master projects/pciehp/sys/compat/linprocfs/linprocfs.c projects/pciehp/sys/compat/linux/linux_file.c projects/pciehp/sys/compat/linux/linux_ioctl.c projects/pciehp/sys/compat/linux/linux_misc.c projects/pciehp/sys/compat/linux/linux_socket.c projects/pciehp/sys/compat/ndis/kern_ndis.c projects/pciehp/sys/compat/ndis/subr_ndis.c projects/pciehp/sys/compat/svr4/svr4_misc.c projects/pciehp/sys/conf/Makefile.arm projects/pciehp/sys/conf/Makefile.pc98 projects/pciehp/sys/conf/NOTES projects/pciehp/sys/conf/files projects/pciehp/sys/conf/files.amd64 projects/pciehp/sys/conf/files.arm projects/pciehp/sys/conf/files.ia64 projects/pciehp/sys/conf/files.mips projects/pciehp/sys/conf/files.powerpc projects/pciehp/sys/conf/kern.post.mk projects/pciehp/sys/conf/kern.pre.mk projects/pciehp/sys/conf/options projects/pciehp/sys/conf/options.arm projects/pciehp/sys/conf/options.ia64 projects/pciehp/sys/conf/options.mips projects/pciehp/sys/contrib/dev/acpica/changes.txt (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/common/adfile.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/common/adisasm.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/common/adwalk.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/common/dmextern.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/common/dmrestag.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/common/dmtable.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/common/dmtbdump.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/common/dmtbinfo.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/common/getopt.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslcodegen.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslcompile.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslcompiler.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslcompiler.y (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/asldefine.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslerror.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslfiles.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslfold.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslglobal.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/asllength.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/asllisting.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslload.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/asllookup.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslmain.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslmap.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslmessages.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslopcodes.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/asloperands.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslopt.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslresource.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslrestype1.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslrestype1i.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslrestype2d.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslrestype2e.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslrestype2q.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslrestype2w.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslstartup.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslstubs.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslsupport.l (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/asltransform.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/asltree.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/asltypes.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslutils.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslwalks.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/dtcompile.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/dtio.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/dttable.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/dttemplate.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/dttemplate.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/prutils.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/debugger/dbcmds.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/debugger/dbdisply.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/debugger/dbexec.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/debugger/dbfileio.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/debugger/dbhistry.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/debugger/dbinput.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/debugger/dbmethod.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/debugger/dbnames.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/debugger/dbstats.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/debugger/dbutils.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/debugger/dbxface.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/disassembler/dmbuffer.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/disassembler/dmnames.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/disassembler/dmobject.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/disassembler/dmopcode.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/disassembler/dmresrc.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/disassembler/dmresrcl.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/disassembler/dmresrcl2.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/disassembler/dmresrcs.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/disassembler/dmutils.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/disassembler/dmwalk.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/dscontrol.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/dsfield.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/dsinit.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/dsmethod.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/dsmthdat.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/dsobject.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/dsopcode.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/dsutils.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/dswexec.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/dswload2.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/dswscope.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/dswstate.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/events/evevent.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/events/evrgnini.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/events/evxfgpe.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/events/evxfregn.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/exconfig.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/exconvrt.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/excreate.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/exdebug.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/exdump.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/exfield.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/exfldio.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/exmisc.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/exmutex.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/exnames.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/exoparg1.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/exoparg2.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/exoparg3.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/exoparg6.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/exprep.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/exregion.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/exresnte.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/exresolv.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/exresop.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/exstore.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/exstoren.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/exstorob.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/exsystem.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/exutils.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/hardware/hwacpi.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/hardware/hwgpe.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/hardware/hwpci.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/hardware/hwregs.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/hardware/hwtimer.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/hardware/hwvalid.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/hardware/hwxface.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsaccess.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsalloc.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsdump.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsdumpdv.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/namespace/nseval.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsinit.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsload.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsnames.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsobject.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsparse.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/namespace/nssearch.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsutils.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/namespace/nswalk.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsxfeval.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsxfname.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsxfobj.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/parser/psargs.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/parser/psloop.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/parser/psopcode.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/parser/psparse.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/parser/psscope.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/parser/pstree.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/parser/psutils.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/parser/psxface.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/resources/rsaddr.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/resources/rscalc.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/resources/rscreate.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/resources/rsdump.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/resources/rsio.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/resources/rslist.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/resources/rsmemory.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/resources/rsmisc.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/resources/rsutils.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/resources/rsxface.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/tables/tbfadt.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/tables/tbfind.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/tables/tbinstal.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/tables/tbutils.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/tables/tbxface.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/tables/tbxfload.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/tables/tbxfroot.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/utalloc.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/utcache.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/utcopy.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/utdebug.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/utdelete.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/utids.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/utinit.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/utlock.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/utmath.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/utmisc.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/utmutex.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/utobject.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/utresrc.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/utstate.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/uttrack.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/utxface.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/utxferror.c (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/include/acapps.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/include/acconfig.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/include/acdisasm.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/include/acexcep.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/include/acglobal.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/include/aclocal.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/include/acmacros.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/include/acnames.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/include/acobject.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/include/acopcode.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/include/acpiosxf.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/include/acpixf.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/include/acrestyp.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/include/acstruct.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/include/actbl2.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/include/actbl3.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/include/actypes.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/include/acutils.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/include/amlresrc.h (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/include/platform/acenv.h (contents, props changed) projects/pciehp/sys/contrib/ngatm/netnatm/msg/uni_ie.c projects/pciehp/sys/contrib/octeon-sdk/cvmx-app-init.h projects/pciehp/sys/contrib/octeon-sdk/cvmx-dma-engine.c projects/pciehp/sys/contrib/octeon-sdk/cvmx-ebt3000.c projects/pciehp/sys/contrib/octeon-sdk/cvmx-helper-board.c projects/pciehp/sys/contrib/octeon-sdk/cvmx-helper-spi.c projects/pciehp/sys/contrib/octeon-sdk/cvmx-helper.c projects/pciehp/sys/contrib/octeon-sdk/cvmx-pow.h projects/pciehp/sys/contrib/octeon-sdk/cvmx-spi.c projects/pciehp/sys/contrib/octeon-sdk/cvmx-utils.h projects/pciehp/sys/contrib/octeon-sdk/cvmx-warn.c projects/pciehp/sys/contrib/octeon-sdk/cvmx.h projects/pciehp/sys/contrib/octeon-sdk/octeon-feature.c projects/pciehp/sys/contrib/octeon-sdk/octeon-feature.h projects/pciehp/sys/contrib/octeon-sdk/octeon-model.c projects/pciehp/sys/contrib/octeon-sdk/octeon-model.h projects/pciehp/sys/contrib/octeon-sdk/octeon-pci-console.c projects/pciehp/sys/ddb/db_command.c projects/pciehp/sys/ddb/db_textdump.c projects/pciehp/sys/dev/aac/aac_debug.c projects/pciehp/sys/dev/acpi_support/acpi_ibm.c projects/pciehp/sys/dev/acpica/acpi.c projects/pciehp/sys/dev/acpica/acpi_cpu.c projects/pciehp/sys/dev/acpica/acpivar.h projects/pciehp/sys/dev/adb/adb_mouse.c projects/pciehp/sys/dev/age/if_age.c projects/pciehp/sys/dev/agp/agp.c projects/pciehp/sys/dev/agp/agp_ali.c projects/pciehp/sys/dev/agp/agp_amd.c projects/pciehp/sys/dev/agp/agp_amd64.c projects/pciehp/sys/dev/agp/agp_apple.c projects/pciehp/sys/dev/agp/agp_ati.c projects/pciehp/sys/dev/agp/agp_i810.c projects/pciehp/sys/dev/agp/agp_intel.c projects/pciehp/sys/dev/agp/agp_nvidia.c projects/pciehp/sys/dev/agp/agp_sis.c projects/pciehp/sys/dev/agp/agp_via.c projects/pciehp/sys/dev/ahci/ahci.c projects/pciehp/sys/dev/ahci/ahciem.c projects/pciehp/sys/dev/aic7xxx/aicasm/aicasm_gram.y projects/pciehp/sys/dev/alc/if_alc.c projects/pciehp/sys/dev/ale/if_ale.c projects/pciehp/sys/dev/an/if_an.c projects/pciehp/sys/dev/arcmsr/arcmsr.c projects/pciehp/sys/dev/arcmsr/arcmsr.h projects/pciehp/sys/dev/asmc/asmc.c projects/pciehp/sys/dev/ata/ata-all.c projects/pciehp/sys/dev/ata/ata-all.h projects/pciehp/sys/dev/ata/ata-card.c projects/pciehp/sys/dev/ata/ata-lowlevel.c projects/pciehp/sys/dev/ata/ata-pci.h projects/pciehp/sys/dev/ata/chipsets/ata-acard.c projects/pciehp/sys/dev/ata/chipsets/ata-acerlabs.c projects/pciehp/sys/dev/ata/chipsets/ata-adaptec.c projects/pciehp/sys/dev/ata/chipsets/ata-ahci.c projects/pciehp/sys/dev/ata/chipsets/ata-amd.c projects/pciehp/sys/dev/ata/chipsets/ata-ati.c projects/pciehp/sys/dev/ata/chipsets/ata-highpoint.c projects/pciehp/sys/dev/ata/chipsets/ata-intel.c projects/pciehp/sys/dev/ata/chipsets/ata-ite.c projects/pciehp/sys/dev/ata/chipsets/ata-jmicron.c projects/pciehp/sys/dev/ata/chipsets/ata-marvell.c projects/pciehp/sys/dev/ata/chipsets/ata-nvidia.c projects/pciehp/sys/dev/ata/chipsets/ata-promise.c projects/pciehp/sys/dev/ata/chipsets/ata-serverworks.c projects/pciehp/sys/dev/ata/chipsets/ata-siliconimage.c projects/pciehp/sys/dev/ata/chipsets/ata-sis.c projects/pciehp/sys/dev/ata/chipsets/ata-via.c projects/pciehp/sys/dev/ath/ath_hal/ah.c projects/pciehp/sys/dev/ath/ath_hal/ah.h projects/pciehp/sys/dev/ath/ath_hal/ah_debug.h projects/pciehp/sys/dev/ath/ath_hal/ah_devid.h projects/pciehp/sys/dev/ath/ath_hal/ah_internal.h projects/pciehp/sys/dev/ath/ath_hal/ah_regdomain.c projects/pciehp/sys/dev/ath/ath_hal/ar5210/ar5210.h projects/pciehp/sys/dev/ath/ath_hal/ar5210/ar5210_misc.c projects/pciehp/sys/dev/ath/ath_hal/ar5210/ar5210_recv.c projects/pciehp/sys/dev/ath/ath_hal/ar5210/ar5210_reset.c projects/pciehp/sys/dev/ath/ath_hal/ar5210/ar5210_xmit.c projects/pciehp/sys/dev/ath/ath_hal/ar5210/ar5210desc.h projects/pciehp/sys/dev/ath/ath_hal/ar5210/ar5210reg.h projects/pciehp/sys/dev/ath/ath_hal/ar5211/ar5211desc.h projects/pciehp/sys/dev/ath/ath_hal/ar5212/ar5212.h projects/pciehp/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c projects/pciehp/sys/dev/ath/ath_hal/ar5212/ar5212_beacon.c projects/pciehp/sys/dev/ath/ath_hal/ar5212/ar5212_recv.c projects/pciehp/sys/dev/ath/ath_hal/ar5212/ar5212_xmit.c projects/pciehp/sys/dev/ath/ath_hal/ar5212/ar5212desc.h projects/pciehp/sys/dev/ath/ath_hal/ar5416/ar5416.h projects/pciehp/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c projects/pciehp/sys/dev/ath/ath_hal/ar5416/ar5416_btcoex.c projects/pciehp/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c projects/pciehp/sys/dev/ath/ath_hal/ar5416/ar5416_xmit.c projects/pciehp/sys/dev/ath/ath_hal/ar5416/ar5416desc.h projects/pciehp/sys/dev/ath/ath_hal/ar5416/ar5416phy.h projects/pciehp/sys/dev/ath/ath_hal/ar9001/ar9130_attach.c projects/pciehp/sys/dev/ath/ath_hal/ar9001/ar9130_phy.c projects/pciehp/sys/dev/ath/ath_hal/ar9001/ar9160_attach.c projects/pciehp/sys/dev/ath/ath_hal/ar9002/ar9280_attach.c projects/pciehp/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c projects/pciehp/sys/dev/ath/ath_hal/ar9002/ar9285_btcoex.c projects/pciehp/sys/dev/ath/ath_hal/ar9002/ar9287_attach.c projects/pciehp/sys/dev/ath/ath_rate/sample/sample.c projects/pciehp/sys/dev/ath/if_ath.c projects/pciehp/sys/dev/ath/if_ath_ahb.c projects/pciehp/sys/dev/ath/if_ath_beacon.c projects/pciehp/sys/dev/ath/if_ath_debug.c projects/pciehp/sys/dev/ath/if_ath_debug.h projects/pciehp/sys/dev/ath/if_ath_keycache.c projects/pciehp/sys/dev/ath/if_ath_misc.h projects/pciehp/sys/dev/ath/if_ath_pci.c projects/pciehp/sys/dev/ath/if_ath_rx.c projects/pciehp/sys/dev/ath/if_ath_rx_edma.c projects/pciehp/sys/dev/ath/if_ath_sysctl.c projects/pciehp/sys/dev/ath/if_ath_tdma.c projects/pciehp/sys/dev/ath/if_ath_tx.c projects/pciehp/sys/dev/ath/if_ath_tx.h projects/pciehp/sys/dev/ath/if_ath_tx_edma.c projects/pciehp/sys/dev/ath/if_ath_tx_ht.c projects/pciehp/sys/dev/ath/if_athvar.h projects/pciehp/sys/dev/atkbdc/psm.c projects/pciehp/sys/dev/bce/if_bce.c projects/pciehp/sys/dev/bce/if_bcereg.h projects/pciehp/sys/dev/bfe/if_bfe.c projects/pciehp/sys/dev/bge/if_bge.c projects/pciehp/sys/dev/bge/if_bgereg.h projects/pciehp/sys/dev/bktr/bktr_audio.c projects/pciehp/sys/dev/bm/if_bm.c projects/pciehp/sys/dev/bwi/if_bwi.c projects/pciehp/sys/dev/bwn/if_bwn.c projects/pciehp/sys/dev/bxe/if_bxe.c projects/pciehp/sys/dev/cas/if_cas.c projects/pciehp/sys/dev/ce/if_ce.c projects/pciehp/sys/dev/ciss/cissvar.h projects/pciehp/sys/dev/cm/smc90cx6.c projects/pciehp/sys/dev/cp/if_cp.c projects/pciehp/sys/dev/cpuctl/cpuctl.c projects/pciehp/sys/dev/cs/if_cs.c projects/pciehp/sys/dev/ct/bshw_machdep.c projects/pciehp/sys/dev/ct/ct.c projects/pciehp/sys/dev/ct/ct_isa.c projects/pciehp/sys/dev/ct/ct_machdep.h projects/pciehp/sys/dev/ctau/if_ct.c projects/pciehp/sys/dev/cx/if_cx.c projects/pciehp/sys/dev/cxgb/cxgb_main.c projects/pciehp/sys/dev/cxgb/cxgb_sge.c projects/pciehp/sys/dev/cxgb/sys/uipc_mvec.c projects/pciehp/sys/dev/cxgbe/t4_l2t.c projects/pciehp/sys/dev/cxgbe/t4_main.c projects/pciehp/sys/dev/cxgbe/t4_sge.c projects/pciehp/sys/dev/cxgbe/tom/t4_cpl_io.c projects/pciehp/sys/dev/cxgbe/tom/t4_ddp.c projects/pciehp/sys/dev/cxgbe/tom/t4_listen.c projects/pciehp/sys/dev/cxgbe/tom/t4_tom.h projects/pciehp/sys/dev/dc/if_dc.c projects/pciehp/sys/dev/de/if_de.c projects/pciehp/sys/dev/drm/drmP.h projects/pciehp/sys/dev/drm/via_dma.c projects/pciehp/sys/dev/drm/via_dmablit.c projects/pciehp/sys/dev/drm2/drm_drv.c projects/pciehp/sys/dev/e1000/if_em.c projects/pciehp/sys/dev/e1000/if_igb.c projects/pciehp/sys/dev/e1000/if_lem.c projects/pciehp/sys/dev/ed/if_ed.c projects/pciehp/sys/dev/en/midway.c projects/pciehp/sys/dev/ep/if_ep.c projects/pciehp/sys/dev/et/if_et.c projects/pciehp/sys/dev/etherswitch/arswitch/arswitch.c projects/pciehp/sys/dev/etherswitch/arswitch/arswitch_reg.c projects/pciehp/sys/dev/ex/if_ex.c projects/pciehp/sys/dev/fatm/if_fatm.c projects/pciehp/sys/dev/fdc/fdc.c projects/pciehp/sys/dev/fdt/fdt_common.c projects/pciehp/sys/dev/fdt/fdt_common.h projects/pciehp/sys/dev/fe/if_fe.c projects/pciehp/sys/dev/filemon/filemon.c projects/pciehp/sys/dev/filemon/filemon_wrapper.c projects/pciehp/sys/dev/firewire/fwohci.c projects/pciehp/sys/dev/firewire/if_fwe.c projects/pciehp/sys/dev/firewire/if_fwip.c projects/pciehp/sys/dev/flash/at45d.c projects/pciehp/sys/dev/fxp/if_fxp.c projects/pciehp/sys/dev/gem/if_gem.c projects/pciehp/sys/dev/gem/if_gem_pci.c projects/pciehp/sys/dev/gpio/gpiobus.c projects/pciehp/sys/dev/gxemul/cons/gxemul_cons.c projects/pciehp/sys/dev/gxemul/ether/if_gx.c projects/pciehp/sys/dev/hatm/if_hatm_intr.c projects/pciehp/sys/dev/hatm/if_hatm_tx.c projects/pciehp/sys/dev/hifn/hifn7751.c projects/pciehp/sys/dev/hme/if_hme.c projects/pciehp/sys/dev/hpt27xx/os_bsd.c projects/pciehp/sys/dev/hptiop/hptiop.c projects/pciehp/sys/dev/hptiop/hptiop.h projects/pciehp/sys/dev/hwpmc/hwpmc_mod.c projects/pciehp/sys/dev/hwpmc/pmc_events.h projects/pciehp/sys/dev/ie/if_ie.c projects/pciehp/sys/dev/if_ndis/if_ndis.c projects/pciehp/sys/dev/iicbus/iic.c projects/pciehp/sys/dev/ipw/if_ipw.c projects/pciehp/sys/dev/isci/isci_io_request.c projects/pciehp/sys/dev/isf/isf.c projects/pciehp/sys/dev/isp/isp_pci.c projects/pciehp/sys/dev/isp/isp_sbus.c projects/pciehp/sys/dev/iwi/if_iwi.c projects/pciehp/sys/dev/iwn/if_iwn.c projects/pciehp/sys/dev/ixgb/if_ixgb.c projects/pciehp/sys/dev/ixgbe/ixgbe.c projects/pciehp/sys/dev/ixgbe/ixgbe.h projects/pciehp/sys/dev/ixgbe/ixv.c projects/pciehp/sys/dev/jme/if_jme.c projects/pciehp/sys/dev/le/lance.c projects/pciehp/sys/dev/lge/if_lge.c projects/pciehp/sys/dev/lmc/if_lmc.c projects/pciehp/sys/dev/malo/if_malo.c projects/pciehp/sys/dev/md/md.c projects/pciehp/sys/dev/mfi/mfi.c projects/pciehp/sys/dev/mfi/mfi_cam.c projects/pciehp/sys/dev/mfi/mfi_disk.c projects/pciehp/sys/dev/mfi/mfi_syspd.c projects/pciehp/sys/dev/mfi/mfi_tbolt.c projects/pciehp/sys/dev/mfi/mfivar.h projects/pciehp/sys/dev/mge/if_mge.c projects/pciehp/sys/dev/mii/brgphy.c projects/pciehp/sys/dev/mii/e1000phy.c projects/pciehp/sys/dev/mii/mii.c projects/pciehp/sys/dev/mii/miidevs projects/pciehp/sys/dev/mmc/mmc.c projects/pciehp/sys/dev/mn/if_mn.c projects/pciehp/sys/dev/mps/mps_sas.c projects/pciehp/sys/dev/mps/mps_user.c projects/pciehp/sys/dev/mpt/mpt.c projects/pciehp/sys/dev/mpt/mpt.h projects/pciehp/sys/dev/mpt/mpt_cam.c projects/pciehp/sys/dev/mpt/mpt_debug.c projects/pciehp/sys/dev/mpt/mpt_pci.c projects/pciehp/sys/dev/mpt/mpt_raid.c projects/pciehp/sys/dev/msk/if_msk.c projects/pciehp/sys/dev/mwl/if_mwl.c projects/pciehp/sys/dev/mxge/if_mxge.c projects/pciehp/sys/dev/my/if_my.c projects/pciehp/sys/dev/nand/nandsim_swap.c projects/pciehp/sys/dev/nfe/if_nfe.c projects/pciehp/sys/dev/nge/if_nge.c projects/pciehp/sys/dev/null/null.c projects/pciehp/sys/dev/nve/if_nve.c projects/pciehp/sys/dev/nvme/nvme.c projects/pciehp/sys/dev/nvme/nvme_ctrlr.c projects/pciehp/sys/dev/nvme/nvme_private.h projects/pciehp/sys/dev/nvme/nvme_qpair.c projects/pciehp/sys/dev/nvme/nvme_test.c projects/pciehp/sys/dev/nxge/if_nxge.c projects/pciehp/sys/dev/nxge/xgehal/xgehal-device.c projects/pciehp/sys/dev/oce/oce_if.c projects/pciehp/sys/dev/patm/if_patm_intr.c projects/pciehp/sys/dev/patm/if_patm_rx.c projects/pciehp/sys/dev/patm/if_patm_tx.c projects/pciehp/sys/dev/pci/pci.c projects/pciehp/sys/dev/pci/pci_user.c projects/pciehp/sys/dev/pcn/if_pcn.c projects/pciehp/sys/dev/pdq/pdq_freebsd.h projects/pciehp/sys/dev/pdq/pdq_ifsubr.c projects/pciehp/sys/dev/pdq/pdqvar.h projects/pciehp/sys/dev/puc/pucdata.c projects/pciehp/sys/dev/qlxgb/qla_os.c projects/pciehp/sys/dev/ral/rt2560.c projects/pciehp/sys/dev/ral/rt2661.c projects/pciehp/sys/dev/ral/rt2860.c projects/pciehp/sys/dev/re/if_re.c projects/pciehp/sys/dev/rt/if_rt.c projects/pciehp/sys/dev/safe/safe.c projects/pciehp/sys/dev/sbni/if_sbni.c projects/pciehp/sys/dev/sdhci/sdhci.c projects/pciehp/sys/dev/sdhci/sdhci.h projects/pciehp/sys/dev/sf/if_sf.c projects/pciehp/sys/dev/sfxge/sfxge_dma.c projects/pciehp/sys/dev/sfxge/sfxge_tx.c projects/pciehp/sys/dev/sge/if_sge.c projects/pciehp/sys/dev/sio/sio_isa.c projects/pciehp/sys/dev/sis/if_sis.c projects/pciehp/sys/dev/sk/if_sk.c projects/pciehp/sys/dev/smc/if_smc.c projects/pciehp/sys/dev/sn/if_sn.c projects/pciehp/sys/dev/snc/dp83932.c projects/pciehp/sys/dev/snc/dp83932subr.c projects/pciehp/sys/dev/snc/if_snc.c projects/pciehp/sys/dev/snc/if_snc_cbus.c projects/pciehp/sys/dev/sound/pci/emu10kx.c projects/pciehp/sys/dev/sound/pci/hda/hdaa.c projects/pciehp/sys/dev/sound/pci/hda/hdaa.h projects/pciehp/sys/dev/sound/pci/hda/hdaa_patches.c projects/pciehp/sys/dev/sound/pci/hda/hdac.c projects/pciehp/sys/dev/sound/pci/hda/hdac.h projects/pciehp/sys/dev/sound/pci/hda/hdacc.c projects/pciehp/sys/dev/sound/pcm/buffer.c projects/pciehp/sys/dev/sound/pcm/channel.c projects/pciehp/sys/dev/sound/pcm/feeder_matrix.c projects/pciehp/sys/dev/sound/pcm/matrix.h projects/pciehp/sys/dev/sound/pcm/matrix_map.h projects/pciehp/sys/dev/sound/pcm/mixer.h projects/pciehp/sys/dev/sound/pcm/sound.c projects/pciehp/sys/dev/sound/usb/uaudio.c projects/pciehp/sys/dev/ste/if_ste.c projects/pciehp/sys/dev/stge/if_stge.c projects/pciehp/sys/dev/sym/sym_hipd.c projects/pciehp/sys/dev/syscons/scvidctl.c projects/pciehp/sys/dev/ti/if_ti.c projects/pciehp/sys/dev/tl/if_tl.c projects/pciehp/sys/dev/tsec/if_tsec.c projects/pciehp/sys/dev/twa/tw_cl_misc.c projects/pciehp/sys/dev/tx/if_tx.c projects/pciehp/sys/dev/txp/if_txp.c projects/pciehp/sys/dev/uart/uart_bus_acpi.c projects/pciehp/sys/dev/uart/uart_bus_fdt.c projects/pciehp/sys/dev/uart/uart_bus_isa.c projects/pciehp/sys/dev/uart/uart_dev_pl011.c projects/pciehp/sys/dev/ubsec/ubsec.c projects/pciehp/sys/dev/usb/controller/dwc_otg.c projects/pciehp/sys/dev/usb/controller/dwc_otg.h projects/pciehp/sys/dev/usb/controller/dwc_otgreg.h projects/pciehp/sys/dev/usb/controller/ehci.c projects/pciehp/sys/dev/usb/controller/ehci.h projects/pciehp/sys/dev/usb/controller/ohci.c projects/pciehp/sys/dev/usb/controller/uhci.c projects/pciehp/sys/dev/usb/controller/usb_controller.c projects/pciehp/sys/dev/usb/controller/xhci.c projects/pciehp/sys/dev/usb/controller/xhci.h projects/pciehp/sys/dev/usb/input/uhid.c projects/pciehp/sys/dev/usb/input/ukbd.c projects/pciehp/sys/dev/usb/misc/udbp.c projects/pciehp/sys/dev/usb/net/if_axe.c projects/pciehp/sys/dev/usb/net/if_cdce.c projects/pciehp/sys/dev/usb/net/if_ipheth.c projects/pciehp/sys/dev/usb/net/if_smsc.c projects/pciehp/sys/dev/usb/net/if_udav.c projects/pciehp/sys/dev/usb/net/if_usie.c projects/pciehp/sys/dev/usb/net/uhso.c projects/pciehp/sys/dev/usb/net/usb_ethernet.c projects/pciehp/sys/dev/usb/quirk/usb_quirk.c projects/pciehp/sys/dev/usb/quirk/usb_quirk.h projects/pciehp/sys/dev/usb/serial/u3g.c projects/pciehp/sys/dev/usb/serial/uplcom.c projects/pciehp/sys/dev/usb/serial/usb_serial.c projects/pciehp/sys/dev/usb/serial/usb_serial.h projects/pciehp/sys/dev/usb/storage/umass.c projects/pciehp/sys/dev/usb/storage/ustorage_fs.c projects/pciehp/sys/dev/usb/usb.h projects/pciehp/sys/dev/usb/usb_busdma.c projects/pciehp/sys/dev/usb/usb_debug.c projects/pciehp/sys/dev/usb/usb_debug.h projects/pciehp/sys/dev/usb/usb_dev.c projects/pciehp/sys/dev/usb/usb_device.c projects/pciehp/sys/dev/usb/usb_generic.c projects/pciehp/sys/dev/usb/usb_hub.c projects/pciehp/sys/dev/usb/usb_msctest.c projects/pciehp/sys/dev/usb/usb_process.c projects/pciehp/sys/dev/usb/usb_request.c projects/pciehp/sys/dev/usb/usb_transfer.c projects/pciehp/sys/dev/usb/usbdevs projects/pciehp/sys/dev/usb/usbdi.h projects/pciehp/sys/dev/usb/wlan/if_rum.c projects/pciehp/sys/dev/usb/wlan/if_run.c projects/pciehp/sys/dev/usb/wlan/if_uath.c projects/pciehp/sys/dev/usb/wlan/if_uathvar.h projects/pciehp/sys/dev/usb/wlan/if_upgt.c projects/pciehp/sys/dev/usb/wlan/if_upgtvar.h projects/pciehp/sys/dev/usb/wlan/if_ural.c projects/pciehp/sys/dev/usb/wlan/if_urtw.c projects/pciehp/sys/dev/usb/wlan/if_urtwvar.h projects/pciehp/sys/dev/usb/wlan/if_zyd.c projects/pciehp/sys/dev/vge/if_vge.c projects/pciehp/sys/dev/virtio/block/virtio_blk.c projects/pciehp/sys/dev/virtio/network/if_vtnet.c projects/pciehp/sys/dev/virtio/scsi/virtio_scsi.c projects/pciehp/sys/dev/vr/if_vr.c projects/pciehp/sys/dev/vte/if_vte.c projects/pciehp/sys/dev/vx/if_vx.c projects/pciehp/sys/dev/vxge/vxge.c projects/pciehp/sys/dev/wb/if_wb.c projects/pciehp/sys/dev/wbwd/wbwd.c projects/pciehp/sys/dev/wi/if_wi.c projects/pciehp/sys/dev/wl/if_wl.c projects/pciehp/sys/dev/wpi/if_wpi.c projects/pciehp/sys/dev/wtap/if_wtap.c projects/pciehp/sys/dev/wtap/plugins/visibility.c projects/pciehp/sys/dev/xe/if_xe.c projects/pciehp/sys/dev/xen/blkback/blkback.c projects/pciehp/sys/dev/xen/netback/netback_unit_tests.c projects/pciehp/sys/dev/xen/netfront/netfront.c projects/pciehp/sys/dev/xl/if_xl.c projects/pciehp/sys/fs/cd9660/cd9660_vfsops.c projects/pciehp/sys/fs/devfs/devfs_devs.c projects/pciehp/sys/fs/devfs/devfs_vfsops.c projects/pciehp/sys/fs/devfs/devfs_vnops.c projects/pciehp/sys/fs/ext2fs/ext2_alloc.c projects/pciehp/sys/fs/ext2fs/ext2_dinode.h projects/pciehp/sys/fs/ext2fs/ext2_inode_cnv.c projects/pciehp/sys/fs/ext2fs/ext2_vfsops.c projects/pciehp/sys/fs/ext2fs/ext2fs.h projects/pciehp/sys/fs/fdescfs/fdesc_vfsops.c projects/pciehp/sys/fs/fuse/fuse_file.c projects/pciehp/sys/fs/fuse/fuse_internal.c projects/pciehp/sys/fs/fuse/fuse_internal.h projects/pciehp/sys/fs/fuse/fuse_io.c projects/pciehp/sys/fs/fuse/fuse_node.c projects/pciehp/sys/fs/fuse/fuse_node.h projects/pciehp/sys/fs/fuse/fuse_vfsops.c projects/pciehp/sys/fs/fuse/fuse_vnops.c projects/pciehp/sys/fs/msdosfs/msdosfs_denode.c projects/pciehp/sys/fs/msdosfs/msdosfs_vfsops.c projects/pciehp/sys/fs/nandfs/nandfs_subr.c projects/pciehp/sys/fs/nandfs/nandfs_vfsops.c projects/pciehp/sys/fs/nfs/nfs.h projects/pciehp/sys/fs/nfs/nfs_commonkrpc.c projects/pciehp/sys/fs/nfs/nfs_commonport.c projects/pciehp/sys/fs/nfs/nfs_commonsubs.c projects/pciehp/sys/fs/nfs/nfs_var.h projects/pciehp/sys/fs/nfs/nfscl.h projects/pciehp/sys/fs/nfs/nfsclstate.h projects/pciehp/sys/fs/nfs/nfsm_subs.h projects/pciehp/sys/fs/nfs/nfsport.h projects/pciehp/sys/fs/nfs/nfsproto.h projects/pciehp/sys/fs/nfsclient/nfs_clbio.c projects/pciehp/sys/fs/nfsclient/nfs_clcomsubs.c projects/pciehp/sys/fs/nfsclient/nfs_clkdtrace.c projects/pciehp/sys/fs/nfsclient/nfs_clkrpc.c projects/pciehp/sys/fs/nfsclient/nfs_clnode.c projects/pciehp/sys/fs/nfsclient/nfs_clport.c projects/pciehp/sys/fs/nfsclient/nfs_clrpcops.c projects/pciehp/sys/fs/nfsclient/nfs_clstate.c projects/pciehp/sys/fs/nfsclient/nfs_clvfsops.c projects/pciehp/sys/fs/nfsclient/nfs_clvnops.c projects/pciehp/sys/fs/nfsclient/nfsmount.h projects/pciehp/sys/fs/nfsclient/nfsnode.h projects/pciehp/sys/fs/nfsserver/nfs_nfsdcache.c projects/pciehp/sys/fs/nfsserver/nfs_nfsdport.c projects/pciehp/sys/fs/nfsserver/nfs_nfsdstate.c projects/pciehp/sys/fs/nullfs/null_subr.c projects/pciehp/sys/fs/nullfs/null_vfsops.c projects/pciehp/sys/fs/nullfs/null_vnops.c projects/pciehp/sys/fs/procfs/procfs_map.c projects/pciehp/sys/fs/pseudofs/pseudofs.c projects/pciehp/sys/fs/smbfs/smbfs.h projects/pciehp/sys/fs/smbfs/smbfs_io.c projects/pciehp/sys/fs/smbfs/smbfs_node.c projects/pciehp/sys/fs/smbfs/smbfs_node.h projects/pciehp/sys/fs/smbfs/smbfs_smb.c projects/pciehp/sys/fs/smbfs/smbfs_subr.c projects/pciehp/sys/fs/smbfs/smbfs_subr.h projects/pciehp/sys/fs/smbfs/smbfs_vfsops.c projects/pciehp/sys/fs/smbfs/smbfs_vnops.c projects/pciehp/sys/fs/tmpfs/tmpfs_vfsops.c projects/pciehp/sys/fs/udf/udf_vfsops.c projects/pciehp/sys/fs/unionfs/union_subr.c projects/pciehp/sys/fs/unionfs/union_vfsops.c projects/pciehp/sys/fs/unionfs/union_vnops.c projects/pciehp/sys/geom/bde/g_bde.c projects/pciehp/sys/geom/cache/g_cache.c projects/pciehp/sys/geom/geom.h projects/pciehp/sys/geom/geom_aes.c projects/pciehp/sys/geom/geom_dev.c projects/pciehp/sys/geom/geom_disk.c projects/pciehp/sys/geom/geom_disk.h projects/pciehp/sys/geom/geom_io.c projects/pciehp/sys/geom/geom_mbr.c projects/pciehp/sys/geom/geom_slice.c projects/pciehp/sys/geom/geom_slice.h projects/pciehp/sys/geom/geom_vfs.c projects/pciehp/sys/geom/journal/g_journal.c projects/pciehp/sys/geom/label/g_label.c projects/pciehp/sys/geom/label/g_label_ufs.c projects/pciehp/sys/geom/mountver/g_mountver.c projects/pciehp/sys/geom/multipath/g_multipath.c projects/pciehp/sys/geom/nop/g_nop.c projects/pciehp/sys/geom/raid/g_raid.c projects/pciehp/sys/geom/raid/g_raid.h projects/pciehp/sys/geom/raid/md_ddf.c projects/pciehp/sys/geom/raid/md_intel.c projects/pciehp/sys/geom/raid/md_jmicron.c projects/pciehp/sys/geom/raid/md_nvidia.c projects/pciehp/sys/geom/raid/md_promise.c projects/pciehp/sys/geom/raid/md_sii.c projects/pciehp/sys/geom/raid/tr_concat.c projects/pciehp/sys/geom/raid/tr_raid0.c projects/pciehp/sys/geom/raid/tr_raid1.c projects/pciehp/sys/geom/raid/tr_raid1e.c projects/pciehp/sys/geom/sched/g_sched.c projects/pciehp/sys/gnu/fs/reiserfs/reiserfs_inode.c projects/pciehp/sys/gnu/fs/reiserfs/reiserfs_vfsops.c projects/pciehp/sys/i386/i386/db_trace.c projects/pciehp/sys/i386/i386/pmap.c projects/pciehp/sys/i386/ibcs2/ibcs2_misc.c projects/pciehp/sys/i386/ibcs2/imgact_coff.c projects/pciehp/sys/i386/include/vmparam.h projects/pciehp/sys/i386/pci/pci_cfgreg.c projects/pciehp/sys/i386/xen/clock.c projects/pciehp/sys/ia64/ia64/pmap.c projects/pciehp/sys/ia64/ia64/uma_machdep.c projects/pciehp/sys/ia64/include/pmap.h projects/pciehp/sys/kern/capabilities.conf projects/pciehp/sys/kern/imgact_elf.c projects/pciehp/sys/kern/init_main.c projects/pciehp/sys/kern/init_sysent.c projects/pciehp/sys/kern/kern_acct.c projects/pciehp/sys/kern/kern_alq.c projects/pciehp/sys/kern/kern_conf.c projects/pciehp/sys/kern/kern_ctf.c projects/pciehp/sys/kern/kern_descrip.c projects/pciehp/sys/kern/kern_exec.c projects/pciehp/sys/kern/kern_exit.c projects/pciehp/sys/kern/kern_fork.c projects/pciehp/sys/kern/kern_gzio.c projects/pciehp/sys/kern/kern_jail.c projects/pciehp/sys/kern/kern_ktr.c projects/pciehp/sys/kern/kern_ktrace.c projects/pciehp/sys/kern/kern_linker.c projects/pciehp/sys/kern/kern_lock.c projects/pciehp/sys/kern/kern_malloc.c projects/pciehp/sys/kern/kern_mbuf.c projects/pciehp/sys/kern/kern_mib.c projects/pciehp/sys/kern/kern_mutex.c projects/pciehp/sys/kern/kern_priv.c projects/pciehp/sys/kern/kern_proc.c projects/pciehp/sys/kern/kern_prot.c projects/pciehp/sys/kern/kern_racct.c projects/pciehp/sys/kern/kern_rctl.c projects/pciehp/sys/kern/kern_rmlock.c projects/pciehp/sys/kern/kern_rwlock.c projects/pciehp/sys/kern/kern_shutdown.c projects/pciehp/sys/kern/kern_sig.c projects/pciehp/sys/kern/kern_switch.c projects/pciehp/sys/kern/kern_sx.c projects/pciehp/sys/kern/kern_time.c projects/pciehp/sys/kern/kern_timeout.c projects/pciehp/sys/kern/kern_umtx.c projects/pciehp/sys/kern/link_elf.c projects/pciehp/sys/kern/link_elf_obj.c projects/pciehp/sys/kern/sched_4bsd.c projects/pciehp/sys/kern/sched_ule.c projects/pciehp/sys/kern/subr_lock.c projects/pciehp/sys/kern/subr_mchain.c projects/pciehp/sys/kern/subr_param.c projects/pciehp/sys/kern/subr_smp.c projects/pciehp/sys/kern/subr_syscall.c projects/pciehp/sys/kern/subr_taskqueue.c projects/pciehp/sys/kern/subr_trap.c projects/pciehp/sys/kern/subr_uio.c projects/pciehp/sys/kern/subr_witness.c projects/pciehp/sys/kern/sys_generic.c projects/pciehp/sys/kern/sys_procdesc.c projects/pciehp/sys/kern/sys_process.c projects/pciehp/sys/kern/syscalls.c projects/pciehp/sys/kern/syscalls.master projects/pciehp/sys/kern/systrace_args.c projects/pciehp/sys/kern/tty.c projects/pciehp/sys/kern/tty_pts.c projects/pciehp/sys/kern/tty_ttydisc.c projects/pciehp/sys/kern/uipc_domain.c projects/pciehp/sys/kern/uipc_mbuf.c projects/pciehp/sys/kern/uipc_mbuf2.c projects/pciehp/sys/kern/uipc_mqueue.c projects/pciehp/sys/kern/uipc_sockbuf.c projects/pciehp/sys/kern/uipc_socket.c projects/pciehp/sys/kern/uipc_syscalls.c projects/pciehp/sys/kern/uipc_usrreq.c projects/pciehp/sys/kern/vfs_acl.c projects/pciehp/sys/kern/vfs_aio.c projects/pciehp/sys/kern/vfs_bio.c projects/pciehp/sys/kern/vfs_cache.c projects/pciehp/sys/kern/vfs_default.c projects/pciehp/sys/kern/vfs_export.c projects/pciehp/sys/kern/vfs_extattr.c projects/pciehp/sys/kern/vfs_init.c projects/pciehp/sys/kern/vfs_lookup.c projects/pciehp/sys/kern/vfs_mount.c projects/pciehp/sys/kern/vfs_mountroot.c projects/pciehp/sys/kern/vfs_subr.c projects/pciehp/sys/kern/vfs_syscalls.c projects/pciehp/sys/kern/vfs_vnops.c projects/pciehp/sys/kern/vnode_if.src projects/pciehp/sys/kgssapi/gss_accept_sec_context.c projects/pciehp/sys/kgssapi/gss_acquire_cred.c projects/pciehp/sys/kgssapi/gss_canonicalize_name.c projects/pciehp/sys/kgssapi/gss_delete_sec_context.c projects/pciehp/sys/kgssapi/gss_display_status.c projects/pciehp/sys/kgssapi/gss_export_name.c projects/pciehp/sys/kgssapi/gss_impl.c projects/pciehp/sys/kgssapi/gss_import_name.c projects/pciehp/sys/kgssapi/gss_init_sec_context.c projects/pciehp/sys/kgssapi/gss_pname_to_uid.c projects/pciehp/sys/kgssapi/gss_release_cred.c projects/pciehp/sys/kgssapi/gss_release_name.c projects/pciehp/sys/kgssapi/gss_set_cred_option.c projects/pciehp/sys/kgssapi/gssapi_impl.h projects/pciehp/sys/libkern/strlcpy.c projects/pciehp/sys/libkern/strlen.c projects/pciehp/sys/mips/adm5120/if_admsw.c projects/pciehp/sys/mips/atheros/files.ar71xx projects/pciehp/sys/mips/atheros/if_arge.c projects/pciehp/sys/mips/cavium/files.octeon1 projects/pciehp/sys/mips/cavium/if_octm.c projects/pciehp/sys/mips/cavium/octe/ethernet-common.c projects/pciehp/sys/mips/cavium/octe/ethernet-mem.c projects/pciehp/sys/mips/cavium/octe/ethernet-rgmii.c projects/pciehp/sys/mips/cavium/octe/ethernet-rx.c projects/pciehp/sys/mips/cavium/octe/ethernet-sgmii.c projects/pciehp/sys/mips/cavium/octe/ethernet-tx.c projects/pciehp/sys/mips/cavium/octe/ethernet-xaui.c projects/pciehp/sys/mips/cavium/octe/ethernet.c projects/pciehp/sys/mips/cavium/octeon_ebt3000_cf.c projects/pciehp/sys/mips/cavium/octeon_machdep.c projects/pciehp/sys/mips/cavium/octeon_pcmap_regs.h projects/pciehp/sys/mips/cavium/octopci.c projects/pciehp/sys/mips/cavium/uart_cpu_octeonusart.c projects/pciehp/sys/mips/cavium/uart_dev_oct16550.c projects/pciehp/sys/mips/conf/AP91.hints projects/pciehp/sys/mips/conf/AP93.hints projects/pciehp/sys/mips/conf/AP96.hints projects/pciehp/sys/mips/conf/AR71XX_BASE projects/pciehp/sys/mips/conf/AR724X_BASE projects/pciehp/sys/mips/conf/AR91XX_BASE projects/pciehp/sys/mips/conf/OCTEON1 projects/pciehp/sys/mips/conf/PB92 projects/pciehp/sys/mips/conf/RSPRO.hints projects/pciehp/sys/mips/conf/RT305X projects/pciehp/sys/mips/idt/if_kr.c projects/pciehp/sys/mips/include/param.h projects/pciehp/sys/mips/include/pmap.h projects/pciehp/sys/mips/mips/busdma_machdep.c projects/pciehp/sys/mips/mips/pmap.c projects/pciehp/sys/mips/mips/support.S projects/pciehp/sys/mips/mips/uma_machdep.c projects/pciehp/sys/mips/nlm/dev/net/xlpge.c projects/pciehp/sys/mips/rmi/dev/nlge/if_nlge.c projects/pciehp/sys/mips/rmi/dev/xlr/rge.c projects/pciehp/sys/mips/rmi/xlr_i2c.c projects/pciehp/sys/mips/rt305x/files.rt305x projects/pciehp/sys/modules/3dfx/Makefile projects/pciehp/sys/modules/Makefile projects/pciehp/sys/modules/acpi/acpi/Makefile projects/pciehp/sys/modules/agp/Makefile projects/pciehp/sys/modules/ath/Makefile projects/pciehp/sys/modules/cmx/Makefile projects/pciehp/sys/modules/drm/r128/Makefile projects/pciehp/sys/modules/drm/radeon/Makefile projects/pciehp/sys/modules/drm/via/Makefile projects/pciehp/sys/modules/dtrace/Makefile projects/pciehp/sys/modules/filemon/Makefile projects/pciehp/sys/modules/iwn/Makefile projects/pciehp/sys/modules/nxge/Makefile projects/pciehp/sys/modules/ufs/Makefile projects/pciehp/sys/net/bpf.c projects/pciehp/sys/net/bpf.h projects/pciehp/sys/net/bpf_buffer.c projects/pciehp/sys/net/bpfdesc.h projects/pciehp/sys/net/bridgestp.c projects/pciehp/sys/net/ieee8023ad_lacp.c projects/pciehp/sys/net/if_arcsubr.c projects/pciehp/sys/net/if_atmsubr.c projects/pciehp/sys/net/if_bridge.c projects/pciehp/sys/net/if_ef.c projects/pciehp/sys/net/if_ethersubr.c projects/pciehp/sys/net/if_fddisubr.c projects/pciehp/sys/net/if_fwsubr.c projects/pciehp/sys/net/if_gre.c projects/pciehp/sys/net/if_iso88025subr.c projects/pciehp/sys/net/if_llatbl.c projects/pciehp/sys/net/if_spppfr.c projects/pciehp/sys/net/if_spppsubr.c projects/pciehp/sys/net/if_stf.c projects/pciehp/sys/net/if_tap.c projects/pciehp/sys/net/if_tun.c projects/pciehp/sys/net/if_vlan.c projects/pciehp/sys/net/pfil.c projects/pciehp/sys/net/pfil.h projects/pciehp/sys/net/rtsock.c projects/pciehp/sys/net80211/ieee80211.c projects/pciehp/sys/net80211/ieee80211_adhoc.c projects/pciehp/sys/net80211/ieee80211_freebsd.c projects/pciehp/sys/net80211/ieee80211_freebsd.h projects/pciehp/sys/net80211/ieee80211_hostap.c projects/pciehp/sys/net80211/ieee80211_ht.c projects/pciehp/sys/net80211/ieee80211_hwmp.c projects/pciehp/sys/net80211/ieee80211_input.c projects/pciehp/sys/net80211/ieee80211_mesh.c projects/pciehp/sys/net80211/ieee80211_output.c projects/pciehp/sys/net80211/ieee80211_proto.c projects/pciehp/sys/net80211/ieee80211_regdomain.h projects/pciehp/sys/net80211/ieee80211_sta.c projects/pciehp/sys/net80211/ieee80211_sta.h projects/pciehp/sys/net80211/ieee80211_superg.c projects/pciehp/sys/net80211/ieee80211_superg.h projects/pciehp/sys/net80211/ieee80211_wds.c projects/pciehp/sys/netatalk/aarp.c projects/pciehp/sys/netatalk/ddp_output.c projects/pciehp/sys/netgraph/atm/ccatm/ng_ccatm.c projects/pciehp/sys/netgraph/atm/ng_atm.c projects/pciehp/sys/netgraph/bluetooth/drivers/bt3c/ng_bt3c_pccard.c projects/pciehp/sys/netgraph/bluetooth/drivers/h4/ng_h4.c projects/pciehp/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c projects/pciehp/sys/netgraph/bluetooth/hci/ng_hci_cmds.c projects/pciehp/sys/netgraph/bluetooth/hci/ng_hci_evnt.c projects/pciehp/sys/netgraph/bluetooth/hci/ng_hci_misc.c projects/pciehp/sys/netgraph/bluetooth/hci/ng_hci_ulpi.c projects/pciehp/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.h projects/pciehp/sys/netgraph/bluetooth/l2cap/ng_l2cap_evnt.c projects/pciehp/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c projects/pciehp/sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c projects/pciehp/sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c projects/pciehp/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c projects/pciehp/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c projects/pciehp/sys/netgraph/bluetooth/socket/ng_btsocket_sco.c projects/pciehp/sys/netgraph/netflow/netflow.c projects/pciehp/sys/netgraph/netflow/netflow_v9.c projects/pciehp/sys/netgraph/ng_UI.c projects/pciehp/sys/netgraph/ng_atmllc.c projects/pciehp/sys/netgraph/ng_bridge.c projects/pciehp/sys/netgraph/ng_cisco.c projects/pciehp/sys/netgraph/ng_deflate.c projects/pciehp/sys/netgraph/ng_device.c projects/pciehp/sys/netgraph/ng_frame_relay.c projects/pciehp/sys/netgraph/ng_gif.c projects/pciehp/sys/netgraph/ng_gif_demux.c projects/pciehp/sys/netgraph/ng_hub.c projects/pciehp/sys/netgraph/ng_iface.c projects/pciehp/sys/netgraph/ng_ipfw.c projects/pciehp/sys/netgraph/ng_l2tp.c projects/pciehp/sys/netgraph/ng_lmi.c projects/pciehp/sys/netgraph/ng_mppc.c projects/pciehp/sys/netgraph/ng_one2many.c projects/pciehp/sys/netgraph/ng_ppp.c projects/pciehp/sys/netgraph/ng_pppoe.c projects/pciehp/sys/netgraph/ng_pptpgre.c projects/pciehp/sys/netgraph/ng_pred1.c projects/pciehp/sys/netgraph/ng_rfc1490.c projects/pciehp/sys/netgraph/ng_source.c projects/pciehp/sys/netgraph/ng_tee.c projects/pciehp/sys/netgraph/ng_tty.c projects/pciehp/sys/netgraph/ng_vjc.c projects/pciehp/sys/netgraph/ng_vlan.c projects/pciehp/sys/netinet/if_ether.c projects/pciehp/sys/netinet/igmp.c projects/pciehp/sys/netinet/in.c projects/pciehp/sys/netinet/in.h projects/pciehp/sys/netinet/in_gif.c projects/pciehp/sys/netinet/in_pcb.c projects/pciehp/sys/netinet/ip_carp.c projects/pciehp/sys/netinet/ip_divert.c projects/pciehp/sys/netinet/ip_fastfwd.c projects/pciehp/sys/netinet/ip_gre.c projects/pciehp/sys/netinet/ip_icmp.c projects/pciehp/sys/netinet/ip_input.c projects/pciehp/sys/netinet/ip_ipsec.c projects/pciehp/sys/netinet/ip_mroute.c projects/pciehp/sys/netinet/ip_options.c projects/pciehp/sys/netinet/ip_output.c projects/pciehp/sys/netinet/ip_var.h projects/pciehp/sys/netinet/libalias/alias.c projects/pciehp/sys/netinet/raw_ip.c projects/pciehp/sys/netinet/sctp_asconf.c projects/pciehp/sys/netinet/sctp_auth.c projects/pciehp/sys/netinet/sctp_constants.h projects/pciehp/sys/netinet/sctp_indata.c projects/pciehp/sys/netinet/sctp_input.c projects/pciehp/sys/netinet/sctp_output.c projects/pciehp/sys/netinet/sctp_output.h projects/pciehp/sys/netinet/sctp_pcb.c projects/pciehp/sys/netinet/sctp_pcb.h projects/pciehp/sys/netinet/sctp_peeloff.c projects/pciehp/sys/netinet/sctp_peeloff.h projects/pciehp/sys/netinet/sctp_structs.h projects/pciehp/sys/netinet/sctp_sysctl.c projects/pciehp/sys/netinet/sctp_timer.c projects/pciehp/sys/netinet/sctp_uio.h projects/pciehp/sys/netinet/sctp_usrreq.c projects/pciehp/sys/netinet/sctp_var.h projects/pciehp/sys/netinet/sctputil.c projects/pciehp/sys/netinet/sctputil.h projects/pciehp/sys/netinet/siftr.c projects/pciehp/sys/netinet/tcp_debug.c projects/pciehp/sys/netinet/tcp_input.c projects/pciehp/sys/netinet/tcp_output.c projects/pciehp/sys/netinet/tcp_reass.c projects/pciehp/sys/netinet/tcp_subr.c projects/pciehp/sys/netinet/tcp_syncache.c projects/pciehp/sys/netinet/tcp_syncache.h projects/pciehp/sys/netinet/tcp_timer.c projects/pciehp/sys/netinet/tcp_timer.h projects/pciehp/sys/netinet/tcp_timewait.c projects/pciehp/sys/netinet/tcp_var.h projects/pciehp/sys/netinet/udp_usrreq.c projects/pciehp/sys/netinet6/frag6.c projects/pciehp/sys/netinet6/icmp6.c projects/pciehp/sys/netinet6/in6.c projects/pciehp/sys/netinet6/in6.h projects/pciehp/sys/netinet6/in6_gif.c projects/pciehp/sys/netinet6/in6_gif.h projects/pciehp/sys/netinet6/in6_ifattach.h projects/pciehp/sys/netinet6/in6_pcb.h projects/pciehp/sys/netinet6/in6_rmx.c projects/pciehp/sys/netinet6/in6_src.c projects/pciehp/sys/netinet6/in6_var.h projects/pciehp/sys/netinet6/ip6_forward.c projects/pciehp/sys/netinet6/ip6_input.c projects/pciehp/sys/netinet6/ip6_ipsec.c projects/pciehp/sys/netinet6/ip6_mroute.c projects/pciehp/sys/netinet6/ip6_output.c projects/pciehp/sys/netinet6/ip6_var.h projects/pciehp/sys/netinet6/ip6protosw.h projects/pciehp/sys/netinet6/mld6.c projects/pciehp/sys/netinet6/nd6.c projects/pciehp/sys/netinet6/nd6.h projects/pciehp/sys/netinet6/nd6_nbr.c projects/pciehp/sys/netinet6/nd6_rtr.c projects/pciehp/sys/netinet6/pim6_var.h projects/pciehp/sys/netinet6/raw_ip6.c projects/pciehp/sys/netinet6/scope6.c projects/pciehp/sys/netinet6/scope6_var.h projects/pciehp/sys/netinet6/sctp6_usrreq.c projects/pciehp/sys/netinet6/sctp6_var.h projects/pciehp/sys/netinet6/tcp6_var.h projects/pciehp/sys/netinet6/udp6_usrreq.c projects/pciehp/sys/netipsec/ipsec.c projects/pciehp/sys/netipsec/ipsec_input.c projects/pciehp/sys/netipsec/ipsec_mbuf.c projects/pciehp/sys/netipsec/ipsec_output.c projects/pciehp/sys/netipsec/key.c projects/pciehp/sys/netipsec/keysock.c projects/pciehp/sys/netipsec/xform_ah.c projects/pciehp/sys/netipsec/xform_ipip.c projects/pciehp/sys/netipx/ipx_outputfl.c projects/pciehp/sys/netipx/ipx_usrreq.c projects/pciehp/sys/netipx/spx_reass.c projects/pciehp/sys/netipx/spx_usrreq.c projects/pciehp/sys/netnatm/natm.c projects/pciehp/sys/netncp/ncp_sock.c projects/pciehp/sys/netpfil/ipfw/ip_dn_glue.c projects/pciehp/sys/netpfil/ipfw/ip_dn_io.c projects/pciehp/sys/netpfil/ipfw/ip_fw2.c projects/pciehp/sys/netpfil/ipfw/ip_fw_dynamic.c projects/pciehp/sys/netpfil/ipfw/ip_fw_log.c projects/pciehp/sys/netpfil/ipfw/ip_fw_nat.c projects/pciehp/sys/netpfil/ipfw/ip_fw_pfil.c projects/pciehp/sys/netpfil/ipfw/ip_fw_private.h projects/pciehp/sys/netpfil/ipfw/ip_fw_sockopt.c projects/pciehp/sys/netpfil/pf/if_pflog.c projects/pciehp/sys/netpfil/pf/if_pfsync.c projects/pciehp/sys/netpfil/pf/pf.c projects/pciehp/sys/netpfil/pf/pf_if.c projects/pciehp/sys/netpfil/pf/pf_ioctl.c projects/pciehp/sys/netpfil/pf/pf_lb.c projects/pciehp/sys/netpfil/pf/pf_norm.c projects/pciehp/sys/netpfil/pf/pf_osfp.c projects/pciehp/sys/netpfil/pf/pf_ruleset.c projects/pciehp/sys/netpfil/pf/pf_table.c projects/pciehp/sys/netsmb/smb_conn.c projects/pciehp/sys/netsmb/smb_dev.c projects/pciehp/sys/netsmb/smb_iod.c projects/pciehp/sys/netsmb/smb_rq.c projects/pciehp/sys/netsmb/smb_trantcp.c projects/pciehp/sys/netsmb/smb_usr.c projects/pciehp/sys/nfs/krpc_subr.c projects/pciehp/sys/nfs/nfs_common.c projects/pciehp/sys/nfs/nfs_nfssvc.c projects/pciehp/sys/nfs/nfssvc.h projects/pciehp/sys/nfsclient/nfs_krpc.c projects/pciehp/sys/nfsclient/nfs_node.c projects/pciehp/sys/nfsclient/nfs_subs.c projects/pciehp/sys/nfsclient/nfs_vfsops.c projects/pciehp/sys/nfsclient/nfsargs.h projects/pciehp/sys/nfsserver/nfs.h projects/pciehp/sys/nfsserver/nfs_fha.c projects/pciehp/sys/nfsserver/nfs_serv.c projects/pciehp/sys/nfsserver/nfs_srvkrpc.c projects/pciehp/sys/nfsserver/nfs_srvsubs.c projects/pciehp/sys/nlm/nlm_prot_impl.c projects/pciehp/sys/ofed/drivers/infiniband/core/cma.c projects/pciehp/sys/ofed/drivers/infiniband/core/ud_header.c projects/pciehp/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_ib.c projects/pciehp/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c projects/pciehp/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_multicast.c projects/pciehp/sys/ofed/drivers/infiniband/ulp/sdp/sdp_bcopy.c projects/pciehp/sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c projects/pciehp/sys/ofed/drivers/infiniband/ulp/sdp/sdp_rx.c projects/pciehp/sys/ofed/drivers/infiniband/ulp/sdp/sdp_tx.c projects/pciehp/sys/ofed/drivers/net/mlx4/en_netdev.c projects/pciehp/sys/ofed/drivers/net/mlx4/en_rx.c projects/pciehp/sys/ofed/drivers/net/mlx4/en_tx.c projects/pciehp/sys/ofed/include/linux/cdev.h projects/pciehp/sys/ofed/include/linux/pci.h projects/pciehp/sys/pc98/include/bus.h projects/pciehp/sys/pc98/pc98/machdep.c projects/pciehp/sys/pci/if_rl.c projects/pciehp/sys/powerpc/aim/locore32.S projects/pciehp/sys/powerpc/aim/locore64.S projects/pciehp/sys/powerpc/aim/mmu_oea.c projects/pciehp/sys/powerpc/aim/mmu_oea64.c projects/pciehp/sys/powerpc/aim/slb.c projects/pciehp/sys/powerpc/aim/trap.c projects/pciehp/sys/powerpc/aim/trap_subr32.S projects/pciehp/sys/powerpc/aim/trap_subr64.S projects/pciehp/sys/powerpc/aim/uma_machdep.c projects/pciehp/sys/powerpc/booke/locore.S projects/pciehp/sys/powerpc/booke/machdep.c projects/pciehp/sys/powerpc/booke/platform_bare.c projects/pciehp/sys/powerpc/booke/pmap.c projects/pciehp/sys/powerpc/conf/GENERIC projects/pciehp/sys/powerpc/conf/NOTES projects/pciehp/sys/powerpc/include/bat.h projects/pciehp/sys/powerpc/powermac/openpic_macio.c projects/pciehp/sys/powerpc/ps3/if_glc.c projects/pciehp/sys/powerpc/wii/platform_wii.c projects/pciehp/sys/powerpc/wii/wii_ipcreg.h projects/pciehp/sys/rpc/clnt.h projects/pciehp/sys/rpc/clnt_dg.c projects/pciehp/sys/rpc/clnt_rc.c projects/pciehp/sys/rpc/clnt_vc.c projects/pciehp/sys/rpc/rpc_generic.c projects/pciehp/sys/rpc/rpcm_subs.h projects/pciehp/sys/rpc/rpcsec_gss/rpcsec_gss_prot.c projects/pciehp/sys/rpc/rpcsec_gss/svc_rpcsec_gss.c projects/pciehp/sys/rpc/svc.c projects/pciehp/sys/rpc/svc.h projects/pciehp/sys/rpc/svc_dg.c projects/pciehp/sys/rpc/svc_vc.c projects/pciehp/sys/security/audit/audit.c projects/pciehp/sys/security/audit/audit.h projects/pciehp/sys/security/audit/audit_arg.c projects/pciehp/sys/security/audit/audit_bsm.c projects/pciehp/sys/security/audit/audit_bsm_klib.c projects/pciehp/sys/security/audit/audit_private.h projects/pciehp/sys/security/audit/audit_syscalls.c projects/pciehp/sys/security/audit/audit_worker.c projects/pciehp/sys/security/mac/mac_process.c projects/pciehp/sys/security/mac/mac_syscalls.c projects/pciehp/sys/sparc64/conf/GENERIC projects/pciehp/sys/sparc64/include/ktr.h projects/pciehp/sys/sparc64/include/pmap.h projects/pciehp/sys/sparc64/pci/fire.c projects/pciehp/sys/sparc64/pci/psycho.c projects/pciehp/sys/sparc64/pci/schizo.c projects/pciehp/sys/sparc64/sparc64/pmap.c projects/pciehp/sys/sparc64/sparc64/vm_machdep.c projects/pciehp/sys/sys/_mutex.h projects/pciehp/sys/sys/_rwlock.h projects/pciehp/sys/sys/buf.h projects/pciehp/sys/sys/buf_ring.h projects/pciehp/sys/sys/bufobj.h projects/pciehp/sys/sys/conf.h projects/pciehp/sys/sys/eventhandler.h projects/pciehp/sys/sys/file.h projects/pciehp/sys/sys/fnv_hash.h projects/pciehp/sys/sys/ipc.h projects/pciehp/sys/sys/kdb.h projects/pciehp/sys/sys/ktr.h projects/pciehp/sys/sys/lock.h projects/pciehp/sys/sys/mbuf.h projects/pciehp/sys/sys/mount.h projects/pciehp/sys/sys/mutex.h projects/pciehp/sys/sys/namei.h projects/pciehp/sys/sys/param.h projects/pciehp/sys/sys/proc.h projects/pciehp/sys/sys/protosw.h projects/pciehp/sys/sys/racct.h projects/pciehp/sys/sys/rctl.h projects/pciehp/sys/sys/resource.h projects/pciehp/sys/sys/rwlock.h projects/pciehp/sys/sys/sched.h projects/pciehp/sys/sys/smp.h projects/pciehp/sys/sys/socketvar.h projects/pciehp/sys/sys/syscall.h projects/pciehp/sys/sys/syscall.mk projects/pciehp/sys/sys/syscallsubr.h projects/pciehp/sys/sys/sysctl.h projects/pciehp/sys/sys/sysproto.h projects/pciehp/sys/sys/systm.h projects/pciehp/sys/sys/tty.h projects/pciehp/sys/sys/vmmeter.h projects/pciehp/sys/sys/vnode.h projects/pciehp/sys/sys/wait.h projects/pciehp/sys/tools/vnode_if.awk projects/pciehp/sys/ufs/ffs/ffs_alloc.c projects/pciehp/sys/ufs/ffs/ffs_balloc.c projects/pciehp/sys/ufs/ffs/ffs_extern.h projects/pciehp/sys/ufs/ffs/ffs_snapshot.c projects/pciehp/sys/ufs/ffs/ffs_softdep.c projects/pciehp/sys/ufs/ffs/ffs_vfsops.c projects/pciehp/sys/ufs/ffs/fs.h projects/pciehp/sys/ufs/ufs/ufs_extattr.c projects/pciehp/sys/ufs/ufs/ufs_quota.c projects/pciehp/sys/ufs/ufs/ufsmount.h projects/pciehp/sys/vm/device_pager.c projects/pciehp/sys/vm/sg_pager.c projects/pciehp/sys/vm/swap_pager.c projects/pciehp/sys/vm/uma.h projects/pciehp/sys/vm/uma_core.c projects/pciehp/sys/vm/uma_int.h projects/pciehp/sys/vm/vm.h projects/pciehp/sys/vm/vm_fault.c projects/pciehp/sys/vm/vm_glue.c projects/pciehp/sys/vm/vm_kern.c projects/pciehp/sys/vm/vm_map.c projects/pciehp/sys/vm/vm_meter.c projects/pciehp/sys/vm/vm_mmap.c projects/pciehp/sys/vm/vm_object.c projects/pciehp/sys/vm/vm_object.h projects/pciehp/sys/vm/vm_page.c projects/pciehp/sys/vm/vm_page.h projects/pciehp/sys/vm/vm_pageout.c projects/pciehp/sys/vm/vm_phys.h projects/pciehp/sys/vm/vm_unix.c projects/pciehp/sys/vm/vnode_pager.c projects/pciehp/sys/x86/include/bus.h projects/pciehp/sys/x86/include/specialreg.h projects/pciehp/sys/x86/x86/io_apic.c projects/pciehp/sys/xen/evtchn/evtchn.c projects/pciehp/sys/xen/interface/foreign/mkheader.py projects/pciehp/tools/build/mk/OptionalObsoleteFiles.inc projects/pciehp/tools/debugscripts/dot.gdbinit projects/pciehp/tools/regression/filemon/Makefile projects/pciehp/tools/regression/lib/libc/nss/test-gethostby.c projects/pciehp/tools/regression/lib/libc/resolv/resolv.c projects/pciehp/tools/regression/lib/libc/stdio/test-perror.c projects/pciehp/tools/regression/netinet/arphold/arphold.c projects/pciehp/tools/regression/netinet/ip_id_period/ip_id_period.py projects/pciehp/tools/regression/netinet/udpzerobyte/udpzerobyte.c projects/pciehp/tools/regression/netipx/ipxdgramloopback/ipxdgramloopback.c projects/pciehp/tools/regression/sockets/sblock/sblock.c projects/pciehp/tools/regression/sockets/sigpipe/sigpipe.c projects/pciehp/tools/regression/sockets/unix_cmsg/unix_cmsg.c projects/pciehp/tools/regression/sockets/unix_seqpacket_exercise/unix_seqpacket_exercise.c projects/pciehp/tools/regression/sockets/zerosend/zerosend.c projects/pciehp/tools/regression/ufs/uprintf/ufs_uprintf.c projects/pciehp/tools/regression/usr.bin/printf/regress.sh projects/pciehp/tools/test/hwpmc/pmctest.py projects/pciehp/tools/test/ppsapi/Makefile projects/pciehp/tools/test/ppsapi/README projects/pciehp/tools/tools/netrate/netreceive/Makefile projects/pciehp/tools/tools/netrate/netreceive/netreceive.c projects/pciehp/tools/tools/netrate/netsend/netsend.c projects/pciehp/tools/tools/sysbuild/sysbuild.sh projects/pciehp/tools/tools/sysdoc/Makefile projects/pciehp/usr.bin/Makefile projects/pciehp/usr.bin/ar/ar.h projects/pciehp/usr.bin/at/privs.h projects/pciehp/usr.bin/bc/bc.y projects/pciehp/usr.bin/bmake/Makefile projects/pciehp/usr.bin/bmake/Makefile.inc projects/pciehp/usr.bin/bmake/unit-tests/Makefile projects/pciehp/usr.bin/calendar/calendars/calendar.freebsd projects/pciehp/usr.bin/calendar/calendars/calendar.history projects/pciehp/usr.bin/calendar/parsedata.c projects/pciehp/usr.bin/chpass/chpass.c projects/pciehp/usr.bin/clang/clang-tblgen/Makefile projects/pciehp/usr.bin/clang/clang/Makefile projects/pciehp/usr.bin/clang/clang/clang.1 projects/pciehp/usr.bin/clang/llc/Makefile projects/pciehp/usr.bin/clang/lli/Makefile projects/pciehp/usr.bin/clang/llvm-mc/Makefile projects/pciehp/usr.bin/clang/llvm-objdump/Makefile projects/pciehp/usr.bin/clang/llvm-rtdyld/Makefile projects/pciehp/usr.bin/clang/opt/Makefile projects/pciehp/usr.bin/clang/tblgen/Makefile projects/pciehp/usr.bin/csup/lister.c projects/pciehp/usr.bin/cut/cut.1 projects/pciehp/usr.bin/cut/cut.c projects/pciehp/usr.bin/dc/bcode.c projects/pciehp/usr.bin/dc/bcode.h projects/pciehp/usr.bin/dc/inout.c projects/pciehp/usr.bin/du/du.1 projects/pciehp/usr.bin/fetch/fetch.c projects/pciehp/usr.bin/find/find.1 projects/pciehp/usr.bin/grep/grep.c projects/pciehp/usr.bin/grep/grep.h projects/pciehp/usr.bin/grep/util.c projects/pciehp/usr.bin/indent/indent_globs.h projects/pciehp/usr.bin/kdump/mksubr projects/pciehp/usr.bin/ktrdump/ktrdump.c projects/pciehp/usr.bin/less/defines.h projects/pciehp/usr.bin/less/zless.sh projects/pciehp/usr.bin/locale/locale.1 projects/pciehp/usr.bin/locale/locale.c projects/pciehp/usr.bin/locate/locate/locate.c projects/pciehp/usr.bin/lock/lock.c projects/pciehp/usr.bin/m4/Makefile projects/pciehp/usr.bin/make/main.c projects/pciehp/usr.bin/ministat/ministat.1 projects/pciehp/usr.bin/ministat/ministat.c projects/pciehp/usr.bin/mkcsmapper/Makefile.inc projects/pciehp/usr.bin/mktemp/mktemp.1 projects/pciehp/usr.bin/msgs/msgs.c projects/pciehp/usr.bin/netstat/mbuf.c projects/pciehp/usr.bin/netstat/route.c projects/pciehp/usr.bin/nfsstat/nfsstat.1 projects/pciehp/usr.bin/nfsstat/nfsstat.c projects/pciehp/usr.bin/passwd/Makefile projects/pciehp/usr.bin/pr/pr.1 projects/pciehp/usr.bin/printf/printf.c projects/pciehp/usr.bin/rctl/rctl.8 projects/pciehp/usr.bin/script/script.1 projects/pciehp/usr.bin/script/script.c projects/pciehp/usr.bin/seq/seq.1 projects/pciehp/usr.bin/sort/bwstring.c projects/pciehp/usr.bin/sort/bwstring.h projects/pciehp/usr.bin/sort/coll.c projects/pciehp/usr.bin/sort/coll.h projects/pciehp/usr.bin/sort/file.c projects/pciehp/usr.bin/sort/file.h projects/pciehp/usr.bin/sort/radixsort.c projects/pciehp/usr.bin/sort/sort.c projects/pciehp/usr.bin/sort/sort.h projects/pciehp/usr.bin/time/time.c projects/pciehp/usr.bin/tip/tip/cu.1 projects/pciehp/usr.bin/top/machine.c projects/pciehp/usr.bin/uuencode/uuencode.1 projects/pciehp/usr.bin/w/extern.h projects/pciehp/usr.bin/w/proc_compare.c projects/pciehp/usr.bin/wall/wall.c projects/pciehp/usr.sbin/Makefile projects/pciehp/usr.sbin/Makefile.amd64 projects/pciehp/usr.sbin/Makefile.i386 projects/pciehp/usr.sbin/Makefile.sparc64 projects/pciehp/usr.sbin/acpi/acpidb/Makefile projects/pciehp/usr.sbin/acpi/acpidump/acpi.c projects/pciehp/usr.sbin/acpi/acpidump/acpidump.8 projects/pciehp/usr.sbin/acpi/iasl/Makefile projects/pciehp/usr.sbin/bluetooth/hcseriald/hcseriald.8 projects/pciehp/usr.sbin/bluetooth/hcseriald/hcseriald.c projects/pciehp/usr.sbin/bsdconfig/bsdconfig projects/pciehp/usr.sbin/bsdconfig/console/console projects/pciehp/usr.sbin/bsdconfig/console/font projects/pciehp/usr.sbin/bsdconfig/console/keymap projects/pciehp/usr.sbin/bsdconfig/console/repeat projects/pciehp/usr.sbin/bsdconfig/console/saver projects/pciehp/usr.sbin/bsdconfig/console/screenmap projects/pciehp/usr.sbin/bsdconfig/console/ttys projects/pciehp/usr.sbin/bsdconfig/diskmgmt/diskmgmt projects/pciehp/usr.sbin/bsdconfig/docsinstall/docsinstall projects/pciehp/usr.sbin/bsdconfig/dot/dot projects/pciehp/usr.sbin/bsdconfig/examples/bsdconfigrc projects/pciehp/usr.sbin/bsdconfig/include/Makefile projects/pciehp/usr.sbin/bsdconfig/include/messages.subr projects/pciehp/usr.sbin/bsdconfig/mouse/disable projects/pciehp/usr.sbin/bsdconfig/mouse/enable projects/pciehp/usr.sbin/bsdconfig/mouse/flags projects/pciehp/usr.sbin/bsdconfig/mouse/mouse projects/pciehp/usr.sbin/bsdconfig/mouse/port projects/pciehp/usr.sbin/bsdconfig/mouse/type projects/pciehp/usr.sbin/bsdconfig/networking/defaultrouter projects/pciehp/usr.sbin/bsdconfig/networking/devices projects/pciehp/usr.sbin/bsdconfig/networking/hostname projects/pciehp/usr.sbin/bsdconfig/networking/include/Makefile projects/pciehp/usr.sbin/bsdconfig/networking/include/messages.subr projects/pciehp/usr.sbin/bsdconfig/networking/nameservers projects/pciehp/usr.sbin/bsdconfig/networking/networking projects/pciehp/usr.sbin/bsdconfig/networking/share/common.subr projects/pciehp/usr.sbin/bsdconfig/networking/share/device.subr projects/pciehp/usr.sbin/bsdconfig/networking/share/hostname.subr projects/pciehp/usr.sbin/bsdconfig/networking/share/ipaddr.subr projects/pciehp/usr.sbin/bsdconfig/networking/share/media.subr projects/pciehp/usr.sbin/bsdconfig/networking/share/netmask.subr projects/pciehp/usr.sbin/bsdconfig/networking/share/resolv.subr projects/pciehp/usr.sbin/bsdconfig/networking/share/routing.subr projects/pciehp/usr.sbin/bsdconfig/password/password projects/pciehp/usr.sbin/bsdconfig/password/share/password.subr projects/pciehp/usr.sbin/bsdconfig/security/include/Makefile projects/pciehp/usr.sbin/bsdconfig/security/kern_securelevel projects/pciehp/usr.sbin/bsdconfig/security/security projects/pciehp/usr.sbin/bsdconfig/share/common.subr projects/pciehp/usr.sbin/bsdconfig/share/dialog.subr projects/pciehp/usr.sbin/bsdconfig/share/mustberoot.subr projects/pciehp/usr.sbin/bsdconfig/share/strings.subr projects/pciehp/usr.sbin/bsdconfig/share/sysrc.subr projects/pciehp/usr.sbin/bsdconfig/startup/misc projects/pciehp/usr.sbin/bsdconfig/startup/rcadd projects/pciehp/usr.sbin/bsdconfig/startup/rcconf projects/pciehp/usr.sbin/bsdconfig/startup/rcdelete projects/pciehp/usr.sbin/bsdconfig/startup/rcedit projects/pciehp/usr.sbin/bsdconfig/startup/rcvar projects/pciehp/usr.sbin/bsdconfig/startup/share/rcconf.subr projects/pciehp/usr.sbin/bsdconfig/startup/share/rcedit.subr projects/pciehp/usr.sbin/bsdconfig/startup/share/rcvar.subr projects/pciehp/usr.sbin/bsdconfig/startup/startup projects/pciehp/usr.sbin/bsdconfig/timezone/share/continents.subr projects/pciehp/usr.sbin/bsdconfig/timezone/share/countries.subr projects/pciehp/usr.sbin/bsdconfig/timezone/share/iso3166.subr projects/pciehp/usr.sbin/bsdconfig/timezone/share/menus.subr projects/pciehp/usr.sbin/bsdconfig/timezone/share/zones.subr projects/pciehp/usr.sbin/bsdconfig/timezone/timezone projects/pciehp/usr.sbin/bsdconfig/ttys/ttys projects/pciehp/usr.sbin/bsdconfig/usermgmt/groupadd projects/pciehp/usr.sbin/bsdconfig/usermgmt/groupdel projects/pciehp/usr.sbin/bsdconfig/usermgmt/groupedit projects/pciehp/usr.sbin/bsdconfig/usermgmt/groupinput projects/pciehp/usr.sbin/bsdconfig/usermgmt/include/Makefile projects/pciehp/usr.sbin/bsdconfig/usermgmt/share/group_input.subr projects/pciehp/usr.sbin/bsdconfig/usermgmt/share/user_input.subr projects/pciehp/usr.sbin/bsdconfig/usermgmt/useradd projects/pciehp/usr.sbin/bsdconfig/usermgmt/userdel projects/pciehp/usr.sbin/bsdconfig/usermgmt/useredit projects/pciehp/usr.sbin/bsdconfig/usermgmt/userinput projects/pciehp/usr.sbin/bsdconfig/usermgmt/usermgmt projects/pciehp/usr.sbin/bsdinstall/bsdinstall projects/pciehp/usr.sbin/bsdinstall/partedit/Makefile projects/pciehp/usr.sbin/bsdinstall/partedit/partedit.c projects/pciehp/usr.sbin/bsdinstall/scripts/auto projects/pciehp/usr.sbin/bsdinstall/scripts/mirrorselect projects/pciehp/usr.sbin/chkgrp/chkgrp.8 projects/pciehp/usr.sbin/chkgrp/chkgrp.c projects/pciehp/usr.sbin/cron/cron/cron.c projects/pciehp/usr.sbin/cron/cron/cron.h projects/pciehp/usr.sbin/cron/crontab/crontab.5 projects/pciehp/usr.sbin/cron/lib/entry.c projects/pciehp/usr.sbin/diskinfo/diskinfo.c projects/pciehp/usr.sbin/edquota/edquota.c projects/pciehp/usr.sbin/gssd/Makefile projects/pciehp/usr.sbin/gssd/gssd.8 projects/pciehp/usr.sbin/gssd/gssd.c projects/pciehp/usr.sbin/ifmcstat/ifmcstat.c projects/pciehp/usr.sbin/iostat/iostat.8 projects/pciehp/usr.sbin/iostat/iostat.c projects/pciehp/usr.sbin/kgmon/kgmon.c projects/pciehp/usr.sbin/kldxref/ef.c projects/pciehp/usr.sbin/lpr/common_source/common.c projects/pciehp/usr.sbin/lpr/common_source/displayq.c projects/pciehp/usr.sbin/lpr/common_source/lp.h projects/pciehp/usr.sbin/lpr/common_source/net.c projects/pciehp/usr.sbin/lpr/common_source/rmjob.c projects/pciehp/usr.sbin/lpr/common_source/startdaemon.c projects/pciehp/usr.sbin/lpr/filters/lpf.c projects/pciehp/usr.sbin/lpr/lpc/cmds.c projects/pciehp/usr.sbin/lpr/lpc/lpc.c projects/pciehp/usr.sbin/lpr/lpc/movejobs.c projects/pciehp/usr.sbin/lpr/lpd/printjob.c projects/pciehp/usr.sbin/lpr/lpq/lpq.c projects/pciehp/usr.sbin/lpr/lpr/lpr.c projects/pciehp/usr.sbin/lpr/lprm/lprm.c projects/pciehp/usr.sbin/makefs/mtree.c projects/pciehp/usr.sbin/memcontrol/memcontrol.c projects/pciehp/usr.sbin/mergemaster/mergemaster.sh projects/pciehp/usr.sbin/mountd/exports.5 projects/pciehp/usr.sbin/mountd/mountd.c projects/pciehp/usr.sbin/moused/moused.8 projects/pciehp/usr.sbin/mptable/mptable.c projects/pciehp/usr.sbin/mtest/mtest.c projects/pciehp/usr.sbin/ndiscvt/inf-parse.y projects/pciehp/usr.sbin/ndiscvt/ndiscvt.c projects/pciehp/usr.sbin/ndp/ndp.8 projects/pciehp/usr.sbin/ndp/ndp.c projects/pciehp/usr.sbin/nfscbd/nfscbd.8 projects/pciehp/usr.sbin/nfsd/nfsd.8 projects/pciehp/usr.sbin/nfsd/nfsd.c projects/pciehp/usr.sbin/nfsd/nfsv4.4 projects/pciehp/usr.sbin/pciconf/cap.c projects/pciehp/usr.sbin/pkg/Makefile projects/pciehp/usr.sbin/pkg/pkg.c projects/pciehp/usr.sbin/pkg_install/add/main.c projects/pciehp/usr.sbin/pkg_install/add/pkg_add.1 projects/pciehp/usr.sbin/pkg_install/create/main.c projects/pciehp/usr.sbin/pkg_install/create/pkg_create.1 projects/pciehp/usr.sbin/pkg_install/delete/main.c projects/pciehp/usr.sbin/pkg_install/delete/pkg_delete.1 projects/pciehp/usr.sbin/pkg_install/info/main.c projects/pciehp/usr.sbin/pkg_install/info/pkg_info.1 projects/pciehp/usr.sbin/pkg_install/lib/Makefile projects/pciehp/usr.sbin/pkg_install/lib/lib.h projects/pciehp/usr.sbin/pkg_install/updating/main.c projects/pciehp/usr.sbin/pkg_install/updating/pkg_updating.1 projects/pciehp/usr.sbin/pkg_install/version/main.c projects/pciehp/usr.sbin/pkg_install/version/pkg_version.1 projects/pciehp/usr.sbin/portsnap/portsnap/portsnap.sh projects/pciehp/usr.sbin/ppp/README.changes projects/pciehp/usr.sbin/ppp/defs.h projects/pciehp/usr.sbin/ppp/ppp.8.m4 projects/pciehp/usr.sbin/ppp/radius.c projects/pciehp/usr.sbin/pw/Makefile projects/pciehp/usr.sbin/pw/bitmap.c projects/pciehp/usr.sbin/pw/fileupd.c projects/pciehp/usr.sbin/pw/grupd.c projects/pciehp/usr.sbin/pw/pw.8 projects/pciehp/usr.sbin/pw/pw.c projects/pciehp/usr.sbin/pw/pw.h projects/pciehp/usr.sbin/pw/pw_group.c projects/pciehp/usr.sbin/pw/pw_log.c projects/pciehp/usr.sbin/pw/pw_nis.c projects/pciehp/usr.sbin/pw/pw_user.c projects/pciehp/usr.sbin/pw/pw_vpw.c projects/pciehp/usr.sbin/pw/pwupd.c projects/pciehp/usr.sbin/pw/pwupd.h projects/pciehp/usr.sbin/pw/rm_r.c projects/pciehp/usr.sbin/route6d/route6d.8 projects/pciehp/usr.sbin/route6d/route6d.c projects/pciehp/usr.sbin/rpcbind/rpcbind.c projects/pciehp/usr.sbin/rpcbind/util.c projects/pciehp/usr.sbin/service/service.8 projects/pciehp/usr.sbin/service/service.sh projects/pciehp/usr.sbin/syslogd/syslogd.c projects/pciehp/usr.sbin/watchdogd/Makefile projects/pciehp/usr.sbin/watchdogd/watchdogd.c projects/pciehp/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.8 projects/pciehp/usr.sbin/ypserv/yp_main.c Directory Properties: projects/pciehp/ (props changed) projects/pciehp/cddl/contrib/opensolaris/ (props changed) projects/pciehp/cddl/contrib/opensolaris/cmd/zfs/ (props changed) projects/pciehp/cddl/contrib/opensolaris/lib/libzfs/ (props changed) projects/pciehp/contrib/atf/ (props changed) projects/pciehp/contrib/bind9/ (props changed) projects/pciehp/contrib/binutils/ (props changed) projects/pciehp/contrib/bmake/ (props changed) projects/pciehp/contrib/dtc/ (props changed) projects/pciehp/contrib/gcc/ (props changed) projects/pciehp/contrib/gdb/ (props changed) projects/pciehp/contrib/gdtoa/ (props changed) projects/pciehp/contrib/less/ (props changed) projects/pciehp/contrib/libc++/ (props changed) projects/pciehp/contrib/libstdc++/ (props changed) projects/pciehp/contrib/llvm/ (props changed) projects/pciehp/contrib/llvm/tools/clang/ (props changed) projects/pciehp/contrib/netcat/ (props changed) projects/pciehp/contrib/ntp/ (props changed) projects/pciehp/contrib/openbsm/ (props changed) projects/pciehp/contrib/sendmail/ (props changed) projects/pciehp/contrib/tcpdump/ (props changed) projects/pciehp/contrib/top/ (props changed) projects/pciehp/contrib/tzdata/ (props changed) projects/pciehp/contrib/wpa/ (props changed) projects/pciehp/contrib/xz/ (props changed) projects/pciehp/crypto/heimdal/ (props changed) projects/pciehp/crypto/openssl/ (props changed) projects/pciehp/gnu/lib/ (props changed) projects/pciehp/gnu/usr.bin/binutils/ (props changed) projects/pciehp/gnu/usr.bin/cc/cc_tools/ (props changed) projects/pciehp/lib/libc/ (props changed) projects/pciehp/lib/libutil/ (props changed) projects/pciehp/sbin/ (props changed) projects/pciehp/sbin/dumpon/ (props changed) projects/pciehp/sbin/ipfw/ (props changed) projects/pciehp/share/man/man4/ (props changed) projects/pciehp/sys/ (props changed) projects/pciehp/sys/boot/ (props changed) projects/pciehp/sys/boot/i386/efi/ (props changed) projects/pciehp/sys/boot/powerpc/boot1.chrp/ (props changed) projects/pciehp/sys/boot/powerpc/ofw/ (props changed) projects/pciehp/sys/cddl/contrib/opensolaris/ (props changed) projects/pciehp/sys/conf/ (props changed) projects/pciehp/sys/contrib/dev/acpica/ (props changed) projects/pciehp/sys/contrib/dev/acpica/common/ (props changed) projects/pciehp/sys/contrib/dev/acpica/common/ahpredef.c (props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/ (props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslanalyze.c (props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslbtypes.c (props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslcompiler.l (props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslpredef.c (props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslrestype2.c (props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/aslrestype2s.c (props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/asluuid.c (props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/dtcompiler.h (props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/dtexpress.c (props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/dtfield.c (props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/dtparser.l (props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/dtparser.y (props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/dtsubtable.c (props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/dtutils.c (props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/preprocess.h (props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/prexpress.c (props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/prmacros.c (props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/prparser.l (props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/prparser.y (props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/prscan.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/debugger/ (props changed) projects/pciehp/sys/contrib/dev/acpica/components/disassembler/ (props changed) projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/ (props changed) projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/dsargs.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/dswload.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/events/ (props changed) projects/pciehp/sys/contrib/dev/acpica/components/events/evglock.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/events/evgpe.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/events/evgpeblk.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/events/evgpeinit.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/events/evgpeutil.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/events/evmisc.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/events/evregion.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/events/evsci.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/events/evxface.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/events/evxfevnt.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/ (props changed) projects/pciehp/sys/contrib/dev/acpica/components/hardware/ (props changed) projects/pciehp/sys/contrib/dev/acpica/components/hardware/hwesleep.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/hardware/hwsleep.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/hardware/hwxfsleep.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/namespace/ (props changed) projects/pciehp/sys/contrib/dev/acpica/components/namespace/nspredef.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsrepair.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsrepair2.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/parser/ (props changed) projects/pciehp/sys/contrib/dev/acpica/components/parser/pswalk.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/resources/ (props changed) projects/pciehp/sys/contrib/dev/acpica/components/resources/rsinfo.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/resources/rsirq.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/resources/rsserial.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/tables/ (props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/ (props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/utaddress.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/utdecode.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/uteval.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/utexcep.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/utglobal.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/utosi.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/utxfinit.c (props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/utxfmutex.c (props changed) projects/pciehp/sys/contrib/dev/acpica/include/ (props changed) projects/pciehp/sys/contrib/dev/acpica/include/acbuffer.h (props changed) projects/pciehp/sys/contrib/dev/acpica/include/accommon.h (props changed) projects/pciehp/sys/contrib/dev/acpica/include/acdebug.h (props changed) projects/pciehp/sys/contrib/dev/acpica/include/acdispat.h (props changed) projects/pciehp/sys/contrib/dev/acpica/include/acevents.h (props changed) projects/pciehp/sys/contrib/dev/acpica/include/achware.h (props changed) projects/pciehp/sys/contrib/dev/acpica/include/acinterp.h (props changed) projects/pciehp/sys/contrib/dev/acpica/include/acnamesp.h (props changed) projects/pciehp/sys/contrib/dev/acpica/include/acoutput.h (props changed) projects/pciehp/sys/contrib/dev/acpica/include/acparser.h (props changed) projects/pciehp/sys/contrib/dev/acpica/include/acpi.h (props changed) projects/pciehp/sys/contrib/dev/acpica/include/acpredef.h (props changed) projects/pciehp/sys/contrib/dev/acpica/include/acresrc.h (props changed) projects/pciehp/sys/contrib/dev/acpica/include/actables.h (props changed) projects/pciehp/sys/contrib/dev/acpica/include/actbl.h (props changed) projects/pciehp/sys/contrib/dev/acpica/include/actbl1.h (props changed) projects/pciehp/sys/contrib/dev/acpica/include/amlcode.h (props changed) projects/pciehp/sys/contrib/dev/acpica/include/platform/acfreebsd.h (props changed) projects/pciehp/sys/contrib/dev/acpica/include/platform/acgcc.h (props changed) projects/pciehp/sys/contrib/dev/acpica/os_specific/ (props changed) projects/pciehp/sys/contrib/dev/acpica/os_specific/service_layers/osunixxf.c (props changed) projects/pciehp/sys/contrib/octeon-sdk/ (props changed) projects/pciehp/usr.bin/calendar/ (props changed) projects/pciehp/usr.bin/csup/ (props changed) projects/pciehp/usr.sbin/ndiscvt/ (props changed) Modified: projects/pciehp/LOCKS ============================================================================== --- projects/pciehp/LOCKS Sun Dec 30 21:10:48 2012 (r244871) +++ projects/pciehp/LOCKS Sun Dec 30 21:47:11 2012 (r244872) @@ -11,3 +11,4 @@ releng/4.* Requires Security Officer app releng/5.* Requires Security Officer approval. releng/6.* Requires Security Officer approval. releng/7.* Requires Security Officer approval. +releng/8.* Requires Security Officer approval. Modified: projects/pciehp/MAINTAINERS ============================================================================== --- projects/pciehp/MAINTAINERS Sun Dec 30 21:10:48 2012 (r244871) +++ projects/pciehp/MAINTAINERS Sun Dec 30 21:47:11 2012 (r244872) @@ -120,16 +120,7 @@ lib/libc/stdtime edwin Heads-up apprec is maintained by a third party source. sbin/routed bms Pre-commit review; notify vendor at rhyolite.com isci(4) jimharris Pre-commit review requested. - -Following are the entries from the Makefiles, and a few other sources. -Please remove stale entries from both their origin, and this file. - -Please also consider removing the lines from the files listed below and -stating your preferences here instead. - -List below generated with: -$ cd /usr/src; find */* -type f|xargs egrep 'MAINTAINER[ ]*=' - -sys/modules/3dfx/Makefile:MAINTAINER= cokane@FreeBSD.org -sys/modules/urio/Makefile:MAINTAINER= Iwasa Kazmi -tools/tools/sysdoc/Makefile:MAINTAINER= trhodes@FreeBSD.org +3dfx cokane Pre-commit review preferred. +cmx daniel@roe.ch Pre-commit review preferred. +filemon obrien Pre-commit review preferred. +sysdoc trhodes Pre-commit review preferred. Modified: projects/pciehp/Makefile ============================================================================== --- projects/pciehp/Makefile Sun Dec 30 21:10:48 2012 (r244871) +++ projects/pciehp/Makefile Sun Dec 30 21:47:11 2012 (r244872) @@ -443,3 +443,6 @@ universe_epilogue: fi .endif .endif + +buildLINT: + ${MAKE} -C ${.CURDIR}/sys/${_TARGET}/conf LINT Modified: projects/pciehp/Makefile.inc1 ============================================================================== --- projects/pciehp/Makefile.inc1 Sun Dec 30 21:10:48 2012 (r244871) +++ projects/pciehp/Makefile.inc1 Sun Dec 30 21:47:11 2012 (r244872) @@ -511,6 +511,8 @@ build32: .endfor .for _dir in lib/ncurses/ncurses lib/ncurses/ncursesw lib/libmagic cd ${.CURDIR}/${_dir}; \ + WORLDTMP=${WORLDTMP} \ + MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}" \ MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} SSP_CFLAGS= DESTDIR= \ DIRPRFX=${_dir}/ -DNO_LINT -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF \ -DEARLY_BUILD build-tools @@ -609,7 +611,7 @@ installcheck_DESTDIR: # # Check for missing UIDs/GIDs. # -CHECK_UIDS= +CHECK_UIDS= auditdistd CHECK_GIDS= audit .if ${MK_SENDMAIL} != "no" CHECK_UIDS+= smmsp @@ -1138,7 +1140,7 @@ _aicasm= sys/modules/aic7xxx/aicasm _share= share/syscons/scrnmaps .endif -.if ${MK_GCC} != "no" && ${MK_CLANG_IS_CC} == "no" +.if ${MK_GCC} != "no" _gcc_tools= gnu/usr.bin/cc/cc_tools .endif @@ -1200,7 +1202,7 @@ _clang= usr.bin/clang _clang_libs= lib/clang .endif -.if ${MK_GCC} != "no" && ${MK_CLANG_IS_CC} == "no" +.if ${MK_GCC} != "no" && (${MK_CLANG_IS_CC} == "no" || ${TARGET} == "pc98") _cc= gnu/usr.bin/cc .endif @@ -1285,6 +1287,7 @@ _prebuild_libs= ${_kerberos5_lib_libasn1 ${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \ ${_kerberos5_lib_libroken} \ ${_kerberos5_lib_libwind} \ + ${_lib_atf_libatf_c} \ lib/libbz2 ${_libcom_err} lib/libcrypt \ lib/libexpat \ ${_lib_libgssapi} ${_lib_libipx} \ @@ -1297,6 +1300,10 @@ _prebuild_libs= ${_kerberos5_lib_libasn1 ${_secure_lib_libcrypto} ${_secure_lib_libssh} \ ${_secure_lib_libssl} +.if ${MK_ATF} != "no" +_lib_atf_libatf_c= lib/atf/libatf-c +.endif + .if ${MK_LIBTHR} != "no" _lib_libthr= lib/libthr .endif Modified: projects/pciehp/ObsoleteFiles.inc ============================================================================== --- projects/pciehp/ObsoleteFiles.inc Sun Dec 30 21:10:48 2012 (r244871) +++ projects/pciehp/ObsoleteFiles.inc Sun Dec 30 21:47:11 2012 (r244872) @@ -38,8 +38,29 @@ # xargs -n1 | sort | uniq -d; # done +# 20121230: libdisk removed +OLD_FILES+=usr/share/man/man3/libdisk.3.gz usr/include/libdisk.h +OLD_FILES+=usr/lib/libdisk.a usr/lib32/libdisk.a +# 20121230: remove wrongly created directories for auditdistd +OLD_DIRS+=var/dist +OLD_DIRS+=var/remote +# 20121114: zpool-features manual page moved from section 5 to 7 +OLD_FILES+=usr/share/man/man5/zpool-features.5.gz +# 20121022: remove harp, hfa and idt man page +OLD_FILES+=share/man/man4/harp.4 +OLD_FILES+=share/man/man4/hfa.4 +OLD_FILES+=share/man/man4/idt.4 +# 20121022: VFS_LOCK_GIANT elimination +OLD_FILES+=usr/share/man/man9/VFS_LOCK_GIANT.9.gz +OLD_FILES+=usr/share/man/man9/VFS_UNLOCK_GIANT.9.gz # 20121004: remove incomplete unwind.h OLD_FILES+=usr/include/clang/3.2/unwind.h +# 20120910: NetBSD compat shims removed +OLD_FILES+=usr/include/cam/scsi/scsi_low_pisa.h +OLD_FILES+=usr/include/sys/device_port.h +# 20120909: doc and www supfiles removed +OLD_FILES+=usr/share/examples/cvsup/doc-supfile +OLD_FILES+=usr/share/examples/cvsup/www-supfile # 20120908: pf cleanup OLD_FILES+=usr/include/net/if_pflow.h # 20120816: new clang import which bumps version from 3.1 to 3.2 @@ -88,13 +109,19 @@ OLD_FILES+=usr/include/openssl/ui_locl.h OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_set_id_callback.3.gz # 20120621: remove old man page OLD_FILES+=usr/share/man/man8/vnconfig.8.gz +# 20120619: TOE support updated +OLD_FILES+=usr/include/netinet/toedev.h # 20120613: auth.conf removed OLD_FILES+=etc/auth.conf OLD_FILES+=usr/share/examples/etc/auth.conf OLD_FILES+=usr/share/man/man3/auth.3.gz +OLD_FILES+=usr/share/man/man3/auth_getval.3.gz OLD_FILES+=usr/share/man/man5/auth.conf.5.gz # 20120530: kde pam lives now in ports OLD_FILES+=etc/pam.d/kde +# 20120521: byacc import +OLD_FILES+=usr/bin/yyfix +OLD_FILES+=usr/share/man/man1/yyfix.1.gz # 20120505: new clang import installed a redundant internal header OLD_FILES+=usr/include/clang/3.1/stdalign.h # 20120428: MD2 removed from libmd Modified: projects/pciehp/UPDATING ============================================================================== --- projects/pciehp/UPDATING Sun Dec 30 21:10:48 2012 (r244871) +++ projects/pciehp/UPDATING Sun Dec 30 21:47:11 2012 (r244872) @@ -4,7 +4,9 @@ This file is maintained and copyrighted See end of file for further details. For commonly done items, please see the COMMON ITEMS: section later in the file. These instructions assume that you basically know what you are doing. If not, then please consult the FreeBSD -handbook. +handbook: + + http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html Items affecting the ports and packages system can be found in /usr/ports/UPDATING. Please read that file before running portupgrade. @@ -24,6 +26,70 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20121223: + After switching to Clang as the default compiler some users of ZFS + on i386 systems started to experience stack overflow kernel panics. + Please consider using 'options KSTACK_PAGES=4' in such configurations. + +20121222: + GEOM_LABEL now mangles label names read from file system metadata. + Mangling affect labels containing spaces, non-printable characters, + '%' or '"'. Device names in /etc/fstab and other places may need to + be updated. + +20121217: + By default, only the 10 most recent kernel dumps will be saved. To + restore the previous behaviour (no limit on the number of kernel dumps + stored in the dump directory) add the following line to /etc/rc.conf: + + savecore_flags="" + +20121201: + With the addition of auditdistd(8), a new auditdistd user is now + depended on during installworld. "mergemaster -p" can be used to add + the user prior to installworld, as documented in the handbook. + +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 + and that clang will be installed as /usr/bin/cc, /usr/bin/c++, + and /usr/bin/cpp. To disable this behavior and revert to building + with gcc, compile with WITHOUT_CLANG_IS_CC. + +20121102: + The IPFIREWALL_FORWARD kernel option has been removed. Its + functionality now turned on by default. + +20121023: + The ZERO_COPY_SOCKET kernel option has been removed and + split into SOCKET_SEND_COW and SOCKET_RECV_PFLIP. + NB: SOCKET_SEND_COW uses the VM page based copy-on-write + mechanism which is not safe and may result in kernel crashes. + NB: The SOCKET_RECV_PFLIP mechanism is useless as no current + driver supports disposeable external page sized mbuf storage. + Proper replacements for both zero-copy mechanisms are under + consideration and will eventually lead to complete removal + of the two kernel options. + +20121023: + The IPv4 network stack has been converted to network byte + order. The following modules need to be recompiled together + with kernel: carp(4), divert(4), gif(4), siftr(4), gre(4), + pf(4), ipfw(4), ng_ipfw(4), stf(4). + +20121022: + Support for non-MPSAFE filesystems was removed from VFS. The + VFS_VERSION was bumped, all filesystem modules shall be + recompiled. + 20121018: All the non-MPSAFE filesystems have been disconnected from the build. The full list includes: codafs, hpfs, ntfs, nwfs, @@ -1568,7 +1634,7 @@ COMMON ITEMS: - To upgrade in-place from 8.x-stable to current + To upgrade in-place from stable to current ---------------------------------------------- make buildworld [9] Modified: projects/pciehp/bin/date/netdate.c ============================================================================== --- projects/pciehp/bin/date/netdate.c Sun Dec 30 21:10:48 2012 (r244871) +++ projects/pciehp/bin/date/netdate.c Sun Dec 30 21:47:11 2012 (r244872) @@ -85,7 +85,7 @@ netsettime(time_t tval) dest.sin_addr.s_addr = htonl((u_long)INADDR_ANY); s = socket(AF_INET, SOCK_DGRAM, 0); if (s < 0) { - if (errno != EPROTONOSUPPORT) + if (errno != EAFNOSUPPORT) warn("timed"); return (retval = 2); } Modified: projects/pciehp/bin/df/df.1 ============================================================================== --- projects/pciehp/bin/df/df.1 Sun Dec 30 21:10:48 2012 (r244871) +++ projects/pciehp/bin/df/df.1 Sun Dec 30 21:47:11 2012 (r244872) @@ -29,7 +29,7 @@ .\" @(#)df.1 8.3 (Berkeley) 5/8/95 .\" $FreeBSD$ .\" -.Dd March 3, 2012 +.Dd November 16, 2012 .Dt DF 1 .Os .Sh NAME @@ -50,7 +50,8 @@ displays statistics about the amount of or on the file system of which .Ar file is a part. -Values are displayed in 512-byte per block counts. +By default block counts are displayed with an assumed block size of +512 bytes. If neither a file or a file system operand is specified, statistics for all mounted file systems are displayed (subject to the @@ -65,48 +66,54 @@ Show all mount points, including those t flag. This is implied for file systems specified on the command line. .It Fl b -Use 512-byte blocks rather than the default. -Note that -this overrides the +Explicitly use 512 byte blocks, overriding any .Ev BLOCKSIZE specification from the environment. +This is the same as the +.Fl P +option. +The +.Fl k +option overrides this option. .It Fl c Display a grand total. .It Fl g -Use 1073741824-byte (1-Gbyte) blocks rather than the default. -Note that -this overrides the +Use 1073741824 byte (1 Gibibyte) blocks rather than the default. +This overrides any .Ev BLOCKSIZE specification from the environment. .It Fl H .Dq Human-readable output. -Use unit suffixes: Byte, Kilobyte, Megabyte, -Gigabyte, Terabyte and Petabyte in order to reduce the number of -digits to four or fewer using base 10 for sizes. +Use unit suffixes: Byte, Kibibyte, Mebibyte, Gibibyte, Tebibyte and +Pebibyte (based on powers of 1024) in order to reduce the number of +digits to four or fewer. .It Fl h .Dq Human-readable output. Use unit suffixes: Byte, Kilobyte, Megabyte, -Gigabyte, Terabyte and Petabyte in order to reduce the number of -digits to four or fewer using base 2 for sizes. -Inodes statistics, if enabled with -.Fl i , -are always printed in base 10. +Gigabyte, Terabyte and Petabyte (based on powers of 1000) in order to +reduce the number of +digits to four or fewer. .It Fl i -Include statistics on the number of free inodes. +Include statistics on the number of free and used inodes. +In conjunction with the +.Fl h +or +.Fl H +options, the number of inodes is scaled by powers of 1000. .It Fl k -Use 1024-byte (1-Kbyte) blocks rather than the default. -Note that -this overrides the +Use 1024 byte (1 Kibibyte) blocks rather than the default. +This overrides the +.Fl P +option and any .Ev BLOCKSIZE specification from the environment. .It Fl l Only display information about locally-mounted file systems. .It Fl m -Use 1048576-byte (1-Mbyte) blocks rather than the default. -Note that -this overrides the +Use 1048576 byte (1 Mebibyte) blocks rather than the default. +This overrides any .Ev BLOCKSIZE specification from the environment. .It Fl n @@ -119,10 +126,15 @@ When this option is specified, will not request new statistics from the file systems, but will respond with the possibly stale statistics that were previously obtained. .It Fl P -Use POSIX compliant output of 512-byte blocks rather than the default. -Note that this overrides the +Explicitly use 512 byte blocks, overriding any .Ev BLOCKSIZE specification from the environment. +This is the same as the +.Fl b +option. +The +.Fl k +option overrides this option. .It Fl t Only print out statistics for file systems of the specified types. More than one type may be specified in a comma separated list. @@ -148,26 +160,53 @@ command can be used to find out the type that are available on the system. .It Fl T Include file system type. +.It Fl , +(Comma) Print sizes grouped and separated by thousands using the +non-monetary separator returned by +.Xr localeconv 3 , +typically a comma or period. +If no locale is set, or the locale does not have a non-monetary separator, this +option has no effect. .El .Sh ENVIRONMENT .Bl -tag -width BLOCKSIZE .It Ev BLOCKSIZE -If the environment variable -.Ev BLOCKSIZE -is set, the block counts will be displayed in units of that size block. +Specifies the units in which to report block counts. +This uses +.Xr getbsize 3 , +which allows units of bytes or numbers scaled with the letters +.Em k +(for multiples of 1024 bytes), +.Em m +(for multiples of 1048576 bytes) or +.Em g +(for gibibytes). +The allowed range is 512 bytes to 1 GB. +If the value is outside, it will be set to the appropriate limit. .El .Sh SEE ALSO .Xr lsvfs 1 , -.Xr pstat 1 , .Xr quota 1 , -.Xr swapinfo 1 , .Xr fstatfs 2 , .Xr getfsstat 2 , .Xr statfs 2 , +.Xr getbsize 3 , .Xr getmntinfo 3 , +.Xr localeconv 3 , .Xr fstab 5 , .Xr mount 8 , -.Xr quot 8 +.Xr quot 8 . +.Sh STANDARDS +With the exception of most options, +the +.Nm +utility conforms to +.St -p1003.1-2004 , +which defines only the +.Fl k , P +and +.Fl t +options. .Sh HISTORY A .Nm @@ -180,3 +219,13 @@ flag is ignored if a file or file system Also, if a mount point is not accessible by the user, it is possible that the file system information could be stale. +.Pp +The +.Fl b +and +.Fl P +options are identical. +The former comes from the BSD tradition, and the latter is required +for +.St -p1003.1-2004 +conformity. Modified: projects/pciehp/bin/df/df.c ============================================================================== --- projects/pciehp/bin/df/df.c Sun Dec 30 21:10:48 2012 (r244871) +++ projects/pciehp/bin/df/df.c Sun Dec 30 21:47:11 2012 (r244872) @@ -53,6 +53,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include @@ -95,6 +96,7 @@ imax(int a, int b) } static int aflag = 0, cflag, hflag, iflag, kflag, lflag = 0, nflag, Tflag; +static int thousands; static struct ufs_args mdev; int @@ -111,12 +113,12 @@ main(int argc, char *argv[]) int ch, rv; fstype = "ufs"; - + (void)setlocale(LC_ALL, ""); memset(&totalbuf, 0, sizeof(totalbuf)); totalbuf.f_bsize = DEV_BSIZE; strlcpy(totalbuf.f_mntfromname, "total", MNAMELEN); vfslist = NULL; - while ((ch = getopt(argc, argv, "abcgHhiklmnPt:T")) != -1) + while ((ch = getopt(argc, argv, "abcgHhiklmnPt:T,")) != -1) switch (ch) { case 'a': aflag = 1; @@ -180,6 +182,9 @@ main(int argc, char *argv[]) case 'T': Tflag = 1; break; + case ',': + thousands = 1; + break; case '?': default: usage(); @@ -388,16 +393,11 @@ prthumanvalinode(int64_t bytes) /* * Convert statfs returned file system size into BLOCKSIZE units. - * Attempts to avoid overflow for large file systems. */ static intmax_t fsbtoblk(int64_t num, uint64_t fsbs, u_long bs) { - - if (fsbs != 0 && fsbs < bs) - return (num / (intmax_t)(bs / fsbs)); - else - return (num * (intmax_t)(fsbs / bs)); + return (num * (intmax_t) fsbs / (int64_t) bs); } /* @@ -410,10 +410,18 @@ prtstat(struct statfs *sfsp, struct maxw static int headerlen, timesthrough = 0; static const char *header; int64_t used, availblks, inodes; + const char *format; if (++timesthrough == 1) { mwp->mntfrom = imax(mwp->mntfrom, (int)strlen("Filesystem")); mwp->fstype = imax(mwp->fstype, (int)strlen("Type")); + if (thousands) { /* make space for commas */ + mwp->total += (mwp->total - 1) / 3; + mwp->used += (mwp->used - 1) / 3; + mwp->avail += (mwp->avail - 1) / 3; + mwp->iused += (mwp->iused - 1) / 3; + mwp->ifree += (mwp->ifree - 1) / 3; + } if (hflag) { header = " Size"; mwp->total = mwp->used = mwp->avail = @@ -428,7 +436,7 @@ prtstat(struct statfs *sfsp, struct maxw (void)printf("%-*s", mwp->mntfrom, "Filesystem"); if (Tflag) (void)printf(" %-*s", mwp->fstype, "Type"); - (void)printf(" %-*s %*s %*s Capacity", mwp->total, header, + (void)printf(" %*s %*s %*s Capacity", mwp->total, header, mwp->used, "Used", mwp->avail, "Avail"); if (iflag) { mwp->iused = imax(hflag ? 0 : mwp->iused, @@ -440,6 +448,12 @@ prtstat(struct statfs *sfsp, struct maxw } (void)printf(" Mounted on\n"); } + /* Check for 0 block size. Can this happen? */ + if (sfsp->f_bsize == 0) { + warnx ("File system %s does not have a block size, assuming 512.", + sfsp->f_mntonname); + sfsp->f_bsize = 512; + } (void)printf("%-*s", mwp->mntfrom, sfsp->f_mntfromname); if (Tflag) (void)printf(" %-*s", mwp->fstype, sfsp->f_fstypename); @@ -448,7 +462,11 @@ prtstat(struct statfs *sfsp, struct maxw if (hflag) { prthuman(sfsp, used); } else { - (void)printf(" %*jd %*jd %*jd", + if (thousands) + format = " %*j'd %*j'd %*j'd"; + else + format = " %*jd %*jd %*jd"; + (void)printf(format, mwp->total, fsbtoblk(sfsp->f_blocks, sfsp->f_bsize, blocksize), mwp->used, fsbtoblk(used, sfsp->f_bsize, blocksize), @@ -465,7 +483,11 @@ prtstat(struct statfs *sfsp, struct maxw prthumanvalinode(used); prthumanvalinode(sfsp->f_ffree); } else { - (void)printf(" %*jd %*jd", mwp->iused, (intmax_t)used, + if (thousands) + format = " %*j'd %*j'd"; + else + format = " %*jd %*jd"; + (void)printf(format, mwp->iused, (intmax_t)used, mwp->ifree, (intmax_t)sfsp->f_ffree); } (void)printf(" %4.0f%% ", inodes == 0 ? 100.0 : @@ -542,7 +564,7 @@ usage(void) { (void)fprintf(stderr, -"usage: df [-b | -g | -H | -h | -k | -m | -P] [-acilnT] [-t type] [file | filesystem ...]\n"); +"usage: df [-b | -g | -H | -h | -k | -m | -P] [-acilnT] [-t type] [-,] [file | filesystem ...]\n"); exit(EX_USAGE); } Modified: projects/pciehp/bin/ln/ln.1 ============================================================================== --- projects/pciehp/bin/ln/ln.1 Sun Dec 30 21:10:48 2012 (r244871) +++ projects/pciehp/bin/ln/ln.1 Sun Dec 30 21:47:11 2012 (r244872) @@ -32,7 +32,7 @@ .\" @(#)ln.1 8.2 (Berkeley) 12/30/93 .\" $FreeBSD$ .\" -.Dd July 17, 2009 +.Dd November 2, 2012 .Dt LN 1 .Os .Sh NAME @@ -212,6 +212,70 @@ No options may be supplied in this simpl which performs a .Xr link 2 operation using the two passed arguments. +.Sh EXAMPLES +Create a symbolic link named +.Pa /home/src +and point it to +.Pa /usr/src : +.Pp +.Dl # ln -s /usr/src /home/src +.Pp +Hard link +.Pa /usr/local/bin/fooprog +to file +.Pa /usr/local/bin/fooprog-1.0 : +.Pp +.Dl # ln /usr/local/bin/fooprog-1.0 /usr/local/bin/fooprog +.Pp +As an exercise, try the following commands: +.Bd -literal -offset indent +# ls -i /bin/[ +11553 /bin/[ +# ls -i /bin/test +11553 /bin/test +.Ed +.Pp +Note that both files have the same inode; that is, +.Pa /bin/[ +is essentially an alias for the +.Xr test 1 +command. +This hard link exists so +.Xr test 1 +may be invoked from shell scripts, for example, using the +.Li "if [ ]" +construct. +.Pp +In the next example, the second call to +.Nm +removes the original +.Pa foo +and creates a replacement pointing to +.Pa baz : +.Bd -literal -offset indent +# mkdir bar baz +# ln -s bar foo +# ln -shf baz foo +.Ed +.Pp +Without the +.Fl h +option, this would instead leave +.Pa foo +pointing to +.Pa bar +and inside +.Pa foo +create a new symlink +.Pa baz +pointing to itself. +This results from directory-walking. +.Pp +An easy rule to remember is that the argument order for +.Nm +is the same as for +.Xr cp 1 : +The first argument needs to exist, the second one is created. .Sh COMPATIBILITY The .Fl h , @@ -227,7 +291,7 @@ implementations. .Pp The .Fl F -option is +option is a .Fx extension and should not be used in portable scripts. .Sh SEE ALSO Modified: projects/pciehp/bin/ls/cmp.c ============================================================================== --- projects/pciehp/bin/ls/cmp.c Sun Dec 30 21:10:48 2012 (r244871) +++ projects/pciehp/bin/ls/cmp.c Sun Dec 30 21:47:11 2012 (r244872) @@ -78,7 +78,10 @@ modcmp(const FTSENT *a, const FTSENT *b) if (b->fts_statp->st_mtim.tv_nsec < a->fts_statp->st_mtim.tv_nsec) return (-1); - return (strcoll(a->fts_name, b->fts_name)); + if (f_samesort) + return (strcoll(b->fts_name, a->fts_name)); + else + return (strcoll(a->fts_name, b->fts_name)); } int @@ -104,7 +107,10 @@ acccmp(const FTSENT *a, const FTSENT *b) if (b->fts_statp->st_atim.tv_nsec < a->fts_statp->st_atim.tv_nsec) return (-1); - return (strcoll(a->fts_name, b->fts_name)); + if (f_samesort) + return (strcoll(b->fts_name, a->fts_name)); + else + return (strcoll(a->fts_name, b->fts_name)); } int @@ -130,7 +136,10 @@ birthcmp(const FTSENT *a, const FTSENT * if (b->fts_statp->st_birthtim.tv_nsec < a->fts_statp->st_birthtim.tv_nsec) return (-1); - return (strcoll(a->fts_name, b->fts_name)); + if (f_samesort) + return (strcoll(b->fts_name, a->fts_name)); + else + return (strcoll(a->fts_name, b->fts_name)); } int @@ -156,7 +165,10 @@ statcmp(const FTSENT *a, const FTSENT *b if (b->fts_statp->st_ctim.tv_nsec < a->fts_statp->st_ctim.tv_nsec) return (-1); - return (strcoll(a->fts_name, b->fts_name)); + if (f_samesort) + return (strcoll(b->fts_name, a->fts_name)); + else + return (strcoll(a->fts_name, b->fts_name)); } int Modified: projects/pciehp/bin/ls/extern.h ============================================================================== --- projects/pciehp/bin/ls/extern.h Sun Dec 30 21:10:48 2012 (r244871) +++ projects/pciehp/bin/ls/extern.h Sun Dec 30 21:47:11 2012 (r244872) @@ -55,12 +55,12 @@ int prn_octal(const char *); int prn_printable(const char *); #ifdef COLORLS void parsecolors(const char *cs); -void colorquit(int); +void colorquit(int); -extern char *ansi_fgcol; -extern char *ansi_bgcol; -extern char *ansi_coloff; -extern char *attrs_off; -extern char *enter_bold; +extern char *ansi_fgcol; +extern char *ansi_bgcol; +extern char *ansi_coloff; +extern char *attrs_off; +extern char *enter_bold; #endif extern int termwidth; Modified: projects/pciehp/bin/ls/ls.1 ============================================================================== --- projects/pciehp/bin/ls/ls.1 Sun Dec 30 21:10:48 2012 (r244871) +++ projects/pciehp/bin/ls/ls.1 Sun Dec 30 21:47:11 2012 (r244872) @@ -32,7 +32,7 @@ .\" @(#)ls.1 8.7 (Berkeley) 7/29/94 .\" $FreeBSD$ .\" -.Dd September 28, 2011 +.Dd November 8, 2012 .Dt LS 1 .Os .Sh NAME @@ -40,7 +40,7 @@ .Nd list directory contents .Sh SYNOPSIS .Nm -.Op Fl ABCFGHILPRSTUWZabcdfghiklmnopqrstuwx1 +.Op Fl ABCFGHILPRSTUWZabcdfghiklmnopqrstuwxy1, .Op Fl D Ar format .Op Ar .Sh DESCRIPTION @@ -130,6 +130,8 @@ This option is equivalent to defining .Ev CLICOLOR in the environment. (See below.) +This functionality can be compiled out by removing the definition of +.Ev COLORLS . .It Fl H Symbolic links on the command line are followed. This option is assumed if @@ -249,12 +251,35 @@ subsection below, except (if the long fo the directory totals are not output when the output is in a single column, even if multi-column output is requested. .It Fl t -Sort by time modified (most recently modified -first) before sorting the operands in lexicographical -order. +Sort by descending time modified (most recently modified first). If two files +have the same modification timestamp, sort their names in ascending +lexicographical order. +The +.Fl r +option reverses both of these sort orders. +.Pp +Note that these sort orders are contradictory: the time sequence is in +descending order, the lexicographical sort is in ascending order. +This behavior is mandated by +.St -p1003.2 . +This feature can cause problems listing files stored with sequential names on +FAT file systems, such as from digital cameras, where it is possible to have +more than one image with the same timestamp. +In such a case, the photos cannot be listed in the sequence in which +they were taken. +To ensure the same sort order for time and for lexicographical sorting, set the +environment variable +.Ev LS_SAMESORT +or use the +.Fl y +option. +This causes +.Nm +to reverse the lexicographal sort order when sorting files with the +same modification timestamp. .It Fl u Use time of last access, -instead of last modification +instead of time of last modification of the file for sorting .Pq Fl t or printing @@ -268,6 +293,15 @@ The same as .Fl C , except that the multi-column output is produced with entries sorted across, rather than down, the columns. +.It Fl y +When the +.Fl t +option is set, sort the alphabetical output in the same order as the time output. +This has the same effect as setting +.Ev LS_SAMESORT . +See the description of the +.Fl t +option for more details. .It Fl 1 (The numeric digit .Dq one . ) @@ -275,6 +309,15 @@ Force output to be one entry per line. This is the default when output is not to a terminal. +.It Fl , +(Comma) When the +.Fl l +option is set, print file sizes grouped and separated by thousands using the +non-monetary separator returned by +.Xr localeconv 3 , +typically a comma or period. +If no locale is set, or the locale does not have a non-monetary separator, this +option has no effect. .El .Pp The @@ -529,7 +572,7 @@ variable is defined. .It Ev CLICOLOR_FORCE Color sequences are normally disabled if the output is not directed to a terminal. -This can be overridden by setting this flag. +This can be overridden by setting this variable. The .Ev TERM variable still needs to reference a color capable terminal however @@ -655,6 +698,14 @@ Not all columns have changeable widths. The fields are, in order: inode, block count, number of links, user name, group name, flags, file size, file name. +.It Ev LS_SAMESORT +If this variable is set, the +.Fl t +option sorts the names of files with the same modification timestamp in the same +sense as the time sort. +See the description of the +.Fl t +option for more details. .It Ev TERM The .Ev CLICOLOR @@ -678,6 +729,7 @@ specification. .Xr getfacl 1 , .Xr sort 1 , .Xr xterm 1 , +.Xr localeconv 3 , .Xr strftime 3 , .Xr strmode 3 , .Xr termcap 5 , @@ -716,3 +768,9 @@ option description might be a feature th based on the fact that single-column output usually goes to something other than a terminal. It is debatable whether this is a design bug. +.Pp +.St -p1003.2 +mandates opposite sort orders for files with the same timestamp when +sorting with the +.Fl t +option. Modified: projects/pciehp/bin/ls/ls.c ============================================================================== --- projects/pciehp/bin/ls/ls.c Sun Dec 30 21:10:48 2012 (r244871) +++ projects/pciehp/bin/ls/ls.c Sun Dec 30 21:47:11 2012 (r244872) @@ -109,10 +109,11 @@ int termwidth = 80; /* default terminal int f_humanval; /* show human-readable file sizes */ int f_inode; /* print inode */ static int f_kblocks; /* print size in kilobytes */ + int f_label; /* show MAC label */ static int f_listdir; /* list actual directory, not contents */ static int f_listdot; /* list files beginning with . */ -static int f_noautodot; /* do not automatically enable -A for root */ int f_longform; /* long listing format */ +static int f_noautodot; /* do not automatically enable -A for root */ static int f_nofollow; /* don't follow symbolic link arguments */ int f_nonprint; /* show unprintables as ? */ static int f_nosort; /* don't sort output */ @@ -122,19 +123,21 @@ static int f_numericonly; /* don't conve int f_octal_escape; /* like f_octal but use C escapes if possible */ static int f_recursive; /* ls subdirectories also */ static int f_reversesort; /* reverse whatever sort is used */ - int f_sectime; /* print the real time for all files */ + int f_samesort; /* sort time and name in same direction */ + int f_sectime; /* print full time information */ static int f_singlecol; /* use single column output */ int f_size; /* list size in short listing */ +static int f_sizesort; int f_slash; /* similar to f_type, but only for dirs */ int f_sortacross; /* sort across rows, not down columns */ int f_statustime; /* use time of last mode change */ static int f_stream; /* stream the output, separate with commas */ + int f_thousands; /* show file sizes with thousands separators */ + char *f_timeformat; /* user-specified time format */ static int f_timesort; /* sort by time vice name */ - char *f_timeformat; /* user-specified time format */ -static int f_sizesort; int f_type; /* add type character for non-regular files */ static int f_whiteout; /* show whiteout entries */ - int f_label; /* show MAC label */ + #ifdef COLORLS int f_color; /* add type in color for non-regular files */ @@ -180,8 +183,10 @@ main(int argc, char *argv[]) } fts_options = FTS_PHYSICAL; - while ((ch = getopt(argc, argv, - "1ABCD:FGHILPRSTUWZabcdfghiklmnopqrstuwx")) != -1) { + if (getenv("LS_SAMESORT")) + f_samesort = 1; + while ((ch = getopt(argc, argv, + "1ABCD:FGHILPRSTUWXZabcdfghiklmnopqrstuwxy,")) != -1) { switch (ch) { /* * The -1, -C, -x and -l options all override each other so @@ -192,17 +197,9 @@ main(int argc, char *argv[]) f_longform = 0; f_stream = 0; break; - case 'B': - f_nonprint = 0; - f_octal = 1; - f_octal_escape = 0; - break; case 'C': f_sortacross = f_longform = f_singlecol = 0; break; - case 'D': - f_timeformat = optarg; - break; case 'l': f_longform = 1; f_singlecol = 0; @@ -229,16 +226,46 @@ main(int argc, char *argv[]) f_accesstime = 0; f_statustime = 0; break; + case 'a': + fts_options |= FTS_SEEDOT; + /* FALLTHROUGH */ + case 'A': + f_listdot = 1; + break; + /* The -t and -S options override each other. */ + case 'S': + f_sizesort = 1; + f_timesort = 0; + break; + case 't': + f_timesort = 1; + f_sizesort = 0; + break; + /* Other flags. Please keep alphabetic. */ + case ',': + f_thousands = 1; + break; + case 'B': + f_nonprint = 0; + f_octal = 1; + f_octal_escape = 0; + break; + case 'D': + f_timeformat = optarg; + break; case 'F': f_type = 1; f_slash = 0; break; + case 'G': + setenv("CLICOLOR", "", 1); + break; case 'H': fts_options |= FTS_COMFOLLOW; f_nofollow = 0; break; - case 'G': - setenv("CLICOLOR", "", 1); + case 'I': *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Sun Dec 30 22:00:21 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6BB6397D; Sun, 30 Dec 2012 22:00:21 +0000 (UTC) (envelope-from gavin@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 4FEBF8FC08; Sun, 30 Dec 2012 22:00:21 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBUM0Lew089175; Sun, 30 Dec 2012 22:00:21 GMT (envelope-from gavin@svn.freebsd.org) Received: (from gavin@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBUM0KWg089170; Sun, 30 Dec 2012 22:00:20 GMT (envelope-from gavin@svn.freebsd.org) Message-Id: <201212302200.qBUM0KWg089170@svn.freebsd.org> From: Gavin Atkinson Date: Sun, 30 Dec 2012 22:00:20 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244873 - in projects/pciehp/sys: conf dev/pci X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Dec 2012 22:00:21 -0000 Author: gavin Date: Sun Dec 30 22:00:19 2012 New Revision: 244873 URL: http://svnweb.freebsd.org/changeset/base/244873 Log: Commit proof-of-concept first cut at PCIe HotPlug support. This code is nowhere near ready for prime time. Almost every line of it is a hack, and almost all of it will need to be rewritten. Regardless, this is sufficient to reliably allow hot insertion and removal of an ASMedia ASM1042 xhci(4) USB 3.0 ExpressCard into a Toshiba Tecra M5 laptop. This is being committed in this very early state due to requests from other driver developers. Added: projects/pciehp/sys/dev/pci/pcie_hp.c Modified: projects/pciehp/sys/conf/files projects/pciehp/sys/dev/pci/pci.c projects/pciehp/sys/dev/pci/pci_private.h projects/pciehp/sys/dev/pci/pcivar.h Modified: projects/pciehp/sys/conf/files ============================================================================== --- projects/pciehp/sys/conf/files Sun Dec 30 21:47:11 2012 (r244872) +++ projects/pciehp/sys/conf/files Sun Dec 30 22:00:19 2012 (r244873) @@ -1810,6 +1810,7 @@ dev/pci/pci_pci.c optional pci dev/pci/pci_subr.c optional pci dev/pci/pci_user.c optional pci dev/pci/pcib_if.m standard +dev/pci/pcie_hp.c optional pci dev/pci/vga_pci.c optional pci dev/pcn/if_pcn.c optional pcn pci dev/pdq/if_fea.c optional fea eisa Modified: projects/pciehp/sys/dev/pci/pci.c ============================================================================== --- projects/pciehp/sys/dev/pci/pci.c Sun Dec 30 21:47:11 2012 (r244872) +++ projects/pciehp/sys/dev/pci/pci.c Sun Dec 30 22:00:19 2012 (r244873) @@ -3202,6 +3202,7 @@ pci_add_children(device_t dev, int domai int s, f, pcifunchigh; uint8_t hdrtype; + printf("pci_add_children\n"); KASSERT(dinfo_size >= sizeof(struct pci_devinfo), ("dinfo_size too small")); maxslots = PCIB_MAXSLOTS(pcib); @@ -3228,6 +3229,7 @@ pci_add_children(device_t dev, int domai void pci_add_child(device_t bus, struct pci_devinfo *dinfo) { + printf("pci_add_child\n"); dinfo->cfg.dev = device_add_child(bus, NULL, -1); device_set_ivars(dinfo->cfg.dev, dinfo); resource_list_init(&dinfo->resources); @@ -3279,6 +3281,9 @@ pci_attach_common(device_t dev) if (!tag_valid) #endif sc->sc_dma_tag = bus_get_dma_tag(dev); + + pci_hotplug_init(dev); + return (0); } Modified: projects/pciehp/sys/dev/pci/pci_private.h ============================================================================== --- projects/pciehp/sys/dev/pci/pci_private.h Sun Dec 30 21:47:11 2012 (r244872) +++ projects/pciehp/sys/dev/pci/pci_private.h Sun Dec 30 22:00:19 2012 (r244873) @@ -126,4 +126,6 @@ void pci_cfg_restore(device_t, struct p */ void pci_cfg_save(device_t, struct pci_devinfo *, int); +void pci_hotplug_init(device_t dev); + #endif /* _PCI_PRIVATE_H_ */ Added: projects/pciehp/sys/dev/pci/pcie_hp.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/pciehp/sys/dev/pci/pcie_hp.c Sun Dec 30 22:00:19 2012 (r244873) @@ -0,0 +1,270 @@ +/*- + * Copyright (c) 2012, Gavin Atkinson + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice unmodified, this list of conditions, and the following + * disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#include +__FBSDID("$FreeBSD$"); + +#include "opt_bus.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +#include +#include +#include +#include +#include + +#if defined(__i386__) || defined(__amd64__) || defined(__powerpc__) +#include +#endif + +#include +#include +#include +#include + +#include "pcib_if.h" +#include "pci_if.h" + + +static struct resource_spec hotplug_res_spec_msi[] = { + { SYS_RES_IRQ, 1, RF_ACTIVE }, + { -1, 0, 0 } +}; + + +static void +pci_slot_status_print(device_t pcib) +{ + struct pci_devinfo *dinfo; + int pos; + + dinfo = device_get_ivars(pcib); + pos = dinfo->cfg.pcie.pcie_location; + device_printf(pcib, "... LINK_STA=0x%b\n", + pci_read_config(pcib, pos + PCIER_LINK_STA, 2), + "\020" + "\001" + "\002" + "\003" + "\004" + "\005" + "\006" + "\007" + "\010" + "\011" + "\012" + "\013Undef" + "\014LinkTrain" + "\015SlotClkConfig" + "\016DLLLinkActive" + "\017LinkBWManStat" + "\020LinkAutonBwStat" + ); +// device_printf(pcib, "... SLOT_CAP=0x%x\n", +// pci_read_config(pcib, pos+PCIER_SLOT_CAP, 4)); + device_printf(pcib, "... SLOT_CTL=0x%b\n", + pci_read_config(pcib, pos + PCIER_SLOT_CTL, 2), + "\020" + "\001AttnButtPressEn" + "\002PowerFaultDetEn" + "\003MRLSensChgEn" + "\004PresDetChgEn" + "\005CmdCompIntEn" + "\006HotPlugIntEn" + "\007AttnIndCtl1" + "\010AttnIndCtl2" + "\011PwrIndCtl1" + "\012PwrIndCtl2" + "\013PwrCtrlrCtl" + "\014ElecMechIntCtl" + "\015DLLStatChEn" + "\016" + "\017" + "\020" + ); + device_printf(pcib, "... SLOT_STA=0x%b\n", + pci_read_config(pcib, pos + PCIER_SLOT_STA, 2), + "\020" + "\001AttnButtPress" + "\002PowerFaultDet" + "\003MRLSensChg" + "\004PresDetChg" + "\005CmdComplete" + "\006MRLSensState" + "\007PresDetState" + "\010ElecMechIntState" + "\011DLLState" + "\012" + "\013" + "\014" + "\015" + "\016" + "\017" + "\020" + ); +} + +static void +pci_hotplug_intr_task(void *arg, int npending) +{ + device_t dev = arg; + device_t pcib = device_get_parent(dev); + device_t *devlistp; + struct pci_devinfo *dinfo; + int busno, devcnt, domain, i, pos; + int linksta, slotsta; + + dinfo = device_get_ivars(pcib); + pos = dinfo->cfg.pcie.pcie_location; + +// mtx_lock(&dinfo->cfg.hp.hp_mtx); + + linksta = pci_read_config(pcib, pos + PCIER_LINK_STA, 2); + slotsta = pci_read_config(pcib, pos + PCIER_SLOT_STA, 2); + pci_slot_status_print(pcib); +/* XXXGA: HACK AHEAD */ + if (slotsta & PCIEM_SLOT_STA_DLLSC) { + if ((linksta & PCIEM_LINK_STA_DL_ACTIVE) && dinfo->cfg.hp.hp_cnt == 0) { + dinfo->cfg.hp.hp_cnt=1; + /* delay really for DLLSC */ + DELAY(100000); /* section 6.7.3.3 */ + printf("Hotplug: Attaching children\n"); + mtx_lock(&Giant); + domain = pcib_get_domain(dev); + busno = pcib_get_bus(dev); + pci_add_children(dev, domain, busno, + sizeof(struct pci_devinfo)); + (void)bus_generic_attach(dev); + mtx_unlock(&Giant); + } else if (((linksta & PCIEM_LINK_STA_DL_ACTIVE) == 0) && dinfo->cfg.hp.hp_cnt == 1) { + printf("Hotplug: Detaching children\n"); + mtx_lock(&Giant); + /* XXXGA error checking */ + (void)bus_generic_detach(dev); + device_get_children(dev, &devlistp, &devcnt); + for (i = 0; i < devcnt; i++) + device_delete_child(dev, devlistp[i]); + free(devlistp, M_TEMP); + mtx_unlock(&Giant); + dinfo->cfg.hp.hp_cnt=0; + } else + printf("Hotplug: Ignoring\n"); + } +// mtx_unlock(&dinfo->cfg.hp.hp_mtx); +} + +static int +pci_hotplug_intr(void *arg) +{ + device_t dev = arg; + device_t pcib = device_get_parent(dev); + struct pci_devinfo *dinfo; + + device_printf(dev, "Received interrupt!\n"); +// pci_slot_status_print(pcib); + dinfo = device_get_ivars(pcib); + taskqueue_enqueue_fast(taskqueue_fast, &dinfo->cfg.hp.hp_inttask); + + return (FILTER_HANDLED); +} + +void +pci_hotplug_init(device_t dev) +{ + device_t pcib = device_get_parent(dev); + struct pci_devinfo *dinfo; + int error, flags, irq, msic, pos; + + dinfo = device_get_ivars(pcib); + pos = dinfo->cfg.pcie.pcie_location; + device_printf(dev, "dinfo=%p, pos=0x%x\n", dinfo, pos); + if (pos != 0) { + device_printf(dev, "Hotplug?\n"); + flags = pci_read_config(pcib, pos + PCIER_FLAGS, 2); + device_printf(dev, "... FLAGS = 0x%x\n", flags); + if (flags & PCIEM_FLAGS_SLOT) { + mtx_init(&dinfo->cfg.hp.hp_mtx, + device_get_nameunit(dev), "pciehp", MTX_DEF); + device_printf(dev, "... is slot!\n"); +/* XXX GAV: Check for SLOT_CAP_HPC here */ + pci_slot_status_print(pcib); + irq = (flags & PCIEM_FLAGS_IRQ) >> 9; + device_printf(dev, "IRQ = %d\n", irq); + + device_printf(dev, "MSI count self %d parent %d\n", pci_msi_count(dev), pci_msi_count(pcib)); + device_printf(dev, "MSI-X count self %d parent %d\n", pci_msix_count(dev), pci_msix_count(pcib)); + + msic = pci_msi_count(pcib); + if (msic == 1) { + if (pci_alloc_msi(pcib, &msic) == 0) { + if (msic == 1) { + device_printf(dev, "Using %d MSI messages\n", + msic); + dinfo->cfg.pcie.pcie_irq_spec = hotplug_res_spec_msi; + } else { + device_printf(dev, "Error: %d MSI messages\n", + msic); + pci_release_msi(dev); + } + } + } +/* XXX GAV: Am currently ignoring "irq" */ + error = bus_alloc_resources(pcib, dinfo->cfg.pcie.pcie_irq_spec, dinfo->cfg.pcie.pcie_res_irq); + if (error) { + device_printf(dev, "couldn't allocate IRQ resources, %d\n", error); + } else { + error = bus_setup_intr(pcib, dinfo->cfg.pcie.pcie_res_irq[0], + INTR_TYPE_AV | INTR_MPSAFE, pci_hotplug_intr, NULL, dev, + &dinfo->cfg.pcie.pcie_intrhand[0]); + if (error) { + device_printf(dev, "couldn't set up IRQ resources, %d\n", error); + } + } + TASK_INIT(&dinfo->cfg.hp.hp_inttask, 0, pci_hotplug_intr_task, dev); + /* XXXGA 6.7.3.1 don't enable things the slot doesn't support */ + flags = pci_read_config(pcib, pos + PCIER_SLOT_CTL, 2); + flags |= PCIEM_SLOT_CTL_PDCE | PCIEM_SLOT_CTL_MRLSCE | PCIEM_SLOT_CTL_HPIE | PCIEM_SLOT_CTL_DLLSCE; + pci_write_config(pcib, pos + PCIER_SLOT_CTL, flags, 2); + device_printf(dev, "Enabled interrupts\n"); + pci_slot_status_print(pcib); + } + } +} + Modified: projects/pciehp/sys/dev/pci/pcivar.h ============================================================================== --- projects/pciehp/sys/dev/pci/pcivar.h Sun Dec 30 21:47:11 2012 (r244872) +++ projects/pciehp/sys/dev/pci/pcivar.h Sun Dec 30 22:00:19 2012 (r244873) @@ -30,7 +30,10 @@ #ifndef _PCIVAR_H_ #define _PCIVAR_H_ +#include +#include #include +#include /* some PCI bus constants */ #define PCI_MAXMAPS_0 6 /* max. no. of memory/port maps */ @@ -123,6 +126,8 @@ struct pcicfg_ht { uint64_t ht_msiaddr; /* MSI mapping base address */ }; +#define PCIE_MSI_MESSAGES 2 + /* Interesting values for PCI-express */ struct pcicfg_pcie { uint8_t pcie_location; /* Offset of PCI-e capability registers. */ @@ -135,6 +140,9 @@ struct pcicfg_pcie { uint16_t pcie_device_ctl2; /* Second device control register. */ uint16_t pcie_link_ctl2; /* Second link control register. */ uint16_t pcie_slot_ctl2; /* Second slot control register. */ + struct resource_spec *pcie_irq_spec; + struct resource *pcie_res_irq[PCIE_MSI_MESSAGES]; + void *pcie_intrhand[PCIE_MSI_MESSAGES]; }; struct pcicfg_pcix { @@ -142,6 +150,13 @@ struct pcicfg_pcix { uint8_t pcix_location; /* Offset of PCI-X capability registers. */ }; +/* Interesting values for PCIe Hotplug */ +struct pcicfg_hp { + struct mtx hp_mtx; + struct task hp_inttask; + int hp_cnt; +}; + /* config header information common to all header types */ typedef struct pcicfg { struct device *dev; /* device which owns this */ @@ -185,6 +200,7 @@ typedef struct pcicfg { struct pcicfg_ht ht; /* HyperTransport */ struct pcicfg_pcie pcie; /* PCI Express */ struct pcicfg_pcix pcix; /* PCI-X */ + struct pcicfg_hp hp; /* Hotplug */ } pcicfgregs; /* additional type 1 device config header information (PCI to PCI bridge) */ From owner-svn-src-projects@FreeBSD.ORG Sun Dec 30 23:06:18 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 79466790; Sun, 30 Dec 2012 23:06:18 +0000 (UTC) (envelope-from jeff@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 4ACDA8FC08; Sun, 30 Dec 2012 23:06:18 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBUN6IK1003499; Sun, 30 Dec 2012 23:06:18 GMT (envelope-from jeff@svn.freebsd.org) Received: (from jeff@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBUN6B2K003423; Sun, 30 Dec 2012 23:06:11 GMT (envelope-from jeff@svn.freebsd.org) Message-Id: <201212302306.qBUN6B2K003423@svn.freebsd.org> From: Jeff Roberson Date: Sun, 30 Dec 2012 23:06:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244874 - in projects/physbio: . bin/date bin/df bin/ln bin/ps bin/sh bin/test cddl/contrib/opensolaris/cmd/zdb cddl/contrib/opensolaris/cmd/zpool cddl/contrib/opensolaris/lib/libzfs/co... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Dec 2012 23:06:18 -0000 Author: jeff Date: Sun Dec 30 23:06:09 2012 New Revision: 244874 URL: http://svnweb.freebsd.org/changeset/base/244874 Log: - Merge up to head@r244873 Added: projects/physbio/contrib/libc-vis/ - copied from r244873, head/contrib/libc-vis/ projects/physbio/contrib/mknod/ - copied from r244873, head/contrib/mknod/ projects/physbio/contrib/mtree/ - copied from r244873, head/contrib/mtree/ projects/physbio/lib/libnetbsd/ - copied from r244873, head/lib/libnetbsd/ projects/physbio/lib/libstand/amd64/ - copied from r244873, head/lib/libstand/amd64/ projects/physbio/sys/arm/versatile/ - copied from r244873, head/sys/arm/versatile/ projects/physbio/sys/boot/ficl64/ - copied from r244873, head/sys/boot/ficl64/ projects/physbio/usr.sbin/nmtree/ - copied from r244873, head/usr.sbin/nmtree/ Deleted: projects/physbio/contrib/dialog/samples/dft-cancel projects/physbio/contrib/dialog/samples/dft-extra projects/physbio/contrib/dialog/samples/dft-help projects/physbio/contrib/dialog/samples/dft-no projects/physbio/contrib/dialog/samples/fselect0 projects/physbio/contrib/dialog/samples/with-dquotes projects/physbio/contrib/dialog/samples/with-squotes projects/physbio/include/vis.h projects/physbio/lib/libc/gen/unvis.3 projects/physbio/lib/libc/gen/unvis.c projects/physbio/lib/libc/gen/vis.3 projects/physbio/lib/libc/gen/vis.c projects/physbio/lib/libdisk/ projects/physbio/sys/boot/userboot/libstand/amd64/ projects/physbio/sys/security/audit/audit_bsm_domain.c projects/physbio/sys/security/audit/audit_bsm_errno.c projects/physbio/sys/security/audit/audit_bsm_fcntl.c projects/physbio/sys/security/audit/audit_bsm_socket_type.c projects/physbio/sys/security/audit/audit_bsm_token.c projects/physbio/usr.sbin/sade/ Modified: projects/physbio/LOCKS projects/physbio/ObsoleteFiles.inc projects/physbio/UPDATING projects/physbio/bin/date/netdate.c projects/physbio/bin/df/df.c projects/physbio/bin/ln/ln.1 projects/physbio/bin/ps/ps.c projects/physbio/bin/sh/eval.c projects/physbio/bin/sh/jobs.c projects/physbio/bin/sh/output.c projects/physbio/bin/sh/output.h projects/physbio/bin/test/test.1 projects/physbio/cddl/contrib/opensolaris/cmd/zdb/zdb.c projects/physbio/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c projects/physbio/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_sendrecv.c projects/physbio/contrib/bind9/CHANGES projects/physbio/contrib/bind9/Makefile.in projects/physbio/contrib/bind9/README projects/physbio/contrib/bind9/acconfig.h projects/physbio/contrib/bind9/bin/Makefile.in projects/physbio/contrib/bind9/bin/check/Makefile.in projects/physbio/contrib/bind9/bin/check/check-tool.c projects/physbio/contrib/bind9/bin/confgen/Makefile.in projects/physbio/contrib/bind9/bin/confgen/unix/Makefile.in projects/physbio/contrib/bind9/bin/dig/Makefile.in projects/physbio/contrib/bind9/bin/dig/nslookup.c projects/physbio/contrib/bind9/bin/dnssec/Makefile.in projects/physbio/contrib/bind9/bin/dnssec/dnssec-dsfromkey.8 projects/physbio/contrib/bind9/bin/dnssec/dnssec-dsfromkey.c projects/physbio/contrib/bind9/bin/dnssec/dnssec-dsfromkey.docbook projects/physbio/contrib/bind9/bin/dnssec/dnssec-dsfromkey.html projects/physbio/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.8 projects/physbio/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.c projects/physbio/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.docbook projects/physbio/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.html projects/physbio/contrib/bind9/bin/dnssec/dnssec-keygen.8 projects/physbio/contrib/bind9/bin/dnssec/dnssec-keygen.c projects/physbio/contrib/bind9/bin/dnssec/dnssec-keygen.docbook projects/physbio/contrib/bind9/bin/dnssec/dnssec-keygen.html projects/physbio/contrib/bind9/bin/dnssec/dnssec-settime.c projects/physbio/contrib/bind9/bin/dnssec/dnssec-signzone.c projects/physbio/contrib/bind9/bin/named/Makefile.in projects/physbio/contrib/bind9/bin/named/builtin.c projects/physbio/contrib/bind9/bin/named/config.c projects/physbio/contrib/bind9/bin/named/controlconf.c projects/physbio/contrib/bind9/bin/named/convertxsl.pl projects/physbio/contrib/bind9/bin/named/query.c projects/physbio/contrib/bind9/bin/named/server.c projects/physbio/contrib/bind9/bin/named/statschannel.c projects/physbio/contrib/bind9/bin/named/unix/Makefile.in projects/physbio/contrib/bind9/bin/nsupdate/Makefile.in projects/physbio/contrib/bind9/bin/nsupdate/nsupdate.c projects/physbio/contrib/bind9/bin/rndc/Makefile.in projects/physbio/contrib/bind9/bin/tools/Makefile.in projects/physbio/contrib/bind9/config.h.in projects/physbio/contrib/bind9/configure.in projects/physbio/contrib/bind9/doc/Makefile.in projects/physbio/contrib/bind9/doc/arm/Bv9ARM-book.xml projects/physbio/contrib/bind9/doc/arm/Bv9ARM.ch04.html projects/physbio/contrib/bind9/doc/arm/Bv9ARM.ch06.html projects/physbio/contrib/bind9/doc/arm/Bv9ARM.ch07.html projects/physbio/contrib/bind9/doc/arm/Bv9ARM.ch08.html projects/physbio/contrib/bind9/doc/arm/Bv9ARM.ch09.html projects/physbio/contrib/bind9/doc/arm/Bv9ARM.html projects/physbio/contrib/bind9/doc/arm/Bv9ARM.pdf projects/physbio/contrib/bind9/doc/arm/Makefile.in projects/physbio/contrib/bind9/doc/arm/man.arpaname.html projects/physbio/contrib/bind9/doc/arm/man.ddns-confgen.html projects/physbio/contrib/bind9/doc/arm/man.dig.html projects/physbio/contrib/bind9/doc/arm/man.dnssec-dsfromkey.html projects/physbio/contrib/bind9/doc/arm/man.dnssec-keyfromlabel.html projects/physbio/contrib/bind9/doc/arm/man.dnssec-keygen.html projects/physbio/contrib/bind9/doc/arm/man.dnssec-revoke.html projects/physbio/contrib/bind9/doc/arm/man.dnssec-settime.html projects/physbio/contrib/bind9/doc/arm/man.dnssec-signzone.html projects/physbio/contrib/bind9/doc/arm/man.genrandom.html projects/physbio/contrib/bind9/doc/arm/man.host.html projects/physbio/contrib/bind9/doc/arm/man.isc-hmac-fixup.html projects/physbio/contrib/bind9/doc/arm/man.named-checkconf.html projects/physbio/contrib/bind9/doc/arm/man.named-checkzone.html projects/physbio/contrib/bind9/doc/arm/man.named-journalprint.html projects/physbio/contrib/bind9/doc/arm/man.named.html projects/physbio/contrib/bind9/doc/arm/man.nsec3hash.html projects/physbio/contrib/bind9/doc/arm/man.nsupdate.html projects/physbio/contrib/bind9/doc/arm/man.rndc-confgen.html projects/physbio/contrib/bind9/doc/arm/man.rndc.conf.html projects/physbio/contrib/bind9/doc/arm/man.rndc.html projects/physbio/contrib/bind9/doc/misc/Makefile.in projects/physbio/contrib/bind9/doc/misc/format-options.pl projects/physbio/contrib/bind9/doc/misc/options projects/physbio/contrib/bind9/doc/misc/sort-options.pl projects/physbio/contrib/bind9/isc-config.sh.in projects/physbio/contrib/bind9/lib/Makefile.in projects/physbio/contrib/bind9/lib/bind9/Makefile.in projects/physbio/contrib/bind9/lib/bind9/api projects/physbio/contrib/bind9/lib/bind9/check.c projects/physbio/contrib/bind9/lib/bind9/include/Makefile.in projects/physbio/contrib/bind9/lib/bind9/include/bind9/Makefile.in projects/physbio/contrib/bind9/lib/dns/Makefile.in projects/physbio/contrib/bind9/lib/dns/adb.c projects/physbio/contrib/bind9/lib/dns/api projects/physbio/contrib/bind9/lib/dns/db.c projects/physbio/contrib/bind9/lib/dns/dnssec.c projects/physbio/contrib/bind9/lib/dns/ds.c projects/physbio/contrib/bind9/lib/dns/dst_api.c projects/physbio/contrib/bind9/lib/dns/dst_internal.h projects/physbio/contrib/bind9/lib/dns/dst_openssl.h projects/physbio/contrib/bind9/lib/dns/dst_parse.c projects/physbio/contrib/bind9/lib/dns/dst_parse.h projects/physbio/contrib/bind9/lib/dns/dst_result.c projects/physbio/contrib/bind9/lib/dns/include/Makefile.in projects/physbio/contrib/bind9/lib/dns/include/dns/db.h projects/physbio/contrib/bind9/lib/dns/include/dns/dnssec.h projects/physbio/contrib/bind9/lib/dns/include/dns/ds.h projects/physbio/contrib/bind9/lib/dns/include/dns/iptable.h projects/physbio/contrib/bind9/lib/dns/include/dns/keyvalues.h projects/physbio/contrib/bind9/lib/dns/include/dns/log.h projects/physbio/contrib/bind9/lib/dns/include/dns/rdataset.h projects/physbio/contrib/bind9/lib/dns/include/dns/rpz.h projects/physbio/contrib/bind9/lib/dns/include/dns/stats.h projects/physbio/contrib/bind9/lib/dns/include/dns/view.h projects/physbio/contrib/bind9/lib/dns/include/dns/zone.h projects/physbio/contrib/bind9/lib/dns/include/dst/Makefile.in projects/physbio/contrib/bind9/lib/dns/include/dst/dst.h projects/physbio/contrib/bind9/lib/dns/include/dst/result.h projects/physbio/contrib/bind9/lib/dns/log.c projects/physbio/contrib/bind9/lib/dns/master.c projects/physbio/contrib/bind9/lib/dns/masterdump.c projects/physbio/contrib/bind9/lib/dns/openssl_link.c projects/physbio/contrib/bind9/lib/dns/openssldh_link.c projects/physbio/contrib/bind9/lib/dns/openssldsa_link.c projects/physbio/contrib/bind9/lib/dns/opensslgost_link.c projects/physbio/contrib/bind9/lib/dns/opensslrsa_link.c projects/physbio/contrib/bind9/lib/dns/rbtdb.c projects/physbio/contrib/bind9/lib/dns/rcode.c projects/physbio/contrib/bind9/lib/dns/rdata.c projects/physbio/contrib/bind9/lib/dns/rdata/generic/dlv_32769.c projects/physbio/contrib/bind9/lib/dns/rdata/generic/ds_43.c projects/physbio/contrib/bind9/lib/dns/rdataset.c projects/physbio/contrib/bind9/lib/dns/resolver.c projects/physbio/contrib/bind9/lib/dns/rpz.c projects/physbio/contrib/bind9/lib/dns/spnego_asn1.pl projects/physbio/contrib/bind9/lib/dns/validator.c projects/physbio/contrib/bind9/lib/dns/view.c projects/physbio/contrib/bind9/lib/dns/zone.c projects/physbio/contrib/bind9/lib/export/Makefile.in projects/physbio/contrib/bind9/lib/export/dns/Makefile.in projects/physbio/contrib/bind9/lib/export/dns/include/Makefile.in projects/physbio/contrib/bind9/lib/export/dns/include/dns/Makefile.in projects/physbio/contrib/bind9/lib/export/dns/include/dst/Makefile.in projects/physbio/contrib/bind9/lib/export/irs/include/irs/Makefile.in projects/physbio/contrib/bind9/lib/export/isc/Makefile.in projects/physbio/contrib/bind9/lib/export/isc/include/isc/Makefile.in projects/physbio/contrib/bind9/lib/export/isc/nls/Makefile.in projects/physbio/contrib/bind9/lib/export/isc/nothreads/Makefile.in projects/physbio/contrib/bind9/lib/export/isc/nothreads/include/isc/Makefile.in projects/physbio/contrib/bind9/lib/export/isc/pthreads/Makefile.in projects/physbio/contrib/bind9/lib/export/isc/pthreads/include/isc/Makefile.in projects/physbio/contrib/bind9/lib/export/isc/unix/Makefile.in projects/physbio/contrib/bind9/lib/export/isc/unix/include/isc/Makefile.in projects/physbio/contrib/bind9/lib/export/isccfg/include/isccfg/Makefile.in projects/physbio/contrib/bind9/lib/export/samples/Makefile-postinstall.in projects/physbio/contrib/bind9/lib/export/samples/Makefile.in projects/physbio/contrib/bind9/lib/irs/Makefile.in projects/physbio/contrib/bind9/lib/irs/include/Makefile.in projects/physbio/contrib/bind9/lib/irs/include/irs/Makefile.in projects/physbio/contrib/bind9/lib/isc/alpha/Makefile.in projects/physbio/contrib/bind9/lib/isc/alpha/include/Makefile.in projects/physbio/contrib/bind9/lib/isc/alpha/include/isc/Makefile.in projects/physbio/contrib/bind9/lib/isc/api projects/physbio/contrib/bind9/lib/isc/ia64/Makefile.in projects/physbio/contrib/bind9/lib/isc/ia64/include/Makefile.in projects/physbio/contrib/bind9/lib/isc/ia64/include/isc/Makefile.in projects/physbio/contrib/bind9/lib/isc/ia64/include/isc/atomic.h projects/physbio/contrib/bind9/lib/isc/include/Makefile.in projects/physbio/contrib/bind9/lib/isc/include/isc/file.h projects/physbio/contrib/bind9/lib/isc/include/isc/namespace.h projects/physbio/contrib/bind9/lib/isc/include/isc/task.h projects/physbio/contrib/bind9/lib/isc/mem.c projects/physbio/contrib/bind9/lib/isc/mips/Makefile.in projects/physbio/contrib/bind9/lib/isc/mips/include/Makefile.in projects/physbio/contrib/bind9/lib/isc/mips/include/isc/Makefile.in projects/physbio/contrib/bind9/lib/isc/nls/Makefile.in projects/physbio/contrib/bind9/lib/isc/noatomic/Makefile.in projects/physbio/contrib/bind9/lib/isc/noatomic/include/Makefile.in projects/physbio/contrib/bind9/lib/isc/noatomic/include/isc/Makefile.in projects/physbio/contrib/bind9/lib/isc/nothreads/Makefile.in projects/physbio/contrib/bind9/lib/isc/nothreads/include/Makefile.in projects/physbio/contrib/bind9/lib/isc/nothreads/include/isc/Makefile.in projects/physbio/contrib/bind9/lib/isc/powerpc/Makefile.in projects/physbio/contrib/bind9/lib/isc/powerpc/include/Makefile.in projects/physbio/contrib/bind9/lib/isc/powerpc/include/isc/Makefile.in projects/physbio/contrib/bind9/lib/isc/pthreads/Makefile.in projects/physbio/contrib/bind9/lib/isc/pthreads/condition.c projects/physbio/contrib/bind9/lib/isc/pthreads/include/Makefile.in projects/physbio/contrib/bind9/lib/isc/pthreads/include/isc/Makefile.in projects/physbio/contrib/bind9/lib/isc/sparc64/Makefile.in projects/physbio/contrib/bind9/lib/isc/sparc64/include/Makefile.in projects/physbio/contrib/bind9/lib/isc/sparc64/include/isc/Makefile.in projects/physbio/contrib/bind9/lib/isc/task.c projects/physbio/contrib/bind9/lib/isc/task_api.c projects/physbio/contrib/bind9/lib/isc/unix/Makefile.in projects/physbio/contrib/bind9/lib/isc/unix/file.c projects/physbio/contrib/bind9/lib/isc/unix/include/Makefile.in projects/physbio/contrib/bind9/lib/isc/unix/include/isc/Makefile.in projects/physbio/contrib/bind9/lib/isc/x86_32/Makefile.in projects/physbio/contrib/bind9/lib/isc/x86_32/include/Makefile.in projects/physbio/contrib/bind9/lib/isc/x86_32/include/isc/Makefile.in projects/physbio/contrib/bind9/lib/isc/x86_64/Makefile.in projects/physbio/contrib/bind9/lib/isc/x86_64/include/Makefile.in projects/physbio/contrib/bind9/lib/isc/x86_64/include/isc/Makefile.in projects/physbio/contrib/bind9/lib/isccc/api projects/physbio/contrib/bind9/lib/isccc/cc.c projects/physbio/contrib/bind9/lib/isccc/include/Makefile.in projects/physbio/contrib/bind9/lib/isccc/include/isccc/Makefile.in projects/physbio/contrib/bind9/lib/isccfg/api projects/physbio/contrib/bind9/lib/isccfg/include/Makefile.in projects/physbio/contrib/bind9/lib/isccfg/include/isccfg/Makefile.in projects/physbio/contrib/bind9/lib/isccfg/namedconf.c projects/physbio/contrib/bind9/lib/lwres/Makefile.in projects/physbio/contrib/bind9/lib/lwres/api projects/physbio/contrib/bind9/lib/lwres/getaddrinfo.c projects/physbio/contrib/bind9/lib/lwres/include/Makefile.in projects/physbio/contrib/bind9/lib/lwres/include/lwres/Makefile.in projects/physbio/contrib/bind9/lib/lwres/man/Makefile.in projects/physbio/contrib/bind9/make/rules.in projects/physbio/contrib/bind9/version projects/physbio/contrib/binutils/Makefile.in projects/physbio/contrib/binutils/Makefile.tpl projects/physbio/contrib/binutils/bfd/elflink.c projects/physbio/contrib/binutils/gas/config/tc-arm.c projects/physbio/contrib/binutils/libiberty/Makefile.in projects/physbio/contrib/cvs/diff/Makefile.in projects/physbio/contrib/cvs/lib/Makefile.in projects/physbio/contrib/dialog/CHANGES projects/physbio/contrib/dialog/VERSION projects/physbio/contrib/dialog/aclocal.m4 projects/physbio/contrib/dialog/arrows.c projects/physbio/contrib/dialog/buttons.c projects/physbio/contrib/dialog/calendar.c projects/physbio/contrib/dialog/checklist.c projects/physbio/contrib/dialog/columns.c projects/physbio/contrib/dialog/configure projects/physbio/contrib/dialog/configure.in projects/physbio/contrib/dialog/dialog.1 projects/physbio/contrib/dialog/dialog.3 projects/physbio/contrib/dialog/dialog.c projects/physbio/contrib/dialog/dialog.h projects/physbio/contrib/dialog/dlg_colors.h projects/physbio/contrib/dialog/dlg_keys.c projects/physbio/contrib/dialog/dlg_keys.h projects/physbio/contrib/dialog/editbox.c projects/physbio/contrib/dialog/formbox.c projects/physbio/contrib/dialog/fselect.c projects/physbio/contrib/dialog/guage.c projects/physbio/contrib/dialog/headers-sh.in projects/physbio/contrib/dialog/inputbox.c projects/physbio/contrib/dialog/inputstr.c projects/physbio/contrib/dialog/makefile.in projects/physbio/contrib/dialog/menubox.c projects/physbio/contrib/dialog/mixedform.c projects/physbio/contrib/dialog/mixedgauge.c projects/physbio/contrib/dialog/msgbox.c projects/physbio/contrib/dialog/package/debian/changelog projects/physbio/contrib/dialog/package/dialog.spec projects/physbio/contrib/dialog/pause.c projects/physbio/contrib/dialog/po/cs.po projects/physbio/contrib/dialog/po/el.po projects/physbio/contrib/dialog/po/hr.po projects/physbio/contrib/dialog/po/sr.po projects/physbio/contrib/dialog/prgbox.c projects/physbio/contrib/dialog/progressbox.c projects/physbio/contrib/dialog/rc.c projects/physbio/contrib/dialog/samples/copifuncs/admin.funcs projects/physbio/contrib/dialog/samples/copifuncs/common.funcs projects/physbio/contrib/dialog/samples/copifuncs/copi.funcs projects/physbio/contrib/dialog/samples/copifuncs/copi.ifman2 projects/physbio/contrib/dialog/samples/copifuncs/copi.ifpoll2 projects/physbio/contrib/dialog/samples/copifuncs/copi.ifreq2 projects/physbio/contrib/dialog/samples/copifuncs/copi.sendifm1 projects/physbio/contrib/dialog/samples/copifuncs/copi.wheel projects/physbio/contrib/dialog/samples/copismall projects/physbio/contrib/dialog/samples/debian.rc projects/physbio/contrib/dialog/samples/dialog.py projects/physbio/contrib/dialog/samples/form1 projects/physbio/contrib/dialog/samples/inputmenu projects/physbio/contrib/dialog/samples/inputmenu-stdout projects/physbio/contrib/dialog/samples/inputmenu1 projects/physbio/contrib/dialog/samples/inputmenu2 projects/physbio/contrib/dialog/samples/inputmenu3 projects/physbio/contrib/dialog/samples/inputmenu4 projects/physbio/contrib/dialog/samples/killall projects/physbio/contrib/dialog/samples/prgbox projects/physbio/contrib/dialog/samples/prgbox2 projects/physbio/contrib/dialog/samples/report-button projects/physbio/contrib/dialog/samples/report-edit projects/physbio/contrib/dialog/samples/report-string projects/physbio/contrib/dialog/samples/report-tempfile projects/physbio/contrib/dialog/samples/report-yesno projects/physbio/contrib/dialog/samples/setup-edit projects/physbio/contrib/dialog/samples/setup-tempfile projects/physbio/contrib/dialog/samples/setup-utf8 projects/physbio/contrib/dialog/samples/setup-vars projects/physbio/contrib/dialog/samples/slackware.rc projects/physbio/contrib/dialog/samples/sourcemage.rc projects/physbio/contrib/dialog/samples/suse.rc projects/physbio/contrib/dialog/samples/tailboxbg projects/physbio/contrib/dialog/samples/tailboxbg1 projects/physbio/contrib/dialog/samples/tailboxbg2 projects/physbio/contrib/dialog/samples/testdata-8bit projects/physbio/contrib/dialog/samples/wheel projects/physbio/contrib/dialog/samples/whiptail.rc projects/physbio/contrib/dialog/tailbox.c projects/physbio/contrib/dialog/textbox.c projects/physbio/contrib/dialog/timebox.c projects/physbio/contrib/dialog/trace.c projects/physbio/contrib/dialog/ui_getc.c projects/physbio/contrib/dialog/util.c projects/physbio/contrib/dialog/yesno.c projects/physbio/contrib/dtc/Makefile projects/physbio/contrib/gcc/Makefile.in projects/physbio/contrib/gcc/config/arm/arm.h projects/physbio/contrib/gcc/dwarf2out.c projects/physbio/contrib/gcc/longlong.h projects/physbio/contrib/gcclibs/libcpp/Makefile.in projects/physbio/contrib/gcclibs/libdecnumber/Makefile.in projects/physbio/contrib/gcclibs/libiberty/Makefile.in projects/physbio/contrib/gdb/gdb/dwarf2read.c projects/physbio/contrib/gdb/gdb/gdbtypes.c projects/physbio/contrib/gdb/gdb/gdbtypes.h projects/physbio/contrib/gdb/gdb/hpread.c projects/physbio/contrib/gdb/gdb/parse.c projects/physbio/contrib/gdb/gdb/stabsread.c projects/physbio/contrib/gdtoa/makefile projects/physbio/contrib/gperf/lib/Makefile.in projects/physbio/contrib/libstdc++/include/std/std_limits.h projects/physbio/contrib/llvm/include/llvm/MC/MCExpr.h projects/physbio/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp projects/physbio/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp projects/physbio/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h projects/physbio/contrib/llvm/lib/MC/MCExpr.cpp projects/physbio/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp projects/physbio/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp projects/physbio/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h projects/physbio/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp projects/physbio/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h projects/physbio/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp projects/physbio/contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td projects/physbio/contrib/llvm/lib/Target/Mips/MipsCodeEmitter.cpp projects/physbio/contrib/llvm/lib/Target/Mips/MipsISelLowering.cpp projects/physbio/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td projects/physbio/contrib/llvm/lib/Target/Mips/MipsJITInfo.cpp projects/physbio/contrib/llvm/lib/Target/Mips/MipsJITInfo.h projects/physbio/contrib/llvm/lib/Target/Mips/MipsMCInstLower.cpp projects/physbio/contrib/llvm/lib/Transforms/Scalar/SROA.cpp projects/physbio/contrib/llvm/tools/clang/include/clang/Sema/Scope.h projects/physbio/contrib/llvm/tools/clang/lib/Basic/Targets.cpp projects/physbio/contrib/llvm/tools/clang/lib/Basic/Version.cpp projects/physbio/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp projects/physbio/contrib/llvm/tools/clang/lib/Driver/ToolChains.h projects/physbio/contrib/llvm/tools/clang/lib/Driver/Tools.cpp projects/physbio/contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp projects/physbio/contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp projects/physbio/contrib/llvm/tools/clang/lib/Sema/IdentifierResolver.cpp projects/physbio/contrib/ntp/arlib/Makefile.in projects/physbio/contrib/ntp/libntp/Makefile.in projects/physbio/contrib/ntp/libparse/Makefile.in projects/physbio/contrib/ntp/ntpd/Makefile.in projects/physbio/contrib/openbsm/INSTALL projects/physbio/contrib/openbsm/NEWS projects/physbio/contrib/openbsm/VERSION projects/physbio/contrib/openbsm/bin/auditdistd/auditdistd.conf.5 projects/physbio/contrib/openbsm/config/config.h projects/physbio/contrib/openbsm/configure projects/physbio/contrib/openbsm/configure.ac projects/physbio/contrib/openbsm/etc/audit_event projects/physbio/contrib/openbsm/sys/bsm/audit_kevents.h projects/physbio/contrib/openbsm/sys/bsm/audit_record.h projects/physbio/contrib/opie/libmissing/Makefile.in projects/physbio/contrib/opie/libopie/Makefile.in projects/physbio/contrib/sendmail/FREEBSD-upgrade projects/physbio/contrib/sendmail/LICENSE projects/physbio/contrib/sendmail/PGPKEYS projects/physbio/contrib/sendmail/RELEASE_NOTES projects/physbio/contrib/sendmail/cf/README projects/physbio/contrib/sendmail/cf/cf/submit.cf projects/physbio/contrib/sendmail/cf/feature/ldap_routing.m4 projects/physbio/contrib/sendmail/cf/m4/proto.m4 projects/physbio/contrib/sendmail/cf/m4/version.m4 projects/physbio/contrib/sendmail/doc/op/op.me projects/physbio/contrib/sendmail/include/libmilter/mfapi.h projects/physbio/contrib/sendmail/include/sm/clock.h projects/physbio/contrib/sendmail/include/sm/tailq.h projects/physbio/contrib/sendmail/libmilter/Makefile.m4 projects/physbio/contrib/sendmail/libmilter/docs/api.html projects/physbio/contrib/sendmail/libmilter/docs/smfi_setsymlist.html projects/physbio/contrib/sendmail/libmilter/docs/smfi_settimeout.html projects/physbio/contrib/sendmail/libmilter/worker.c projects/physbio/contrib/sendmail/src/Makefile.m4 projects/physbio/contrib/sendmail/src/TRACEFLAGS projects/physbio/contrib/sendmail/src/collect.c projects/physbio/contrib/sendmail/src/conf.c projects/physbio/contrib/sendmail/src/daemon.c projects/physbio/contrib/sendmail/src/deliver.c projects/physbio/contrib/sendmail/src/headers.c projects/physbio/contrib/sendmail/src/main.c projects/physbio/contrib/sendmail/src/map.c projects/physbio/contrib/sendmail/src/milter.c projects/physbio/contrib/sendmail/src/parseaddr.c projects/physbio/contrib/sendmail/src/queue.c projects/physbio/contrib/sendmail/src/sasl.c projects/physbio/contrib/sendmail/src/savemail.c projects/physbio/contrib/sendmail/src/sendmail.h projects/physbio/contrib/sendmail/src/srvrsmtp.c projects/physbio/contrib/sendmail/src/stab.c projects/physbio/contrib/sendmail/src/util.c projects/physbio/contrib/sendmail/src/version.c projects/physbio/contrib/tcp_wrappers/Makefile projects/physbio/contrib/tcpdump/Makefile.in projects/physbio/contrib/top/top.h projects/physbio/contrib/xz/AUTHORS projects/physbio/contrib/xz/ChangeLog projects/physbio/contrib/xz/README projects/physbio/contrib/xz/THANKS projects/physbio/contrib/xz/po/de.po projects/physbio/contrib/xz/po/fr.po projects/physbio/contrib/xz/po/it.po projects/physbio/contrib/xz/po/pl.po projects/physbio/contrib/xz/src/common/sysdefs.h projects/physbio/contrib/xz/src/liblzma/api/lzma/version.h projects/physbio/contrib/xz/src/liblzma/simple/simple_coder.c projects/physbio/contrib/xz/src/liblzma/simple/simple_private.h projects/physbio/contrib/xz/src/xz/args.c projects/physbio/contrib/xz/src/xz/coder.c projects/physbio/contrib/xz/src/xz/message.c projects/physbio/contrib/xz/src/xz/xz.1 projects/physbio/crypto/heimdal/appl/ftp/common/Makefile.in projects/physbio/crypto/heimdal/appl/telnet/libtelnet/Makefile.in projects/physbio/crypto/openssl/Makefile.org projects/physbio/crypto/openssl/crypto/Makefile projects/physbio/etc/defaults/rc.conf projects/physbio/etc/devd/usb.conf projects/physbio/etc/login.conf projects/physbio/etc/mtree/BSD.var.dist projects/physbio/etc/newsyslog.conf projects/physbio/etc/periodic/daily/Makefile projects/physbio/etc/pf.os projects/physbio/etc/rc.d/auditdistd projects/physbio/etc/rc.d/savecore projects/physbio/etc/rc.d/sysctl projects/physbio/etc/regdomain.xml projects/physbio/etc/root/dot.cshrc projects/physbio/etc/sendmail/freebsd.mc projects/physbio/etc/sendmail/freebsd.submit.mc projects/physbio/games/fortune/datfiles/fortunes projects/physbio/gnu/lib/libdialog/dlg_config.h projects/physbio/gnu/lib/libgcc/Makefile projects/physbio/gnu/usr.bin/binutils/as/Makefile projects/physbio/gnu/usr.bin/cc/cc_tools/Makefile projects/physbio/include/Makefile projects/physbio/lib/Makefile projects/physbio/lib/bind/config.h projects/physbio/lib/bind/dns/Makefile projects/physbio/lib/bind/isc/isc/platform.h projects/physbio/lib/clang/Makefile projects/physbio/lib/clang/include/clang/Basic/Version.inc projects/physbio/lib/libc/gen/Makefile.inc projects/physbio/lib/libc/gen/Symbol.map projects/physbio/lib/libc/gen/check_utility_compat.c projects/physbio/lib/libc/gen/fmtmsg.c projects/physbio/lib/libc/gen/getcap.c projects/physbio/lib/libc/gen/getgrent.c projects/physbio/lib/libc/gen/getnetgrent.c projects/physbio/lib/libc/gen/getttyent.c projects/physbio/lib/libc/gen/getusershell.c projects/physbio/lib/libc/gen/getutxent.c projects/physbio/lib/libc/gen/sysctlbyname.c projects/physbio/lib/libc/iconv/citrus_mmap.c projects/physbio/lib/libc/locale/collate.c projects/physbio/lib/libc/locale/setrunelocale.c projects/physbio/lib/libc/nls/Makefile.inc projects/physbio/lib/libc/nls/msgcat.c projects/physbio/lib/libc/sys/mlock.2 projects/physbio/lib/libc/sys/mlockall.2 projects/physbio/lib/libc/sys/socket.2 projects/physbio/lib/libcompiler_rt/Makefile projects/physbio/lib/libdevstat/devstat.3 projects/physbio/lib/libdevstat/devstat.c projects/physbio/lib/libdevstat/devstat.h projects/physbio/lib/libipsec/policy_parse.y projects/physbio/lib/libnetgraph/sock.c projects/physbio/lib/libproc/test/t1-bkpt/t1-bkpt.c projects/physbio/lib/libradius/Makefile projects/physbio/lib/libradius/libradius.3 projects/physbio/lib/libradius/radius.conf.5 projects/physbio/lib/libradius/radlib.c projects/physbio/lib/libradius/radlib.h projects/physbio/lib/libradius/radlib_private.h projects/physbio/lib/libradius/radlib_vs.h projects/physbio/lib/libutil/gr_util.c projects/physbio/lib/libutil/libutil.h projects/physbio/lib/libutil/pw_util.c projects/physbio/libexec/tftpd/tftp-io.c projects/physbio/release/picobsd/build/picobsd projects/physbio/release/picobsd/floppy.tree/etc/ppp/ppp.conf projects/physbio/release/picobsd/mfs_tree/etc/remote projects/physbio/sbin/comcontrol/comcontrol.8 projects/physbio/sbin/devd/devd.cc projects/physbio/sbin/devd/devd.hh projects/physbio/sbin/growfs/growfs.c projects/physbio/sbin/hastd/parse.y projects/physbio/sbin/ifconfig/af_nd6.c projects/physbio/sbin/ifconfig/ifconfig.c projects/physbio/sbin/mount_nfs/mount_nfs.8 projects/physbio/sbin/route/route.c projects/physbio/sbin/savecore/savecore.8 projects/physbio/sbin/savecore/savecore.c projects/physbio/sbin/setkey/setkey.8 projects/physbio/sbin/sysctl/sysctl.8 projects/physbio/sbin/sysctl/sysctl.c projects/physbio/share/examples/etc/make.conf projects/physbio/share/examples/ppp/ppp.conf.sample projects/physbio/share/examples/ppp/ppp.conf.span-isp projects/physbio/share/i18n/csmapper/Makefile.part projects/physbio/share/man/man4/arcmsr.4 projects/physbio/share/man/man4/carp.4 projects/physbio/share/man/man4/gdb.4 projects/physbio/share/man/man4/mouse.4 projects/physbio/share/man/man4/ng_netflow.4 projects/physbio/share/man/man4/ng_ubt.4 projects/physbio/share/man/man4/stf.4 projects/physbio/share/man/man4/wbwd.4 projects/physbio/share/man/man5/rc.conf.5 projects/physbio/share/man/man5/remote.5 projects/physbio/share/man/man7/tuning.7 projects/physbio/share/man/man9/Makefile projects/physbio/share/man/man9/domain.9 projects/physbio/share/man/man9/lock.9 projects/physbio/share/man/man9/make_dev.9 projects/physbio/share/man/man9/zone.9 projects/physbio/share/misc/Makefile projects/physbio/share/misc/committers-src.dot projects/physbio/share/misc/iso639 projects/physbio/share/mk/bsd.lib.mk projects/physbio/share/mk/bsd.libnames.mk projects/physbio/share/mk/bsd.own.mk projects/physbio/share/mk/bsd.prog.mk projects/physbio/share/mk/sys.mk projects/physbio/share/skel/dot.cshrc projects/physbio/share/syscons/keymaps/INDEX.keymaps projects/physbio/share/syscons/keymaps/Makefile projects/physbio/share/syscons/keymaps/spanish.dvorak.kbd projects/physbio/sys/amd64/amd64/fpu.c projects/physbio/sys/amd64/amd64/pmap.c projects/physbio/sys/amd64/include/fpu.h projects/physbio/sys/arm/arm/busdma_machdep-v6.c projects/physbio/sys/arm/arm/busdma_machdep.c projects/physbio/sys/arm/arm/cpufunc.c projects/physbio/sys/arm/arm/elf_trampoline.c projects/physbio/sys/arm/arm/identcpu.c projects/physbio/sys/arm/arm/locore.S projects/physbio/sys/arm/arm/pmap-v6.c projects/physbio/sys/arm/arm/pmap.c projects/physbio/sys/arm/at91/if_ate.c projects/physbio/sys/arm/at91/if_macb.c projects/physbio/sys/arm/broadcom/bcm2835/bcm2835_fb.c projects/physbio/sys/arm/broadcom/bcm2835/bcm2835_gpio.c projects/physbio/sys/arm/broadcom/bcm2835/bcm2835_systimer.c projects/physbio/sys/arm/broadcom/bcm2835/files.bcm2835 projects/physbio/sys/arm/conf/PANDABOARD projects/physbio/sys/arm/conf/RPI-B projects/physbio/sys/arm/econa/if_ece.c projects/physbio/sys/arm/include/armreg.h projects/physbio/sys/arm/include/cpuconf.h projects/physbio/sys/arm/include/cpufunc.h projects/physbio/sys/arm/include/intr.h projects/physbio/sys/arm/include/pmap.h projects/physbio/sys/arm/include/vm.h projects/physbio/sys/arm/lpc/if_lpe.c projects/physbio/sys/arm/ti/cpsw/if_cpsw.c projects/physbio/sys/arm/xscale/ixp425/if_npe.c projects/physbio/sys/boot/arm/uboot/Makefile projects/physbio/sys/boot/efi/libefi/libefi.c projects/physbio/sys/boot/ficl/Makefile projects/physbio/sys/boot/forth/beastie.4th.8 projects/physbio/sys/boot/forth/check-password.4th projects/physbio/sys/boot/forth/check-password.4th.8 projects/physbio/sys/boot/forth/frames.4th projects/physbio/sys/boot/forth/loader.4th.8 projects/physbio/sys/boot/forth/loader.conf.5 projects/physbio/sys/boot/forth/menu.4th.8 projects/physbio/sys/boot/forth/support.4th projects/physbio/sys/boot/i386/efi/exec.c projects/physbio/sys/boot/i386/efi/ldscript.amd64 projects/physbio/sys/boot/i386/efi/reloc.c projects/physbio/sys/boot/sparc64/boot1/boot1.c projects/physbio/sys/boot/userboot/libstand/Makefile projects/physbio/sys/cam/cam_periph.c projects/physbio/sys/cam/cam_xpt.c projects/physbio/sys/cam/ctl/ctl.c projects/physbio/sys/cam/ctl/ctl_frontend_cam_sim.c projects/physbio/sys/cam/ctl/scsi_ctl.c projects/physbio/sys/cam/scsi/scsi_ch.c projects/physbio/sys/cam/scsi/scsi_enc.c projects/physbio/sys/cam/scsi/scsi_enc_internal.h projects/physbio/sys/cam/scsi/scsi_enc_ses.c projects/physbio/sys/cam/scsi/scsi_pass.c projects/physbio/sys/cam/scsi/scsi_sg.c projects/physbio/sys/cddl/compat/opensolaris/kern/opensolaris_kstat.c projects/physbio/sys/cddl/compat/opensolaris/sys/kstat.h projects/physbio/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c projects/physbio/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio.h projects/physbio/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/trim_map.c projects/physbio/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c projects/physbio/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c projects/physbio/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c projects/physbio/sys/cddl/dev/dtrace/dtrace_debug.c projects/physbio/sys/compat/linux/linux_socket.c projects/physbio/sys/compat/ndis/kern_ndis.c projects/physbio/sys/conf/files projects/physbio/sys/conf/files.arm projects/physbio/sys/conf/options.arm projects/physbio/sys/dev/agp/agp_i810.c projects/physbio/sys/dev/ahci/ahci.c projects/physbio/sys/dev/aic7xxx/aicasm/aicasm_gram.y projects/physbio/sys/dev/ale/if_ale.c projects/physbio/sys/dev/arcmsr/arcmsr.c projects/physbio/sys/dev/arcmsr/arcmsr.h projects/physbio/sys/dev/ata/ata-pci.h projects/physbio/sys/dev/ata/chipsets/ata-ati.c projects/physbio/sys/dev/ath/ath_hal/ah.c projects/physbio/sys/dev/ath/ath_hal/ah.h projects/physbio/sys/dev/ath/ath_hal/ah_internal.h projects/physbio/sys/dev/ath/ath_hal/ah_regdomain.c projects/physbio/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c projects/physbio/sys/dev/ath/ath_hal/ar5416/ar5416phy.h projects/physbio/sys/dev/ath/if_ath.c projects/physbio/sys/dev/ath/if_ath_tx.c projects/physbio/sys/dev/ath/if_athvar.h projects/physbio/sys/dev/atkbdc/psm.c projects/physbio/sys/dev/cxgbe/t4_l2t.c projects/physbio/sys/dev/cxgbe/t4_main.c projects/physbio/sys/dev/fdt/fdtbus.c projects/physbio/sys/dev/isci/isci_io_request.c projects/physbio/sys/dev/ixgbe/ixgbe.c projects/physbio/sys/dev/ixgbe/ixgbe.h projects/physbio/sys/dev/mii/brgphy.c projects/physbio/sys/dev/mii/miidevs projects/physbio/sys/dev/netmap/ixgbe_netmap.h projects/physbio/sys/dev/nvme/nvme.c projects/physbio/sys/dev/nvme/nvme_ctrlr.c projects/physbio/sys/dev/nvme/nvme_private.h projects/physbio/sys/dev/nvme/nvme_test.c projects/physbio/sys/dev/pci/pci_user.c projects/physbio/sys/dev/smc/if_smc.c projects/physbio/sys/dev/sound/pci/hda/hdaa_patches.c projects/physbio/sys/dev/sound/pci/hda/hdac.h projects/physbio/sys/dev/sound/usb/uaudio.c projects/physbio/sys/dev/sym/sym_hipd.c projects/physbio/sys/dev/uart/uart_bus_fdt.c projects/physbio/sys/dev/usb/quirk/usb_quirk.c projects/physbio/sys/dev/usb/serial/u3g.c projects/physbio/sys/dev/usb/serial/usb_serial.c projects/physbio/sys/dev/usb/serial/usb_serial.h projects/physbio/sys/dev/usb/storage/umass.c projects/physbio/sys/dev/usb/storage/ustorage_fs.c projects/physbio/sys/dev/usb/usb_busdma.c projects/physbio/sys/dev/usb/usb_msctest.c projects/physbio/sys/dev/usb/usb_transfer.c projects/physbio/sys/dev/usb/usbdevs projects/physbio/sys/dev/usb/usbdi.h projects/physbio/sys/dev/usb/wlan/if_uath.c projects/physbio/sys/dev/usb/wlan/if_uathvar.h projects/physbio/sys/dev/usb/wlan/if_upgt.c projects/physbio/sys/dev/usb/wlan/if_upgtvar.h projects/physbio/sys/dev/usb/wlan/if_urtw.c projects/physbio/sys/dev/usb/wlan/if_urtwvar.h projects/physbio/sys/dev/virtio/block/virtio_blk.c projects/physbio/sys/dev/virtio/network/if_vtnet.c projects/physbio/sys/dev/virtio/scsi/virtio_scsi.c projects/physbio/sys/dev/wbwd/wbwd.c projects/physbio/sys/dev/wtap/if_wtap.c projects/physbio/sys/fs/devfs/devfs_vnops.c projects/physbio/sys/fs/ext2fs/ext2_dinode.h projects/physbio/sys/fs/ext2fs/ext2_inode_cnv.c projects/physbio/sys/fs/ext2fs/ext2_vfsops.c projects/physbio/sys/fs/ext2fs/ext2fs.h projects/physbio/sys/fs/nfs/nfs.h projects/physbio/sys/fs/nfs/nfs_commonkrpc.c projects/physbio/sys/fs/nfs/nfs_commonport.c projects/physbio/sys/fs/nfs/nfs_commonsubs.c projects/physbio/sys/fs/nfs/nfs_var.h projects/physbio/sys/fs/nfs/nfscl.h projects/physbio/sys/fs/nfs/nfsclstate.h projects/physbio/sys/fs/nfs/nfsm_subs.h projects/physbio/sys/fs/nfs/nfsport.h projects/physbio/sys/fs/nfs/nfsproto.h projects/physbio/sys/fs/nfsclient/nfs_clbio.c projects/physbio/sys/fs/nfsclient/nfs_clcomsubs.c projects/physbio/sys/fs/nfsclient/nfs_clkdtrace.c projects/physbio/sys/fs/nfsclient/nfs_clkrpc.c projects/physbio/sys/fs/nfsclient/nfs_clport.c projects/physbio/sys/fs/nfsclient/nfs_clrpcops.c projects/physbio/sys/fs/nfsclient/nfs_clstate.c projects/physbio/sys/fs/nfsclient/nfs_clvfsops.c projects/physbio/sys/fs/nfsclient/nfs_clvnops.c projects/physbio/sys/fs/nfsclient/nfsmount.h projects/physbio/sys/fs/nfsclient/nfsnode.h projects/physbio/sys/fs/nfsserver/nfs_nfsdcache.c projects/physbio/sys/fs/nfsserver/nfs_nfsdport.c projects/physbio/sys/fs/nfsserver/nfs_nfsdstate.c projects/physbio/sys/geom/geom_io.c projects/physbio/sys/geom/label/g_label.c projects/physbio/sys/kern/kern_conf.c projects/physbio/sys/kern/kern_descrip.c projects/physbio/sys/kern/kern_fork.c projects/physbio/sys/kern/kern_jail.c projects/physbio/sys/kern/kern_ktr.c projects/physbio/sys/kern/kern_lock.c projects/physbio/sys/kern/kern_mbuf.c projects/physbio/sys/kern/kern_mib.c projects/physbio/sys/kern/kern_mutex.c projects/physbio/sys/kern/kern_priv.c projects/physbio/sys/kern/kern_rmlock.c projects/physbio/sys/kern/kern_rwlock.c projects/physbio/sys/kern/kern_shutdown.c projects/physbio/sys/kern/kern_sig.c projects/physbio/sys/kern/kern_switch.c projects/physbio/sys/kern/kern_sx.c projects/physbio/sys/kern/kern_timeout.c projects/physbio/sys/kern/subr_mchain.c projects/physbio/sys/kern/subr_param.c projects/physbio/sys/kern/subr_smp.c projects/physbio/sys/kern/subr_syscall.c projects/physbio/sys/kern/subr_uio.c projects/physbio/sys/kern/subr_witness.c projects/physbio/sys/kern/sys_generic.c projects/physbio/sys/kern/uipc_domain.c projects/physbio/sys/kern/uipc_mbuf.c projects/physbio/sys/kern/uipc_mbuf2.c projects/physbio/sys/kern/uipc_sockbuf.c projects/physbio/sys/kern/uipc_socket.c projects/physbio/sys/kern/uipc_syscalls.c projects/physbio/sys/kern/uipc_usrreq.c projects/physbio/sys/kern/vfs_bio.c projects/physbio/sys/kern/vfs_export.c projects/physbio/sys/kern/vfs_mount.c projects/physbio/sys/kern/vfs_subr.c projects/physbio/sys/kern/vfs_vnops.c projects/physbio/sys/kgssapi/gss_accept_sec_context.c projects/physbio/sys/kgssapi/gss_acquire_cred.c projects/physbio/sys/kgssapi/gss_canonicalize_name.c projects/physbio/sys/kgssapi/gss_delete_sec_context.c projects/physbio/sys/kgssapi/gss_display_status.c projects/physbio/sys/kgssapi/gss_export_name.c projects/physbio/sys/kgssapi/gss_impl.c projects/physbio/sys/kgssapi/gss_import_name.c projects/physbio/sys/kgssapi/gss_init_sec_context.c projects/physbio/sys/kgssapi/gss_pname_to_uid.c projects/physbio/sys/kgssapi/gss_release_cred.c projects/physbio/sys/kgssapi/gss_release_name.c projects/physbio/sys/kgssapi/gss_set_cred_option.c projects/physbio/sys/kgssapi/gssapi_impl.h projects/physbio/sys/mips/adm5120/if_admsw.c projects/physbio/sys/mips/atheros/if_arge.c projects/physbio/sys/mips/cavium/if_octm.c projects/physbio/sys/mips/cavium/octe/ethernet-mem.c projects/physbio/sys/mips/cavium/octe/ethernet-rx.c projects/physbio/sys/mips/idt/if_kr.c projects/physbio/sys/mips/include/param.h projects/physbio/sys/mips/nlm/dev/net/xlpge.c projects/physbio/sys/mips/rmi/dev/nlge/if_nlge.c projects/physbio/sys/mips/rmi/dev/xlr/rge.c projects/physbio/sys/net/bpf.c projects/physbio/sys/net/bpf.h projects/physbio/sys/net/bpf_buffer.c projects/physbio/sys/net/bpfdesc.h projects/physbio/sys/net/bridgestp.c projects/physbio/sys/net/ieee8023ad_lacp.c projects/physbio/sys/net/if_arcsubr.c projects/physbio/sys/net/if_atmsubr.c projects/physbio/sys/net/if_bridge.c projects/physbio/sys/net/if_ef.c projects/physbio/sys/net/if_ethersubr.c projects/physbio/sys/net/if_fddisubr.c projects/physbio/sys/net/if_fwsubr.c projects/physbio/sys/net/if_gre.c projects/physbio/sys/net/if_iso88025subr.c projects/physbio/sys/net/if_llatbl.c projects/physbio/sys/net/if_spppfr.c projects/physbio/sys/net/if_spppsubr.c projects/physbio/sys/net/if_stf.c projects/physbio/sys/net/if_tap.c projects/physbio/sys/net/if_tun.c projects/physbio/sys/net/rtsock.c projects/physbio/sys/net80211/ieee80211_adhoc.c projects/physbio/sys/net80211/ieee80211_freebsd.c projects/physbio/sys/net80211/ieee80211_hostap.c projects/physbio/sys/net80211/ieee80211_hwmp.c projects/physbio/sys/net80211/ieee80211_input.c projects/physbio/sys/net80211/ieee80211_mesh.c projects/physbio/sys/net80211/ieee80211_output.c projects/physbio/sys/net80211/ieee80211_proto.c projects/physbio/sys/net80211/ieee80211_regdomain.h projects/physbio/sys/net80211/ieee80211_sta.c projects/physbio/sys/net80211/ieee80211_sta.h projects/physbio/sys/net80211/ieee80211_superg.c projects/physbio/sys/net80211/ieee80211_superg.h projects/physbio/sys/net80211/ieee80211_wds.c projects/physbio/sys/netatalk/aarp.c projects/physbio/sys/netatalk/ddp_output.c projects/physbio/sys/netgraph/atm/ccatm/ng_ccatm.c projects/physbio/sys/netgraph/atm/ng_atm.c projects/physbio/sys/netgraph/bluetooth/drivers/bt3c/ng_bt3c_pccard.c projects/physbio/sys/netgraph/bluetooth/drivers/h4/ng_h4.c projects/physbio/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c projects/physbio/sys/netgraph/bluetooth/hci/ng_hci_cmds.c projects/physbio/sys/netgraph/bluetooth/hci/ng_hci_evnt.c projects/physbio/sys/netgraph/bluetooth/hci/ng_hci_misc.c projects/physbio/sys/netgraph/bluetooth/hci/ng_hci_ulpi.c projects/physbio/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.h projects/physbio/sys/netgraph/bluetooth/l2cap/ng_l2cap_evnt.c projects/physbio/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c projects/physbio/sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c projects/physbio/sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c projects/physbio/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c projects/physbio/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c projects/physbio/sys/netgraph/bluetooth/socket/ng_btsocket_sco.c projects/physbio/sys/netgraph/netflow/netflow.c projects/physbio/sys/netgraph/netflow/netflow_v9.c projects/physbio/sys/netgraph/ng_UI.c projects/physbio/sys/netgraph/ng_atmllc.c projects/physbio/sys/netgraph/ng_bridge.c projects/physbio/sys/netgraph/ng_cisco.c projects/physbio/sys/netgraph/ng_deflate.c projects/physbio/sys/netgraph/ng_device.c projects/physbio/sys/netgraph/ng_frame_relay.c projects/physbio/sys/netgraph/ng_gif.c projects/physbio/sys/netgraph/ng_gif_demux.c projects/physbio/sys/netgraph/ng_hub.c projects/physbio/sys/netgraph/ng_iface.c projects/physbio/sys/netgraph/ng_ipfw.c projects/physbio/sys/netgraph/ng_l2tp.c projects/physbio/sys/netgraph/ng_lmi.c projects/physbio/sys/netgraph/ng_mppc.c projects/physbio/sys/netgraph/ng_one2many.c projects/physbio/sys/netgraph/ng_ppp.c projects/physbio/sys/netgraph/ng_pppoe.c projects/physbio/sys/netgraph/ng_pptpgre.c projects/physbio/sys/netgraph/ng_pred1.c projects/physbio/sys/netgraph/ng_rfc1490.c projects/physbio/sys/netgraph/ng_source.c projects/physbio/sys/netgraph/ng_tee.c projects/physbio/sys/netgraph/ng_tty.c projects/physbio/sys/netgraph/ng_vjc.c projects/physbio/sys/netgraph/ng_vlan.c projects/physbio/sys/netinet/if_ether.c projects/physbio/sys/netinet/igmp.c projects/physbio/sys/netinet/in.c projects/physbio/sys/netinet/in_gif.c projects/physbio/sys/netinet/in_pcb.c projects/physbio/sys/netinet/ip_carp.c projects/physbio/sys/netinet/ip_icmp.c projects/physbio/sys/netinet/ip_input.c projects/physbio/sys/netinet/ip_mroute.c projects/physbio/sys/netinet/ip_options.c projects/physbio/sys/netinet/ip_output.c projects/physbio/sys/netinet/libalias/alias.c projects/physbio/sys/netinet/raw_ip.c projects/physbio/sys/netinet/sctp_asconf.c projects/physbio/sys/netinet/sctp_auth.c projects/physbio/sys/netinet/sctp_indata.c projects/physbio/sys/netinet/sctp_input.c projects/physbio/sys/netinet/sctp_output.c projects/physbio/sys/netinet/sctp_output.h projects/physbio/sys/netinet/sctp_pcb.c projects/physbio/sys/netinet/sctp_timer.c projects/physbio/sys/netinet/sctp_usrreq.c projects/physbio/sys/netinet/sctputil.c projects/physbio/sys/netinet/tcp_input.c projects/physbio/sys/netinet/tcp_output.c projects/physbio/sys/netinet/tcp_reass.c projects/physbio/sys/netinet/tcp_subr.c projects/physbio/sys/netinet/tcp_syncache.c projects/physbio/sys/netinet/tcp_timewait.c projects/physbio/sys/netinet/udp_usrreq.c projects/physbio/sys/netinet6/frag6.c projects/physbio/sys/netinet6/icmp6.c projects/physbio/sys/netinet6/in6.c projects/physbio/sys/netinet6/in6_gif.c projects/physbio/sys/netinet6/in6_var.h projects/physbio/sys/netinet6/ip6_input.c projects/physbio/sys/netinet6/ip6_mroute.c projects/physbio/sys/netinet6/ip6_output.c projects/physbio/sys/netinet6/ip6_var.h projects/physbio/sys/netinet6/mld6.c projects/physbio/sys/netinet6/nd6.c projects/physbio/sys/netinet6/nd6_nbr.c projects/physbio/sys/netinet6/raw_ip6.c projects/physbio/sys/netinet6/scope6.c projects/physbio/sys/netinet6/scope6_var.h projects/physbio/sys/netinet6/udp6_usrreq.c projects/physbio/sys/netipsec/ipsec_mbuf.c projects/physbio/sys/netipsec/ipsec_output.c projects/physbio/sys/netipsec/key.c projects/physbio/sys/netipsec/keysock.c projects/physbio/sys/netipsec/xform_ipip.c projects/physbio/sys/netipx/ipx_outputfl.c projects/physbio/sys/netipx/ipx_usrreq.c projects/physbio/sys/netipx/spx_reass.c projects/physbio/sys/netipx/spx_usrreq.c projects/physbio/sys/netnatm/natm.c projects/physbio/sys/netncp/ncp_sock.c projects/physbio/sys/netpfil/ipfw/ip_dn_glue.c projects/physbio/sys/netpfil/ipfw/ip_fw2.c projects/physbio/sys/netpfil/ipfw/ip_fw_dynamic.c projects/physbio/sys/netpfil/ipfw/ip_fw_log.c projects/physbio/sys/netpfil/ipfw/ip_fw_pfil.c projects/physbio/sys/netpfil/ipfw/ip_fw_private.h projects/physbio/sys/netpfil/pf/if_pflog.c projects/physbio/sys/netpfil/pf/if_pfsync.c projects/physbio/sys/netpfil/pf/pf.c projects/physbio/sys/netpfil/pf/pf_if.c projects/physbio/sys/netpfil/pf/pf_ioctl.c projects/physbio/sys/netpfil/pf/pf_lb.c projects/physbio/sys/netpfil/pf/pf_norm.c projects/physbio/sys/netpfil/pf/pf_osfp.c projects/physbio/sys/netpfil/pf/pf_ruleset.c projects/physbio/sys/netpfil/pf/pf_table.c projects/physbio/sys/netsmb/smb_iod.c projects/physbio/sys/netsmb/smb_rq.c projects/physbio/sys/netsmb/smb_trantcp.c projects/physbio/sys/nfs/krpc_subr.c projects/physbio/sys/nfs/nfs_common.c projects/physbio/sys/nfsclient/nfs_krpc.c projects/physbio/sys/nfsclient/nfs_subs.c projects/physbio/sys/nfsclient/nfsargs.h projects/physbio/sys/nfsserver/nfs_fha.c projects/physbio/sys/nfsserver/nfs_serv.c projects/physbio/sys/nfsserver/nfs_srvkrpc.c projects/physbio/sys/nfsserver/nfs_srvsubs.c projects/physbio/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_ib.c projects/physbio/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c projects/physbio/sys/ofed/drivers/infiniband/ulp/sdp/sdp_bcopy.c projects/physbio/sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c projects/physbio/sys/ofed/drivers/infiniband/ulp/sdp/sdp_tx.c projects/physbio/sys/ofed/drivers/net/mlx4/en_tx.c projects/physbio/sys/pci/if_rl.c projects/physbio/sys/powerpc/ps3/if_glc.c projects/physbio/sys/rpc/clnt.h projects/physbio/sys/rpc/clnt_dg.c projects/physbio/sys/rpc/clnt_rc.c projects/physbio/sys/rpc/clnt_vc.c projects/physbio/sys/rpc/rpc_generic.c projects/physbio/sys/rpc/rpcm_subs.h projects/physbio/sys/rpc/rpcsec_gss/rpcsec_gss_prot.c projects/physbio/sys/rpc/svc.c projects/physbio/sys/rpc/svc.h projects/physbio/sys/rpc/svc_dg.c projects/physbio/sys/rpc/svc_vc.c projects/physbio/sys/sparc64/conf/GENERIC projects/physbio/sys/sys/buf_ring.h projects/physbio/sys/sys/file.h projects/physbio/sys/sys/fnv_hash.h projects/physbio/sys/sys/kdb.h projects/physbio/sys/sys/ktr.h projects/physbio/sys/sys/mbuf.h projects/physbio/sys/sys/mount.h projects/physbio/sys/sys/protosw.h projects/physbio/sys/sys/socketvar.h projects/physbio/sys/sys/sysctl.h projects/physbio/sys/sys/systm.h projects/physbio/sys/sys/vnode.h projects/physbio/sys/tools/vnode_if.awk projects/physbio/sys/ufs/ffs/ffs_snapshot.c projects/physbio/sys/ufs/ffs/ffs_softdep.c projects/physbio/sys/ufs/ufs/ufs_quota.c projects/physbio/sys/vm/uma.h projects/physbio/sys/vm/uma_core.c projects/physbio/sys/vm/uma_int.h projects/physbio/sys/vm/vm.h projects/physbio/sys/vm/vm_fault.c projects/physbio/sys/vm/vm_map.c projects/physbio/sys/vm/vm_meter.c projects/physbio/sys/vm/vm_mmap.c projects/physbio/sys/vm/vm_object.c projects/physbio/sys/vm/vm_object.h projects/physbio/sys/vm/vm_page.c projects/physbio/sys/vm/vm_pageout.c projects/physbio/sys/vm/vm_unix.c projects/physbio/sys/x86/include/bus.h projects/physbio/tools/build/mk/OptionalObsoleteFiles.inc projects/physbio/tools/debugscripts/dot.gdbinit projects/physbio/tools/regression/lib/libc/stdio/test-perror.c projects/physbio/tools/regression/usr.bin/printf/regress.sh projects/physbio/tools/test/ppsapi/Makefile projects/physbio/tools/test/ppsapi/README projects/physbio/tools/tools/netrate/netreceive/Makefile projects/physbio/tools/tools/netrate/netreceive/netreceive.c projects/physbio/tools/tools/netrate/netsend/netsend.c projects/physbio/tools/tools/sysbuild/sysbuild.sh projects/physbio/usr.bin/calendar/parsedata.c projects/physbio/usr.bin/clang/clang/clang.1 projects/physbio/usr.bin/dc/bcode.c projects/physbio/usr.bin/dc/bcode.h projects/physbio/usr.bin/dc/inout.c projects/physbio/usr.bin/fetch/fetch.c projects/physbio/usr.bin/grep/grep.c projects/physbio/usr.bin/grep/grep.h projects/physbio/usr.bin/grep/util.c projects/physbio/usr.bin/indent/indent_globs.h projects/physbio/usr.bin/locate/locate/locate.c projects/physbio/usr.bin/printf/printf.c projects/physbio/usr.bin/sort/sort.c projects/physbio/usr.bin/sort/sort.h projects/physbio/usr.bin/time/time.c projects/physbio/usr.bin/tip/tip/cu.1 projects/physbio/usr.sbin/Makefile projects/physbio/usr.sbin/Makefile.amd64 projects/physbio/usr.sbin/Makefile.i386 projects/physbio/usr.sbin/Makefile.sparc64 projects/physbio/usr.sbin/acpi/acpidump/acpi.c projects/physbio/usr.sbin/acpi/acpidump/acpidump.8 projects/physbio/usr.sbin/bluetooth/hcseriald/hcseriald.8 projects/physbio/usr.sbin/bluetooth/hcseriald/hcseriald.c projects/physbio/usr.sbin/bsdconfig/bsdconfig projects/physbio/usr.sbin/bsdconfig/console/console projects/physbio/usr.sbin/bsdconfig/console/font projects/physbio/usr.sbin/bsdconfig/console/keymap projects/physbio/usr.sbin/bsdconfig/console/repeat projects/physbio/usr.sbin/bsdconfig/console/saver projects/physbio/usr.sbin/bsdconfig/console/screenmap projects/physbio/usr.sbin/bsdconfig/console/ttys projects/physbio/usr.sbin/bsdconfig/diskmgmt/diskmgmt projects/physbio/usr.sbin/bsdconfig/docsinstall/docsinstall projects/physbio/usr.sbin/bsdconfig/dot/dot projects/physbio/usr.sbin/bsdconfig/examples/bsdconfigrc projects/physbio/usr.sbin/bsdconfig/mouse/disable projects/physbio/usr.sbin/bsdconfig/mouse/enable projects/physbio/usr.sbin/bsdconfig/mouse/flags projects/physbio/usr.sbin/bsdconfig/mouse/mouse projects/physbio/usr.sbin/bsdconfig/mouse/port projects/physbio/usr.sbin/bsdconfig/mouse/type projects/physbio/usr.sbin/bsdconfig/networking/defaultrouter projects/physbio/usr.sbin/bsdconfig/networking/devices projects/physbio/usr.sbin/bsdconfig/networking/hostname projects/physbio/usr.sbin/bsdconfig/networking/nameservers projects/physbio/usr.sbin/bsdconfig/networking/networking projects/physbio/usr.sbin/bsdconfig/networking/share/common.subr projects/physbio/usr.sbin/bsdconfig/networking/share/device.subr projects/physbio/usr.sbin/bsdconfig/networking/share/hostname.subr projects/physbio/usr.sbin/bsdconfig/networking/share/ipaddr.subr projects/physbio/usr.sbin/bsdconfig/networking/share/media.subr projects/physbio/usr.sbin/bsdconfig/networking/share/netmask.subr projects/physbio/usr.sbin/bsdconfig/networking/share/resolv.subr projects/physbio/usr.sbin/bsdconfig/networking/share/routing.subr projects/physbio/usr.sbin/bsdconfig/password/password projects/physbio/usr.sbin/bsdconfig/password/share/password.subr projects/physbio/usr.sbin/bsdconfig/security/kern_securelevel projects/physbio/usr.sbin/bsdconfig/security/security projects/physbio/usr.sbin/bsdconfig/share/common.subr projects/physbio/usr.sbin/bsdconfig/share/dialog.subr projects/physbio/usr.sbin/bsdconfig/share/mustberoot.subr projects/physbio/usr.sbin/bsdconfig/share/strings.subr projects/physbio/usr.sbin/bsdconfig/share/sysrc.subr projects/physbio/usr.sbin/bsdconfig/startup/misc projects/physbio/usr.sbin/bsdconfig/startup/rcadd projects/physbio/usr.sbin/bsdconfig/startup/rcconf projects/physbio/usr.sbin/bsdconfig/startup/rcdelete projects/physbio/usr.sbin/bsdconfig/startup/rcedit projects/physbio/usr.sbin/bsdconfig/startup/rcvar projects/physbio/usr.sbin/bsdconfig/startup/share/rcconf.subr projects/physbio/usr.sbin/bsdconfig/startup/share/rcedit.subr projects/physbio/usr.sbin/bsdconfig/startup/share/rcvar.subr projects/physbio/usr.sbin/bsdconfig/startup/startup projects/physbio/usr.sbin/bsdconfig/timezone/share/continents.subr projects/physbio/usr.sbin/bsdconfig/timezone/share/countries.subr projects/physbio/usr.sbin/bsdconfig/timezone/share/iso3166.subr projects/physbio/usr.sbin/bsdconfig/timezone/share/menus.subr projects/physbio/usr.sbin/bsdconfig/timezone/share/zones.subr projects/physbio/usr.sbin/bsdconfig/timezone/timezone projects/physbio/usr.sbin/bsdconfig/ttys/ttys projects/physbio/usr.sbin/bsdconfig/usermgmt/groupadd projects/physbio/usr.sbin/bsdconfig/usermgmt/groupdel projects/physbio/usr.sbin/bsdconfig/usermgmt/groupedit projects/physbio/usr.sbin/bsdconfig/usermgmt/groupinput projects/physbio/usr.sbin/bsdconfig/usermgmt/share/group_input.subr projects/physbio/usr.sbin/bsdconfig/usermgmt/share/user_input.subr projects/physbio/usr.sbin/bsdconfig/usermgmt/useradd projects/physbio/usr.sbin/bsdconfig/usermgmt/userdel projects/physbio/usr.sbin/bsdconfig/usermgmt/useredit projects/physbio/usr.sbin/bsdconfig/usermgmt/userinput projects/physbio/usr.sbin/bsdconfig/usermgmt/usermgmt projects/physbio/usr.sbin/bsdinstall/partedit/Makefile projects/physbio/usr.sbin/bsdinstall/partedit/partedit.c projects/physbio/usr.sbin/bsdinstall/scripts/mirrorselect projects/physbio/usr.sbin/gssd/Makefile projects/physbio/usr.sbin/gssd/gssd.8 projects/physbio/usr.sbin/gssd/gssd.c projects/physbio/usr.sbin/iostat/iostat.8 projects/physbio/usr.sbin/iostat/iostat.c projects/physbio/usr.sbin/mergemaster/mergemaster.sh projects/physbio/usr.sbin/mountd/exports.5 projects/physbio/usr.sbin/mountd/mountd.c projects/physbio/usr.sbin/moused/moused.8 projects/physbio/usr.sbin/mptable/mptable.c projects/physbio/usr.sbin/mtest/mtest.c projects/physbio/usr.sbin/ndiscvt/inf-parse.y projects/physbio/usr.sbin/ndp/ndp.8 projects/physbio/usr.sbin/ndp/ndp.c projects/physbio/usr.sbin/nfsd/nfsd.c projects/physbio/usr.sbin/nfsd/nfsv4.4 projects/physbio/usr.sbin/pkg/Makefile projects/physbio/usr.sbin/pkg/pkg.c projects/physbio/usr.sbin/portsnap/portsnap/portsnap.sh projects/physbio/usr.sbin/ppp/README.changes projects/physbio/usr.sbin/ppp/defs.h projects/physbio/usr.sbin/ppp/ppp.8.m4 projects/physbio/usr.sbin/pw/bitmap.c projects/physbio/usr.sbin/pw/grupd.c projects/physbio/usr.sbin/pw/pw_group.c projects/physbio/usr.sbin/pw/pw_user.c projects/physbio/usr.sbin/pw/pw_vpw.c projects/physbio/usr.sbin/pw/pwupd.c projects/physbio/usr.sbin/pw/rm_r.c projects/physbio/usr.sbin/rpcbind/rpcbind.c projects/physbio/usr.sbin/service/service.8 projects/physbio/usr.sbin/service/service.sh projects/physbio/usr.sbin/syslogd/syslogd.c projects/physbio/usr.sbin/ypserv/yp_main.c Directory Properties: projects/physbio/ (props changed) projects/physbio/MAINTAINERS (props changed) projects/physbio/cddl/contrib/opensolaris/ (props changed) projects/physbio/cddl/contrib/opensolaris/cmd/zfs/ (props changed) projects/physbio/cddl/contrib/opensolaris/lib/libzfs/ (props changed) projects/physbio/contrib/atf/ (props changed) projects/physbio/contrib/bind9/ (props changed) projects/physbio/contrib/binutils/ (props changed) projects/physbio/contrib/bmake/ (props changed) projects/physbio/contrib/byacc/ (props changed) projects/physbio/contrib/bzip2/ (props changed) projects/physbio/contrib/com_err/ (props changed) projects/physbio/contrib/compiler-rt/ (props changed) projects/physbio/contrib/dialog/ (props changed) projects/physbio/contrib/dtc/ (props changed) projects/physbio/contrib/ee/ (props changed) projects/physbio/contrib/expat/ (props changed) projects/physbio/contrib/file/ (props changed) projects/physbio/contrib/gcc/ (props changed) projects/physbio/contrib/gdb/ (props changed) projects/physbio/contrib/gdtoa/ (props changed) projects/physbio/contrib/groff/ (props changed) projects/physbio/contrib/less/ (props changed) projects/physbio/contrib/libarchive/ (props changed) projects/physbio/contrib/libarchive/cpio/ (props changed) projects/physbio/contrib/libarchive/libarchive/ (props changed) projects/physbio/contrib/libarchive/libarchive_fe/ (props changed) projects/physbio/contrib/libarchive/tar/ (props changed) projects/physbio/contrib/libc++/ (props changed) projects/physbio/contrib/libcxxrt/ (props changed) projects/physbio/contrib/libpcap/ (props changed) projects/physbio/contrib/libstdc++/ (props changed) projects/physbio/contrib/llvm/ (props changed) projects/physbio/contrib/llvm/tools/clang/ (props changed) projects/physbio/contrib/ncurses/ (props changed) projects/physbio/contrib/netcat/ (props changed) projects/physbio/contrib/ntp/ (props changed) projects/physbio/contrib/one-true-awk/ (props changed) projects/physbio/contrib/openbsm/ (props changed) projects/physbio/contrib/openpam/ (props changed) projects/physbio/contrib/openresolv/ (props changed) projects/physbio/contrib/pf/ (props changed) projects/physbio/contrib/sendmail/ (props changed) projects/physbio/contrib/tcpdump/ (props changed) projects/physbio/contrib/tcsh/ (props changed) projects/physbio/contrib/tnftp/ (props changed) projects/physbio/contrib/top/ (props changed) projects/physbio/contrib/top/install-sh (props changed) projects/physbio/contrib/tzcode/stdtime/ (props changed) projects/physbio/contrib/tzcode/zic/ (props changed) projects/physbio/contrib/tzdata/ (props changed) projects/physbio/contrib/wpa/ (props changed) projects/physbio/contrib/xz/ (props changed) projects/physbio/crypto/heimdal/ (props changed) projects/physbio/crypto/openssh/ (props changed) projects/physbio/crypto/openssl/ (props changed) projects/physbio/gnu/lib/ (props changed) projects/physbio/gnu/usr.bin/binutils/ (props changed) projects/physbio/gnu/usr.bin/cc/cc_tools/ (props changed) projects/physbio/gnu/usr.bin/gdb/ (props changed) projects/physbio/lib/libc/ (props changed) projects/physbio/lib/libc/stdtime/ (props changed) projects/physbio/lib/libutil/ (props changed) projects/physbio/lib/libz/ (props changed) projects/physbio/sbin/ (props changed) projects/physbio/sbin/dumpon/ (props changed) projects/physbio/sbin/ipfw/ (props changed) projects/physbio/share/man/man4/ (props changed) projects/physbio/share/mk/bsd.arch.inc.mk (props changed) projects/physbio/share/zoneinfo/ (props changed) projects/physbio/sys/ (props changed) projects/physbio/sys/amd64/include/xen/ (props changed) projects/physbio/sys/boot/ (props changed) projects/physbio/sys/boot/i386/efi/ (props changed) projects/physbio/sys/boot/ia64/efi/ (props changed) projects/physbio/sys/boot/ia64/ski/ (props changed) projects/physbio/sys/boot/powerpc/boot1.chrp/ (props changed) projects/physbio/sys/boot/powerpc/ofw/ (props changed) projects/physbio/sys/cddl/contrib/opensolaris/ (props changed) projects/physbio/sys/conf/ (props changed) projects/physbio/sys/contrib/dev/acpica/ (props changed) projects/physbio/sys/contrib/dev/acpica/changes.txt (props changed) projects/physbio/sys/contrib/dev/acpica/common/ (props changed) projects/physbio/sys/contrib/dev/acpica/compiler/ (props changed) projects/physbio/sys/contrib/dev/acpica/components/debugger/ (props changed) projects/physbio/sys/contrib/dev/acpica/components/disassembler/ (props changed) projects/physbio/sys/contrib/dev/acpica/components/dispatcher/ (props changed) projects/physbio/sys/contrib/dev/acpica/components/events/ (props changed) projects/physbio/sys/contrib/dev/acpica/components/executer/ (props changed) projects/physbio/sys/contrib/dev/acpica/components/hardware/ (props changed) projects/physbio/sys/contrib/dev/acpica/components/namespace/ (props changed) projects/physbio/sys/contrib/dev/acpica/components/parser/ (props changed) projects/physbio/sys/contrib/dev/acpica/components/resources/ (props changed) projects/physbio/sys/contrib/dev/acpica/components/tables/ (props changed) projects/physbio/sys/contrib/dev/acpica/components/utilities/ (props changed) projects/physbio/sys/contrib/dev/acpica/include/ (props changed) projects/physbio/sys/contrib/dev/acpica/os_specific/ (props changed) projects/physbio/sys/contrib/libfdt/ (props changed) projects/physbio/sys/contrib/octeon-sdk/ (props changed) projects/physbio/sys/contrib/x86emu/ (props changed) projects/physbio/sys/i386/conf/XENHVM (props changed) projects/physbio/sys/powerpc/wii/locore.S (props changed) projects/physbio/usr.bin/calendar/ (props changed) projects/physbio/usr.bin/csup/ (props changed) projects/physbio/usr.bin/procstat/ (props changed) projects/physbio/usr.sbin/jail/ (props changed) projects/physbio/usr.sbin/ndiscvt/ (props changed) projects/physbio/usr.sbin/rtadvctl/ (props changed) projects/physbio/usr.sbin/rtadvd/ (props changed) projects/physbio/usr.sbin/rtsold/ (props changed) projects/physbio/usr.sbin/zic/ (props changed) Modified: projects/physbio/LOCKS ============================================================================== --- projects/physbio/LOCKS Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/LOCKS Sun Dec 30 23:06:09 2012 (r244874) @@ -11,3 +11,4 @@ releng/4.* Requires Security Officer app releng/5.* Requires Security Officer approval. releng/6.* Requires Security Officer approval. releng/7.* Requires Security Officer approval. +releng/8.* Requires Security Officer approval. Modified: projects/physbio/ObsoleteFiles.inc ============================================================================== --- projects/physbio/ObsoleteFiles.inc Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/ObsoleteFiles.inc Sun Dec 30 23:06:09 2012 (r244874) @@ -38,6 +38,12 @@ # xargs -n1 | sort | uniq -d; # done +# 20121230: libdisk removed +OLD_FILES+=usr/share/man/man3/libdisk.3.gz usr/include/libdisk.h +OLD_FILES+=usr/lib/libdisk.a usr/lib32/libdisk.a +# 20121230: remove wrongly created directories for auditdistd +OLD_DIRS+=var/dist +OLD_DIRS+=var/remote # 20121114: zpool-features manual page moved from section 5 to 7 OLD_FILES+=usr/share/man/man5/zpool-features.5.gz # 20121022: remove harp, hfa and idt man page Modified: projects/physbio/UPDATING ============================================================================== --- projects/physbio/UPDATING Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/UPDATING Sun Dec 30 23:06:09 2012 (r244874) @@ -26,6 +26,24 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20121223: + After switching to Clang as the default compiler some users of ZFS + on i386 systems started to experience stack overflow kernel panics. + Please consider using 'options KSTACK_PAGES=4' in such configurations. + +20121222: + GEOM_LABEL now mangles label names read from file system metadata. + Mangling affect labels containing spaces, non-printable characters, + '%' or '"'. Device names in /etc/fstab and other places may need to + be updated. + +20121217: + By default, only the 10 most recent kernel dumps will be saved. To + restore the previous behaviour (no limit on the number of kernel dumps + stored in the dump directory) add the following line to /etc/rc.conf: + + savecore_flags="" + 20121201: With the addition of auditdistd(8), a new auditdistd user is now depended on during installworld. "mergemaster -p" can be used to add Modified: projects/physbio/bin/date/netdate.c ============================================================================== --- projects/physbio/bin/date/netdate.c Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/bin/date/netdate.c Sun Dec 30 23:06:09 2012 (r244874) @@ -85,7 +85,7 @@ netsettime(time_t tval) dest.sin_addr.s_addr = htonl((u_long)INADDR_ANY); s = socket(AF_INET, SOCK_DGRAM, 0); if (s < 0) { - if (errno != EPROTONOSUPPORT) + if (errno != EAFNOSUPPORT) warn("timed"); return (retval = 2); } Modified: projects/physbio/bin/df/df.c ============================================================================== --- projects/physbio/bin/df/df.c Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/bin/df/df.c Sun Dec 30 23:06:09 2012 (r244874) @@ -397,7 +397,7 @@ prthumanvalinode(int64_t bytes) static intmax_t fsbtoblk(int64_t num, uint64_t fsbs, u_long bs) { - return (num * (intmax_t) fsbs / bs); + return (num * (intmax_t) fsbs / (int64_t) bs); } /* Modified: projects/physbio/bin/ln/ln.1 ============================================================================== --- projects/physbio/bin/ln/ln.1 Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/bin/ln/ln.1 Sun Dec 30 23:06:09 2012 (r244874) @@ -291,7 +291,7 @@ implementations. .Pp The .Fl F -option is +option is a .Fx extension and should not be used in portable scripts. .Sh SEE ALSO Modified: projects/physbio/bin/ps/ps.c ============================================================================== --- projects/physbio/bin/ps/ps.c Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/bin/ps/ps.c Sun Dec 30 23:06:09 2012 (r244874) @@ -109,6 +109,7 @@ static int needcomm; /* -o "command" */ static int needenv; /* -e */ static int needuser; /* -o "user" */ static int optfatal; /* Fatal error parsing some list-option. */ +static int pid_max; /* kern.max_pid */ static enum sort { DEFAULT, SORTMEM, SORTCPU } sortby = DEFAULT; @@ -148,6 +149,7 @@ static int pscomp(const void *, const v static void saveuser(KINFO *); static void scanvars(void); static void sizevars(void); +static void pidmax_init(void); static void usage(void); static char dfmt[] = "pid,tt,state,time,command"; @@ -200,6 +202,8 @@ main(int argc, char *argv[]) if (argc > 1) argv[1] = kludge_oldps_options(PS_ARGS, argv[1], argv[2]); + pidmax_init(); + all = descendancy = _fmt = nselectors = optfatal = 0; prtheader = showthreads = wflag = xkeep_implied = 0; xkeep = -1; /* Neither -x nor -X. */ @@ -722,7 +726,6 @@ addelem_gid(struct listinfo *inf, const return (1); } -#define BSD_PID_MAX 99999 /* Copy of PID_MAX from sys/proc.h. */ static int addelem_pid(struct listinfo *inf, const char *elem) { @@ -740,7 +743,7 @@ addelem_pid(struct listinfo *inf, const if (*endp != '\0' || tempid < 0 || elem == endp) { warnx("Invalid %s: %s", inf->lname, elem); errno = ERANGE; - } else if (errno != 0 || tempid > BSD_PID_MAX) { + } else if (errno != 0 || tempid > pid_max) { warnx("%s too large: %s", inf->lname, elem); errno = ERANGE; } @@ -753,7 +756,6 @@ addelem_pid(struct listinfo *inf, const inf->l.pids[(inf->count)++] = tempid; return (1); } -#undef BSD_PID_MAX /*- * The user can specify a device via one of three formats: @@ -1352,6 +1354,18 @@ kludge_oldps_options(const char *optlist } static void +pidmax_init(void) +{ + size_t intsize; + + intsize = sizeof(pid_max); + if (sysctlbyname("kern.pid_max", &pid_max, &intsize, NULL, 0) < 0) { + warn("unable to read kern.pid_max"); + pid_max = 99999; + } +} + +static void usage(void) { #define SINGLE_OPTS "[-aCcde" OPT_LAZY_f "HhjlmrSTuvwXxZ]" Modified: projects/physbio/bin/sh/eval.c ============================================================================== --- projects/physbio/bin/sh/eval.c Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/bin/sh/eval.c Sun Dec 30 23:06:09 2012 (r244874) @@ -1070,6 +1070,7 @@ evalcommand(union node *cmd, int flags, } handler = &jmploc; redirect(cmd->ncmd.redirect, mode); + outclearerror(out1); /* * If there is no command word, redirection errors should * not be fatal but assignment errors should. @@ -1085,6 +1086,11 @@ evalcommand(union node *cmd, int flags, builtin_flags = flags; exitstatus = (*builtinfunc[cmdentry.u.index])(argc, argv); flushall(); + if (outiserror(out1)) { + warning("write error on stdout"); + if (exitstatus == 0 || exitstatus == 1) + exitstatus = 2; + } cmddone: if (argc > 0) bltinunsetlocale(); Modified: projects/physbio/bin/sh/jobs.c ============================================================================== --- projects/physbio/bin/sh/jobs.c Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/bin/sh/jobs.c Sun Dec 30 23:06:09 2012 (r244874) @@ -298,6 +298,7 @@ showjob(struct job *jp, int mode) { char s[64]; char statestr[64]; + const char *sigstr; struct procstat *ps; struct job *j; int col, curr, i, jobno, prev, procno; @@ -324,8 +325,9 @@ showjob(struct job *jp, int mode) i = WSTOPSIG(ps->status); else i = -1; - if (i > 0 && i < sys_nsig && sys_siglist[i]) - strcpy(statestr, sys_siglist[i]); + sigstr = strsignal(i); + if (sigstr != NULL) + strcpy(statestr, sigstr); else strcpy(statestr, "Suspended"); #endif @@ -337,10 +339,11 @@ showjob(struct job *jp, int mode) WEXITSTATUS(ps->status)); } else { i = WTERMSIG(ps->status); - if (i > 0 && i < sys_nsig && sys_siglist[i]) - strcpy(statestr, sys_siglist[i]); + sigstr = strsignal(i); + if (sigstr != NULL) + strcpy(statestr, sigstr); else - fmtstr(statestr, 64, "Signal %d", i); + strcpy(statestr, "Unknown signal"); if (WCOREDUMP(ps->status)) strcat(statestr, " (core dumped)"); } @@ -1019,6 +1022,7 @@ dowait(int mode, struct job *job) struct procstat *sp; struct job *jp; struct job *thisjob; + const char *sigstr; int done; int stopped; int sig; @@ -1129,10 +1133,11 @@ dowait(int mode, struct job *job) coredump = WCOREDUMP(sp->status); } if (sig > 0 && sig != SIGINT && sig != SIGPIPE) { - if (sig < sys_nsig && sys_siglist[sig]) - out2str(sys_siglist[sig]); + sigstr = strsignal(sig); + if (sigstr != NULL) + out2str(sigstr); else - outfmt(out2, "Signal %d", sig); + out2str("Unknown signal"); if (coredump) out2str(" (core dumped)"); out2c('\n'); Modified: projects/physbio/bin/sh/output.c ============================================================================== --- projects/physbio/bin/sh/output.c Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/bin/sh/output.c Sun Dec 30 23:06:09 2012 (r244874) @@ -239,6 +239,20 @@ freestdout(void) } +int +outiserror(struct output *file) +{ + return (file->flags & OUTPUT_ERR); +} + + +void +outclearerror(struct output *file) +{ + file->flags &= ~OUTPUT_ERR; +} + + void outfmt(struct output *file, const char *fmt, ...) { Modified: projects/physbio/bin/sh/output.h ============================================================================== --- projects/physbio/bin/sh/output.h Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/bin/sh/output.h Sun Dec 30 23:06:09 2012 (r244874) @@ -66,6 +66,8 @@ void emptyoutbuf(struct output *); void flushall(void); void flushout(struct output *); void freestdout(void); +int outiserror(struct output *); +void outclearerror(struct output *); void outfmt(struct output *, const char *, ...) __printflike(2, 3); void out1fmt(const char *, ...) __printflike(1, 2); void out2fmt_flush(const char *, ...) __printflike(1, 2); Modified: projects/physbio/bin/test/test.1 ============================================================================== --- projects/physbio/bin/test/test.1 Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/bin/test/test.1 Sun Dec 30 23:06:09 2012 (r244874) @@ -32,7 +32,7 @@ .\" @(#)test.1 8.1 (Berkeley) 5/31/93 .\" $FreeBSD$ .\" -.Dd September 10, 2010 +.Dd December 27, 2012 .Dt TEST 1 .Os .Sh NAME @@ -331,6 +331,13 @@ missing. .It >1 An error occurred. .El +.Sh COMPATIBILITY +For compatibility with some other implementations, +the +.Cm = +primary can be substituted with +.Cm == +with the same meaning. .Sh SEE ALSO .Xr builtin 1 , .Xr expr 1 , Modified: projects/physbio/cddl/contrib/opensolaris/cmd/zdb/zdb.c ============================================================================== --- projects/physbio/cddl/contrib/opensolaris/cmd/zdb/zdb.c Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/cddl/contrib/opensolaris/cmd/zdb/zdb.c Sun Dec 30 23:06:09 2012 (r244874) @@ -61,14 +61,16 @@ #undef verify #include -#define ZDB_COMPRESS_NAME(idx) ((idx) < ZIO_COMPRESS_FUNCTIONS ? \ - zio_compress_table[(idx)].ci_name : "UNKNOWN") -#define ZDB_CHECKSUM_NAME(idx) ((idx) < ZIO_CHECKSUM_FUNCTIONS ? \ - zio_checksum_table[(idx)].ci_name : "UNKNOWN") -#define ZDB_OT_NAME(idx) ((idx) < DMU_OT_NUMTYPES ? \ - dmu_ot[(idx)].ot_name : DMU_OT_IS_VALID(idx) ? \ - dmu_ot_byteswap[DMU_OT_BYTESWAP(idx)].ob_name : "UNKNOWN") -#define ZDB_OT_TYPE(idx) ((idx) < DMU_OT_NUMTYPES ? (idx) : DMU_OT_NUMTYPES) +#define ZDB_COMPRESS_NAME(idx) ((idx) < ZIO_COMPRESS_FUNCTIONS ? \ + zio_compress_table[(idx)].ci_name : "UNKNOWN") +#define ZDB_CHECKSUM_NAME(idx) ((idx) < ZIO_CHECKSUM_FUNCTIONS ? \ + zio_checksum_table[(idx)].ci_name : "UNKNOWN") +#define ZDB_OT_NAME(idx) ((idx) < DMU_OT_NUMTYPES ? \ + dmu_ot[(idx)].ot_name : DMU_OT_IS_VALID(idx) ? \ + dmu_ot_byteswap[DMU_OT_BYTESWAP(idx)].ob_name : "UNKNOWN") +#define ZDB_OT_TYPE(idx) ((idx) < DMU_OT_NUMTYPES ? (idx) : \ + (((idx) == DMU_OTN_ZAP_DATA || (idx) == DMU_OTN_ZAP_METADATA) ? \ + DMU_OT_ZAP_OTHER : DMU_OT_NUMTYPES)) #ifndef lint extern int zfs_recover; @@ -3194,7 +3196,13 @@ main(int argc, char **argv) argv[i], strerror(errno)); } } - (os != NULL) ? dump_dir(os) : dump_zpool(spa); + if (os != NULL) { + dump_dir(os); + } else if (zopt_objects > 0 && !dump_opt['m']) { + dump_dir(spa->spa_meta_objset); + } else { + dump_zpool(spa); + } } else { flagbits['b'] = ZDB_FLAG_PRINT_BLKPTR; flagbits['c'] = ZDB_FLAG_CHECKSUM; Modified: projects/physbio/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c ============================================================================== --- projects/physbio/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c Sun Dec 30 23:06:09 2012 (r244874) @@ -906,10 +906,11 @@ zpool_do_create(int argc, char **argv) /* * Check the validity of the mountpoint and direct the user to use the * '-m' mountpoint option if it looks like its in use. + * Ignore the checks if the '-f' option is given. */ - if (mountpoint == NULL || + if (!force && (mountpoint == NULL || (strcmp(mountpoint, ZFS_MOUNTPOINT_LEGACY) != 0 && - strcmp(mountpoint, ZFS_MOUNTPOINT_NONE) != 0)) { + strcmp(mountpoint, ZFS_MOUNTPOINT_NONE) != 0))) { char buf[MAXPATHLEN]; DIR *dirp; Modified: projects/physbio/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_sendrecv.c ============================================================================== --- projects/physbio/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_sendrecv.c Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_sendrecv.c Sun Dec 30 23:06:09 2012 (r244874) @@ -727,7 +727,7 @@ send_iterate_fs(zfs_handle_t *zhp, void sd->parent_fromsnap_guid = 0; VERIFY(0 == nvlist_alloc(&sd->parent_snaps, NV_UNIQUE_NAME, 0)); VERIFY(0 == nvlist_alloc(&sd->snapprops, NV_UNIQUE_NAME, 0)); - (void) zfs_iter_snapshots(zhp, B_FALSE, send_iterate_snap, sd); + (void) zfs_iter_snapshots_sorted(zhp, send_iterate_snap, sd); VERIFY(0 == nvlist_add_nvlist(nvfs, "snaps", sd->parent_snaps)); VERIFY(0 == nvlist_add_nvlist(nvfs, "snapprops", sd->snapprops)); nvlist_free(sd->parent_snaps); @@ -1945,11 +1945,12 @@ recv_incremental_replication(libzfs_hand recvflags_t *flags, nvlist_t *stream_nv, avl_tree_t *stream_avl, nvlist_t *renamed) { - nvlist_t *local_nv; + nvlist_t *local_nv, *deleted = NULL; avl_tree_t *local_avl; nvpair_t *fselem, *nextfselem; char *fromsnap; char newname[ZFS_MAXNAMELEN]; + char guidname[32]; int error; boolean_t needagain, progress, recursive; char *s1, *s2; @@ -1965,6 +1966,8 @@ recv_incremental_replication(libzfs_hand again: needagain = progress = B_FALSE; + VERIFY(0 == nvlist_alloc(&deleted, NV_UNIQUE_NAME, 0)); + if ((error = gather_nvlist(hdl, tofs, fromsnap, NULL, recursive, &local_nv, &local_avl)) != 0) return (error); @@ -2079,6 +2082,8 @@ again: needagain = B_TRUE; else progress = B_TRUE; + sprintf(guidname, "%lu", thisguid); + nvlist_add_boolean(deleted, guidname); continue; } @@ -2134,6 +2139,8 @@ again: needagain = B_TRUE; else progress = B_TRUE; + sprintf(guidname, "%lu", parent_fromsnap_guid); + nvlist_add_boolean(deleted, guidname); continue; } @@ -2156,6 +2163,24 @@ again: s2 = strrchr(stream_fsname, '/'); /* + * Check if we're going to rename based on parent guid change + * and the current parent guid was also deleted. If it was then + * rename will fail and is likely unneeded, so avoid this and + * force an early retry to determine the new + * parent_fromsnap_guid. + */ + if (stream_parent_fromsnap_guid != 0 && + parent_fromsnap_guid != 0 && + stream_parent_fromsnap_guid != parent_fromsnap_guid) { + sprintf(guidname, "%lu", parent_fromsnap_guid); + if (nvlist_exists(deleted, guidname)) { + progress = B_TRUE; + needagain = B_TRUE; + goto doagain; + } + } + + /* * Check for rename. If the exact receive path is specified, it * does not count as a rename, but we still need to check the * datasets beneath it. @@ -2209,8 +2234,10 @@ again: } } +doagain: fsavl_destroy(local_avl); nvlist_free(local_nv); + nvlist_free(deleted); if (needagain && progress) { /* do another pass to fix up temporary names */ Modified: projects/physbio/contrib/bind9/CHANGES ============================================================================== --- projects/physbio/contrib/bind9/CHANGES Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/contrib/bind9/CHANGES Sun Dec 30 23:06:09 2012 (r244874) @@ -1,15 +1,81 @@ - --- 9.8.3-P4 released --- + --- 9.8.4-P1 released --- + +3407. [security] Named could die on specific queries with dns64 enabled. + [Addressed in change #3388 for BIND 9.8.5 and 9.9.3.] + + --- 9.8.4 released --- 3383. [security] A certain combination of records in the RBT could cause named to hang while populating the additional section of a response. [RT #31090] - --- 9.8.3-P3 released --- +3373. [bug] win32: open raw files in binary mode. [RT #30944] 3364. [security] Named could die on specially crafted record. [RT #30416] - --- 9.8.3-P2 released --- + --- 9.8.4rc1 released --- + +3369. [bug] nsupdate terminated unexpectedly in interactive mode + if built with readline support. [RT #29550] + +3368. [bug] and were not C++ safe. + +3367. [bug] dns_dnsseckey_create() result was not being checked. + [RT #30685] + +3366. [bug] Fixed Read-After-Write dependency violation for IA64 + atomic operations. [RT #25181] + +3365. [bug] Removed spurious newlines from log messages in + zone.c [RT #30675] + +3363. [bug] Need to allow "forward" and "fowarders" options + in static-stub zones; this had been overlooked. + [RT #30482] + +3362. [bug] Setting some option values to 0 in named.conf + could trigger an assertion failure on startup. + [RT #27730] + +3360. [bug] 'host -w' could die. [RT #18723] + +3359. [bug] An improperly-formed TSIG secret could cause a + memory leak. [RT #30607] + +3357. [port] Add support for libxml2-2.8.x [RT #30440] + +3356. [bug] Cap the TTL of signed RRsets when RRSIGs are + approaching their expiry, so they don't remain + in caches after expiry. [RT #26429] + + --- 9.8.4b1 released --- + +3354. [func] Improve OpenSSL error logging. [RT #29932] + +3353. [bug] Use a single task for task exclusive operations. + [RT #29872] + +3352. [bug] Ensure that learned server attributes timeout of the + adb cache. [RT #29856] + +3351. [bug] isc_mem_put and isc_mem_putanddetach didn't report + caller if either ISC_MEM_DEBUGSIZE or ISC_MEM_DEBUGCTX + memory debugging flags are set. [RT #30243] + +3350. [bug] Memory read overrun in isc___mem_reallocate if + ISC_MEM_DEBUGCTX memory debugging flag is set. + [RT #30240] + +3348. [bug] Prevent RRSIG data from being cached if a negative + record matching the covering type exists at a higher + trust level. Such data already can't be retrieved from + the cache since change 3218 -- this prevents it + being inserted into the cache as well. [RT #26809] + +3347. [bug] dnssec-settime: Issue a warning when writing a new + private key file would cause a change in the + permissions of the existing file. [RT #27724] 3346. [security] Bad-cache data could be used before it was initialized, causing an assert. [RT #30025] @@ -18,11 +84,47 @@ resulting in excessive cpu usage in some cases. [RT #29952] - --- 9.8.3-P1 released --- +3337. [bug] Change #3294 broke support for the multiple keys + in controls. [RT #29694] + +3335. [func] nslookup: return a nonzero exit code when unable + to get an answer. [RT #29492] + +3333. [bug] Setting resolver-query-timeout too low can cause + named to not recover if it loses connectivity. + [RT #29623] + +3332. [bug] Re-use cached DS rrsets if possible. [RT #29446] 3331. [security] dns_rdataslab_fromrdataset could produce bad rdataslabs. [RT #29644] - + +3330. [func] Fix missing signatures on NOERROR results despite + RPZ rewriting. Also + - add optional "recursive-only yes|no" to the + response-policy statement + - add optional "max-policy-ttl" to the response-policy + statement to limit the false data that + "recursive-only no" can introduce into + resolvers' caches + - add a RPZ performance test to bin/tests/system/rpz + when queryperf is available. + - the encoding of PASSTHRU action to "rpz-passthru". + (The old encoding is still accepted.) + [RT #26172] + + +3329. [bug] Handle RRSIG signer-name case consistently: We + generate RRSIG records with the signer-name in + lower case. We accept them with any case, but if + they fail to validate, we try again in lower case. + [RT #27451] + +3328. [bug] Fixed inconsistent data checking in dst_parse.c. + [RT #29401] + +3317. [func] Add ECDSA support (RFC 6605). [RT #21918] + --- 9.8.3 released --- 3318. [tuning] Reduce the amount of work performed while holding a Modified: projects/physbio/contrib/bind9/Makefile.in ============================================================================== --- projects/physbio/contrib/bind9/Makefile.in Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/contrib/bind9/Makefile.in Sun Dec 30 23:06:09 2012 (r244874) @@ -1,4 +1,4 @@ -# Copyright (C) 2004-2009, 2011 Internet Systems Consortium, Inc. ("ISC") +# Copyright (C) 2004-2009, 2011, 2012 Internet Systems Consortium, Inc. ("ISC") # Copyright (C) 1998-2002 Internet Software Consortium. # # Permission to use, copy, modify, and/or distribute this software for any Modified: projects/physbio/contrib/bind9/README ============================================================================== --- projects/physbio/contrib/bind9/README Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/contrib/bind9/README Sun Dec 30 23:06:09 2012 (r244874) @@ -51,6 +51,11 @@ BIND 9 For up-to-date release notes and errata, see http://www.isc.org/software/bind9/releasenotes +BIND 9.8.4 + + BIND 9.8.4 includes several bug fixes and patches security + flaws described in CVE-2012-1667, CVE-2012-3817 and CVE-2012-4244. + BIND 9.8.3 BIND 9.8.3 is a maintenance release. Modified: projects/physbio/contrib/bind9/acconfig.h ============================================================================== --- projects/physbio/contrib/bind9/acconfig.h Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/contrib/bind9/acconfig.h Sun Dec 30 23:06:09 2012 (r244874) @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004, 2005, 2007, 2008 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004, 2005, 2007, 2008, 2012 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 1999-2003 Internet Software Consortium. * * Permission to use, copy, modify, and/or distribute this software for any @@ -138,6 +138,9 @@ int sigwait(const unsigned int *set, int /* Define if OpenSSL includes DSA support */ #undef HAVE_OPENSSL_DSA +/* Define if OpenSSL includes ECDSA support */ +#undef HAVE_OPENSSL_ECDSA + /* Define to the length type used by the socket API (socklen_t, size_t, int). */ #undef ISC_SOCKADDR_LEN_T Modified: projects/physbio/contrib/bind9/bin/Makefile.in ============================================================================== --- projects/physbio/contrib/bind9/bin/Makefile.in Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/contrib/bind9/bin/Makefile.in Sun Dec 30 23:06:09 2012 (r244874) @@ -1,4 +1,4 @@ -# Copyright (C) 2004, 2007, 2009 Internet Systems Consortium, Inc. ("ISC") +# Copyright (C) 2004, 2007, 2009, 2012 Internet Systems Consortium, Inc. ("ISC") # Copyright (C) 1998-2001 Internet Software Consortium. # # Permission to use, copy, modify, and/or distribute this software for any Modified: projects/physbio/contrib/bind9/bin/check/Makefile.in ============================================================================== --- projects/physbio/contrib/bind9/bin/check/Makefile.in Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/contrib/bind9/bin/check/Makefile.in Sun Dec 30 23:06:09 2012 (r244874) @@ -1,4 +1,4 @@ -# Copyright (C) 2004-2007, 2009 Internet Systems Consortium, Inc. ("ISC") +# Copyright (C) 2004-2007, 2009, 2012 Internet Systems Consortium, Inc. ("ISC") # Copyright (C) 2000-2003 Internet Software Consortium. # # Permission to use, copy, modify, and/or distribute this software for any Modified: projects/physbio/contrib/bind9/bin/check/check-tool.c ============================================================================== --- projects/physbio/contrib/bind9/bin/check/check-tool.c Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/contrib/bind9/bin/check/check-tool.c Sun Dec 30 23:06:09 2012 (r244874) @@ -639,6 +639,9 @@ dump_zone(const char *zonename, dns_zone { isc_result_t result; FILE *output = stdout; + const char *flags; + + flags = (fileformat == dns_masterformat_text) ? "w+" : "wb+"; if (debug) { if (filename != NULL && strcmp(filename, "-") != 0) @@ -649,7 +652,7 @@ dump_zone(const char *zonename, dns_zone } if (filename != NULL && strcmp(filename, "-") != 0) { - result = isc_stdio_open(filename, "w+", &output); + result = isc_stdio_open(filename, flags, &output); if (result != ISC_R_SUCCESS) { fprintf(stderr, "could not open output " Modified: projects/physbio/contrib/bind9/bin/confgen/Makefile.in ============================================================================== --- projects/physbio/contrib/bind9/bin/confgen/Makefile.in Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/contrib/bind9/bin/confgen/Makefile.in Sun Dec 30 23:06:09 2012 (r244874) @@ -1,4 +1,4 @@ -# Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC") +# Copyright (C) 2009, 2012 Internet Systems Consortium, Inc. ("ISC") # # Permission to use, copy, modify, and/or distribute this software for any # purpose with or without fee is hereby granted, provided that the above Modified: projects/physbio/contrib/bind9/bin/confgen/unix/Makefile.in ============================================================================== --- projects/physbio/contrib/bind9/bin/confgen/unix/Makefile.in Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/contrib/bind9/bin/confgen/unix/Makefile.in Sun Dec 30 23:06:09 2012 (r244874) @@ -1,4 +1,4 @@ -# Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC") +# Copyright (C) 2009, 2012 Internet Systems Consortium, Inc. ("ISC") # # Permission to use, copy, modify, and/or distribute this software for any # purpose with or without fee is hereby granted, provided that the above Modified: projects/physbio/contrib/bind9/bin/dig/Makefile.in ============================================================================== --- projects/physbio/contrib/bind9/bin/dig/Makefile.in Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/contrib/bind9/bin/dig/Makefile.in Sun Dec 30 23:06:09 2012 (r244874) @@ -1,4 +1,4 @@ -# Copyright (C) 2004, 2005, 2007, 2009 Internet Systems Consortium, Inc. ("ISC") +# Copyright (C) 2004, 2005, 2007, 2009, 2012 Internet Systems Consortium, Inc. ("ISC") # Copyright (C) 2000-2002 Internet Software Consortium. # # Permission to use, copy, modify, and/or distribute this software for any Modified: projects/physbio/contrib/bind9/bin/dig/nslookup.c ============================================================================== --- projects/physbio/contrib/bind9/bin/dig/nslookup.c Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/contrib/bind9/bin/dig/nslookup.c Sun Dec 30 23:06:09 2012 (r244874) @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2011 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004-2012 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 2000-2003 Internet Software Consortium. * * Permission to use, copy, modify, and/or distribute this software for any @@ -57,6 +57,7 @@ static isc_boolean_t in_use = ISC_FALSE; static char defclass[MXRD] = "IN"; static char deftype[MXRD] = "A"; static isc_event_t *global_event = NULL; +static int query_error = 1, print_error = 0; static char domainopt[DNS_NAME_MAXTEXT]; @@ -406,6 +407,9 @@ isc_result_t printmessage(dig_query_t *query, dns_message_t *msg, isc_boolean_t headers) { char servtext[ISC_SOCKADDR_FORMATSIZE]; + /* I've we've gotten this far, we've reached a server. */ + query_error = 0; + debug("printmessage()"); isc_sockaddr_format(&query->sockaddr, servtext, sizeof(servtext)); @@ -433,6 +437,9 @@ printmessage(dig_query_t *query, dns_mes (msg->rcode != dns_rcode_nxdomain) ? nametext : query->lookup->textname, rcode_totext(msg->rcode)); debug("returning with rcode == 0"); + + /* the lookup failed */ + print_error |= 1; return (ISC_R_SUCCESS); } @@ -887,5 +894,5 @@ main(int argc, char **argv) { destroy_libs(); isc_app_finish(); - return (0); + return (query_error | print_error); } Modified: projects/physbio/contrib/bind9/bin/dnssec/Makefile.in ============================================================================== --- projects/physbio/contrib/bind9/bin/dnssec/Makefile.in Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/contrib/bind9/bin/dnssec/Makefile.in Sun Dec 30 23:06:09 2012 (r244874) @@ -1,4 +1,4 @@ -# Copyright (C) 2004, 2005, 2007-2009 Internet Systems Consortium, Inc. ("ISC") +# Copyright (C) 2004, 2005, 2007-2009, 2012 Internet Systems Consortium, Inc. ("ISC") # Copyright (C) 2000-2002 Internet Software Consortium. # # Permission to use, copy, modify, and/or distribute this software for any Modified: projects/physbio/contrib/bind9/bin/dnssec/dnssec-dsfromkey.8 ============================================================================== --- projects/physbio/contrib/bind9/bin/dnssec/dnssec-dsfromkey.8 Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/contrib/bind9/bin/dnssec/dnssec-dsfromkey.8 Sun Dec 30 23:06:09 2012 (r244874) @@ -1,4 +1,4 @@ -.\" Copyright (C) 2008-2010 Internet Systems Consortium, Inc. ("ISC") +.\" Copyright (C) 2008-2010, 2012 Internet Systems Consortium, Inc. ("ISC") .\" .\" Permission to use, copy, modify, and/or distribute this software for any .\" purpose with or without fee is hereby granted, provided that the above @@ -55,7 +55,7 @@ Use SHA\-256 as the digest algorithm. .RS 4 Select the digest algorithm. The value of \fBalgorithm\fR -must be one of SHA\-1 (SHA1), SHA\-256 (SHA256) or GOST. These values are case insensitive. +must be one of SHA\-1 (SHA1), SHA\-256 (SHA256), GOST or SHA\-384 (SHA384). These values are case insensitive. .RE .PP \-K \fIdirectory\fR @@ -139,5 +139,5 @@ RFC 4509. .PP Internet Systems Consortium .SH "COPYRIGHT" -Copyright \(co 2008\-2010 Internet Systems Consortium, Inc. ("ISC") +Copyright \(co 2008\-2010, 2012 Internet Systems Consortium, Inc. ("ISC") .br Modified: projects/physbio/contrib/bind9/bin/dnssec/dnssec-dsfromkey.c ============================================================================== --- projects/physbio/contrib/bind9/bin/dnssec/dnssec-dsfromkey.c Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/contrib/bind9/bin/dnssec/dnssec-dsfromkey.c Sun Dec 30 23:06:09 2012 (r244874) @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2011 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2008-2012 Internet Systems Consortium, Inc. ("ISC") * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -296,7 +296,7 @@ usage(void) { fprintf(stderr, " -K : directory in which to find " "key file or keyset file\n"); fprintf(stderr, " -a algorithm: digest algorithm " - "(SHA-1, SHA-256 or GOST)\n"); + "(SHA-1, SHA-256, GOST or SHA-384)\n"); fprintf(stderr, " -1: use SHA-1\n"); fprintf(stderr, " -2: use SHA-256\n"); fprintf(stderr, " -l: add lookaside zone and print DLV records\n"); @@ -415,6 +415,9 @@ main(int argc, char **argv) { else if (strcasecmp(algname, "GOST") == 0) dtype = DNS_DSDIGEST_GOST; #endif + else if (strcasecmp(algname, "SHA384") == 0 || + strcasecmp(algname, "SHA-384") == 0) + dtype = DNS_DSDIGEST_SHA384; else fatal("unknown algorithm %s", algname); } Modified: projects/physbio/contrib/bind9/bin/dnssec/dnssec-dsfromkey.docbook ============================================================================== --- projects/physbio/contrib/bind9/bin/dnssec/dnssec-dsfromkey.docbook Sun Dec 30 22:00:19 2012 (r244873) +++ projects/physbio/contrib/bind9/bin/dnssec/dnssec-dsfromkey.docbook Sun Dec 30 23:06:09 2012 (r244874) @@ -2,7 +2,7 @@ "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" []>