From owner-svn-src-projects@FreeBSD.ORG Sun Apr 19 01:23:13 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 01D9B519; Sun, 19 Apr 2015 01:23:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E4203D8A; Sun, 19 Apr 2015 01:23:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3J1NCdg082877; Sun, 19 Apr 2015 01:23:12 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3J1NCfE082876; Sun, 19 Apr 2015 01:23:12 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201504190123.t3J1NCfE082876@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Sun, 19 Apr 2015 01:23:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r281722 - projects/em_mq/sys/dev/e1000 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.20 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, 19 Apr 2015 01:23:13 -0000 Author: sbruno Date: Sun Apr 19 01:23:12 2015 New Revision: 281722 URL: https://svnweb.freebsd.org/changeset/base/281722 Log: No need to read the TXDCTL register if we are going to override all of its contents. Submitted by: Kevin Bowling Modified: projects/em_mq/sys/dev/e1000/if_em.c Modified: projects/em_mq/sys/dev/e1000/if_em.c ============================================================================== --- projects/em_mq/sys/dev/e1000/if_em.c Sun Apr 19 00:33:21 2015 (r281721) +++ projects/em_mq/sys/dev/e1000/if_em.c Sun Apr 19 01:23:12 2015 (r281722) @@ -3501,7 +3501,6 @@ em_initialize_transmit_unit(struct adapt E1000_READ_REG(&adapter->hw, E1000_TDLEN(i))); txr->queue_status = EM_QUEUE_IDLE; - txdctl = E1000_READ_REG(hw, E1000_TXDCTL(i)); txdctl = 0; /* clear txdctl */ txdctl |= 0x1f; /* PTHRESH */ txdctl |= 1 << 8; /* HTHRESH */ From owner-svn-src-projects@FreeBSD.ORG Sun Apr 19 20:02:10 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 49CC9AD8; Sun, 19 Apr 2015 20:02:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 38F01832; Sun, 19 Apr 2015 20:02:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3JK2AOt008368; Sun, 19 Apr 2015 20:02:10 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3JK2AdR008366; Sun, 19 Apr 2015 20:02:10 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201504192002.t3JK2AdR008366@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Sun, 19 Apr 2015 20:02:10 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r281749 - projects/em_mq/sys/dev/e1000 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.20 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, 19 Apr 2015 20:02:10 -0000 Author: sbruno Date: Sun Apr 19 20:02:09 2015 New Revision: 281749 URL: https://svnweb.freebsd.org/changeset/base/281749 Log: Add DDB includes for future DB_FUNC work. Add explict programming of RDTR register. Add EM_MULTIQUEUE Values for RADV, RDTR. - arbitrarily choose an RADV that is 2xRDTR. Modified: projects/em_mq/sys/dev/e1000/if_em.c Modified: projects/em_mq/sys/dev/e1000/if_em.c ============================================================================== --- projects/em_mq/sys/dev/e1000/if_em.c Sun Apr 19 18:10:39 2015 (r281748) +++ projects/em_mq/sys/dev/e1000/if_em.c Sun Apr 19 20:02:09 2015 (r281749) @@ -33,6 +33,7 @@ /*$FreeBSD$*/ #include "opt_em.h" +#include "opt_ddb.h" #include "opt_inet.h" #include "opt_inet6.h" @@ -42,6 +43,10 @@ #include #include +#ifdef DDB +#include +#include +#endif #if __FreeBSD_version >= 800000 #include #endif @@ -4353,6 +4358,9 @@ em_initialize_receive_unit(struct adapte E1000_WRITE_REG(&adapter->hw, E1000_RADV, adapter->rx_abs_int_delay.value); + + E1000_WRITE_REG(&adapter->hw, E1000_RDTR, + adapter->rx_int_delay.value); /* * Set the interrupt throttling rate. Value is calculated * as DEFAULT_ITR = 1/(MAX_INTS_PER_SEC * 256ns) From owner-svn-src-projects@FreeBSD.ORG Sun Apr 19 20:08:37 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A27D9CD0; Sun, 19 Apr 2015 20:08:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9128C864; Sun, 19 Apr 2015 20:08:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3JK8brh011428; Sun, 19 Apr 2015 20:08:37 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3JK8blJ011427; Sun, 19 Apr 2015 20:08:37 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201504192008.t3JK8blJ011427@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Sun, 19 Apr 2015 20:08:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r281750 - projects/em_mq/sys/dev/e1000 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.20 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, 19 Apr 2015 20:08:37 -0000 Author: sbruno Date: Sun Apr 19 20:08:36 2015 New Revision: 281750 URL: https://svnweb.freebsd.org/changeset/base/281750 Log: Update the configured default RXD and TXD to 4096 if EM_MULTIQUEUE is defined. Modified: projects/em_mq/sys/dev/e1000/if_em.h Modified: projects/em_mq/sys/dev/e1000/if_em.h ============================================================================== --- projects/em_mq/sys/dev/e1000/if_em.h Sun Apr 19 20:02:09 2015 (r281749) +++ projects/em_mq/sys/dev/e1000/if_em.h Sun Apr 19 20:08:36 2015 (r281750) @@ -53,7 +53,11 @@ */ #define EM_MIN_TXD 80 #define EM_MAX_TXD 4096 +#ifdef EM_MULTIQUEUE +#define EM_DEFAULT_TXD 4096 +#else #define EM_DEFAULT_TXD 1024 +#endif /* * EM_RXD - Maximum number of receive Descriptors @@ -70,7 +74,11 @@ */ #define EM_MIN_RXD 80 #define EM_MAX_RXD 4096 +#ifdef EM_MULTIQUEUE +#define EM_DEFAULT_RXD 4096 +#else #define EM_DEFAULT_RXD 1024 +#endif /* * EM_TIDV - Transmit Interrupt Delay Value @@ -117,7 +125,11 @@ * restoring the network connection. To eliminate the potential * for the hang ensure that EM_RDTR is set to 0. */ +#ifdef EM_MULTIQUEUE +#define EM_RDTR 64 +#else #define EM_RDTR 0 +#endif /* * Receive Interrupt Absolute Delay Timer (Not valid for 82542/82543/82544) @@ -130,7 +142,11 @@ * along with EM_RDTR, may improve traffic throughput in specific network * conditions. */ +#ifdef EM_MULTIQUEUE +#define EM_RADV 128 +#else #define EM_RADV 64 +#endif /* * This parameter controls the max duration of transmit watchdog. From owner-svn-src-projects@FreeBSD.ORG Sun Apr 19 22:33:36 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0D7756CD; Sun, 19 Apr 2015 22:33:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EBF0091B; Sun, 19 Apr 2015 22:33:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3JMXZtG026546; Sun, 19 Apr 2015 22:33:35 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3JMXQ68026453; Sun, 19 Apr 2015 22:33:26 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201504192233.t3JMXQ68026453@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Sun, 19 Apr 2015 22:33:26 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r281753 - in projects/em_mq: . bin/ed bin/sh bin/sh/tests/builtins cddl/contrib/opensolaris/cmd/dtrace etc/defaults etc/mtree etc/rc.d include lib/libc lib/libc/amd64/sys lib/libc/arm/s... 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.20 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, 19 Apr 2015 22:33:36 -0000 Author: sbruno Date: Sun Apr 19 22:33:24 2015 New Revision: 281753 URL: https://svnweb.freebsd.org/changeset/base/281753 Log: MFH @281750 Added: projects/em_mq/bin/sh/tests/builtins/trap15.0 - copied unchanged from r281750, head/bin/sh/tests/builtins/trap15.0 projects/em_mq/bin/sh/tests/builtins/trap16.0 - copied unchanged from r281750, head/bin/sh/tests/builtins/trap16.0 projects/em_mq/lib/libc/sys/ppoll.c - copied unchanged from r281750, head/lib/libc/sys/ppoll.c projects/em_mq/lib/libc/sys/wait6.c - copied unchanged from r281750, head/lib/libc/sys/wait6.c projects/em_mq/share/man/man4/dtrace-io.4 - copied unchanged from r281750, head/share/man/man4/dtrace-io.4 projects/em_mq/share/man/man4/dtrace-ip.4 - copied unchanged from r281750, head/share/man/man4/dtrace-ip.4 projects/em_mq/share/man/man4/dtrace-proc.4 - copied unchanged from r281750, head/share/man/man4/dtrace-proc.4 projects/em_mq/share/man/man4/dtrace-sched.4 - copied unchanged from r281750, head/share/man/man4/dtrace-sched.4 projects/em_mq/share/man/man4/dtrace-tcp.4 - copied unchanged from r281750, head/share/man/man4/dtrace-tcp.4 projects/em_mq/share/man/man4/dtrace-udp.4 - copied unchanged from r281750, head/share/man/man4/dtrace-udp.4 projects/em_mq/sys/arm/allwinner/files.allwinner - copied unchanged from r281750, head/sys/arm/allwinner/files.allwinner projects/em_mq/sys/dev/hwpmc/hwpmc_e500.c - copied unchanged from r281750, head/sys/dev/hwpmc/hwpmc_e500.c projects/em_mq/sys/net/altq/ - copied from r281750, head/sys/net/altq/ projects/em_mq/sys/pc98/pc98/genassym.c - copied unchanged from r281750, head/sys/pc98/pc98/genassym.c projects/em_mq/usr.sbin/bluetooth/hccontrol/le.c - copied unchanged from r281750, head/usr.sbin/bluetooth/hccontrol/le.c Deleted: projects/em_mq/lib/libc/sys/ftruncate.c projects/em_mq/lib/libc/sys/lseek.c projects/em_mq/lib/libc/sys/mmap.c projects/em_mq/lib/libc/sys/pread.c projects/em_mq/lib/libc/sys/pwrite.c projects/em_mq/lib/libc/sys/truncate.c projects/em_mq/sys/contrib/altq/ projects/em_mq/sys/fs/ext2fs/ext2_hash.c projects/em_mq/sys/fs/ext2fs/ext2_htree.c projects/em_mq/sys/netipsec/xform_ipip.c projects/em_mq/tools/build/options/WITHOUT_SYSCALL_COMPAT projects/em_mq/usr.sbin/crunch/crunchide/exec_aout.c Modified: projects/em_mq/Makefile projects/em_mq/Makefile.inc1 projects/em_mq/ObsoleteFiles.inc projects/em_mq/README projects/em_mq/bin/ed/glbl.c projects/em_mq/bin/sh/sh.1 projects/em_mq/bin/sh/tests/builtins/Makefile projects/em_mq/bin/sh/trap.c projects/em_mq/cddl/contrib/opensolaris/cmd/dtrace/dtrace.1 projects/em_mq/etc/defaults/rc.conf projects/em_mq/etc/mtree/BSD.include.dist projects/em_mq/etc/rc.d/mountd projects/em_mq/etc/rc.d/nfsd projects/em_mq/include/Makefile projects/em_mq/lib/libc/Makefile projects/em_mq/lib/libc/amd64/sys/Makefile.inc projects/em_mq/lib/libc/arm/sys/Makefile.inc projects/em_mq/lib/libc/gen/waitid.c projects/em_mq/lib/libc/i386/sys/Makefile.inc projects/em_mq/lib/libc/include/compat.h projects/em_mq/lib/libc/include/libc_private.h projects/em_mq/lib/libc/mips/sys/Makefile.inc projects/em_mq/lib/libc/powerpc/sys/Makefile.inc projects/em_mq/lib/libc/powerpc64/sys/Makefile.inc projects/em_mq/lib/libc/sparc64/sys/Makefile.inc projects/em_mq/lib/libc/sys/Makefile.inc projects/em_mq/lib/libc/sys/fcntl.c projects/em_mq/lib/libc/sys/interposing_table.c projects/em_mq/lib/libpmc/libpmc.c projects/em_mq/lib/libthr/Makefile projects/em_mq/lib/libthr/thread/thr_syscalls.c projects/em_mq/sbin/ipfw/nat.c projects/em_mq/sbin/mount/mount.8 projects/em_mq/sbin/mount/mount.c projects/em_mq/sbin/mount_nfs/Makefile projects/em_mq/sbin/mount_nfs/mount_nfs.8 projects/em_mq/sbin/pfctl/parse.y projects/em_mq/sbin/pfctl/pfctl.c projects/em_mq/sbin/pfctl/pfctl_altq.c projects/em_mq/sbin/pfctl/pfctl_qstats.c projects/em_mq/share/man/man3/pthread_testcancel.3 projects/em_mq/share/man/man4/Makefile projects/em_mq/share/man/man4/run.4 projects/em_mq/share/man/man5/rc.conf.5 projects/em_mq/share/man/man5/src.conf.5 projects/em_mq/share/man/man9/SDT.9 projects/em_mq/share/mk/src.opts.mk projects/em_mq/sys/amd64/amd64/pmap.c projects/em_mq/sys/amd64/conf/GENERIC projects/em_mq/sys/amd64/vmm/amd/svm.c projects/em_mq/sys/amd64/vmm/vmm_lapic.c projects/em_mq/sys/arm/allwinner/a10_clk.h projects/em_mq/sys/arm/allwinner/a20/files.a20 projects/em_mq/sys/arm/allwinner/a20/std.a20 projects/em_mq/sys/arm/allwinner/files.a10 projects/em_mq/sys/arm/allwinner/if_emac.c projects/em_mq/sys/arm/allwinner/if_emacreg.h projects/em_mq/sys/arm/allwinner/std.a10 projects/em_mq/sys/arm/arm/trap-v6.c projects/em_mq/sys/arm/arm/vm_machdep.c projects/em_mq/sys/arm64/arm64/trap.c projects/em_mq/sys/arm64/conf/DEFAULTS projects/em_mq/sys/boot/forth/check-password.4th projects/em_mq/sys/boot/forth/check-password.4th.8 projects/em_mq/sys/boot/forth/loader.conf projects/em_mq/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c projects/em_mq/sys/compat/linux/linux_file.c projects/em_mq/sys/conf/Makefile.pc98 projects/em_mq/sys/conf/files projects/em_mq/sys/conf/files.powerpc projects/em_mq/sys/conf/kern.pre.mk projects/em_mq/sys/conf/kmod.mk projects/em_mq/sys/dev/acpica/acpi.c projects/em_mq/sys/dev/acpica/acpivar.h projects/em_mq/sys/dev/atkbdc/psm.c projects/em_mq/sys/dev/cxgbe/tom/t4_listen.c projects/em_mq/sys/dev/etherswitch/miiproxy.c projects/em_mq/sys/dev/hwpmc/hwpmc_mpc7xxx.c projects/em_mq/sys/dev/hwpmc/hwpmc_powerpc.c projects/em_mq/sys/dev/hwpmc/hwpmc_powerpc.h projects/em_mq/sys/dev/hwpmc/hwpmc_ppc970.c projects/em_mq/sys/dev/hwpmc/pmc_events.h projects/em_mq/sys/dev/usb/usbdevs projects/em_mq/sys/dev/usb/video/udl.c projects/em_mq/sys/dev/usb/video/udl.h projects/em_mq/sys/dev/usb/wlan/if_run.c projects/em_mq/sys/dev/virtio/block/virtio_blk.c projects/em_mq/sys/fs/ext2fs/ext2_dir.h projects/em_mq/sys/fs/ext2fs/ext2_extern.h projects/em_mq/sys/fs/ext2fs/ext2_lookup.c projects/em_mq/sys/fs/ext2fs/ext2_vfsops.c projects/em_mq/sys/fs/ext2fs/ext2fs.h projects/em_mq/sys/fs/nfs/nfs.h projects/em_mq/sys/fs/nfs/nfs_commonport.c projects/em_mq/sys/fs/nfs/nfsproto.h projects/em_mq/sys/fs/nfsclient/nfs_clvfsops.c projects/em_mq/sys/fs/nfsserver/nfs_nfsdport.c projects/em_mq/sys/fs/nfsserver/nfs_nfsdserv.c projects/em_mq/sys/i386/i386/apic_vector.s projects/em_mq/sys/i386/i386/db_trace.c projects/em_mq/sys/i386/i386/mp_machdep.c projects/em_mq/sys/i386/i386/pmap.c projects/em_mq/sys/i386/i386/swtch.s projects/em_mq/sys/i386/include/smp.h projects/em_mq/sys/i386/xen/mp_machdep.c projects/em_mq/sys/i386/xen/pmap.c projects/em_mq/sys/kern/init_main.c projects/em_mq/sys/kern/init_sysent.c projects/em_mq/sys/kern/kern_synch.c projects/em_mq/sys/kern/kern_thread.c projects/em_mq/sys/kern/sys_generic.c projects/em_mq/sys/kern/syscalls.c projects/em_mq/sys/kern/syscalls.master projects/em_mq/sys/kern/systrace_args.c projects/em_mq/sys/kern/vfs_cache.c projects/em_mq/sys/kern/vfs_syscalls.c projects/em_mq/sys/modules/ext2fs/Makefile projects/em_mq/sys/modules/hwpmc/Makefile projects/em_mq/sys/modules/usb/Makefile projects/em_mq/sys/net/if_types.h projects/em_mq/sys/net/if_var.h projects/em_mq/sys/net/ifq.h projects/em_mq/sys/netgraph/bluetooth/include/ng_hci.h projects/em_mq/sys/netinet/in.c projects/em_mq/sys/netinet/in.h projects/em_mq/sys/netinet6/in6.c projects/em_mq/sys/netinet6/in6.h projects/em_mq/sys/netipsec/ipsec.c projects/em_mq/sys/netipsec/ipsec.h projects/em_mq/sys/netipsec/ipsec_input.c projects/em_mq/sys/netipsec/ipsec_output.c projects/em_mq/sys/netipsec/key.c projects/em_mq/sys/netipsec/xform.h projects/em_mq/sys/netipsec/xform_ah.c projects/em_mq/sys/netipsec/xform_esp.c projects/em_mq/sys/netipsec/xform_ipcomp.c projects/em_mq/sys/netpfil/pf/pf_ioctl.c projects/em_mq/sys/nfsclient/nfs.h projects/em_mq/sys/powerpc/booke/interrupt.c projects/em_mq/sys/powerpc/booke/locore.S projects/em_mq/sys/powerpc/booke/machdep.c projects/em_mq/sys/powerpc/booke/trap_subr.S projects/em_mq/sys/powerpc/include/pmc_mdep.h projects/em_mq/sys/sys/param.h projects/em_mq/sys/sys/pmc.h projects/em_mq/sys/sys/syscall.h projects/em_mq/sys/sys/syscall.mk projects/em_mq/sys/sys/sysproto.h projects/em_mq/sys/vm/device_pager.c projects/em_mq/sys/vm/vm_mmap.c projects/em_mq/sys/x86/xen/xen_apic.c projects/em_mq/tools/tools/netmap/pkt-gen.c projects/em_mq/usr.bin/calendar/io.c projects/em_mq/usr.bin/gzip/gzip.c projects/em_mq/usr.bin/nfsstat/nfsstat.c projects/em_mq/usr.bin/rpcgen/rpc_sample.c projects/em_mq/usr.bin/w/Makefile projects/em_mq/usr.bin/w/w.c projects/em_mq/usr.bin/wc/wc.c projects/em_mq/usr.sbin/bhyve/bhyverun.c projects/em_mq/usr.sbin/bhyve/block_if.c projects/em_mq/usr.sbin/bhyve/block_if.h projects/em_mq/usr.sbin/bhyve/pci_ahci.c projects/em_mq/usr.sbin/bhyve/pci_virtio_block.c projects/em_mq/usr.sbin/bluetooth/hccontrol/Makefile projects/em_mq/usr.sbin/bluetooth/hccontrol/hccontrol.c projects/em_mq/usr.sbin/bluetooth/hccontrol/hccontrol.h projects/em_mq/usr.sbin/bluetooth/hccontrol/host_controller_baseband.c projects/em_mq/usr.sbin/bsdinstall/scripts/zfsboot projects/em_mq/usr.sbin/config/main.c projects/em_mq/usr.sbin/crunch/crunchide/Makefile projects/em_mq/usr.sbin/crunch/crunchide/crunchide.c projects/em_mq/usr.sbin/crunch/crunchide/exec_elf32.c projects/em_mq/usr.sbin/crunch/crunchide/extern.h projects/em_mq/usr.sbin/inetd/inetd.c projects/em_mq/usr.sbin/mountd/mountd.c projects/em_mq/usr.sbin/nfsd/nfsd.8 projects/em_mq/usr.sbin/tzsetup/tzsetup.c Directory Properties: projects/em_mq/ (props changed) projects/em_mq/cddl/ (props changed) projects/em_mq/cddl/contrib/opensolaris/ (props changed) projects/em_mq/etc/ (props changed) projects/em_mq/include/ (props changed) projects/em_mq/lib/libc/ (props changed) projects/em_mq/sbin/ (props changed) projects/em_mq/sbin/ipfw/ (props changed) projects/em_mq/share/ (props changed) projects/em_mq/share/man/man4/ (props changed) projects/em_mq/sys/ (props changed) projects/em_mq/sys/amd64/vmm/ (props changed) projects/em_mq/sys/boot/ (props changed) projects/em_mq/sys/cddl/contrib/opensolaris/ (props changed) projects/em_mq/sys/conf/ (props changed) projects/em_mq/usr.bin/calendar/ (props changed) projects/em_mq/usr.sbin/bhyve/ (props changed) Modified: projects/em_mq/Makefile ============================================================================== --- projects/em_mq/Makefile Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/Makefile Sun Apr 19 22:33:24 2015 (r281753) @@ -374,6 +374,17 @@ kernel-toolchains: # .if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets) TARGETS?=amd64 arm i386 mips pc98 powerpc sparc64 +# XXX Add arm64 to universe only if we have an external binutils installed. +# It does not build with the in-tree linnker. +.if exists(/usr/local/aarch64-freebsd/bin/ld) +TARGETS+=arm64 +TARGET_ARCHES_arm64?= aarch64 +.else +universe: universe_arm64_skip +universe_epilogue: universe_arm64_skip +universe_arm64_skip: universe_prologue + @echo ">> arm64 skipped - install aarch64-binutils port or package to build" +.endif TARGET_ARCHES_arm?= arm armeb armv6 armv6hf TARGET_ARCHES_mips?= mipsel mips mips64el mips64 mipsn32 TARGET_ARCHES_powerpc?= powerpc powerpc64 Modified: projects/em_mq/Makefile.inc1 ============================================================================== --- projects/em_mq/Makefile.inc1 Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/Makefile.inc1 Sun Apr 19 22:33:24 2015 (r281753) @@ -1281,10 +1281,6 @@ _m4= lib/libohash \ ${_bt}-usr.bin/m4: ${_bt}-lib/libohash .endif -.if ${BOOTSTRAPPING} < 1000014 -_crunch= usr.sbin/crunch -.endif - .if ${BOOTSTRAPPING} < 1000026 _nmtree= lib/libnetbsd \ usr.sbin/nmtree @@ -1300,16 +1296,18 @@ _cat= bin/cat _lex= usr.bin/lex .endif +.if ${BOOTSTRAPPING} < 1001507 +_crunch= usr.sbin/crunch +.endif + .if ${BOOTSTRAPPING} >= 900040 && ${BOOTSTRAPPING} < 900041 _awk= usr.bin/awk .endif -.if ${BOOTSTRAPPING} < 1001506 _yacc= lib/liby \ usr.bin/yacc ${_bt}-usr.bin/yacc: ${_bt}-lib/liby -.endif .if ${MK_BSNMP} != "no" _gensnmptree= usr.sbin/bsnmpd/gensnmptree @@ -1359,8 +1357,13 @@ _kerberos5_bootstrap_tools= \ kerberos5/tools/slc \ usr.bin/compile_et -${_bt}-kerberos5/tools/slc: ${_bt}-kerberos5/lib/libroken -${_bt}-kerberos5/tools/asn1_compile: ${_bt}-kerberos5/lib/libroken +${_bt}-kerberos5/lib/libroken: ${_bt}-kerberos5/tools/make-roken +${_bt}-kerberos5/tools/asn1_compile: \ + ${_bt}-kerberos5/lib/libroken ${_bt}-kerberos5/lib/libvers +${_bt}-kerberos5/tools/slc: \ + ${_bt}-kerberos5/lib/libroken ${_bt}-kerberos5/lib/libvers +${_bt}-usr.bin/compile_et: \ + ${_bt}-kerberos5/lib/libroken ${_bt}-kerberos5/lib/libvers .endif bootstrap-tools: .PHONY @@ -1466,12 +1469,9 @@ _btxld= usr.sbin/btxld .endif .endif .if ${TARGET_ARCH} != ${MACHINE_ARCH} -.if ${MK_RESCUE} != "no" || defined(RELEASEDIR) +.if ${MK_RESCUE} != "no" _crunchide= usr.sbin/crunch/crunchide .endif -.if ${TARGET_ARCH} == "i386" && defined(RELEASEDIR) -_kgzip= usr.sbin/kgzip -.endif .endif # If we're given an XAS, don't build binutils. @@ -1517,7 +1517,6 @@ cross-tools: .MAKE ${_cc} \ ${_btxld} \ ${_crunchide} \ - ${_kgzip} \ sys/boot/usb/tools ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \ cd ${.CURDIR}/${_tool} && \ Modified: projects/em_mq/ObsoleteFiles.inc ============================================================================== --- projects/em_mq/ObsoleteFiles.inc Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/ObsoleteFiles.inc Sun Apr 19 22:33:24 2015 (r281753) @@ -38,6 +38,24 @@ # xargs -n1 | sort | uniq -d; # done +# 20150418 +OLD_FILES+=sbin/mount_oldnfs +OLD_FILES+=usr/share/man/man8/mount_oldnfs.8.gz +# 20150416: ALTQ moved to net/altq +OLD_FILES+=usr/include/altq/altq_rmclass_debug.h +OLD_FILES+=usr/include/altq/altq.h +OLD_FILES+=usr/include/altq/altq_cdnr.h +OLD_FILES+=usr/include/altq/altq_hfsc.h +OLD_FILES+=usr/include/altq/altq_priq.h +OLD_FILES+=usr/include/altq/altqconf.h +OLD_FILES+=usr/include/altq/altq_classq.h +OLD_FILES+=usr/include/altq/altq_red.h +OLD_FILES+=usr/include/altq/if_altq.h +OLD_FILES+=usr/include/altq/altq_var.h +OLD_FILES+=usr/include/altq/altq_rmclass.h +OLD_FILES+=usr/include/altq/altq_cbq.h +OLD_FILES+=usr/include/altq/altq_rio.h +OLD_DIRS+=usr/include/altq # 20150410 OLD_FILES+=usr/share/doc/usd/10.exref/paper.ascii.gz OLD_FILES+=usr/share/doc/usd/10.exref/summary.ascii.gz Modified: projects/em_mq/README ============================================================================== --- projects/em_mq/README Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/README Sun Apr 19 22:33:24 2015 (r281753) @@ -8,37 +8,32 @@ sources in this tree - please see the sp more information). The Makefile in this directory supports a number of targets for -building components (or all) of the FreeBSD source tree, the most -commonly used one being ``world'', which rebuilds and installs -everything in the FreeBSD system from the source tree except the -kernel, the kernel-modules and the contents of /etc. The ``world'' -target should only be used in cases where the source tree has not -changed from the currently running version. See: -http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html +building components (or all) of the FreeBSD source tree. See build(7) +and http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html for more information, including setting make(1) variables. -The ``buildkernel'' and ``installkernel'' targets build and install +The `buildkernel` and `installkernel` targets build and install the kernel and the modules (see below). Please see the top of the Makefile in this directory for more information on the standard build targets and compile-time flags. -Building a kernel is a somewhat more involved process, documentation -for which can be found at: - http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html -And in the config(8) man page. +Building a kernel is a somewhat more involved process. See build(7), config(8), +and http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html +for more information. + Note: If you want to build and install the kernel with the -``buildkernel'' and ``installkernel'' targets, you might need to build +`buildkernel` and `installkernel` targets, you might need to build world before. More information is available in the handbook. -The sample kernel configuration files reside in the sys//conf -sub-directory (assuming that you've installed the kernel sources), the -file named GENERIC being the one used to build your initial installation -kernel. The file NOTES contains entries and documentation for all possible +The kernel configuration files reside in the sys//conf +sub-directory. GENERIC is the default configuration used in release builds. +NOTES contains entries and documentation for all possible devices, not just those commonly used. Source Roadmap: --------------- + bin System/user commands. cddl Various commands and libraries under the Common Development Modified: projects/em_mq/bin/ed/glbl.c ============================================================================== --- projects/em_mq/bin/ed/glbl.c Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/bin/ed/glbl.c Sun Apr 19 22:33:24 2015 (r281753) @@ -153,7 +153,7 @@ set_active_node(line_t *lp) if (active_list != NULL) { #endif if ((ts = (line_t **) realloc(active_list, - (ti += MINBUFSZ) * sizeof(line_t **))) == NULL) { + (ti += MINBUFSZ) * sizeof(line_t *))) == NULL) { fprintf(stderr, "%s\n", strerror(errno)); errmsg = "out of memory"; SPL0(); Modified: projects/em_mq/bin/sh/sh.1 ============================================================================== --- projects/em_mq/bin/sh/sh.1 Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/bin/sh/sh.1 Sun Apr 19 22:33:24 2015 (r281753) @@ -32,7 +32,7 @@ .\" from: @(#)sh.1 8.6 (Berkeley) 5/4/95 .\" $FreeBSD$ .\" -.Dd February 22, 2015 +.Dd April 18, 2015 .Dt SH 1 .Os .Sh NAME @@ -2574,8 +2574,7 @@ the former causes the specified signal t and the latter causes the default action to be taken. Omitting the .Ar action -is another way to request the default action, for compatibility reasons this -usage is not recommended though. +and using only signal numbers is another way to request the default action. In a subshell or utility environment, the shell resets trapped (but not ignored) signals to the default action. The Modified: projects/em_mq/bin/sh/tests/builtins/Makefile ============================================================================== --- projects/em_mq/bin/sh/tests/builtins/Makefile Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/bin/sh/tests/builtins/Makefile Sun Apr 19 22:33:24 2015 (r281753) @@ -137,6 +137,8 @@ FILES+= trap11.0 FILES+= trap12.0 FILES+= trap13.0 FILES+= trap14.0 +FILES+= trap15.0 +FILES+= trap16.0 FILES+= trap2.0 FILES+= trap3.0 FILES+= trap4.0 Copied: projects/em_mq/bin/sh/tests/builtins/trap15.0 (from r281750, head/bin/sh/tests/builtins/trap15.0) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/em_mq/bin/sh/tests/builtins/trap15.0 Sun Apr 19 22:33:24 2015 (r281753, copy of r281750, head/bin/sh/tests/builtins/trap15.0) @@ -0,0 +1,5 @@ +# $FreeBSD$ + +(${SH} -c 'term(){ exit 5;}; trap term TERM; kill -TERM $$') & +wait >/dev/null 2>&1 $! +[ $? -eq 5 ] Copied: projects/em_mq/bin/sh/tests/builtins/trap16.0 (from r281750, head/bin/sh/tests/builtins/trap16.0) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/em_mq/bin/sh/tests/builtins/trap16.0 Sun Apr 19 22:33:24 2015 (r281753, copy of r281750, head/bin/sh/tests/builtins/trap16.0) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +traps=$(${SH} -c 'trap "echo bad" 0; trap - 0; trap') +[ -z "$traps" ] || exit 1 +traps=$(${SH} -c 'trap "echo bad" 0; trap "" 0; trap') +expected_traps=$(${SH} -c 'trap "" EXIT; trap') +[ "$traps" = "$expected_traps" ] || exit 2 +traps=$(${SH} -c 'trap "echo bad" 0; trap 0; trap') +[ -z "$traps" ] || exit 3 +traps=$(${SH} -c 'trap "echo bad" 0; trap -- 0; trap') +[ -z "$traps" ] || exit 4 +traps=$(${SH} -c 'trap "echo bad" 0 1 2; trap - 0 1 2; trap') +[ -z "$traps" ] || exit 5 +traps=$(${SH} -c 'trap "echo bad" 0 1 2; trap "" 0 1 2; trap') +expected_traps=$(${SH} -c 'trap "" EXIT HUP INT; trap') +[ "$traps" = "$expected_traps" ] || exit 6 +traps=$(${SH} -c 'trap "echo bad" 0 1 2; trap 0 1 2; trap') +[ -z "$traps" ] || exit 7 +traps=$(${SH} -c 'trap "echo bad" 0 1 2; trap -- 0 1 2; trap') +[ -z "$traps" ] || exit 8 Modified: projects/em_mq/bin/sh/trap.c ============================================================================== --- projects/em_mq/bin/sh/trap.c Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/bin/sh/trap.c Sun Apr 19 22:33:24 2015 (r281753) @@ -183,7 +183,7 @@ trapcmd(int argc __unused, char **argv) return 0; } action = NULL; - if (*argv && sigstring_to_signum(*argv) == -1) { + if (*argv && !is_number(*argv)) { if (strcmp(*argv, "-") == 0) argv++; else { Modified: projects/em_mq/cddl/contrib/opensolaris/cmd/dtrace/dtrace.1 ============================================================================== --- projects/em_mq/cddl/contrib/opensolaris/cmd/dtrace/dtrace.1 Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/cddl/contrib/opensolaris/cmd/dtrace/dtrace.1 Sun Apr 19 22:33:24 2015 (r281753) @@ -21,7 +21,7 @@ .\" .\" $FreeBSD$ .\" -.Dd October 5, 2013 +.Dd April 18, 2015 .Dt DTRACE 1 .Os .Sh NAME @@ -670,7 +670,8 @@ Invalid command line options or argument .Sh SEE ALSO .Xr cpp 1 , .Xr dtruss 1 , -.Xr elf 5 +.Xr elf 5 , +.Xr SDT 9 .Rs .%T Solaris Dynamic Tracing Guide .Re Modified: projects/em_mq/etc/defaults/rc.conf ============================================================================== --- projects/em_mq/etc/defaults/rc.conf Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/etc/defaults/rc.conf Sun Apr 19 22:33:24 2015 (r281753) @@ -88,7 +88,7 @@ fsck_y_enable="NO" # Set to YES to do fs fsck_y_flags="" # Additional flags for fsck -y background_fsck="YES" # Attempt to run fsck in the background where possible. background_fsck_delay="60" # Time to wait (seconds) before starting the fsck. -netfs_types="nfs:NFS oldnfs:OLDNFS smbfs:SMB" # Net filesystems. +netfs_types="nfs:NFS smbfs:SMB" # Net filesystems. extra_netfs_types="NO" # List of network extra filesystem types for delayed # mount at startup (or NO). @@ -324,7 +324,6 @@ autounmountd_flags="" # Flags to autoun nfs_client_enable="NO" # This host is an NFS client (or NO). nfs_access_cache="60" # Client cache timeout in seconds nfs_server_enable="NO" # This host is an NFS server (or NO). -oldnfs_server_enable="NO" # Run the old NFS server (YES/NO). nfs_server_flags="-u -t" # Flags to nfsd (if enabled). mountd_enable="NO" # Run mountd (or NO). mountd_flags="-r" # Flags to mountd (if NFS server enabled). Modified: projects/em_mq/etc/mtree/BSD.include.dist ============================================================================== --- projects/em_mq/etc/mtree/BSD.include.dist Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/etc/mtree/BSD.include.dist Sun Apr 19 22:33:24 2015 (r281753) @@ -5,8 +5,6 @@ /set type=dir uname=root gname=wheel mode=0755 . - altq - .. arpa .. atf-c @@ -254,6 +252,8 @@ .. .. net + altq + .. .. net80211 .. Modified: projects/em_mq/etc/rc.d/mountd ============================================================================== --- projects/em_mq/etc/rc.d/mountd Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/etc/rc.d/mountd Sun Apr 19 22:33:24 2015 (r281753) @@ -33,12 +33,6 @@ mountd_precmd() fi fi - # If oldnfs_server_enable is yes, force use of the old NFS server - # - if checkyesno oldnfs_server_enable; then - rc_flags="-o ${rc_flags}" - fi - if checkyesno zfs_enable; then rc_flags="${rc_flags} /etc/exports /etc/zfs/exports" fi Modified: projects/em_mq/etc/rc.d/nfsd ============================================================================== --- projects/em_mq/etc/rc.d/nfsd Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/etc/rc.d/nfsd Sun Apr 19 22:33:24 2015 (r281753) @@ -19,40 +19,25 @@ sig_stop="USR1" nfsd_precmd() { - if checkyesno oldnfs_server_enable; then - rc_flags="-o ${nfs_server_flags}" + rc_flags="${nfs_server_flags}" - # Load the module now, so that the vfs.nfsrv sysctl - # oids are available. - load_kld nfsserver - - if checkyesno nfs_reserved_port_only; then - echo 'NFS on reserved port only=YES' - sysctl vfs.nfsrv.nfs_privport=1 > /dev/null - else - sysctl vfs.nfsrv.nfs_privport=0 > /dev/null - fi + # Load the modules now, so that the vfs.nfsd sysctl + # oids are available. + load_kld nfsd + + if checkyesno nfs_reserved_port_only; then + echo 'NFS on reserved port only=YES' + sysctl vfs.nfsd.nfs_privport=1 > /dev/null else - rc_flags="${nfs_server_flags}" + sysctl vfs.nfsd.nfs_privport=0 > /dev/null + fi - # Load the modules now, so that the vfs.nfsd sysctl - # oids are available. - load_kld nfsd - - if checkyesno nfs_reserved_port_only; then - echo 'NFS on reserved port only=YES' - sysctl vfs.nfsd.nfs_privport=1 > /dev/null - else - sysctl vfs.nfsd.nfs_privport=0 > /dev/null - fi - - if checkyesno nfsv4_server_enable; then - sysctl vfs.nfsd.server_max_nfsvers=4 > /dev/null - force_depend nfsuserd || err 1 "Cannot run nfsuserd" - else - echo 'NFSv4 is disabled' - sysctl vfs.nfsd.server_max_nfsvers=3 > /dev/null - fi + if checkyesno nfsv4_server_enable; then + sysctl vfs.nfsd.server_max_nfsvers=4 > /dev/null + force_depend nfsuserd || err 1 "Cannot run nfsuserd" + else + echo 'NFSv4 is disabled' + sysctl vfs.nfsd.server_max_nfsvers=3 > /dev/null fi force_depend rpcbind || return 1 Modified: projects/em_mq/include/Makefile ============================================================================== --- projects/em_mq/include/Makefile Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/include/Makefile Sun Apr 19 22:33:24 2015 (r281753) @@ -50,6 +50,7 @@ LSUBDIRS= cam/ata cam/scsi \ geom/cache geom/concat geom/eli geom/gate geom/journal geom/label \ geom/mirror geom/mountver geom/multipath geom/nop \ geom/raid geom/raid3 geom/shsec geom/stripe geom/virstor \ + net/altq \ netgraph/atm netgraph/netflow \ security/audit \ security/mac_biba security/mac_bsdextended security/mac_lomac \ @@ -144,7 +145,7 @@ compat: -p ${DESTDIR}${INCLUDEDIR} copies: -.for i in ${LDIRS} ${LSUBDIRS} ${LSUBSUBDIRS} altq crypto machine machine/pc \ +.for i in ${LDIRS} ${LSUBDIRS} ${LSUBSUBDIRS} crypto machine machine/pc \ ${_MARCHS} .if exists(${DESTDIR}${INCLUDEDIR}/$i) cd ${DESTDIR}${INCLUDEDIR}/$i; \ @@ -179,9 +180,6 @@ copies: cd ${.CURDIR}/../sys/dev/pci; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 pcireg.h \ ${DESTDIR}${INCLUDEDIR}/dev/pci - cd ${.CURDIR}/../sys/contrib/altq/altq; \ - ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ - ${DESTDIR}${INCLUDEDIR}/altq cd ${.CURDIR}/../sys/fs/cd9660/; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ ${DESTDIR}${INCLUDEDIR}/isofs/cd9660 @@ -279,11 +277,6 @@ symlinks: ln -fs ../../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \ done .endfor - cd ${.CURDIR}/../sys/contrib/altq/altq; \ - for h in *.h; do \ - ln -fs ../../../sys/contrib/altq/altq/$$h \ - ${DESTDIR}${INCLUDEDIR}/altq; \ - done .if ${MK_IPFILTER} != "no" cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \ for h in *.h; do \ Modified: projects/em_mq/lib/libc/Makefile ============================================================================== --- projects/em_mq/lib/libc/Makefile Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/lib/libc/Makefile Sun Apr 19 22:33:24 2015 (r281753) @@ -157,10 +157,6 @@ libkern.${LIBC_ARCH}:: ${KMSRCS} ${CP} ${.ALLSRC} ${DESTDIR}/sys/libkern/${LIBC_ARCH} .endif -.if ${MK_SYSCALL_COMPAT} != "no" -CFLAGS+=-DSYSCALL_COMPAT -.endif - .include .include Modified: projects/em_mq/lib/libc/amd64/sys/Makefile.inc ============================================================================== --- projects/em_mq/lib/libc/amd64/sys/Makefile.inc Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/lib/libc/amd64/sys/Makefile.inc Sun Apr 19 22:33:24 2015 (r281753) @@ -11,6 +11,3 @@ MDASM= vfork.S brk.S cerror.S exect.S ge NOASM= break.o exit.o getlogin.o openbsd_poll.o sstk.o vfork.o yield.o PSEUDO= _getlogin.o _exit.o -.if ${MK_SYSCALL_COMPAT} != "no" -PSEUDO+= _pread.o _pwrite.o _lseek.o _mmap.o _ftruncate.o _truncate.o -.endif Modified: projects/em_mq/lib/libc/arm/sys/Makefile.inc ============================================================================== --- projects/em_mq/lib/libc/arm/sys/Makefile.inc Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/lib/libc/arm/sys/Makefile.inc Sun Apr 19 22:33:24 2015 (r281753) @@ -8,6 +8,3 @@ MDASM= Ovfork.S brk.S cerror.S pipe.S pt NOASM= break.o exit.o getlogin.o openbsd_poll.o sstk.o vfork.o yield.o PSEUDO= _exit.o _getlogin.o -.if ${MK_SYSCALL_COMPAT} != "no" -PSEUDO+= _pread.o _pwrite.o _lseek.o _mmap.o _ftruncate.o _truncate.o -.endif Modified: projects/em_mq/lib/libc/gen/waitid.c ============================================================================== --- projects/em_mq/lib/libc/gen/waitid.c Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/lib/libc/gen/waitid.c Sun Apr 19 22:33:24 2015 (r281753) @@ -37,6 +37,7 @@ __FBSDID("$FreeBSD$"); #include #include #include "un-namespace.h" +#include "libc_private.h" int __waitid(idtype_t idtype, id_t id, siginfo_t *info, int flags) @@ -44,7 +45,9 @@ __waitid(idtype_t idtype, id_t id, sigin int status; pid_t ret; - ret = _wait6(idtype, id, &status, flags, NULL, info); + ret = ((pid_t (*)(idtype_t, id_t, int *, int, struct __wrusage *, + siginfo_t *))__libc_interposing[INTERPOS_wait6])(idtype, id, + &status, flags, NULL, info); /* * According to SUSv4, waitid() shall not return a PID when a Modified: projects/em_mq/lib/libc/i386/sys/Makefile.inc ============================================================================== --- projects/em_mq/lib/libc/i386/sys/Makefile.inc Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/lib/libc/i386/sys/Makefile.inc Sun Apr 19 22:33:24 2015 (r281753) @@ -15,9 +15,6 @@ MDASM= Ovfork.S brk.S cerror.S exect.S g NOASM= break.o exit.o getlogin.o openbsd_poll.o sstk.o vfork.o yield.o PSEUDO= _getlogin.o _exit.o -.if ${MK_SYSCALL_COMPAT} != "no" -PSEUDO+= _pread.o _pwrite.o _lseek.o _mmap.o _ftruncate.o _truncate.o -.endif MAN+= i386_get_ioperm.2 i386_get_ldt.2 i386_vm86.2 MAN+= i386_set_watch.3 Modified: projects/em_mq/lib/libc/include/compat.h ============================================================================== --- projects/em_mq/lib/libc/include/compat.h Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/lib/libc/include/compat.h Sun Apr 19 22:33:24 2015 (r281753) @@ -47,9 +47,7 @@ __sym_compat(shmctl, freebsd7_shmctl, FB #define __weak_reference(sym,alias) \ .weak alias;.equ alias,sym -#ifndef SYSCALL_COMPAT __weak_reference(__sys_fcntl,__fcntl_compat) -#endif #undef __weak_reference Modified: projects/em_mq/lib/libc/include/libc_private.h ============================================================================== --- projects/em_mq/lib/libc/include/libc_private.h Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/lib/libc/include/libc_private.h Sun Apr 19 22:33:24 2015 (r281753) @@ -222,6 +222,8 @@ enum { INTERPOS_spinlock, INTERPOS_spinunlock, INTERPOS_kevent, + INTERPOS_wait6, + INTERPOS_ppoll, INTERPOS_MAX }; @@ -276,21 +278,12 @@ extern void (*__cleanup)(void) __hidden; /* * Get kern.osreldate to detect ABI revisions. Explicitly - * ignores value of $OSVERSION and caches result. Prototypes - * for the wrapped "new" pad-less syscalls are here for now. + * ignores value of $OSVERSION and caches result. */ int __getosreldate(void); #include #include -/* With pad */ -__off_t __sys_freebsd6_lseek(int, int, __off_t, int); -int __sys_freebsd6_ftruncate(int, int, __off_t); -int __sys_freebsd6_truncate(const char *, int, __off_t); -__ssize_t __sys_freebsd6_pread(int, void *, __size_t, int, __off_t); -__ssize_t __sys_freebsd6_pwrite(int, const void *, __size_t, int, __off_t); -void * __sys_freebsd6_mmap(void *, __size_t, int, int, int, int, __off_t); - struct aiocb; struct fd_set; struct iovec; @@ -305,6 +298,8 @@ struct timeval; struct timezone; struct __siginfo; struct __ucontext; +struct __wrusage; +enum idtype; int __sys_aio_suspend(const struct aiocb * const[], int, const struct timespec *); int __sys_accept(int, struct sockaddr *, __socklen_t *); @@ -329,6 +324,8 @@ int __sys_pselect(int, struct fd_set *, struct fd_set *, const struct timespec *, const __sigset_t *); int __sys_poll(struct pollfd *, unsigned, int); +int __sys_ppoll(struct pollfd *, unsigned, const struct timespec *, + const __sigset_t *); __ssize_t __sys_pread(int, void *, __size_t, __off_t); __ssize_t __sys_pwrite(int, const void *, __size_t, __off_t); __ssize_t __sys_read(int, void *, __size_t); @@ -357,6 +354,8 @@ int __sys_thr_kill(long, int); int __sys_thr_self(long *); int __sys_truncate(const char *, __off_t); __pid_t __sys_wait4(__pid_t, int *, int, struct rusage *); +__pid_t __sys_wait6(enum idtype, __id_t, int *, int, + struct __wrusage *, struct __siginfo *); __ssize_t __sys_write(int, const void *, __size_t); __ssize_t __sys_writev(int, const struct iovec *, int); Modified: projects/em_mq/lib/libc/mips/sys/Makefile.inc ============================================================================== --- projects/em_mq/lib/libc/mips/sys/Makefile.inc Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/lib/libc/mips/sys/Makefile.inc Sun Apr 19 22:33:24 2015 (r281753) @@ -6,10 +6,6 @@ MDASM= Ovfork.S brk.S cerror.S exect.S fork.S pipe.S ptrace.S sbrk.S syscall.S # Don't generate default code for these syscalls: -NOASM= break.o exit.o ftruncate.o getlogin.o lseek.o mmap.o \ - openbsd_poll.o pread.o pwrite.o sstk.o truncate.o vfork.o yield.o +NOASM= break.o exit.o getlogin.o openbsd_poll.o sstk.o vfork.o yield.o PSEUDO= _exit.o _getlogin.o -.if ${MK_SYSCALL_COMPAT} != "no" -PSEUDO+= _pread.o _pwrite.o _lseek.o _mmap.o _ftruncate.o _truncate.o -.endif Modified: projects/em_mq/lib/libc/powerpc/sys/Makefile.inc ============================================================================== --- projects/em_mq/lib/libc/powerpc/sys/Makefile.inc Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/lib/libc/powerpc/sys/Makefile.inc Sun Apr 19 22:33:24 2015 (r281753) @@ -6,6 +6,3 @@ MDASM+= brk.S cerror.S exect.S pipe.S pt NOASM= break.o exit.o getlogin.o openbsd_poll.o sstk.o yield.o PSEUDO= _getlogin.o _exit.o -.if ${MK_SYSCALL_COMPAT} != "no" -PSEUDO+= _pread.o _pwrite.o _lseek.o _mmap.o _ftruncate.o _truncate.o -.endif Modified: projects/em_mq/lib/libc/powerpc64/sys/Makefile.inc ============================================================================== --- projects/em_mq/lib/libc/powerpc64/sys/Makefile.inc Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/lib/libc/powerpc64/sys/Makefile.inc Sun Apr 19 22:33:24 2015 (r281753) @@ -6,6 +6,3 @@ MDASM+= brk.S cerror.S exect.S pipe.S pt NOASM= break.o exit.o getlogin.o openbsd_poll.o sstk.o yield.o PSEUDO= _getlogin.o _exit.o -.if ${MK_SYSCALL_COMPAT} != "no" -PSEUDO+= _pread.o _pwrite.o _lseek.o _mmap.o _ftruncate.o _truncate.o -.endif Modified: projects/em_mq/lib/libc/sparc64/sys/Makefile.inc ============================================================================== --- projects/em_mq/lib/libc/sparc64/sys/Makefile.inc Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/lib/libc/sparc64/sys/Makefile.inc Sun Apr 19 22:33:24 2015 (r281753) @@ -18,6 +18,3 @@ MDASM+= brk.S cerror.S exect.S pipe.S pt NOASM= break.o exit.o getlogin.o openbsd_poll.o sstk.o yield.o PSEUDO= _getlogin.o _exit.o -.if ${MK_SYSCALL_COMPAT} != "no" -PSEUDO+= _pread.o _pwrite.o _lseek.o _mmap.o _ftruncate.o _truncate.o -.endif Modified: projects/em_mq/lib/libc/sys/Makefile.inc ============================================================================== --- projects/em_mq/lib/libc/sys/Makefile.inc Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/lib/libc/sys/Makefile.inc Sun Apr 19 22:33:24 2015 (r281753) @@ -26,18 +26,6 @@ SRCS+= \ __error.c \ interposing_table.c -.if ${MK_SYSCALL_COMPAT} != "no" -SYSCALL_COMPAT_SRCS= \ - ftruncate.c \ - lseek.c \ - mmap.c \ - pread.c \ - pwrite.c \ - truncate.c -SRCS+= ${SYSCALL_COMPAT_SRCS} -NOASM+= ${SYSCALL_COMPAT_SRCS:S/.c/.o/} -.endif - SRCS+= futimens.c utimensat.c NOASM+= futimens.o utimensat.o PSEUDO+= _futimens.o _utimensat.o @@ -57,6 +45,7 @@ INTERPOSED = \ open \ openat \ poll \ + ppoll \ pselect \ read \ readv \ @@ -73,6 +62,7 @@ INTERPOSED = \ sigwaitinfo \ swapcontext \ wait4 \ + wait6 \ write \ writev Modified: projects/em_mq/lib/libc/sys/fcntl.c ============================================================================== --- projects/em_mq/lib/libc/sys/fcntl.c Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/lib/libc/sys/fcntl.c Sun Apr 19 22:33:24 2015 (r281753) @@ -3,6 +3,12 @@ * Authors: Doug Rabson * Developed with Red Inc: Alfred Perlstein * + * Copyright (c) 2014-2015 The FreeBSD Foundation. + * All rights reserved. + * + * Portions of this software were developed by Konstantin Belousov + * under sponsorship from the FreeBSD Foundation. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -48,59 +54,3 @@ fcntl(int fd, int cmd, ...) return (((int (*)(int, int, ...)) __libc_interposing[INTERPOS_fcntl])(fd, cmd, arg)); } - -#ifdef SYSCALL_COMPAT -__weak_reference(__fcntl_compat, __fcntl); - -int -__fcntl_compat(int fd, int cmd, ...) -{ - va_list args; - long arg; - struct __oflock ofl; - struct flock *flp; - int res; - - va_start(args, cmd); - arg = va_arg(args, long); - va_end(args); - - if (__getosreldate() >= 800028) { - return (__sys_fcntl(fd, cmd, arg)); - } else { - if (cmd == F_GETLK || cmd == F_SETLK || cmd == F_SETLKW) { - /* - * Convert new-style struct flock (which - * includes l_sysid) to old-style. - */ - flp = (struct flock *) (uintptr_t) arg; - ofl.l_start = flp->l_start; - ofl.l_len = flp->l_len; - ofl.l_pid = flp->l_pid; - ofl.l_type = flp->l_type; - ofl.l_whence = flp->l_whence; - - switch (cmd) { - case F_GETLK: - res = __sys_fcntl(fd, F_OGETLK, &ofl); - if (res >= 0) { - flp->l_start = ofl.l_start; - flp->l_len = ofl.l_len; - flp->l_pid = ofl.l_pid; - flp->l_type = ofl.l_type; - flp->l_whence = ofl.l_whence; - flp->l_sysid = 0; - } - return (res); - - case F_SETLK: - return (__sys_fcntl(fd, F_OSETLK, &ofl)); - - case F_SETLKW: - return (__sys_fcntl(fd, F_OSETLKW, &ofl)); - } - } - return (__sys_fcntl(fd, cmd, arg)); - } -} -#endif Modified: projects/em_mq/lib/libc/sys/interposing_table.c ============================================================================== --- projects/em_mq/lib/libc/sys/interposing_table.c Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/lib/libc/sys/interposing_table.c Sun Apr 19 22:33:24 2015 (r281753) @@ -44,7 +44,7 @@ interpos_func_t __libc_interposing[INTER SLOT(aio_suspend, __sys_aio_suspend), SLOT(close, __sys_close), SLOT(connect, __sys_connect), - SLOT(fcntl, __fcntl_compat), + SLOT(fcntl, __sys_fcntl), SLOT(fsync, __sys_fsync), SLOT(fork, __sys_fork), SLOT(msync, __sys_msync), @@ -76,6 +76,8 @@ interpos_func_t __libc_interposing[INTER SLOT(spinlock, __libc_spinlock_stub), SLOT(spinunlock, __libc_spinunlock_stub), SLOT(kevent, __sys_kevent), + SLOT(wait6, __sys_wait6), + SLOT(ppoll, __sys_ppoll), }; #undef SLOT Copied: projects/em_mq/lib/libc/sys/ppoll.c (from r281750, head/lib/libc/sys/ppoll.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/em_mq/lib/libc/sys/ppoll.c Sun Apr 19 22:33:24 2015 (r281753, copy of r281750, head/lib/libc/sys/ppoll.c) @@ -0,0 +1,51 @@ +/* + * Copyright (c) 2015 The FreeBSD Foundation. + * All rights reserved. + * + * Portions of this software were developed by Konstantin Belousov + * under sponsorship from the FreeBSD Foundation. + * + * 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(s), this list of conditions and the following disclaimer as + * the first lines of this file unmodified other than the possible + * addition of one or more copyright notices. + * 2. Redistributions in binary form must reproduce the above copyright + * notice(s), 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 COPYRIGHT HOLDER(S) ``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 COPYRIGHT HOLDER(S) 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 +#include +#include "libc_private.h" + +__weak_reference(__sys_ppoll, __ppoll); + +#pragma weak ppoll +int +ppoll(struct pollfd pfd[], nfds_t nfds, const struct timespec *__restrict + timeout, const sigset_t *__restrict newsigmask) +{ + + return (((int (*)(struct pollfd *, nfds_t, const struct timespec *, + const sigset_t *)) __libc_interposing[INTERPOS_ppoll])(pfd, nfds, + timeout, newsigmask)); +} Copied: projects/em_mq/lib/libc/sys/wait6.c (from r281750, head/lib/libc/sys/wait6.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/em_mq/lib/libc/sys/wait6.c Sun Apr 19 22:33:24 2015 (r281753, copy of r281750, head/lib/libc/sys/wait6.c) @@ -0,0 +1,52 @@ +/* + * Copyright (c) 2015 The FreeBSD Foundation. + * All rights reserved. + * + * Portions of this software were developed by Konstantin Belousov + * under sponsorship from the FreeBSD Foundation. + * + * 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(s), this list of conditions and the following disclaimer as + * the first lines of this file unmodified other than the possible + * addition of one or more copyright notices. + * 2. Redistributions in binary form must reproduce the above copyright + * notice(s), 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 COPYRIGHT HOLDER(S) ``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 COPYRIGHT HOLDER(S) 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 +#include +#include +#include "libc_private.h" + +__weak_reference(__sys_wait6, __wait6); + +#pragma weak wait6 +pid_t +wait6(idtype_t idtype, id_t id, int *status, int options, struct __wrusage *ru, + siginfo_t *infop) +{ + + return (((pid_t (*)(idtype_t, id_t, int *, int, struct __wrusage *, + siginfo_t *))__libc_interposing[INTERPOS_wait6])(idtype, id, + status, options, ru, infop)); +} Modified: projects/em_mq/lib/libpmc/libpmc.c ============================================================================== --- projects/em_mq/lib/libpmc/libpmc.c Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/lib/libpmc/libpmc.c Sun Apr 19 22:33:24 2015 (r281753) @@ -164,6 +164,7 @@ PMC_CLASSDEP_TABLE(octeon, OCTEON); PMC_CLASSDEP_TABLE(ucf, UCF); PMC_CLASSDEP_TABLE(ppc7450, PPC7450); PMC_CLASSDEP_TABLE(ppc970, PPC970); +PMC_CLASSDEP_TABLE(e500, E500); static struct pmc_event_descr soft_event_table[PMC_EV_DYN_COUNT]; @@ -296,8 +297,9 @@ PMC_MDEP_TABLE(armv7, ARMV7, PMC_CLASS_S PMC_MDEP_TABLE(mips24k, MIPS24K, PMC_CLASS_SOFT, PMC_CLASS_MIPS24K); PMC_MDEP_TABLE(mips74k, MIPS74K, PMC_CLASS_SOFT, PMC_CLASS_MIPS74K); PMC_MDEP_TABLE(octeon, OCTEON, PMC_CLASS_SOFT, PMC_CLASS_OCTEON); -PMC_MDEP_TABLE(ppc7450, PPC7450, PMC_CLASS_SOFT, PMC_CLASS_PPC7450); -PMC_MDEP_TABLE(ppc970, PPC970, PMC_CLASS_SOFT, PMC_CLASS_PPC970); +PMC_MDEP_TABLE(ppc7450, PPC7450, PMC_CLASS_SOFT, PMC_CLASS_PPC7450, PMC_CLASS_TSC); +PMC_MDEP_TABLE(ppc970, PPC970, PMC_CLASS_SOFT, PMC_CLASS_PPC970, PMC_CLASS_TSC); +PMC_MDEP_TABLE(e500, E500, PMC_CLASS_SOFT, PMC_CLASS_E500, PMC_CLASS_TSC); PMC_MDEP_TABLE(generic, SOFT, PMC_CLASS_SOFT); static const struct pmc_event_descr tsc_event_table[] = @@ -368,6 +370,7 @@ PMC_CLASS_TABLE_DESC(octeon, OCTEON, oct #if defined(__powerpc__) PMC_CLASS_TABLE_DESC(ppc7450, PPC7450, ppc7450, powerpc); PMC_CLASS_TABLE_DESC(ppc970, PPC970, ppc970, powerpc); +PMC_CLASS_TABLE_DESC(e500, E500, e500, powerpc); #endif static struct pmc_class_descr soft_class_table_descr = @@ -2494,6 +2497,12 @@ static struct pmc_event_alias ppc970_ali EV_ALIAS(NULL, NULL) }; +static struct pmc_event_alias e500_aliases[] = { + EV_ALIAS("instructions", "INSTR_COMPLETED"), + EV_ALIAS("cycles", "CYCLES"), + EV_ALIAS(NULL, NULL) +}; + #define POWERPC_KW_OS "os" #define POWERPC_KW_USR "usr" #define POWERPC_KW_ANYTHREAD "anythread" @@ -2949,6 +2958,10 @@ pmc_event_names_of_class(enum pmc_class ev = ppc970_event_table; count = PMC_EVENT_TABLE_SIZE(ppc970); break; + case PMC_CLASS_E500: + ev = e500_event_table; + count = PMC_EVENT_TABLE_SIZE(e500); + break; case PMC_CLASS_SOFT: ev = soft_event_table; count = soft_event_info.pm_nevent; @@ -3245,6 +3258,10 @@ pmc_init(void) PMC_MDEP_INIT(ppc970); pmc_class_table[n] = &ppc970_class_table_descr; break; + case PMC_CPU_PPC_E500: + PMC_MDEP_INIT(e500); + pmc_class_table[n] = &e500_class_table_descr; + break; #endif default: /* @@ -3444,6 +3461,9 @@ _pmc_name_of_event(enum pmc_event pe, en } else if (pe >= PMC_EV_PPC970_FIRST && pe <= PMC_EV_PPC970_LAST) { ev = ppc970_event_table; evfence = ppc970_event_table + PMC_EVENT_TABLE_SIZE(ppc970); + } else if (pe >= PMC_EV_E500_FIRST && pe <= PMC_EV_E500_LAST) { + ev = e500_event_table; + evfence = e500_event_table + PMC_EVENT_TABLE_SIZE(e500); } else if (pe == PMC_EV_TSC_TSC) { ev = tsc_event_table; evfence = tsc_event_table + PMC_EVENT_TABLE_SIZE(tsc); Modified: projects/em_mq/lib/libthr/Makefile ============================================================================== --- projects/em_mq/lib/libthr/Makefile Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/lib/libthr/Makefile Sun Apr 19 22:33:24 2015 (r281753) @@ -61,10 +61,6 @@ SYMLINKS+=lib${LIB}.so ${LIBDIR}/libpthr SYMLINKS+=lib${LIB}_p.a ${LIBDIR}/libpthread_p.a .endif -.if ${MK_SYSCALL_COMPAT} != "no" -CFLAGS+=-DSYSCALL_COMPAT -.endif - .include .include Modified: projects/em_mq/lib/libthr/thread/thr_syscalls.c ============================================================================== --- projects/em_mq/lib/libthr/thread/thr_syscalls.c Sun Apr 19 20:20:52 2015 (r281752) +++ projects/em_mq/lib/libthr/thread/thr_syscalls.c Sun Apr 19 22:33:24 2015 (r281753) @@ -95,10 +95,6 @@ __FBSDID("$FreeBSD$"); #include "libc_private.h" #include "thr_private.h" -#ifdef SYSCALL_COMPAT -extern int __fcntl_compat(int, int, ...); -#endif - static int __thr_accept(int s, struct sockaddr *addr, socklen_t *addrlen) { @@ -203,18 +199,10 @@ __thr_fcntl(int fd, int cmd, ...) va_start(ap, cmd); if (cmd == F_OSETLKW || cmd == F_SETLKW) { _thr_cancel_enter(curthread); -#ifdef SYSCALL_COMPAT - ret = __fcntl_compat(fd, cmd, va_arg(ap, void *)); -#else ret = __sys_fcntl(fd, cmd, va_arg(ap, void *)); -#endif _thr_cancel_leave(curthread, ret == -1); } else { -#ifdef SYSCALL_COMPAT - ret = __fcntl_compat(fd, cmd, va_arg(ap, void *)); -#else ret = __sys_fcntl(fd, cmd, va_arg(ap, void *)); -#endif } va_end(ap); @@ -327,6 +315,26 @@ __thr_poll(struct pollfd *fds, unsigned * the thread is not canceled. */ static int +__thr_ppoll(struct pollfd pfd[], nfds_t nfds, const struct timespec * + timeout, const sigset_t *newsigmask) +{ + struct pthread *curthread; + int ret; + + curthread = _get_curthread(); + _thr_cancel_enter(curthread); + ret = __sys_ppoll(pfd, nfds, timeout, newsigmask); + _thr_cancel_leave(curthread, ret == -1); + + return (ret); +} + +/* + * Cancellation behavior: + * Thread may be canceled at start, but if the system call returns something, + * the thread is not canceled. + */ +static int __thr_pselect(int count, fd_set *rfds, fd_set *wfds, fd_set *efds, const struct timespec *timo, const sigset_t *mask) { @@ -545,6 +553,25 @@ __thr_wait4(pid_t pid, int *status, int /* *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Mon Apr 20 20:03:18 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BDC0A79D; Mon, 20 Apr 2015 20:03:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A87BDAE6; Mon, 20 Apr 2015 20:03:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3KK3IgV097840; Mon, 20 Apr 2015 20:03:18 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3KK38sZ097644; Mon, 20 Apr 2015 20:03:08 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201504202003.t3KK38sZ097644@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Mon, 20 Apr 2015 20:03:08 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r281784 - in projects/release-arm64: . bin/ed bin/sh bin/sh/tests/builtins cddl/contrib/opensolaris/cmd/dtrace contrib/llvm/lib/MC/MCParser contrib/llvm/patches etc/defaults etc/rc.d li... 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.20 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: Mon, 20 Apr 2015 20:03:18 -0000 Author: gjb Date: Mon Apr 20 20:03:07 2015 New Revision: 281784 URL: https://svnweb.freebsd.org/changeset/base/281784 Log: MFH: r281668 through r281783 Sponsored by: The FreeBSD Foundation Added: projects/release-arm64/bin/sh/tests/builtins/trap15.0 - copied unchanged from r281783, head/bin/sh/tests/builtins/trap15.0 projects/release-arm64/bin/sh/tests/builtins/trap16.0 - copied unchanged from r281783, head/bin/sh/tests/builtins/trap16.0 projects/release-arm64/contrib/llvm/patches/patch-13-llvm-r229911-uleb128-commas.diff - copied unchanged from r281783, head/contrib/llvm/patches/patch-13-llvm-r229911-uleb128-commas.diff projects/release-arm64/lib/libc/sys/ppoll.c - copied unchanged from r281783, head/lib/libc/sys/ppoll.c projects/release-arm64/lib/libc/sys/wait6.c - copied unchanged from r281783, head/lib/libc/sys/wait6.c projects/release-arm64/share/man/man4/dtrace-io.4 - copied unchanged from r281783, head/share/man/man4/dtrace-io.4 projects/release-arm64/share/man/man4/dtrace-ip.4 - copied unchanged from r281783, head/share/man/man4/dtrace-ip.4 projects/release-arm64/share/man/man4/dtrace-proc.4 - copied unchanged from r281783, head/share/man/man4/dtrace-proc.4 projects/release-arm64/share/man/man4/dtrace-sched.4 - copied unchanged from r281783, head/share/man/man4/dtrace-sched.4 projects/release-arm64/share/man/man4/dtrace-tcp.4 - copied unchanged from r281783, head/share/man/man4/dtrace-tcp.4 projects/release-arm64/share/man/man4/dtrace-udp.4 - copied unchanged from r281783, head/share/man/man4/dtrace-udp.4 projects/release-arm64/sys/arm/allwinner/files.allwinner - copied unchanged from r281783, head/sys/arm/allwinner/files.allwinner projects/release-arm64/sys/dev/hwpmc/hwpmc_e500.c - copied unchanged from r281783, head/sys/dev/hwpmc/hwpmc_e500.c projects/release-arm64/usr.sbin/bluetooth/hccontrol/le.c - copied unchanged from r281783, head/usr.sbin/bluetooth/hccontrol/le.c Deleted: projects/release-arm64/lib/libc/sys/ftruncate.c projects/release-arm64/lib/libc/sys/lseek.c projects/release-arm64/lib/libc/sys/mmap.c projects/release-arm64/lib/libc/sys/pread.c projects/release-arm64/lib/libc/sys/pwrite.c projects/release-arm64/lib/libc/sys/truncate.c projects/release-arm64/sys/fs/ext2fs/ext2_hash.c projects/release-arm64/sys/fs/ext2fs/ext2_htree.c projects/release-arm64/sys/netipsec/xform_ipip.c projects/release-arm64/tools/build/options/WITHOUT_SYSCALL_COMPAT Modified: projects/release-arm64/ObsoleteFiles.inc projects/release-arm64/README projects/release-arm64/bin/ed/glbl.c projects/release-arm64/bin/sh/sh.1 projects/release-arm64/bin/sh/tests/builtins/Makefile projects/release-arm64/bin/sh/trap.c projects/release-arm64/cddl/contrib/opensolaris/cmd/dtrace/dtrace.1 projects/release-arm64/contrib/llvm/lib/MC/MCParser/AsmParser.cpp projects/release-arm64/etc/defaults/rc.conf projects/release-arm64/etc/rc.d/mountd projects/release-arm64/etc/rc.d/nfsd projects/release-arm64/lib/libc/Makefile projects/release-arm64/lib/libc/amd64/sys/Makefile.inc projects/release-arm64/lib/libc/arm/sys/Makefile.inc projects/release-arm64/lib/libc/gen/setproctitle.c projects/release-arm64/lib/libc/gen/waitid.c projects/release-arm64/lib/libc/i386/sys/Makefile.inc projects/release-arm64/lib/libc/include/compat.h projects/release-arm64/lib/libc/include/libc_private.h projects/release-arm64/lib/libc/mips/sys/Makefile.inc projects/release-arm64/lib/libc/powerpc/sys/Makefile.inc projects/release-arm64/lib/libc/powerpc64/sys/Makefile.inc projects/release-arm64/lib/libc/sparc64/sys/Makefile.inc projects/release-arm64/lib/libc/sys/Makefile.inc projects/release-arm64/lib/libc/sys/fcntl.c projects/release-arm64/lib/libc/sys/interposing_table.c projects/release-arm64/lib/libpmc/libpmc.c projects/release-arm64/lib/libthr/Makefile projects/release-arm64/lib/libthr/thread/thr_syscalls.c projects/release-arm64/release/tools/vmimage.subr projects/release-arm64/sbin/ipfw/nat.c projects/release-arm64/sbin/mount/mount.8 projects/release-arm64/sbin/mount/mount.c projects/release-arm64/sbin/mount_nfs/Makefile projects/release-arm64/sbin/mount_nfs/mount_nfs.8 projects/release-arm64/share/man/man3/pthread_testcancel.3 projects/release-arm64/share/man/man3/queue.3 projects/release-arm64/share/man/man4/Makefile projects/release-arm64/share/man/man4/run.4 projects/release-arm64/share/man/man5/rc.conf.5 projects/release-arm64/share/man/man5/src.conf.5 projects/release-arm64/share/man/man9/SDT.9 projects/release-arm64/share/mk/src.opts.mk projects/release-arm64/sys/amd64/amd64/machdep.c projects/release-arm64/sys/amd64/amd64/pmap.c projects/release-arm64/sys/arm/allwinner/a10_clk.h projects/release-arm64/sys/arm/allwinner/a20/a20_mp.c projects/release-arm64/sys/arm/allwinner/a20/files.a20 projects/release-arm64/sys/arm/allwinner/a20/std.a20 projects/release-arm64/sys/arm/allwinner/files.a10 projects/release-arm64/sys/arm/allwinner/if_emac.c projects/release-arm64/sys/arm/allwinner/if_emacreg.h projects/release-arm64/sys/arm/allwinner/std.a10 projects/release-arm64/sys/compat/linux/linux_file.c projects/release-arm64/sys/conf/files projects/release-arm64/sys/conf/files.powerpc projects/release-arm64/sys/dev/acpica/acpi.c projects/release-arm64/sys/dev/acpica/acpivar.h projects/release-arm64/sys/dev/atkbdc/psm.c projects/release-arm64/sys/dev/etherswitch/miiproxy.c projects/release-arm64/sys/dev/hwpmc/hwpmc_mpc7xxx.c projects/release-arm64/sys/dev/hwpmc/hwpmc_powerpc.c projects/release-arm64/sys/dev/hwpmc/hwpmc_powerpc.h projects/release-arm64/sys/dev/hwpmc/hwpmc_ppc970.c projects/release-arm64/sys/dev/hwpmc/pmc_events.h projects/release-arm64/sys/dev/ixgbe/if_ix.c projects/release-arm64/sys/dev/usb/usbdevs projects/release-arm64/sys/dev/usb/wlan/if_run.c projects/release-arm64/sys/dev/virtio/block/virtio_blk.c projects/release-arm64/sys/dev/xen/netfront/netfront.c projects/release-arm64/sys/fs/ext2fs/ext2_dir.h projects/release-arm64/sys/fs/ext2fs/ext2_extern.h projects/release-arm64/sys/fs/ext2fs/ext2_lookup.c projects/release-arm64/sys/fs/ext2fs/ext2_vfsops.c projects/release-arm64/sys/fs/ext2fs/ext2fs.h projects/release-arm64/sys/fs/nfs/nfs_commonport.c projects/release-arm64/sys/fs/nfsclient/nfs_clrpcops.c projects/release-arm64/sys/fs/nfsclient/nfs_clvfsops.c projects/release-arm64/sys/fs/nfsserver/nfs_nfsdport.c projects/release-arm64/sys/geom/uncompress/g_uncompress.c projects/release-arm64/sys/i386/i386/apic_vector.s projects/release-arm64/sys/i386/i386/db_trace.c projects/release-arm64/sys/i386/i386/machdep.c projects/release-arm64/sys/i386/i386/mp_machdep.c projects/release-arm64/sys/i386/i386/pmap.c projects/release-arm64/sys/i386/i386/swtch.s projects/release-arm64/sys/i386/include/smp.h projects/release-arm64/sys/i386/xen/mp_machdep.c projects/release-arm64/sys/i386/xen/pmap.c projects/release-arm64/sys/kern/init_sysent.c projects/release-arm64/sys/kern/kern_synch.c projects/release-arm64/sys/kern/kern_thread.c projects/release-arm64/sys/kern/sys_generic.c projects/release-arm64/sys/kern/syscalls.c projects/release-arm64/sys/kern/syscalls.master projects/release-arm64/sys/kern/systrace_args.c projects/release-arm64/sys/kern/vfs_cache.c projects/release-arm64/sys/kern/vfs_syscalls.c projects/release-arm64/sys/modules/ext2fs/Makefile projects/release-arm64/sys/modules/hwpmc/Makefile projects/release-arm64/sys/net/bpf.c projects/release-arm64/sys/netgraph/bluetooth/include/ng_hci.h projects/release-arm64/sys/netipsec/ipsec.c projects/release-arm64/sys/netipsec/ipsec.h projects/release-arm64/sys/netipsec/ipsec_input.c projects/release-arm64/sys/netipsec/ipsec_output.c projects/release-arm64/sys/netipsec/key.c projects/release-arm64/sys/netipsec/xform.h projects/release-arm64/sys/netipsec/xform_ah.c projects/release-arm64/sys/netipsec/xform_esp.c projects/release-arm64/sys/netipsec/xform_ipcomp.c projects/release-arm64/sys/nfsclient/nfs.h projects/release-arm64/sys/powerpc/booke/interrupt.c projects/release-arm64/sys/powerpc/booke/locore.S projects/release-arm64/sys/powerpc/booke/machdep.c projects/release-arm64/sys/powerpc/booke/trap_subr.S projects/release-arm64/sys/powerpc/include/pmc_mdep.h projects/release-arm64/sys/sys/pmc.h projects/release-arm64/sys/sys/syscall.h projects/release-arm64/sys/sys/syscall.mk projects/release-arm64/sys/sys/sysproto.h projects/release-arm64/sys/vm/device_pager.c projects/release-arm64/sys/vm/uma_core.c projects/release-arm64/sys/vm/vm_mmap.c projects/release-arm64/sys/x86/x86/mca.c projects/release-arm64/sys/x86/xen/xen_apic.c projects/release-arm64/tools/tools/netmap/pkt-gen.c projects/release-arm64/usr.bin/calendar/io.c projects/release-arm64/usr.bin/find/find.1 projects/release-arm64/usr.bin/nfsstat/nfsstat.c projects/release-arm64/usr.bin/rpcgen/rpc_sample.c projects/release-arm64/usr.sbin/bhyve/block_if.c projects/release-arm64/usr.sbin/bhyve/block_if.h projects/release-arm64/usr.sbin/bhyve/pci_ahci.c projects/release-arm64/usr.sbin/bhyve/pci_virtio_block.c projects/release-arm64/usr.sbin/bhyve/pci_virtio_net.c projects/release-arm64/usr.sbin/bluetooth/hccontrol/Makefile projects/release-arm64/usr.sbin/bluetooth/hccontrol/hccontrol.c projects/release-arm64/usr.sbin/bluetooth/hccontrol/hccontrol.h projects/release-arm64/usr.sbin/bluetooth/hccontrol/host_controller_baseband.c projects/release-arm64/usr.sbin/config/main.c projects/release-arm64/usr.sbin/crunch/crunchide/Makefile projects/release-arm64/usr.sbin/crunch/crunchide/exec_elf32.c projects/release-arm64/usr.sbin/inetd/inetd.c projects/release-arm64/usr.sbin/mountd/mountd.c projects/release-arm64/usr.sbin/nfsd/nfsd.8 projects/release-arm64/usr.sbin/sysrc/sysrc projects/release-arm64/usr.sbin/tzsetup/tzsetup.c projects/release-arm64/usr.sbin/vidcontrol/vidcontrol.c Directory Properties: projects/release-arm64/ (props changed) projects/release-arm64/cddl/ (props changed) projects/release-arm64/cddl/contrib/opensolaris/ (props changed) projects/release-arm64/contrib/llvm/ (props changed) projects/release-arm64/etc/ (props changed) projects/release-arm64/lib/libc/ (props changed) projects/release-arm64/sbin/ (props changed) projects/release-arm64/sbin/ipfw/ (props changed) projects/release-arm64/share/ (props changed) projects/release-arm64/share/man/man4/ (props changed) projects/release-arm64/sys/ (props changed) projects/release-arm64/sys/conf/ (props changed) projects/release-arm64/usr.bin/calendar/ (props changed) projects/release-arm64/usr.sbin/bhyve/ (props changed) Modified: projects/release-arm64/ObsoleteFiles.inc ============================================================================== --- projects/release-arm64/ObsoleteFiles.inc Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/ObsoleteFiles.inc Mon Apr 20 20:03:07 2015 (r281784) @@ -38,6 +38,9 @@ # xargs -n1 | sort | uniq -d; # done +# 20150418 +OLD_FILES+=sbin/mount_oldnfs +OLD_FILES+=usr/share/man/man8/mount_oldnfs.8.gz # 20150416: ALTQ moved to net/altq OLD_FILES+=usr/include/altq/altq_rmclass_debug.h OLD_FILES+=usr/include/altq/altq.h Modified: projects/release-arm64/README ============================================================================== --- projects/release-arm64/README Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/README Mon Apr 20 20:03:07 2015 (r281784) @@ -8,37 +8,32 @@ sources in this tree - please see the sp more information). The Makefile in this directory supports a number of targets for -building components (or all) of the FreeBSD source tree, the most -commonly used one being ``world'', which rebuilds and installs -everything in the FreeBSD system from the source tree except the -kernel, the kernel-modules and the contents of /etc. The ``world'' -target should only be used in cases where the source tree has not -changed from the currently running version. See: -http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html +building components (or all) of the FreeBSD source tree. See build(7) +and http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html for more information, including setting make(1) variables. -The ``buildkernel'' and ``installkernel'' targets build and install +The `buildkernel` and `installkernel` targets build and install the kernel and the modules (see below). Please see the top of the Makefile in this directory for more information on the standard build targets and compile-time flags. -Building a kernel is a somewhat more involved process, documentation -for which can be found at: - http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html -And in the config(8) man page. +Building a kernel is a somewhat more involved process. See build(7), config(8), +and http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html +for more information. + Note: If you want to build and install the kernel with the -``buildkernel'' and ``installkernel'' targets, you might need to build +`buildkernel` and `installkernel` targets, you might need to build world before. More information is available in the handbook. -The sample kernel configuration files reside in the sys//conf -sub-directory (assuming that you've installed the kernel sources), the -file named GENERIC being the one used to build your initial installation -kernel. The file NOTES contains entries and documentation for all possible +The kernel configuration files reside in the sys//conf +sub-directory. GENERIC is the default configuration used in release builds. +NOTES contains entries and documentation for all possible devices, not just those commonly used. Source Roadmap: --------------- + bin System/user commands. cddl Various commands and libraries under the Common Development Modified: projects/release-arm64/bin/ed/glbl.c ============================================================================== --- projects/release-arm64/bin/ed/glbl.c Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/bin/ed/glbl.c Mon Apr 20 20:03:07 2015 (r281784) @@ -60,7 +60,7 @@ build_active_list(int isgcmd) return ERR; if (isbinary) NUL_TO_NEWLINE(s, lp->len); - if (!regexec(pat, s, 0, NULL, 0) == isgcmd && + if (!(regexec(pat, s, 0, NULL, 0) == isgcmd) && set_active_node(lp) < 0) return ERR; } @@ -153,7 +153,7 @@ set_active_node(line_t *lp) if (active_list != NULL) { #endif if ((ts = (line_t **) realloc(active_list, - (ti += MINBUFSZ) * sizeof(line_t **))) == NULL) { + (ti += MINBUFSZ) * sizeof(line_t *))) == NULL) { fprintf(stderr, "%s\n", strerror(errno)); errmsg = "out of memory"; SPL0(); Modified: projects/release-arm64/bin/sh/sh.1 ============================================================================== --- projects/release-arm64/bin/sh/sh.1 Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/bin/sh/sh.1 Mon Apr 20 20:03:07 2015 (r281784) @@ -32,7 +32,7 @@ .\" from: @(#)sh.1 8.6 (Berkeley) 5/4/95 .\" $FreeBSD$ .\" -.Dd February 22, 2015 +.Dd April 18, 2015 .Dt SH 1 .Os .Sh NAME @@ -2574,8 +2574,7 @@ the former causes the specified signal t and the latter causes the default action to be taken. Omitting the .Ar action -is another way to request the default action, for compatibility reasons this -usage is not recommended though. +and using only signal numbers is another way to request the default action. In a subshell or utility environment, the shell resets trapped (but not ignored) signals to the default action. The Modified: projects/release-arm64/bin/sh/tests/builtins/Makefile ============================================================================== --- projects/release-arm64/bin/sh/tests/builtins/Makefile Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/bin/sh/tests/builtins/Makefile Mon Apr 20 20:03:07 2015 (r281784) @@ -137,6 +137,8 @@ FILES+= trap11.0 FILES+= trap12.0 FILES+= trap13.0 FILES+= trap14.0 +FILES+= trap15.0 +FILES+= trap16.0 FILES+= trap2.0 FILES+= trap3.0 FILES+= trap4.0 Copied: projects/release-arm64/bin/sh/tests/builtins/trap15.0 (from r281783, head/bin/sh/tests/builtins/trap15.0) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/release-arm64/bin/sh/tests/builtins/trap15.0 Mon Apr 20 20:03:07 2015 (r281784, copy of r281783, head/bin/sh/tests/builtins/trap15.0) @@ -0,0 +1,5 @@ +# $FreeBSD$ + +(${SH} -c 'term(){ exit 5;}; trap term TERM; kill -TERM $$') & +wait >/dev/null 2>&1 $! +[ $? -eq 5 ] Copied: projects/release-arm64/bin/sh/tests/builtins/trap16.0 (from r281783, head/bin/sh/tests/builtins/trap16.0) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/release-arm64/bin/sh/tests/builtins/trap16.0 Mon Apr 20 20:03:07 2015 (r281784, copy of r281783, head/bin/sh/tests/builtins/trap16.0) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +traps=$(${SH} -c 'trap "echo bad" 0; trap - 0; trap') +[ -z "$traps" ] || exit 1 +traps=$(${SH} -c 'trap "echo bad" 0; trap "" 0; trap') +expected_traps=$(${SH} -c 'trap "" EXIT; trap') +[ "$traps" = "$expected_traps" ] || exit 2 +traps=$(${SH} -c 'trap "echo bad" 0; trap 0; trap') +[ -z "$traps" ] || exit 3 +traps=$(${SH} -c 'trap "echo bad" 0; trap -- 0; trap') +[ -z "$traps" ] || exit 4 +traps=$(${SH} -c 'trap "echo bad" 0 1 2; trap - 0 1 2; trap') +[ -z "$traps" ] || exit 5 +traps=$(${SH} -c 'trap "echo bad" 0 1 2; trap "" 0 1 2; trap') +expected_traps=$(${SH} -c 'trap "" EXIT HUP INT; trap') +[ "$traps" = "$expected_traps" ] || exit 6 +traps=$(${SH} -c 'trap "echo bad" 0 1 2; trap 0 1 2; trap') +[ -z "$traps" ] || exit 7 +traps=$(${SH} -c 'trap "echo bad" 0 1 2; trap -- 0 1 2; trap') +[ -z "$traps" ] || exit 8 Modified: projects/release-arm64/bin/sh/trap.c ============================================================================== --- projects/release-arm64/bin/sh/trap.c Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/bin/sh/trap.c Mon Apr 20 20:03:07 2015 (r281784) @@ -183,7 +183,7 @@ trapcmd(int argc __unused, char **argv) return 0; } action = NULL; - if (*argv && sigstring_to_signum(*argv) == -1) { + if (*argv && !is_number(*argv)) { if (strcmp(*argv, "-") == 0) argv++; else { Modified: projects/release-arm64/cddl/contrib/opensolaris/cmd/dtrace/dtrace.1 ============================================================================== --- projects/release-arm64/cddl/contrib/opensolaris/cmd/dtrace/dtrace.1 Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/cddl/contrib/opensolaris/cmd/dtrace/dtrace.1 Mon Apr 20 20:03:07 2015 (r281784) @@ -21,7 +21,7 @@ .\" .\" $FreeBSD$ .\" -.Dd October 5, 2013 +.Dd April 18, 2015 .Dt DTRACE 1 .Os .Sh NAME @@ -670,7 +670,8 @@ Invalid command line options or argument .Sh SEE ALSO .Xr cpp 1 , .Xr dtruss 1 , -.Xr elf 5 +.Xr elf 5 , +.Xr SDT 9 .Rs .%T Solaris Dynamic Tracing Guide .Re Modified: projects/release-arm64/contrib/llvm/lib/MC/MCParser/AsmParser.cpp ============================================================================== --- projects/release-arm64/contrib/llvm/lib/MC/MCParser/AsmParser.cpp Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/contrib/llvm/lib/MC/MCParser/AsmParser.cpp Mon Apr 20 20:03:07 2015 (r281784) @@ -3636,21 +3636,27 @@ bool AsmParser::parseDirectiveSpace(Stri } /// parseDirectiveLEB128 -/// ::= (.sleb128 | .uleb128) expression +/// ::= (.sleb128 | .uleb128) [ expression (, expression)* ] bool AsmParser::parseDirectiveLEB128(bool Signed) { checkForValidSection(); const MCExpr *Value; - if (parseExpression(Value)) - return true; + for (;;) { + if (parseExpression(Value)) + return true; - if (getLexer().isNot(AsmToken::EndOfStatement)) - return TokError("unexpected token in directive"); + if (Signed) + getStreamer().EmitSLEB128Value(Value); + else + getStreamer().EmitULEB128Value(Value); - if (Signed) - getStreamer().EmitSLEB128Value(Value); - else - getStreamer().EmitULEB128Value(Value); + if (getLexer().is(AsmToken::EndOfStatement)) + break; + + if (getLexer().isNot(AsmToken::Comma)) + return TokError("unexpected token in directive"); + Lex(); + } return false; } Copied: projects/release-arm64/contrib/llvm/patches/patch-13-llvm-r229911-uleb128-commas.diff (from r281783, head/contrib/llvm/patches/patch-13-llvm-r229911-uleb128-commas.diff) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/release-arm64/contrib/llvm/patches/patch-13-llvm-r229911-uleb128-commas.diff Mon Apr 20 20:03:07 2015 (r281784, copy of r281783, head/contrib/llvm/patches/patch-13-llvm-r229911-uleb128-commas.diff) @@ -0,0 +1,77 @@ +Pull in r229911 from upstream llvm trunk (by Benjamin Kramer): + + MC: Allow multiple comma-separated expressions on the .uleb128 directive. + + For compatiblity with GNU as. Binutils documents this as + '.uleb128 expressions'. Subtle, isn't it? + +Introduced here: http://svnweb.freebsd.org/changeset/base/281775 + +Index: lib/MC/MCParser/AsmParser.cpp +=================================================================== +--- lib/MC/MCParser/AsmParser.cpp ++++ lib/MC/MCParser/AsmParser.cpp +@@ -3636,22 +3636,28 @@ bool AsmParser::parseDirectiveSpace(StringRef IDVa + } + + /// parseDirectiveLEB128 +-/// ::= (.sleb128 | .uleb128) expression ++/// ::= (.sleb128 | .uleb128) [ expression (, expression)* ] + bool AsmParser::parseDirectiveLEB128(bool Signed) { + checkForValidSection(); + const MCExpr *Value; + +- if (parseExpression(Value)) +- return true; ++ for (;;) { ++ if (parseExpression(Value)) ++ return true; + +- if (getLexer().isNot(AsmToken::EndOfStatement)) +- return TokError("unexpected token in directive"); ++ if (Signed) ++ getStreamer().EmitSLEB128Value(Value); ++ else ++ getStreamer().EmitULEB128Value(Value); + +- if (Signed) +- getStreamer().EmitSLEB128Value(Value); +- else +- getStreamer().EmitULEB128Value(Value); ++ if (getLexer().is(AsmToken::EndOfStatement)) ++ break; + ++ if (getLexer().isNot(AsmToken::Comma)) ++ return TokError("unexpected token in directive"); ++ Lex(); ++ } ++ + return false; + } + +Index: test/MC/ELF/uleb.s +=================================================================== +--- test/MC/ELF/uleb.s ++++ test/MC/ELF/uleb.s +@@ -11,16 +11,17 @@ foo: + .uleb128 128 + .uleb128 16383 + .uleb128 16384 ++ .uleb128 23, 42 + + // ELF_32: Name: .text + // ELF_32: SectionData ( +-// ELF_32: 0000: 00017F80 01FF7F80 8001 ++// ELF_32: 0000: 00017F80 01FF7F80 8001172A + // ELF_32: ) + // ELF_64: Name: .text + // ELF_64: SectionData ( +-// ELF_64: 0000: 00017F80 01FF7F80 8001 ++// ELF_64: 0000: 00017F80 01FF7F80 8001172A + // ELF_64: ) + // MACHO_32: ('section_name', '__text\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00') +-// MACHO_32: ('_section_data', '00017f80 01ff7f80 8001') ++// MACHO_32: ('_section_data', '00017f80 01ff7f80 8001172a') + // MACHO_64: ('section_name', '__text\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00') +-// MACHO_64: ('_section_data', '00017f80 01ff7f80 8001') ++// MACHO_64: ('_section_data', '00017f80 01ff7f80 8001172a') Modified: projects/release-arm64/etc/defaults/rc.conf ============================================================================== --- projects/release-arm64/etc/defaults/rc.conf Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/etc/defaults/rc.conf Mon Apr 20 20:03:07 2015 (r281784) @@ -88,7 +88,7 @@ fsck_y_enable="NO" # Set to YES to do fs fsck_y_flags="" # Additional flags for fsck -y background_fsck="YES" # Attempt to run fsck in the background where possible. background_fsck_delay="60" # Time to wait (seconds) before starting the fsck. -netfs_types="nfs:NFS oldnfs:OLDNFS smbfs:SMB" # Net filesystems. +netfs_types="nfs:NFS smbfs:SMB" # Net filesystems. extra_netfs_types="NO" # List of network extra filesystem types for delayed # mount at startup (or NO). @@ -324,7 +324,6 @@ autounmountd_flags="" # Flags to autoun nfs_client_enable="NO" # This host is an NFS client (or NO). nfs_access_cache="60" # Client cache timeout in seconds nfs_server_enable="NO" # This host is an NFS server (or NO). -oldnfs_server_enable="NO" # Run the old NFS server (YES/NO). nfs_server_flags="-u -t" # Flags to nfsd (if enabled). mountd_enable="NO" # Run mountd (or NO). mountd_flags="-r" # Flags to mountd (if NFS server enabled). Modified: projects/release-arm64/etc/rc.d/mountd ============================================================================== --- projects/release-arm64/etc/rc.d/mountd Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/etc/rc.d/mountd Mon Apr 20 20:03:07 2015 (r281784) @@ -33,12 +33,6 @@ mountd_precmd() fi fi - # If oldnfs_server_enable is yes, force use of the old NFS server - # - if checkyesno oldnfs_server_enable; then - rc_flags="-o ${rc_flags}" - fi - if checkyesno zfs_enable; then rc_flags="${rc_flags} /etc/exports /etc/zfs/exports" fi Modified: projects/release-arm64/etc/rc.d/nfsd ============================================================================== --- projects/release-arm64/etc/rc.d/nfsd Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/etc/rc.d/nfsd Mon Apr 20 20:03:07 2015 (r281784) @@ -19,40 +19,25 @@ sig_stop="USR1" nfsd_precmd() { - if checkyesno oldnfs_server_enable; then - rc_flags="-o ${nfs_server_flags}" + rc_flags="${nfs_server_flags}" - # Load the module now, so that the vfs.nfsrv sysctl - # oids are available. - load_kld nfsserver - - if checkyesno nfs_reserved_port_only; then - echo 'NFS on reserved port only=YES' - sysctl vfs.nfsrv.nfs_privport=1 > /dev/null - else - sysctl vfs.nfsrv.nfs_privport=0 > /dev/null - fi + # Load the modules now, so that the vfs.nfsd sysctl + # oids are available. + load_kld nfsd + + if checkyesno nfs_reserved_port_only; then + echo 'NFS on reserved port only=YES' + sysctl vfs.nfsd.nfs_privport=1 > /dev/null else - rc_flags="${nfs_server_flags}" + sysctl vfs.nfsd.nfs_privport=0 > /dev/null + fi - # Load the modules now, so that the vfs.nfsd sysctl - # oids are available. - load_kld nfsd - - if checkyesno nfs_reserved_port_only; then - echo 'NFS on reserved port only=YES' - sysctl vfs.nfsd.nfs_privport=1 > /dev/null - else - sysctl vfs.nfsd.nfs_privport=0 > /dev/null - fi - - if checkyesno nfsv4_server_enable; then - sysctl vfs.nfsd.server_max_nfsvers=4 > /dev/null - force_depend nfsuserd || err 1 "Cannot run nfsuserd" - else - echo 'NFSv4 is disabled' - sysctl vfs.nfsd.server_max_nfsvers=3 > /dev/null - fi + if checkyesno nfsv4_server_enable; then + sysctl vfs.nfsd.server_max_nfsvers=4 > /dev/null + force_depend nfsuserd || err 1 "Cannot run nfsuserd" + else + echo 'NFSv4 is disabled' + sysctl vfs.nfsd.server_max_nfsvers=3 > /dev/null fi force_depend rpcbind || return 1 Modified: projects/release-arm64/lib/libc/Makefile ============================================================================== --- projects/release-arm64/lib/libc/Makefile Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/lib/libc/Makefile Mon Apr 20 20:03:07 2015 (r281784) @@ -157,10 +157,6 @@ libkern.${LIBC_ARCH}:: ${KMSRCS} ${CP} ${.ALLSRC} ${DESTDIR}/sys/libkern/${LIBC_ARCH} .endif -.if ${MK_SYSCALL_COMPAT} != "no" -CFLAGS+=-DSYSCALL_COMPAT -.endif - .include .include Modified: projects/release-arm64/lib/libc/amd64/sys/Makefile.inc ============================================================================== --- projects/release-arm64/lib/libc/amd64/sys/Makefile.inc Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/lib/libc/amd64/sys/Makefile.inc Mon Apr 20 20:03:07 2015 (r281784) @@ -11,6 +11,3 @@ MDASM= vfork.S brk.S cerror.S exect.S ge NOASM= break.o exit.o getlogin.o openbsd_poll.o sstk.o vfork.o yield.o PSEUDO= _getlogin.o _exit.o -.if ${MK_SYSCALL_COMPAT} != "no" -PSEUDO+= _pread.o _pwrite.o _lseek.o _mmap.o _ftruncate.o _truncate.o -.endif Modified: projects/release-arm64/lib/libc/arm/sys/Makefile.inc ============================================================================== --- projects/release-arm64/lib/libc/arm/sys/Makefile.inc Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/lib/libc/arm/sys/Makefile.inc Mon Apr 20 20:03:07 2015 (r281784) @@ -8,6 +8,3 @@ MDASM= Ovfork.S brk.S cerror.S pipe.S pt NOASM= break.o exit.o getlogin.o openbsd_poll.o sstk.o vfork.o yield.o PSEUDO= _exit.o _getlogin.o -.if ${MK_SYSCALL_COMPAT} != "no" -PSEUDO+= _pread.o _pwrite.o _lseek.o _mmap.o _ftruncate.o _truncate.o -.endif Modified: projects/release-arm64/lib/libc/gen/setproctitle.c ============================================================================== --- projects/release-arm64/lib/libc/gen/setproctitle.c Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/lib/libc/gen/setproctitle.c Mon Apr 20 20:03:07 2015 (r281784) @@ -42,9 +42,10 @@ __FBSDID("$FreeBSD$"); * 1: old_ps_strings at the very top of the stack. * 2: old_ps_strings at SPARE_USRSPACE below the top of the stack. * 3: ps_strings at the very top of the stack. - * This attempts to support a kernel built in the #2 and #3 era. - */ - + * We only support a kernel providing #3 style ps_strings. + * + * For historical purposes, a definition of the old ps_strings structure + * and location is preserved below: struct old_ps_strings { char *old_ps_argvstr; int old_ps_nargvstr; @@ -53,6 +54,7 @@ struct old_ps_strings { }; #define OLD_PS_STRINGS ((struct old_ps_strings *) \ (USRSTACK - SPARE_USRSPACE - sizeof(struct old_ps_strings))) + */ #include @@ -136,41 +138,38 @@ setproctitle(const char *fmt, ...) ps_strings = (struct ps_strings *)ul_ps_strings; } - /* PS_STRINGS points to zeroed memory on a style #2 kernel */ - if (ps_strings->ps_argvstr) { - /* style #3 */ - if (oargc == -1) { - /* Record our original args */ - oargc = ps_strings->ps_nargvstr; - oargv = ps_strings->ps_argvstr; - for (i = len = 0; i < oargc; i++) { - /* - * The program may have scribbled into its - * argv array, e.g., to remove some arguments. - * If that has happened, break out before - * trying to call strlen on a NULL pointer. - */ - if (oargv[i] == NULL) { - oargc = i; - break; - } - snprintf(obuf + len, SPT_BUFSIZE - len, "%s%s", - len ? " " : "", oargv[i]); - if (len) - len++; - len += strlen(oargv[i]); - if (len >= SPT_BUFSIZE) - break; + /* + * PS_STRINGS points to zeroed memory on a style #2 kernel. + * Should not happen. + */ + if (ps_strings->ps_argvstr == NULL) + return; + + /* style #3 */ + if (oargc == -1) { + /* Record our original args */ + oargc = ps_strings->ps_nargvstr; + oargv = ps_strings->ps_argvstr; + for (i = len = 0; i < oargc; i++) { + /* + * The program may have scribbled into its + * argv array, e.g., to remove some arguments. + * If that has happened, break out before + * trying to call strlen on a NULL pointer. + */ + if (oargv[i] == NULL) { + oargc = i; + break; } + snprintf(obuf + len, SPT_BUFSIZE - len, "%s%s", + len != 0 ? " " : "", oargv[i]); + if (len != 0) + len++; + len += strlen(oargv[i]); + if (len >= SPT_BUFSIZE) + break; } - ps_strings->ps_nargvstr = nargc; - ps_strings->ps_argvstr = nargvp; - } else { - /* style #2 - we can only restore our first arg :-( */ - if (*obuf == '\0') - strncpy(obuf, OLD_PS_STRINGS->old_ps_argvstr, - SPT_BUFSIZE - 1); - OLD_PS_STRINGS->old_ps_nargvstr = 1; - OLD_PS_STRINGS->old_ps_argvstr = nargvp[0]; } + ps_strings->ps_nargvstr = nargc; + ps_strings->ps_argvstr = nargvp; } Modified: projects/release-arm64/lib/libc/gen/waitid.c ============================================================================== --- projects/release-arm64/lib/libc/gen/waitid.c Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/lib/libc/gen/waitid.c Mon Apr 20 20:03:07 2015 (r281784) @@ -37,6 +37,7 @@ __FBSDID("$FreeBSD$"); #include #include #include "un-namespace.h" +#include "libc_private.h" int __waitid(idtype_t idtype, id_t id, siginfo_t *info, int flags) @@ -44,7 +45,9 @@ __waitid(idtype_t idtype, id_t id, sigin int status; pid_t ret; - ret = _wait6(idtype, id, &status, flags, NULL, info); + ret = ((pid_t (*)(idtype_t, id_t, int *, int, struct __wrusage *, + siginfo_t *))__libc_interposing[INTERPOS_wait6])(idtype, id, + &status, flags, NULL, info); /* * According to SUSv4, waitid() shall not return a PID when a Modified: projects/release-arm64/lib/libc/i386/sys/Makefile.inc ============================================================================== --- projects/release-arm64/lib/libc/i386/sys/Makefile.inc Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/lib/libc/i386/sys/Makefile.inc Mon Apr 20 20:03:07 2015 (r281784) @@ -15,9 +15,6 @@ MDASM= Ovfork.S brk.S cerror.S exect.S g NOASM= break.o exit.o getlogin.o openbsd_poll.o sstk.o vfork.o yield.o PSEUDO= _getlogin.o _exit.o -.if ${MK_SYSCALL_COMPAT} != "no" -PSEUDO+= _pread.o _pwrite.o _lseek.o _mmap.o _ftruncate.o _truncate.o -.endif MAN+= i386_get_ioperm.2 i386_get_ldt.2 i386_vm86.2 MAN+= i386_set_watch.3 Modified: projects/release-arm64/lib/libc/include/compat.h ============================================================================== --- projects/release-arm64/lib/libc/include/compat.h Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/lib/libc/include/compat.h Mon Apr 20 20:03:07 2015 (r281784) @@ -47,9 +47,7 @@ __sym_compat(shmctl, freebsd7_shmctl, FB #define __weak_reference(sym,alias) \ .weak alias;.equ alias,sym -#ifndef SYSCALL_COMPAT __weak_reference(__sys_fcntl,__fcntl_compat) -#endif #undef __weak_reference Modified: projects/release-arm64/lib/libc/include/libc_private.h ============================================================================== --- projects/release-arm64/lib/libc/include/libc_private.h Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/lib/libc/include/libc_private.h Mon Apr 20 20:03:07 2015 (r281784) @@ -222,6 +222,8 @@ enum { INTERPOS_spinlock, INTERPOS_spinunlock, INTERPOS_kevent, + INTERPOS_wait6, + INTERPOS_ppoll, INTERPOS_MAX }; @@ -276,21 +278,12 @@ extern void (*__cleanup)(void) __hidden; /* * Get kern.osreldate to detect ABI revisions. Explicitly - * ignores value of $OSVERSION and caches result. Prototypes - * for the wrapped "new" pad-less syscalls are here for now. + * ignores value of $OSVERSION and caches result. */ int __getosreldate(void); #include #include -/* With pad */ -__off_t __sys_freebsd6_lseek(int, int, __off_t, int); -int __sys_freebsd6_ftruncate(int, int, __off_t); -int __sys_freebsd6_truncate(const char *, int, __off_t); -__ssize_t __sys_freebsd6_pread(int, void *, __size_t, int, __off_t); -__ssize_t __sys_freebsd6_pwrite(int, const void *, __size_t, int, __off_t); -void * __sys_freebsd6_mmap(void *, __size_t, int, int, int, int, __off_t); - struct aiocb; struct fd_set; struct iovec; @@ -305,6 +298,8 @@ struct timeval; struct timezone; struct __siginfo; struct __ucontext; +struct __wrusage; +enum idtype; int __sys_aio_suspend(const struct aiocb * const[], int, const struct timespec *); int __sys_accept(int, struct sockaddr *, __socklen_t *); @@ -329,6 +324,8 @@ int __sys_pselect(int, struct fd_set *, struct fd_set *, const struct timespec *, const __sigset_t *); int __sys_poll(struct pollfd *, unsigned, int); +int __sys_ppoll(struct pollfd *, unsigned, const struct timespec *, + const __sigset_t *); __ssize_t __sys_pread(int, void *, __size_t, __off_t); __ssize_t __sys_pwrite(int, const void *, __size_t, __off_t); __ssize_t __sys_read(int, void *, __size_t); @@ -357,6 +354,8 @@ int __sys_thr_kill(long, int); int __sys_thr_self(long *); int __sys_truncate(const char *, __off_t); __pid_t __sys_wait4(__pid_t, int *, int, struct rusage *); +__pid_t __sys_wait6(enum idtype, __id_t, int *, int, + struct __wrusage *, struct __siginfo *); __ssize_t __sys_write(int, const void *, __size_t); __ssize_t __sys_writev(int, const struct iovec *, int); Modified: projects/release-arm64/lib/libc/mips/sys/Makefile.inc ============================================================================== --- projects/release-arm64/lib/libc/mips/sys/Makefile.inc Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/lib/libc/mips/sys/Makefile.inc Mon Apr 20 20:03:07 2015 (r281784) @@ -6,10 +6,6 @@ MDASM= Ovfork.S brk.S cerror.S exect.S fork.S pipe.S ptrace.S sbrk.S syscall.S # Don't generate default code for these syscalls: -NOASM= break.o exit.o ftruncate.o getlogin.o lseek.o mmap.o \ - openbsd_poll.o pread.o pwrite.o sstk.o truncate.o vfork.o yield.o +NOASM= break.o exit.o getlogin.o openbsd_poll.o sstk.o vfork.o yield.o PSEUDO= _exit.o _getlogin.o -.if ${MK_SYSCALL_COMPAT} != "no" -PSEUDO+= _pread.o _pwrite.o _lseek.o _mmap.o _ftruncate.o _truncate.o -.endif Modified: projects/release-arm64/lib/libc/powerpc/sys/Makefile.inc ============================================================================== --- projects/release-arm64/lib/libc/powerpc/sys/Makefile.inc Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/lib/libc/powerpc/sys/Makefile.inc Mon Apr 20 20:03:07 2015 (r281784) @@ -6,6 +6,3 @@ MDASM+= brk.S cerror.S exect.S pipe.S pt NOASM= break.o exit.o getlogin.o openbsd_poll.o sstk.o yield.o PSEUDO= _getlogin.o _exit.o -.if ${MK_SYSCALL_COMPAT} != "no" -PSEUDO+= _pread.o _pwrite.o _lseek.o _mmap.o _ftruncate.o _truncate.o -.endif Modified: projects/release-arm64/lib/libc/powerpc64/sys/Makefile.inc ============================================================================== --- projects/release-arm64/lib/libc/powerpc64/sys/Makefile.inc Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/lib/libc/powerpc64/sys/Makefile.inc Mon Apr 20 20:03:07 2015 (r281784) @@ -6,6 +6,3 @@ MDASM+= brk.S cerror.S exect.S pipe.S pt NOASM= break.o exit.o getlogin.o openbsd_poll.o sstk.o yield.o PSEUDO= _getlogin.o _exit.o -.if ${MK_SYSCALL_COMPAT} != "no" -PSEUDO+= _pread.o _pwrite.o _lseek.o _mmap.o _ftruncate.o _truncate.o -.endif Modified: projects/release-arm64/lib/libc/sparc64/sys/Makefile.inc ============================================================================== --- projects/release-arm64/lib/libc/sparc64/sys/Makefile.inc Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/lib/libc/sparc64/sys/Makefile.inc Mon Apr 20 20:03:07 2015 (r281784) @@ -18,6 +18,3 @@ MDASM+= brk.S cerror.S exect.S pipe.S pt NOASM= break.o exit.o getlogin.o openbsd_poll.o sstk.o yield.o PSEUDO= _getlogin.o _exit.o -.if ${MK_SYSCALL_COMPAT} != "no" -PSEUDO+= _pread.o _pwrite.o _lseek.o _mmap.o _ftruncate.o _truncate.o -.endif Modified: projects/release-arm64/lib/libc/sys/Makefile.inc ============================================================================== --- projects/release-arm64/lib/libc/sys/Makefile.inc Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/lib/libc/sys/Makefile.inc Mon Apr 20 20:03:07 2015 (r281784) @@ -26,18 +26,6 @@ SRCS+= \ __error.c \ interposing_table.c -.if ${MK_SYSCALL_COMPAT} != "no" -SYSCALL_COMPAT_SRCS= \ - ftruncate.c \ - lseek.c \ - mmap.c \ - pread.c \ - pwrite.c \ - truncate.c -SRCS+= ${SYSCALL_COMPAT_SRCS} -NOASM+= ${SYSCALL_COMPAT_SRCS:S/.c/.o/} -.endif - SRCS+= futimens.c utimensat.c NOASM+= futimens.o utimensat.o PSEUDO+= _futimens.o _utimensat.o @@ -57,6 +45,7 @@ INTERPOSED = \ open \ openat \ poll \ + ppoll \ pselect \ read \ readv \ @@ -73,6 +62,7 @@ INTERPOSED = \ sigwaitinfo \ swapcontext \ wait4 \ + wait6 \ write \ writev Modified: projects/release-arm64/lib/libc/sys/fcntl.c ============================================================================== --- projects/release-arm64/lib/libc/sys/fcntl.c Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/lib/libc/sys/fcntl.c Mon Apr 20 20:03:07 2015 (r281784) @@ -3,6 +3,12 @@ * Authors: Doug Rabson * Developed with Red Inc: Alfred Perlstein * + * Copyright (c) 2014-2015 The FreeBSD Foundation. + * All rights reserved. + * + * Portions of this software were developed by Konstantin Belousov + * under sponsorship from the FreeBSD Foundation. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -48,59 +54,3 @@ fcntl(int fd, int cmd, ...) return (((int (*)(int, int, ...)) __libc_interposing[INTERPOS_fcntl])(fd, cmd, arg)); } - -#ifdef SYSCALL_COMPAT -__weak_reference(__fcntl_compat, __fcntl); - -int -__fcntl_compat(int fd, int cmd, ...) -{ - va_list args; - long arg; - struct __oflock ofl; - struct flock *flp; - int res; - - va_start(args, cmd); - arg = va_arg(args, long); - va_end(args); - - if (__getosreldate() >= 800028) { - return (__sys_fcntl(fd, cmd, arg)); - } else { - if (cmd == F_GETLK || cmd == F_SETLK || cmd == F_SETLKW) { - /* - * Convert new-style struct flock (which - * includes l_sysid) to old-style. - */ - flp = (struct flock *) (uintptr_t) arg; - ofl.l_start = flp->l_start; - ofl.l_len = flp->l_len; - ofl.l_pid = flp->l_pid; - ofl.l_type = flp->l_type; - ofl.l_whence = flp->l_whence; - - switch (cmd) { - case F_GETLK: - res = __sys_fcntl(fd, F_OGETLK, &ofl); - if (res >= 0) { - flp->l_start = ofl.l_start; - flp->l_len = ofl.l_len; - flp->l_pid = ofl.l_pid; - flp->l_type = ofl.l_type; - flp->l_whence = ofl.l_whence; - flp->l_sysid = 0; - } - return (res); - - case F_SETLK: - return (__sys_fcntl(fd, F_OSETLK, &ofl)); - - case F_SETLKW: - return (__sys_fcntl(fd, F_OSETLKW, &ofl)); - } - } - return (__sys_fcntl(fd, cmd, arg)); - } -} -#endif Modified: projects/release-arm64/lib/libc/sys/interposing_table.c ============================================================================== --- projects/release-arm64/lib/libc/sys/interposing_table.c Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/lib/libc/sys/interposing_table.c Mon Apr 20 20:03:07 2015 (r281784) @@ -44,7 +44,7 @@ interpos_func_t __libc_interposing[INTER SLOT(aio_suspend, __sys_aio_suspend), SLOT(close, __sys_close), SLOT(connect, __sys_connect), - SLOT(fcntl, __fcntl_compat), + SLOT(fcntl, __sys_fcntl), SLOT(fsync, __sys_fsync), SLOT(fork, __sys_fork), SLOT(msync, __sys_msync), @@ -76,6 +76,8 @@ interpos_func_t __libc_interposing[INTER SLOT(spinlock, __libc_spinlock_stub), SLOT(spinunlock, __libc_spinunlock_stub), SLOT(kevent, __sys_kevent), + SLOT(wait6, __sys_wait6), + SLOT(ppoll, __sys_ppoll), }; #undef SLOT Copied: projects/release-arm64/lib/libc/sys/ppoll.c (from r281783, head/lib/libc/sys/ppoll.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/release-arm64/lib/libc/sys/ppoll.c Mon Apr 20 20:03:07 2015 (r281784, copy of r281783, head/lib/libc/sys/ppoll.c) @@ -0,0 +1,51 @@ +/* + * Copyright (c) 2015 The FreeBSD Foundation. + * All rights reserved. + * + * Portions of this software were developed by Konstantin Belousov + * under sponsorship from the FreeBSD Foundation. + * + * 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(s), this list of conditions and the following disclaimer as + * the first lines of this file unmodified other than the possible + * addition of one or more copyright notices. + * 2. Redistributions in binary form must reproduce the above copyright + * notice(s), 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 COPYRIGHT HOLDER(S) ``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 COPYRIGHT HOLDER(S) 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 +#include +#include "libc_private.h" + +__weak_reference(__sys_ppoll, __ppoll); + +#pragma weak ppoll +int +ppoll(struct pollfd pfd[], nfds_t nfds, const struct timespec *__restrict + timeout, const sigset_t *__restrict newsigmask) +{ + + return (((int (*)(struct pollfd *, nfds_t, const struct timespec *, + const sigset_t *)) __libc_interposing[INTERPOS_ppoll])(pfd, nfds, + timeout, newsigmask)); +} Copied: projects/release-arm64/lib/libc/sys/wait6.c (from r281783, head/lib/libc/sys/wait6.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/release-arm64/lib/libc/sys/wait6.c Mon Apr 20 20:03:07 2015 (r281784, copy of r281783, head/lib/libc/sys/wait6.c) @@ -0,0 +1,52 @@ +/* + * Copyright (c) 2015 The FreeBSD Foundation. + * All rights reserved. + * + * Portions of this software were developed by Konstantin Belousov + * under sponsorship from the FreeBSD Foundation. + * + * 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(s), this list of conditions and the following disclaimer as + * the first lines of this file unmodified other than the possible + * addition of one or more copyright notices. + * 2. Redistributions in binary form must reproduce the above copyright + * notice(s), 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 COPYRIGHT HOLDER(S) ``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 COPYRIGHT HOLDER(S) 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 +#include +#include +#include "libc_private.h" + +__weak_reference(__sys_wait6, __wait6); + +#pragma weak wait6 +pid_t +wait6(idtype_t idtype, id_t id, int *status, int options, struct __wrusage *ru, + siginfo_t *infop) +{ + + return (((pid_t (*)(idtype_t, id_t, int *, int, struct __wrusage *, + siginfo_t *))__libc_interposing[INTERPOS_wait6])(idtype, id, + status, options, ru, infop)); +} Modified: projects/release-arm64/lib/libpmc/libpmc.c ============================================================================== --- projects/release-arm64/lib/libpmc/libpmc.c Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/lib/libpmc/libpmc.c Mon Apr 20 20:03:07 2015 (r281784) @@ -164,6 +164,7 @@ PMC_CLASSDEP_TABLE(octeon, OCTEON); PMC_CLASSDEP_TABLE(ucf, UCF); PMC_CLASSDEP_TABLE(ppc7450, PPC7450); PMC_CLASSDEP_TABLE(ppc970, PPC970); +PMC_CLASSDEP_TABLE(e500, E500); static struct pmc_event_descr soft_event_table[PMC_EV_DYN_COUNT]; @@ -296,8 +297,9 @@ PMC_MDEP_TABLE(armv7, ARMV7, PMC_CLASS_S PMC_MDEP_TABLE(mips24k, MIPS24K, PMC_CLASS_SOFT, PMC_CLASS_MIPS24K); PMC_MDEP_TABLE(mips74k, MIPS74K, PMC_CLASS_SOFT, PMC_CLASS_MIPS74K); PMC_MDEP_TABLE(octeon, OCTEON, PMC_CLASS_SOFT, PMC_CLASS_OCTEON); -PMC_MDEP_TABLE(ppc7450, PPC7450, PMC_CLASS_SOFT, PMC_CLASS_PPC7450); -PMC_MDEP_TABLE(ppc970, PPC970, PMC_CLASS_SOFT, PMC_CLASS_PPC970); +PMC_MDEP_TABLE(ppc7450, PPC7450, PMC_CLASS_SOFT, PMC_CLASS_PPC7450, PMC_CLASS_TSC); +PMC_MDEP_TABLE(ppc970, PPC970, PMC_CLASS_SOFT, PMC_CLASS_PPC970, PMC_CLASS_TSC); +PMC_MDEP_TABLE(e500, E500, PMC_CLASS_SOFT, PMC_CLASS_E500, PMC_CLASS_TSC); PMC_MDEP_TABLE(generic, SOFT, PMC_CLASS_SOFT); static const struct pmc_event_descr tsc_event_table[] = @@ -368,6 +370,7 @@ PMC_CLASS_TABLE_DESC(octeon, OCTEON, oct #if defined(__powerpc__) PMC_CLASS_TABLE_DESC(ppc7450, PPC7450, ppc7450, powerpc); PMC_CLASS_TABLE_DESC(ppc970, PPC970, ppc970, powerpc); +PMC_CLASS_TABLE_DESC(e500, E500, e500, powerpc); #endif static struct pmc_class_descr soft_class_table_descr = @@ -2494,6 +2497,12 @@ static struct pmc_event_alias ppc970_ali EV_ALIAS(NULL, NULL) }; +static struct pmc_event_alias e500_aliases[] = { + EV_ALIAS("instructions", "INSTR_COMPLETED"), + EV_ALIAS("cycles", "CYCLES"), + EV_ALIAS(NULL, NULL) +}; + #define POWERPC_KW_OS "os" #define POWERPC_KW_USR "usr" #define POWERPC_KW_ANYTHREAD "anythread" @@ -2949,6 +2958,10 @@ pmc_event_names_of_class(enum pmc_class ev = ppc970_event_table; count = PMC_EVENT_TABLE_SIZE(ppc970); break; + case PMC_CLASS_E500: + ev = e500_event_table; + count = PMC_EVENT_TABLE_SIZE(e500); + break; case PMC_CLASS_SOFT: ev = soft_event_table; count = soft_event_info.pm_nevent; @@ -3245,6 +3258,10 @@ pmc_init(void) PMC_MDEP_INIT(ppc970); pmc_class_table[n] = &ppc970_class_table_descr; break; + case PMC_CPU_PPC_E500: + PMC_MDEP_INIT(e500); + pmc_class_table[n] = &e500_class_table_descr; + break; #endif default: /* @@ -3444,6 +3461,9 @@ _pmc_name_of_event(enum pmc_event pe, en } else if (pe >= PMC_EV_PPC970_FIRST && pe <= PMC_EV_PPC970_LAST) { ev = ppc970_event_table; evfence = ppc970_event_table + PMC_EVENT_TABLE_SIZE(ppc970); + } else if (pe >= PMC_EV_E500_FIRST && pe <= PMC_EV_E500_LAST) { + ev = e500_event_table; + evfence = e500_event_table + PMC_EVENT_TABLE_SIZE(e500); } else if (pe == PMC_EV_TSC_TSC) { ev = tsc_event_table; evfence = tsc_event_table + PMC_EVENT_TABLE_SIZE(tsc); Modified: projects/release-arm64/lib/libthr/Makefile ============================================================================== --- projects/release-arm64/lib/libthr/Makefile Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/lib/libthr/Makefile Mon Apr 20 20:03:07 2015 (r281784) @@ -61,10 +61,6 @@ SYMLINKS+=lib${LIB}.so ${LIBDIR}/libpthr SYMLINKS+=lib${LIB}_p.a ${LIBDIR}/libpthread_p.a .endif -.if ${MK_SYSCALL_COMPAT} != "no" -CFLAGS+=-DSYSCALL_COMPAT -.endif - .include .include Modified: projects/release-arm64/lib/libthr/thread/thr_syscalls.c ============================================================================== --- projects/release-arm64/lib/libthr/thread/thr_syscalls.c Mon Apr 20 19:54:54 2015 (r281783) +++ projects/release-arm64/lib/libthr/thread/thr_syscalls.c Mon Apr 20 20:03:07 2015 (r281784) @@ -95,10 +95,6 @@ __FBSDID("$FreeBSD$"); #include "libc_private.h" #include "thr_private.h" *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Mon Apr 20 20:06:26 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8A241A64; Mon, 20 Apr 2015 20:06:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 78BEFB17; Mon, 20 Apr 2015 20:06:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3KK6Q5k099586; Mon, 20 Apr 2015 20:06:26 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3KK6QAZ099585; Mon, 20 Apr 2015 20:06:26 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201504202006.t3KK6QAZ099585@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Mon, 20 Apr 2015 20:06:26 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r281786 - projects/release-arm64/release/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.20 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: Mon, 20 Apr 2015 20:06:26 -0000 Author: gjb Date: Mon Apr 20 20:06:25 2015 New Revision: 281786 URL: https://svnweb.freebsd.org/changeset/base/281786 Log: Add support for building arm64/aarch64 virtual machine images. Sponsored by: The FreeBSD Foundation Modified: projects/release-arm64/release/tools/vmimage.subr Modified: projects/release-arm64/release/tools/vmimage.subr ============================================================================== --- projects/release-arm64/release/tools/vmimage.subr Mon Apr 20 20:03:26 2015 (r281785) +++ projects/release-arm64/release/tools/vmimage.subr Mon Apr 20 20:06:25 2015 (r281786) @@ -29,6 +29,13 @@ write_partition_layout() { -p freebsd-ufs/rootfs:=${VMBASE} \ -o ${VMIMAGE} ;; + arm64:aarch64) + mkimg -s gpt \ + -p efi/efiboot:=${BOOTFILES}/efi/boot1/boot1.efifat \ + ${SWAPOPT} \ + -p freebsd-ufs/rootfs:=${VMBASE} \ + -o ${VMIMAGE} + ;; powerpc:powerpc*) mkimg -s apm \ -p apple-boot/bootfs:=${BOOTFILES}/powerpc/boot1.chrp/boot1.hfs \ From owner-svn-src-projects@FreeBSD.ORG Mon Apr 20 20:13:03 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BC289EA6; Mon, 20 Apr 2015 20:13:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AABCCC10; Mon, 20 Apr 2015 20:13:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3KKD37v006415; Mon, 20 Apr 2015 20:13:03 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3KKD3Yb006414; Mon, 20 Apr 2015 20:13:03 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201504202013.t3KKD3Yb006414@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Mon, 20 Apr 2015 20:13:03 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r281788 - projects/release-arm64/release/arm64 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.20 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: Mon, 20 Apr 2015 20:13:03 -0000 Author: gjb Date: Mon Apr 20 20:13:02 2015 New Revision: 281788 URL: https://svnweb.freebsd.org/changeset/base/281788 Log: Copy amd64/make-memstick.sh to arm64/make-memstick.sh for aarch64 memory stick images. Although arm64 does not yet have USB support, the memstick image should be bootable with certain virtualization tools, such as qemu. Sponsored by: The FreeBSD Foundation Added: projects/release-arm64/release/arm64/ projects/release-arm64/release/arm64/make-memstick.sh - copied, changed from r281783, projects/release-arm64/release/amd64/make-memstick.sh Copied and modified: projects/release-arm64/release/arm64/make-memstick.sh (from r281783, projects/release-arm64/release/amd64/make-memstick.sh) ============================================================================== --- projects/release-arm64/release/amd64/make-memstick.sh Mon Apr 20 19:54:54 2015 (r281783, copy source) +++ projects/release-arm64/release/arm64/make-memstick.sh Mon Apr 20 20:13:02 2015 (r281788) @@ -36,6 +36,6 @@ if [ $? -ne 0 ]; then fi rm ${1}/etc/fstab -mkimg -s gpt -b ${1}/boot/pmbr -p efi:=${1}/boot/boot1.efifat -p freebsd-boot:=${1}/boot/gptboot -p freebsd-ufs:=${2}.part -p freebsd-swap::1M -o ${2} +mkimg -s gpt -p efi:=${1}/boot/boot1.efifat -p freebsd-boot:=${1}/boot/gptboot -p freebsd-ufs:=${2}.part -p freebsd-swap::1M -o ${2} rm ${2}.part From owner-svn-src-projects@FreeBSD.ORG Mon Apr 20 20:52:21 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DBC7EAAA; Mon, 20 Apr 2015 20:52:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CA6E7C8; Mon, 20 Apr 2015 20:52:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3KKqLGZ033858; Mon, 20 Apr 2015 20:52:21 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3KKqLs5033854; Mon, 20 Apr 2015 20:52:21 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201504202052.t3KKqLs5033854@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Mon, 20 Apr 2015 20:52:21 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r281792 - projects/release-arm64/release 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.20 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: Mon, 20 Apr 2015 20:52:22 -0000 Author: gjb Date: Mon Apr 20 20:52:20 2015 New Revision: 281792 URL: https://svnweb.freebsd.org/changeset/base/281792 Log: Add a buildenv_setup() prototype, intended to be overridden as needed. For example, the arm64/aarch64 build needs devel/aarch64-binutils, so buildenv_setup() in the release.conf for this architecture handles the installation of the port before buildworld/buildkernel. Sponsored by: The FreeBSD Foundation Modified: projects/release-arm64/release/release.conf.sample projects/release-arm64/release/release.sh Modified: projects/release-arm64/release/release.conf.sample ============================================================================== --- projects/release-arm64/release/release.conf.sample Mon Apr 20 20:51:19 2015 (r281791) +++ projects/release-arm64/release/release.conf.sample Mon Apr 20 20:52:20 2015 (r281792) @@ -7,6 +7,7 @@ ## defined in release.sh. #load_chroot_env() { } #load_target_env() { } +#buildenv_setup() { } ## Set the directory within which the release will be built. CHROOTDIR="/scratch" Modified: projects/release-arm64/release/release.sh ============================================================================== --- projects/release-arm64/release/release.sh Mon Apr 20 20:51:19 2015 (r281791) +++ projects/release-arm64/release/release.sh Mon Apr 20 20:52:20 2015 (r281792) @@ -42,6 +42,7 @@ export PATH # Prototypes that can be redefined per-chroot or per-target. load_chroot_env() { } load_target_env() { } +buildenv_setup() { } # The directory within which the release will be built. CHROOTDIR="/scratch" @@ -279,6 +280,7 @@ if [ -d ${CHROOTDIR}/usr/ports ]; then fi fi +buildenv_setup load_target_env eval chroot ${CHROOTDIR} make -C /usr/src ${RELEASE_WMAKEFLAGS} buildworld eval chroot ${CHROOTDIR} make -C /usr/src ${RELEASE_KMAKEFLAGS} buildkernel From owner-svn-src-projects@FreeBSD.ORG Mon Apr 20 21:27:26 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 790A131B; Mon, 20 Apr 2015 21:27:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 67D8467F; Mon, 20 Apr 2015 21:27:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3KLRQsr059491; Mon, 20 Apr 2015 21:27:26 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3KLRPIl059488; Mon, 20 Apr 2015 21:27:25 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201504202127.t3KLRPIl059488@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Mon, 20 Apr 2015 21:27:25 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r281794 - in projects/em_mq/sys: dev/e1000 modules/em 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.20 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: Mon, 20 Apr 2015 21:27:26 -0000 Author: sbruno Date: Mon Apr 20 21:27:25 2015 New Revision: 281794 URL: https://svnweb.freebsd.org/changeset/base/281794 Log: Add DB_COMMAND to display the queue status for em adapters. Ensure opt_ddb.h is a dependency for the module. Modified: projects/em_mq/sys/dev/e1000/if_em.c projects/em_mq/sys/modules/em/Makefile Modified: projects/em_mq/sys/dev/e1000/if_em.c ============================================================================== --- projects/em_mq/sys/dev/e1000/if_em.c Mon Apr 20 21:19:26 2015 (r281793) +++ projects/em_mq/sys/dev/e1000/if_em.c Mon Apr 20 21:27:25 2015 (r281794) @@ -5972,3 +5972,25 @@ em_enable_vectors_82574(struct adapter * } } #endif + +#ifdef DDB +DB_COMMAND(em_dump_queue, em_ddb_dump_queue) +{ + devclass_t dc; + struct adapter *adapter; + int max_em; + + dc = devclass_find("em"); + max_em = devclass_get_maxunit(dc); + + db_printf("max_em %d\n", max_em); + for (int index = 0; index < (max_em - 1); index++) { + driver_t *em; + adapter = devclass_get_softc(dc, index); + em = device_get_driver(adapter->dev); + if (em == &em_driver) + em_print_debug_info(adapter); + } + +} +#endif Modified: projects/em_mq/sys/modules/em/Makefile ============================================================================== --- projects/em_mq/sys/modules/em/Makefile Mon Apr 20 21:19:26 2015 (r281793) +++ projects/em_mq/sys/modules/em/Makefile Mon Apr 20 21:27:25 2015 (r281794) @@ -2,7 +2,7 @@ .PATH: ${.CURDIR}/../../dev/e1000 KMOD = if_em -SRCS = device_if.h bus_if.h pci_if.h opt_inet.h opt_inet6.h +SRCS = device_if.h bus_if.h pci_if.h opt_ddb.h opt_inet.h opt_inet6.h SRCS += $(CORE_SRC) $(LEGACY_SRC) SRCS += $(COMMON_SHARED) $(LEGACY_SHARED) $(PCIE_SHARED) CORE_SRC = if_em.c e1000_osdep.c From owner-svn-src-projects@FreeBSD.ORG Mon Apr 20 21:45:39 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6B17A6E1; Mon, 20 Apr 2015 21:45:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 59F648DE; Mon, 20 Apr 2015 21:45:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3KLjdKF077149; Mon, 20 Apr 2015 21:45:39 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3KLjd7d077148; Mon, 20 Apr 2015 21:45:39 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201504202145.t3KLjd7d077148@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Mon, 20 Apr 2015 21:45:39 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r281796 - projects/em_mq/sys/dev/e1000 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.20 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: Mon, 20 Apr 2015 21:45:39 -0000 Author: sbruno Date: Mon Apr 20 21:45:38 2015 New Revision: 281796 URL: https://svnweb.freebsd.org/changeset/base/281796 Log: Don't blindly assume that the softc returned is going to match up to the em(4) notion of what an adapter struct is. Check to see if the device matches *first* and *then* assume that we can use it as an adapter structure for parsing. Corrections and hints courtesy of jhb. Modified: projects/em_mq/sys/dev/e1000/if_em.c Modified: projects/em_mq/sys/dev/e1000/if_em.c ============================================================================== --- projects/em_mq/sys/dev/e1000/if_em.c Mon Apr 20 21:44:55 2015 (r281795) +++ projects/em_mq/sys/dev/e1000/if_em.c Mon Apr 20 21:45:38 2015 (r281796) @@ -5977,19 +5977,16 @@ em_enable_vectors_82574(struct adapter * DB_COMMAND(em_dump_queue, em_ddb_dump_queue) { devclass_t dc; - struct adapter *adapter; int max_em; dc = devclass_find("em"); max_em = devclass_get_maxunit(dc); - db_printf("max_em %d\n", max_em); for (int index = 0; index < (max_em - 1); index++) { - driver_t *em; - adapter = devclass_get_softc(dc, index); - em = device_get_driver(adapter->dev); - if (em == &em_driver) - em_print_debug_info(adapter); + device_t dev; + dev = devclass_get_device(dc, index); + if (device_get_driver(dev) == &em_driver) + em_print_debug_info(device_get_softc(dev)); } } From owner-svn-src-projects@FreeBSD.ORG Tue Apr 21 00:08:43 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6187015B; Tue, 21 Apr 2015 00:08:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4DAA29FC; Tue, 21 Apr 2015 00:08:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3L08hSL090530; Tue, 21 Apr 2015 00:08:43 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3L08c1M090475; Tue, 21 Apr 2015 00:08:38 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201504210008.t3L08c1M090475@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Tue, 21 Apr 2015 00:08:38 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r281801 - in projects/release-arm64: . lib/libc/iconv lib/libmt lib/libpmc sbin/dmesg share/man/man4 share/man/man9 sys/arm/conf sys/cam/scsi sys/kern sys/modules/dtb/allwinner sys/net ... 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.20 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: Tue, 21 Apr 2015 00:08:43 -0000 Author: gjb Date: Tue Apr 21 00:08:37 2015 New Revision: 281801 URL: https://svnweb.freebsd.org/changeset/base/281801 Log: MFH: r281784-r281800 This is in preparation to merge back to head after testing. Sponsored by: The FreeBSD Foundation Added: projects/release-arm64/sys/modules/dtb/allwinner/ - copied from r281800, head/sys/modules/dtb/allwinner/ Modified: projects/release-arm64/.arcconfig projects/release-arm64/.arclint projects/release-arm64/lib/libc/iconv/citrus_prop.c projects/release-arm64/lib/libmt/mt.3 projects/release-arm64/lib/libpmc/pmc.haswellxeon.3 projects/release-arm64/sbin/dmesg/dmesg.c projects/release-arm64/share/man/man4/ata.4 projects/release-arm64/share/man/man9/printf.9 projects/release-arm64/sys/arm/conf/CUBIEBOARD projects/release-arm64/sys/arm/conf/CUBIEBOARD2 projects/release-arm64/sys/cam/scsi/scsi_all.c projects/release-arm64/sys/kern/subr_prf.c projects/release-arm64/sys/net/bpf.c projects/release-arm64/sys/net/bpf.h projects/release-arm64/tools/build/check-links.sh projects/release-arm64/usr.bin/patch/inp.c projects/release-arm64/usr.bin/patch/pch.c projects/release-arm64/usr.bin/patch/util.c Directory Properties: projects/release-arm64/ (props changed) projects/release-arm64/lib/libc/ (props changed) projects/release-arm64/sbin/ (props changed) projects/release-arm64/share/ (props changed) projects/release-arm64/share/man/man4/ (props changed) projects/release-arm64/sys/ (props changed) projects/release-arm64/sys/x86/include/acpica_machdep.h (props changed) Modified: projects/release-arm64/.arcconfig ============================================================================== --- projects/release-arm64/.arcconfig Mon Apr 20 22:15:18 2015 (r281800) +++ projects/release-arm64/.arcconfig Tue Apr 21 00:08:37 2015 (r281801) @@ -1,5 +1,4 @@ { "project.name": "S", - "phabricator.uri" : "https://reviews.freebsd.org/", - "history.immutable" : true + "phabricator.uri" : "https://reviews.freebsd.org/" } Modified: projects/release-arm64/.arclint ============================================================================== --- projects/release-arm64/.arclint Mon Apr 20 22:15:18 2015 (r281800) +++ projects/release-arm64/.arclint Tue Apr 21 00:08:37 2015 (r281801) @@ -1,9 +1,25 @@ { + "exclude": "(contrib|crypto)", "linters": { "python": { "type": "pep8", - "exclude": "(contrib)", "include": "(\\.py$)" + }, + "spelling": { + "type": "spelling" + }, + "chmod": { + "type": "chmod" + }, + "merge-conflict": { + "type": "merge-conflict" + }, + "filename": { + "type": "filename" + }, + "json": { + "type": "json", + "include": "(\\.arclint|\\.json$)" } } } Modified: projects/release-arm64/lib/libc/iconv/citrus_prop.c ============================================================================== --- projects/release-arm64/lib/libc/iconv/citrus_prop.c Mon Apr 20 22:15:18 2015 (r281800) +++ projects/release-arm64/lib/libc/iconv/citrus_prop.c Tue Apr 21 00:08:37 2015 (r281801) @@ -293,8 +293,10 @@ done: } _memstream_ungetc(ms, ch); errnum = _citrus_prop_read_character_common(ms, &ch); - if (errnum != 0) + if (errnum != 0) { + free(s); return (errnum); + } s[n] = ch; ++n, --m; } Modified: projects/release-arm64/lib/libmt/mt.3 ============================================================================== --- projects/release-arm64/lib/libmt/mt.3 Mon Apr 20 22:15:18 2015 (r281800) +++ projects/release-arm64/lib/libmt/mt.3 Tue Apr 21 00:08:37 2015 (r281801) @@ -35,7 +35,6 @@ .Dt MT 3 .Os .Sh NAME -.Nm .Nm mt_start_element , .Nm mt_end_element , .Nm mt_char_handler , Modified: projects/release-arm64/lib/libpmc/pmc.haswellxeon.3 ============================================================================== --- projects/release-arm64/lib/libpmc/pmc.haswellxeon.3 Mon Apr 20 22:15:18 2015 (r281800) +++ projects/release-arm64/lib/libpmc/pmc.haswellxeon.3 Tue Apr 21 00:08:37 2015 (r281801) @@ -25,7 +25,7 @@ .\" .\" $FreeBSD$ .\" -.Dd 21 November, 2014 +.Dd November 21, 2014 .Dt PMC.HASWELLXEON 3 .Os .Sh NAME Modified: projects/release-arm64/sbin/dmesg/dmesg.c ============================================================================== --- projects/release-arm64/sbin/dmesg/dmesg.c Mon Apr 20 22:15:18 2015 (r281800) +++ projects/release-arm64/sbin/dmesg/dmesg.c Tue Apr 21 00:08:37 2015 (r281801) @@ -118,6 +118,9 @@ main(int argc, char *argv[]) */ if (sysctlbyname("kern.msgbuf", NULL, &buflen, NULL, 0) == -1) err(1, "sysctl kern.msgbuf"); + /* Allocate extra room for growth between the sysctl calls. */ + buflen += buflen/8; + /* Allocate more than sysctl sees, for room to append \n\0. */ if ((bp = malloc(buflen + 2)) == NULL) errx(1, "malloc failed"); if (sysctlbyname("kern.msgbuf", bp, &buflen, NULL, 0) == -1) Modified: projects/release-arm64/share/man/man4/ata.4 ============================================================================== --- projects/release-arm64/share/man/man4/ata.4 Mon Apr 20 22:15:18 2015 (r281800) +++ projects/release-arm64/share/man/man4/ata.4 Tue Apr 21 00:08:37 2015 (r281801) @@ -99,6 +99,7 @@ Interface Power Management is disabled. This is the default value. .It 1 The device is allowed to initiate a PM state change; the host is passive. +.El .It Va hint.ata. Ns Ar X Ns Va .dev Ns Ar X Ns Va .sata_rev limits the initial SATA revision (speed) for the specified device on the specified channel. Modified: projects/release-arm64/share/man/man9/printf.9 ============================================================================== --- projects/release-arm64/share/man/man9/printf.9 Mon Apr 20 22:15:18 2015 (r281800) +++ projects/release-arm64/share/man/man9/printf.9 Tue Apr 21 00:08:37 2015 (r281801) @@ -67,7 +67,8 @@ The .Fn log function sends the message to the kernel logging facility, using the log level as indicated by -.Fa pri . +.Fa pri , +and to the console if no process is yet reading the log. .Pp Each of these related functions use the .Fa fmt Modified: projects/release-arm64/sys/arm/conf/CUBIEBOARD ============================================================================== --- projects/release-arm64/sys/arm/conf/CUBIEBOARD Mon Apr 20 22:15:18 2015 (r281800) +++ projects/release-arm64/sys/arm/conf/CUBIEBOARD Tue Apr 21 00:08:37 2015 (r281801) @@ -139,4 +139,4 @@ device miibus options FDT # Configure using FDT/DTB data options FDT_DTB_STATIC makeoptions FDT_DTS_FILE=cubieboard.dts - +makeoptions MODULES_EXTRA=dtb/allwinner Modified: projects/release-arm64/sys/arm/conf/CUBIEBOARD2 ============================================================================== --- projects/release-arm64/sys/arm/conf/CUBIEBOARD2 Mon Apr 20 22:15:18 2015 (r281800) +++ projects/release-arm64/sys/arm/conf/CUBIEBOARD2 Tue Apr 21 00:08:37 2015 (r281801) @@ -140,4 +140,4 @@ device miibus options FDT # Configure using FDT/DTB data options FDT_DTB_STATIC makeoptions FDT_DTS_FILE=cubieboard2.dts - +makeoptions MODULES_EXTRA=dtb/allwinner Modified: projects/release-arm64/sys/cam/scsi/scsi_all.c ============================================================================== --- projects/release-arm64/sys/cam/scsi/scsi_all.c Mon Apr 20 22:15:18 2015 (r281800) +++ projects/release-arm64/sys/cam/scsi/scsi_all.c Tue Apr 21 00:08:37 2015 (r281801) @@ -6039,7 +6039,7 @@ scsi_parse_transportid_rdma(char *id_str goto bailout; } *alloc_len = sizeof(*rdma); - bzero(rdma, sizeof(rdma)); + bzero(rdma, *alloc_len); rdma->format_protocol = SCSI_PROTO_RDMA | SCSI_TRN_RDMA_FORMAT_DEFAULT; bcopy(rdma_id, rdma->initiator_port_id, SCSI_TRN_RDMA_PORT_LEN); Modified: projects/release-arm64/sys/kern/subr_prf.c ============================================================================== --- projects/release-arm64/sys/kern/subr_prf.c Mon Apr 20 22:15:18 2015 (r281800) +++ projects/release-arm64/sys/kern/subr_prf.c Tue Apr 21 00:08:37 2015 (r281801) @@ -295,7 +295,7 @@ log(int level, const char *fmt, ...) va_list ap; va_start(ap, fmt); - (void)_vprintf(level, log_open ? TOLOG : TOCONS, fmt, ap); + (void)_vprintf(level, log_open ? TOLOG : TOCONS | TOLOG, fmt, ap); va_end(ap); msgbuftrigger = 1; Modified: projects/release-arm64/sys/net/bpf.c ============================================================================== --- projects/release-arm64/sys/net/bpf.c Mon Apr 20 22:15:18 2015 (r281800) +++ projects/release-arm64/sys/net/bpf.c Tue Apr 21 00:08:37 2015 (r281801) @@ -69,7 +69,6 @@ __FBSDID("$FreeBSD$"); #include #include -#define BPF_INTERNAL #include #include #ifdef BPF_JITTER @@ -90,6 +89,20 @@ __FBSDID("$FreeBSD$"); MALLOC_DEFINE(M_BPF, "BPF", "BPF data"); +struct bpf_if { +#define bif_next bif_ext.bif_next +#define bif_dlist bif_ext.bif_dlist + struct bpf_if_ext bif_ext; /* public members */ + u_int bif_dlt; /* link layer type */ + u_int bif_hdrlen; /* length of link header */ + struct ifnet *bif_ifp; /* corresponding interface */ + struct rwlock bif_lock; /* interface lock */ + LIST_HEAD(, bpf_d) bif_wlist; /* writer-only list */ + int bif_flags; /* Interface flags */ +}; + +CTASSERT(offsetof(struct bpf_if, bif_ext) == 0); + #if defined(DEV_BPF) || defined(NETGRAPH_BPF) #define PRINET 26 /* interruptible */ @@ -1892,7 +1905,7 @@ bpf_setif(struct bpf_d *d, struct ifreq /* Check if interface is not being detached from BPF */ BPFIF_RLOCK(bp); - if (bp->flags & BPFIF_FLAG_DYING) { + if (bp->bif_flags & BPFIF_FLAG_DYING) { BPFIF_RUNLOCK(bp); return (ENXIO); } @@ -2561,7 +2574,7 @@ bpfdetach(struct ifnet *ifp) * Mark bp as detached to restrict new consumers. */ BPFIF_WLOCK(bp); - bp->flags |= BPFIF_FLAG_DYING; + bp->bif_flags |= BPFIF_FLAG_DYING; BPFIF_WUNLOCK(bp); CTR4(KTR_NET, "%s: sheduling free for encap %d (%p) for if %p", Modified: projects/release-arm64/sys/net/bpf.h ============================================================================== --- projects/release-arm64/sys/net/bpf.h Mon Apr 20 22:15:18 2015 (r281800) +++ projects/release-arm64/sys/net/bpf.h Tue Apr 21 00:08:37 2015 (r281801) @@ -1451,21 +1451,14 @@ SYSCTL_DECL(_net_bpf); /* * Descriptor associated with each attached hardware interface. - * FIXME: this structure is exposed to external callers to speed up - * bpf_peers_present() call. However we cover all fields not needed by - * this function via BPF_INTERNAL define + * Part of this structure is exposed to external callers to speed up + * bpf_peers_present() calls. */ -struct bpf_if { +struct bpf_if; + +struct bpf_if_ext { LIST_ENTRY(bpf_if) bif_next; /* list of all interfaces */ LIST_HEAD(, bpf_d) bif_dlist; /* descriptor list */ -#ifdef BPF_INTERNAL - u_int bif_dlt; /* link layer type */ - u_int bif_hdrlen; /* length of link header */ - struct ifnet *bif_ifp; /* corresponding interface */ - struct rwlock bif_lock; /* interface lock */ - LIST_HEAD(, bpf_d) bif_wlist; /* writer-only list */ - int flags; /* Interface flags */ -#endif }; void bpf_bufheld(struct bpf_d *d); @@ -1483,8 +1476,10 @@ u_int bpf_filter(const struct bpf_insn static __inline int bpf_peers_present(struct bpf_if *bpf) { + struct bpf_if_ext *ext; - if (!LIST_EMPTY(&bpf->bif_dlist)) + ext = (struct bpf_if_ext *)bpf; + if (!LIST_EMPTY(&ext->bif_dlist)) return (1); return (0); } Modified: projects/release-arm64/tools/build/check-links.sh ============================================================================== --- projects/release-arm64/tools/build/check-links.sh Mon Apr 20 22:15:18 2015 (r281800) +++ projects/release-arm64/tools/build/check-links.sh Tue Apr 21 00:08:37 2015 (r281801) @@ -1,6 +1,15 @@ #!/bin/sh # $FreeBSD$ +ret=0 +CHECK_UNRESOLVED=1 +while getopts "U" flag; do + case "${flag}" in + U) CHECK_UNRESOLVED=0 ;; + esac +done +shift $((OPTIND-1)) + mime=$(file -L --mime-type $1) case $mime in *application/x-executable);; @@ -8,30 +17,74 @@ case $mime in *) echo "Not an elf file" >&2 ; exit 1;; esac +# Gather all symbols from the target +unresolved_symbols=$(nm -D -u --format=posix "$1" | awk '$2 == "U" {print $1}' | tr '\n' ' ') +ldd_libs=$(ldd $1 | awk '{print $1 ":" $3}') + +libkey() { + libkey="lib_symbols_$1" + patterns=[.+,-] + replacement=_ + while :; do + case " ${libkey} " in + *${patterns}*) + libkey="${libkey%%${patterns}*}${replacement}${libkey#*${patterns}}" + ;; + *) + break + ;; + esac + done + return 0 +} + # Check for useful libs -list_libs="" +list_libs= +resolved_symbols= for lib in $(readelf -d $1 | awk '$2 ~ /\(?NEEDED\)?/ { sub(/\[/,"",$NF); sub(/\]/,"",$NF); print $NF }'); do - echo -n "checking if $lib is needed: " - libpath=$(ldd $1 | awk -v lib=$lib '$1 == lib { print $3 }') - list_libs="$list_libs $libpath" - foundone=0 - for fct in $(nm -D $libpath | awk '$2 == "R" || $2 == "D" || $2 == "T" || $2 == "W" || $2 == "B" { print $3 }'); do - nm -D $1 | awk -v s=$fct '$1 == "U" && $2 == s { found=1 ; exit } END { if (found != 1) { exit 1 } }' && foundone=1 && break - done - if [ $foundone -eq 1 ]; then - echo -n "yes... " - nm -D $1 | awk -v s=$fct '$1 == "U" && $2 == s { print $2 ; exit }' - else - echo "no" - fi + echo -n "checking if $lib is needed: " + for libpair in ${ldd_libs}; do + case "${libpair}" in + ${lib}:*) libpath="${libpair#*:}" && break ;; + esac + done + list_libs="$list_libs $lib" + foundone= + lib_symbols="$(nm -D --defined-only --format=posix "${libpath}" | awk '$2 ~ /R|D|T|W|B|V/ {print $1}' | tr '\n' ' ')" + if [ ${CHECK_UNRESOLVED} -eq 1 ]; then + # Save the global symbols for this lib + libkey "${lib}" + setvar "${libkey}" "${lib_symbols}" + fi + for fct in ${lib_symbols}; do + case " ${unresolved_symbols} " in + *\ ${fct}\ *) foundone="${fct}" && break ;; + esac + done + if [ -n "${foundone}" ]; then + echo "yes... ${foundone}" + else + echo "no" + ret=1 + fi done -for sym in $(nm -D $1 | awk '$1 == "U" { print $2 }'); do - found=0 - for l in ${list_libs} ; do - nm -D $l | awk -v s=$sym '($2 == "R" || $2 == "D" || $2 == "T" || $2 == "W" || $2 == "B") && $3 == s { found=1 ; exit } END { if (found != 1) { exit 1 } }' && found=1 && break - done - if [ $found -eq 0 ]; then - echo "Unresolved symbol $sym" - fi -done +if [ ${CHECK_UNRESOLVED} -eq 1 ]; then + for sym in ${unresolved_symbols}; do + found=0 + for lib in ${list_libs}; do + libkey "${lib}" + eval "lib_symbols=\"\${${libkey}}\"" + # lib_symbols now contains symbols for the lib. + case " ${lib_symbols} " in + *\ ${sym}\ *) found=1 && break ;; + esac + done + if [ $found -eq 0 ]; then + echo "Unresolved symbol $sym" + ret=1 + fi + done +fi + +exit ${ret} Modified: projects/release-arm64/usr.bin/patch/inp.c ============================================================================== --- projects/release-arm64/usr.bin/patch/inp.c Mon Apr 20 22:15:18 2015 (r281800) +++ projects/release-arm64/usr.bin/patch/inp.c Tue Apr 21 00:08:37 2015 (r281801) @@ -34,8 +34,8 @@ #include #include -#include #include +#include #include #include #include Modified: projects/release-arm64/usr.bin/patch/pch.c ============================================================================== --- projects/release-arm64/usr.bin/patch/pch.c Mon Apr 20 22:15:18 2015 (r281800) +++ projects/release-arm64/usr.bin/patch/pch.c Tue Apr 21 00:08:37 2015 (r281801) @@ -34,6 +34,7 @@ #include #include #include +#include #include #include #include Modified: projects/release-arm64/usr.bin/patch/util.c ============================================================================== --- projects/release-arm64/usr.bin/patch/util.c Mon Apr 20 22:15:18 2015 (r281800) +++ projects/release-arm64/usr.bin/patch/util.c Tue Apr 21 00:08:37 2015 (r281801) @@ -27,13 +27,13 @@ * $FreeBSD$ */ -#include #include #include #include #include #include +#include #include #include #include @@ -96,7 +96,7 @@ int backup_file(const char *orig) { struct stat filestat; - char bakname[MAXPATHLEN], *s, *simplename; + char bakname[PATH_MAX], *s, *simplename; dev_t orig_device; ino_t orig_inode; @@ -406,7 +406,7 @@ fetchname(const char *at, bool *exists, char * checked_in(char *file) { - char *filebase, *filedir, tmpbuf[MAXPATHLEN]; + char *filebase, *filedir, tmpbuf[PATH_MAX]; struct stat filestat; filebase = basename(file); From owner-svn-src-projects@FreeBSD.ORG Tue Apr 21 00:51:41 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 56FC7825; Tue, 21 Apr 2015 00:51:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2C07CE64; Tue, 21 Apr 2015 00:51:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3L0pf1O024970; Tue, 21 Apr 2015 00:51:41 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3L0pf52024969; Tue, 21 Apr 2015 00:51:41 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201504210051.t3L0pf52024969@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Tue, 21 Apr 2015 00:51:41 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r281803 - projects/release-arm64 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.20 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: Tue, 21 Apr 2015 00:51:41 -0000 Author: gjb Date: Tue Apr 21 00:51:40 2015 New Revision: 281803 URL: https://svnweb.freebsd.org/changeset/base/281803 Log: Kill the projects/release-arm64 branch, merged to head in r281802 Sponsored by: The FreeBSD Foundation Deleted: projects/release-arm64/ From owner-svn-src-projects@FreeBSD.ORG Tue Apr 21 01:09:54 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B3A4EB48; Tue, 21 Apr 2015 01:09:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A23BAF85; Tue, 21 Apr 2015 01:09:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3L19sTh036115; Tue, 21 Apr 2015 01:09:54 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3L19s9a036114; Tue, 21 Apr 2015 01:09:54 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201504210109.t3L19s9a036114@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Tue, 21 Apr 2015 01:09:54 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r281804 - projects/em_mq/sys/dev/e1000 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.20 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: Tue, 21 Apr 2015 01:09:54 -0000 Author: sbruno Date: Tue Apr 21 01:09:53 2015 New Revision: 281804 URL: https://svnweb.freebsd.org/changeset/base/281804 Log: Define em_last_bind_cpus when not using EM_MULTIQUEUE. Modified: projects/em_mq/sys/dev/e1000/if_em.c Modified: projects/em_mq/sys/dev/e1000/if_em.c ============================================================================== --- projects/em_mq/sys/dev/e1000/if_em.c Tue Apr 21 00:51:40 2015 (r281803) +++ projects/em_mq/sys/dev/e1000/if_em.c Tue Apr 21 01:09:53 2015 (r281804) @@ -407,6 +407,7 @@ SYSCTL_INT(_hw_em, OID_AUTO, num_tx_queu static int em_num_rx_queues = 1; SYSCTL_INT(_hw_em, OID_AUTO, num_rx_queues, CTLFLAG_RDTUN, &em_num_rx_queues, 0, "82574 only: Number of rx queues to configure, 0 indicates autoconfigure"); +#endif /* ** Global variable to store last used CPU when binding queues @@ -414,7 +415,6 @@ SYSCTL_INT(_hw_em, OID_AUTO, num_rx_queu ** queue is bound to a cpu. */ static int em_last_bind_cpu = -1; -#endif /* How many packets rxeof tries to clean at a time */ static int em_rx_process_limit = 100; From owner-svn-src-projects@FreeBSD.ORG Tue Apr 21 09:47:34 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 355768B8; Tue, 21 Apr 2015 09:47:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1E7261E33; Tue, 21 Apr 2015 09:47:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3L9lY10068866; Tue, 21 Apr 2015 09:47:34 GMT (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3L9lSwe068807; Tue, 21 Apr 2015 09:47:28 GMT (envelope-from glebius@FreeBSD.org) Message-Id: <201504210947.t3L9lSwe068807@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: glebius set sender to glebius@FreeBSD.org using -f From: Gleb Smirnoff Date: Tue, 21 Apr 2015 09:47:28 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r281822 - in projects/ifnet: . bin/ed bin/sh bin/sh/tests/builtins cddl/contrib/opensolaris/cmd/dtrace contrib/bmake contrib/bmake/PSD.doc contrib/bmake/lst.lib contrib/bmake/mk contrib... 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.20 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: Tue, 21 Apr 2015 09:47:34 -0000 Author: glebius Date: Tue Apr 21 09:47:27 2015 New Revision: 281822 URL: https://svnweb.freebsd.org/changeset/base/281822 Log: Merge head r257698 through r281821. Added: projects/ifnet/bin/sh/tests/builtins/trap15.0 - copied unchanged from r281821, head/bin/sh/tests/builtins/trap15.0 projects/ifnet/bin/sh/tests/builtins/trap16.0 - copied unchanged from r281821, head/bin/sh/tests/builtins/trap16.0 projects/ifnet/contrib/bmake/mk/cython.mk - copied unchanged from r281821, head/contrib/bmake/mk/cython.mk projects/ifnet/contrib/bmake/mk/manifest.mk - copied unchanged from r281821, head/contrib/bmake/mk/manifest.mk projects/ifnet/contrib/bmake/mk/mkopt.sh - copied unchanged from r281821, head/contrib/bmake/mk/mkopt.sh projects/ifnet/contrib/bmake/mk/whats.mk - copied unchanged from r281821, head/contrib/bmake/mk/whats.mk projects/ifnet/contrib/bmake/unit-tests/comment.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/comment.exp projects/ifnet/contrib/bmake/unit-tests/comment.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/comment.mk projects/ifnet/contrib/bmake/unit-tests/cond1.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/cond1.exp projects/ifnet/contrib/bmake/unit-tests/cond1.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/cond1.mk projects/ifnet/contrib/bmake/unit-tests/doterror.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/doterror.exp projects/ifnet/contrib/bmake/unit-tests/doterror.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/doterror.mk projects/ifnet/contrib/bmake/unit-tests/dotwait.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/dotwait.exp projects/ifnet/contrib/bmake/unit-tests/dotwait.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/dotwait.mk projects/ifnet/contrib/bmake/unit-tests/error.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/error.exp projects/ifnet/contrib/bmake/unit-tests/error.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/error.mk projects/ifnet/contrib/bmake/unit-tests/escape.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/escape.exp projects/ifnet/contrib/bmake/unit-tests/escape.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/escape.mk projects/ifnet/contrib/bmake/unit-tests/export-all.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/export-all.exp projects/ifnet/contrib/bmake/unit-tests/export-all.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/export-all.mk projects/ifnet/contrib/bmake/unit-tests/export-env.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/export-env.exp projects/ifnet/contrib/bmake/unit-tests/export-env.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/export-env.mk projects/ifnet/contrib/bmake/unit-tests/export.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/export.exp projects/ifnet/contrib/bmake/unit-tests/export.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/export.mk projects/ifnet/contrib/bmake/unit-tests/forloop.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/forloop.exp projects/ifnet/contrib/bmake/unit-tests/forloop.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/forloop.mk projects/ifnet/contrib/bmake/unit-tests/forsubst.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/forsubst.exp projects/ifnet/contrib/bmake/unit-tests/forsubst.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/forsubst.mk projects/ifnet/contrib/bmake/unit-tests/hash.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/hash.exp projects/ifnet/contrib/bmake/unit-tests/hash.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/hash.mk projects/ifnet/contrib/bmake/unit-tests/impsrc.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/impsrc.exp projects/ifnet/contrib/bmake/unit-tests/impsrc.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/impsrc.mk projects/ifnet/contrib/bmake/unit-tests/misc.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/misc.exp projects/ifnet/contrib/bmake/unit-tests/misc.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/misc.mk projects/ifnet/contrib/bmake/unit-tests/moderrs.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/moderrs.exp projects/ifnet/contrib/bmake/unit-tests/moderrs.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/moderrs.mk projects/ifnet/contrib/bmake/unit-tests/modmatch.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/modmatch.exp projects/ifnet/contrib/bmake/unit-tests/modmatch.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/modmatch.mk projects/ifnet/contrib/bmake/unit-tests/modmisc.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/modmisc.exp projects/ifnet/contrib/bmake/unit-tests/modmisc.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/modmisc.mk projects/ifnet/contrib/bmake/unit-tests/modorder.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/modorder.exp projects/ifnet/contrib/bmake/unit-tests/modorder.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/modorder.mk projects/ifnet/contrib/bmake/unit-tests/modts.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/modts.exp projects/ifnet/contrib/bmake/unit-tests/modts.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/modts.mk projects/ifnet/contrib/bmake/unit-tests/modword.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/modword.exp projects/ifnet/contrib/bmake/unit-tests/modword.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/modword.mk projects/ifnet/contrib/bmake/unit-tests/order.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/order.exp projects/ifnet/contrib/bmake/unit-tests/order.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/order.mk projects/ifnet/contrib/bmake/unit-tests/phony-end.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/phony-end.exp projects/ifnet/contrib/bmake/unit-tests/phony-end.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/phony-end.mk projects/ifnet/contrib/bmake/unit-tests/posix.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/posix.exp projects/ifnet/contrib/bmake/unit-tests/posix.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/posix.mk projects/ifnet/contrib/bmake/unit-tests/posix1.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/posix1.exp projects/ifnet/contrib/bmake/unit-tests/posix1.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/posix1.mk projects/ifnet/contrib/bmake/unit-tests/qequals.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/qequals.exp projects/ifnet/contrib/bmake/unit-tests/qequals.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/qequals.mk projects/ifnet/contrib/bmake/unit-tests/suffixes.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/suffixes.exp projects/ifnet/contrib/bmake/unit-tests/suffixes.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/suffixes.mk projects/ifnet/contrib/bmake/unit-tests/sunshcmd.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/sunshcmd.exp projects/ifnet/contrib/bmake/unit-tests/sunshcmd.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/sunshcmd.mk projects/ifnet/contrib/bmake/unit-tests/sysv.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/sysv.exp projects/ifnet/contrib/bmake/unit-tests/sysv.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/sysv.mk projects/ifnet/contrib/bmake/unit-tests/ternary.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/ternary.exp projects/ifnet/contrib/bmake/unit-tests/ternary.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/ternary.mk projects/ifnet/contrib/bmake/unit-tests/unexport-env.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/unexport-env.exp projects/ifnet/contrib/bmake/unit-tests/unexport-env.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/unexport-env.mk projects/ifnet/contrib/bmake/unit-tests/unexport.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/unexport.exp projects/ifnet/contrib/bmake/unit-tests/unexport.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/unexport.mk projects/ifnet/contrib/bmake/unit-tests/varcmd.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/varcmd.exp projects/ifnet/contrib/bmake/unit-tests/varcmd.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/varcmd.mk projects/ifnet/contrib/bmake/unit-tests/varmisc.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/varmisc.exp projects/ifnet/contrib/bmake/unit-tests/varmisc.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/varmisc.mk projects/ifnet/contrib/bmake/unit-tests/varshell.exp - copied unchanged from r281821, head/contrib/bmake/unit-tests/varshell.exp projects/ifnet/contrib/bmake/unit-tests/varshell.mk - copied unchanged from r281821, head/contrib/bmake/unit-tests/varshell.mk projects/ifnet/contrib/llvm/patches/patch-13-llvm-r229911-uleb128-commas.diff - copied unchanged from r281821, head/contrib/llvm/patches/patch-13-llvm-r229911-uleb128-commas.diff projects/ifnet/contrib/wpa/CONTRIBUTIONS - copied unchanged from r281821, head/contrib/wpa/CONTRIBUTIONS projects/ifnet/contrib/wpa/hostapd/hapd_module_tests.c - copied unchanged from r281821, head/contrib/wpa/hostapd/hapd_module_tests.c projects/ifnet/contrib/wpa/hostapd/wps-ap-nfc.py - copied unchanged from r281821, head/contrib/wpa/hostapd/wps-ap-nfc.py projects/ifnet/contrib/wpa/hs20/ - copied from r281821, head/contrib/wpa/hs20/ projects/ifnet/contrib/wpa/patches/openssl-0.9.8za-tls-extensions.patch - copied unchanged from r281821, head/contrib/wpa/patches/openssl-0.9.8za-tls-extensions.patch projects/ifnet/contrib/wpa/src/ap/acs.c - copied unchanged from r281821, head/contrib/wpa/src/ap/acs.c projects/ifnet/contrib/wpa/src/ap/acs.h - copied unchanged from r281821, head/contrib/wpa/src/ap/acs.h projects/ifnet/contrib/wpa/src/ap/bss_load.c - copied unchanged from r281821, head/contrib/wpa/src/ap/bss_load.c projects/ifnet/contrib/wpa/src/ap/bss_load.h - copied unchanged from r281821, head/contrib/wpa/src/ap/bss_load.h projects/ifnet/contrib/wpa/src/ap/dfs.c - copied unchanged from r281821, head/contrib/wpa/src/ap/dfs.c projects/ifnet/contrib/wpa/src/ap/dfs.h - copied unchanged from r281821, head/contrib/wpa/src/ap/dfs.h projects/ifnet/contrib/wpa/src/ap/dhcp_snoop.c - copied unchanged from r281821, head/contrib/wpa/src/ap/dhcp_snoop.c projects/ifnet/contrib/wpa/src/ap/dhcp_snoop.h - copied unchanged from r281821, head/contrib/wpa/src/ap/dhcp_snoop.h projects/ifnet/contrib/wpa/src/ap/ndisc_snoop.c - copied unchanged from r281821, head/contrib/wpa/src/ap/ndisc_snoop.c projects/ifnet/contrib/wpa/src/ap/ndisc_snoop.h - copied unchanged from r281821, head/contrib/wpa/src/ap/ndisc_snoop.h projects/ifnet/contrib/wpa/src/ap/x_snoop.c - copied unchanged from r281821, head/contrib/wpa/src/ap/x_snoop.c projects/ifnet/contrib/wpa/src/ap/x_snoop.h - copied unchanged from r281821, head/contrib/wpa/src/ap/x_snoop.h projects/ifnet/contrib/wpa/src/common/common_module_tests.c - copied unchanged from r281821, head/contrib/wpa/src/common/common_module_tests.c projects/ifnet/contrib/wpa/src/common/hw_features_common.c - copied unchanged from r281821, head/contrib/wpa/src/common/hw_features_common.c projects/ifnet/contrib/wpa/src/common/hw_features_common.h - copied unchanged from r281821, head/contrib/wpa/src/common/hw_features_common.h projects/ifnet/contrib/wpa/src/common/ieee802_1x_defs.h - copied unchanged from r281821, head/contrib/wpa/src/common/ieee802_1x_defs.h projects/ifnet/contrib/wpa/src/common/qca-vendor-attr.h - copied unchanged from r281821, head/contrib/wpa/src/common/qca-vendor-attr.h projects/ifnet/contrib/wpa/src/common/qca-vendor.h - copied unchanged from r281821, head/contrib/wpa/src/common/qca-vendor.h projects/ifnet/contrib/wpa/src/common/sae.c - copied unchanged from r281821, head/contrib/wpa/src/common/sae.c projects/ifnet/contrib/wpa/src/common/sae.h - copied unchanged from r281821, head/contrib/wpa/src/common/sae.h projects/ifnet/contrib/wpa/src/common/tnc.h - copied unchanged from r281821, head/contrib/wpa/src/common/tnc.h projects/ifnet/contrib/wpa/src/common/wpa_helpers.c - copied unchanged from r281821, head/contrib/wpa/src/common/wpa_helpers.c projects/ifnet/contrib/wpa/src/common/wpa_helpers.h - copied unchanged from r281821, head/contrib/wpa/src/common/wpa_helpers.h projects/ifnet/contrib/wpa/src/crypto/aes-siv.c - copied unchanged from r281821, head/contrib/wpa/src/crypto/aes-siv.c projects/ifnet/contrib/wpa/src/crypto/aes_siv.h - copied unchanged from r281821, head/contrib/wpa/src/crypto/aes_siv.h projects/ifnet/contrib/wpa/src/crypto/crypto_module_tests.c - copied unchanged from r281821, head/contrib/wpa/src/crypto/crypto_module_tests.c projects/ifnet/contrib/wpa/src/crypto/sha256-kdf.c - copied unchanged from r281821, head/contrib/wpa/src/crypto/sha256-kdf.c projects/ifnet/contrib/wpa/src/crypto/sha384.h - copied unchanged from r281821, head/contrib/wpa/src/crypto/sha384.h projects/ifnet/contrib/wpa/src/drivers/driver_macsec_qca.c - copied unchanged from r281821, head/contrib/wpa/src/drivers/driver_macsec_qca.c projects/ifnet/contrib/wpa/src/drivers/driver_nl80211.h - copied unchanged from r281821, head/contrib/wpa/src/drivers/driver_nl80211.h projects/ifnet/contrib/wpa/src/drivers/driver_nl80211_android.c - copied unchanged from r281821, head/contrib/wpa/src/drivers/driver_nl80211_android.c projects/ifnet/contrib/wpa/src/drivers/driver_nl80211_capa.c - copied unchanged from r281821, head/contrib/wpa/src/drivers/driver_nl80211_capa.c projects/ifnet/contrib/wpa/src/drivers/driver_nl80211_event.c - copied unchanged from r281821, head/contrib/wpa/src/drivers/driver_nl80211_event.c projects/ifnet/contrib/wpa/src/drivers/driver_nl80211_monitor.c - copied unchanged from r281821, head/contrib/wpa/src/drivers/driver_nl80211_monitor.c projects/ifnet/contrib/wpa/src/drivers/driver_nl80211_scan.c - copied unchanged from r281821, head/contrib/wpa/src/drivers/driver_nl80211_scan.c projects/ifnet/contrib/wpa/src/drivers/driver_openbsd.c - copied unchanged from r281821, head/contrib/wpa/src/drivers/driver_openbsd.c projects/ifnet/contrib/wpa/src/drivers/linux_defines.h - copied unchanged from r281821, head/contrib/wpa/src/drivers/linux_defines.h projects/ifnet/contrib/wpa/src/eap_common/eap_eke_common.c - copied unchanged from r281821, head/contrib/wpa/src/eap_common/eap_eke_common.c projects/ifnet/contrib/wpa/src/eap_common/eap_eke_common.h - copied unchanged from r281821, head/contrib/wpa/src/eap_common/eap_eke_common.h projects/ifnet/contrib/wpa/src/eap_peer/eap_eke.c - copied unchanged from r281821, head/contrib/wpa/src/eap_peer/eap_eke.c projects/ifnet/contrib/wpa/src/eap_peer/eap_proxy.h - copied unchanged from r281821, head/contrib/wpa/src/eap_peer/eap_proxy.h projects/ifnet/contrib/wpa/src/eap_peer/eap_proxy_dummy.c - copied unchanged from r281821, head/contrib/wpa/src/eap_peer/eap_proxy_dummy.c projects/ifnet/contrib/wpa/src/eap_server/eap_server_eke.c - copied unchanged from r281821, head/contrib/wpa/src/eap_server/eap_server_eke.c projects/ifnet/contrib/wpa/src/pae/ - copied from r281821, head/contrib/wpa/src/pae/ projects/ifnet/contrib/wpa/src/utils/bitfield.c - copied unchanged from r281821, head/contrib/wpa/src/utils/bitfield.c projects/ifnet/contrib/wpa/src/utils/bitfield.h - copied unchanged from r281821, head/contrib/wpa/src/utils/bitfield.h projects/ifnet/contrib/wpa/src/utils/browser-android.c - copied unchanged from r281821, head/contrib/wpa/src/utils/browser-android.c projects/ifnet/contrib/wpa/src/utils/browser-system.c - copied unchanged from r281821, head/contrib/wpa/src/utils/browser-system.c projects/ifnet/contrib/wpa/src/utils/browser-wpadebug.c - copied unchanged from r281821, head/contrib/wpa/src/utils/browser-wpadebug.c projects/ifnet/contrib/wpa/src/utils/browser.c - copied unchanged from r281821, head/contrib/wpa/src/utils/browser.c projects/ifnet/contrib/wpa/src/utils/browser.h - copied unchanged from r281821, head/contrib/wpa/src/utils/browser.h projects/ifnet/contrib/wpa/src/utils/http-utils.h - copied unchanged from r281821, head/contrib/wpa/src/utils/http-utils.h projects/ifnet/contrib/wpa/src/utils/http_curl.c - copied unchanged from r281821, head/contrib/wpa/src/utils/http_curl.c projects/ifnet/contrib/wpa/src/utils/platform.h - copied unchanged from r281821, head/contrib/wpa/src/utils/platform.h projects/ifnet/contrib/wpa/src/utils/utils_module_tests.c - copied unchanged from r281821, head/contrib/wpa/src/utils/utils_module_tests.c projects/ifnet/contrib/wpa/src/utils/xml-utils.c - copied unchanged from r281821, head/contrib/wpa/src/utils/xml-utils.c projects/ifnet/contrib/wpa/src/utils/xml-utils.h - copied unchanged from r281821, head/contrib/wpa/src/utils/xml-utils.h projects/ifnet/contrib/wpa/src/utils/xml_libxml2.c - copied unchanged from r281821, head/contrib/wpa/src/utils/xml_libxml2.c projects/ifnet/contrib/wpa/src/wps/wps_module_tests.c - copied unchanged from r281821, head/contrib/wpa/src/wps/wps_module_tests.c projects/ifnet/contrib/wpa/wpa_supplicant/eap_proxy_dummy.mak - copied unchanged from r281821, head/contrib/wpa/wpa_supplicant/eap_proxy_dummy.mak projects/ifnet/contrib/wpa/wpa_supplicant/eap_proxy_dummy.mk - copied unchanged from r281821, head/contrib/wpa/wpa_supplicant/eap_proxy_dummy.mk projects/ifnet/contrib/wpa/wpa_supplicant/examples/p2p-nfc.py - copied unchanged from r281821, head/contrib/wpa/wpa_supplicant/examples/p2p-nfc.py projects/ifnet/contrib/wpa/wpa_supplicant/mesh.c - copied unchanged from r281821, head/contrib/wpa/wpa_supplicant/mesh.c projects/ifnet/contrib/wpa/wpa_supplicant/mesh.h - copied unchanged from r281821, head/contrib/wpa/wpa_supplicant/mesh.h projects/ifnet/contrib/wpa/wpa_supplicant/mesh_mpm.c - copied unchanged from r281821, head/contrib/wpa/wpa_supplicant/mesh_mpm.c projects/ifnet/contrib/wpa/wpa_supplicant/mesh_mpm.h - copied unchanged from r281821, head/contrib/wpa/wpa_supplicant/mesh_mpm.h projects/ifnet/contrib/wpa/wpa_supplicant/mesh_rsn.c - copied unchanged from r281821, head/contrib/wpa/wpa_supplicant/mesh_rsn.c projects/ifnet/contrib/wpa/wpa_supplicant/mesh_rsn.h - copied unchanged from r281821, head/contrib/wpa/wpa_supplicant/mesh_rsn.h projects/ifnet/contrib/wpa/wpa_supplicant/wmm_ac.c - copied unchanged from r281821, head/contrib/wpa/wpa_supplicant/wmm_ac.c projects/ifnet/contrib/wpa/wpa_supplicant/wmm_ac.h - copied unchanged from r281821, head/contrib/wpa/wpa_supplicant/wmm_ac.h projects/ifnet/contrib/wpa/wpa_supplicant/wpas_kay.c - copied unchanged from r281821, head/contrib/wpa/wpa_supplicant/wpas_kay.c projects/ifnet/contrib/wpa/wpa_supplicant/wpas_kay.h - copied unchanged from r281821, head/contrib/wpa/wpa_supplicant/wpas_kay.h projects/ifnet/contrib/wpa/wpa_supplicant/wpas_module_tests.c - copied unchanged from r281821, head/contrib/wpa/wpa_supplicant/wpas_module_tests.c projects/ifnet/lib/libc/sys/ppoll.c - copied unchanged from r281821, head/lib/libc/sys/ppoll.c projects/ifnet/lib/libc/sys/wait6.c - copied unchanged from r281821, head/lib/libc/sys/wait6.c projects/ifnet/release/arm64/ - copied from r281821, head/release/arm64/ projects/ifnet/share/man/man4/dtrace-io.4 - copied unchanged from r281821, head/share/man/man4/dtrace-io.4 projects/ifnet/share/man/man4/dtrace-ip.4 - copied unchanged from r281821, head/share/man/man4/dtrace-ip.4 projects/ifnet/share/man/man4/dtrace-proc.4 - copied unchanged from r281821, head/share/man/man4/dtrace-proc.4 projects/ifnet/share/man/man4/dtrace-sched.4 - copied unchanged from r281821, head/share/man/man4/dtrace-sched.4 projects/ifnet/share/man/man4/dtrace-tcp.4 - copied unchanged from r281821, head/share/man/man4/dtrace-tcp.4 projects/ifnet/share/man/man4/dtrace-udp.4 - copied unchanged from r281821, head/share/man/man4/dtrace-udp.4 projects/ifnet/sys/arm/allwinner/files.allwinner - copied unchanged from r281821, head/sys/arm/allwinner/files.allwinner projects/ifnet/sys/dev/hwpmc/hwpmc_e500.c - copied unchanged from r281821, head/sys/dev/hwpmc/hwpmc_e500.c projects/ifnet/sys/modules/dtb/allwinner/ - copied from r281821, head/sys/modules/dtb/allwinner/ projects/ifnet/usr.sbin/bluetooth/hccontrol/le.c - copied unchanged from r281821, head/usr.sbin/bluetooth/hccontrol/le.c Deleted: projects/ifnet/contrib/bmake/unit-tests/comment projects/ifnet/contrib/bmake/unit-tests/cond1 projects/ifnet/contrib/bmake/unit-tests/doterror projects/ifnet/contrib/bmake/unit-tests/dotwait projects/ifnet/contrib/bmake/unit-tests/error projects/ifnet/contrib/bmake/unit-tests/export projects/ifnet/contrib/bmake/unit-tests/export-all projects/ifnet/contrib/bmake/unit-tests/export-env projects/ifnet/contrib/bmake/unit-tests/forloop projects/ifnet/contrib/bmake/unit-tests/forsubst projects/ifnet/contrib/bmake/unit-tests/hash projects/ifnet/contrib/bmake/unit-tests/misc projects/ifnet/contrib/bmake/unit-tests/moderrs projects/ifnet/contrib/bmake/unit-tests/modmatch projects/ifnet/contrib/bmake/unit-tests/modmisc projects/ifnet/contrib/bmake/unit-tests/modorder projects/ifnet/contrib/bmake/unit-tests/modts projects/ifnet/contrib/bmake/unit-tests/modword projects/ifnet/contrib/bmake/unit-tests/order projects/ifnet/contrib/bmake/unit-tests/phony-end projects/ifnet/contrib/bmake/unit-tests/posix projects/ifnet/contrib/bmake/unit-tests/qequals projects/ifnet/contrib/bmake/unit-tests/sunshcmd projects/ifnet/contrib/bmake/unit-tests/sysv projects/ifnet/contrib/bmake/unit-tests/ternary projects/ifnet/contrib/bmake/unit-tests/test.exp projects/ifnet/contrib/bmake/unit-tests/unexport projects/ifnet/contrib/bmake/unit-tests/unexport-env projects/ifnet/contrib/bmake/unit-tests/varcmd projects/ifnet/contrib/wpa/hostapd/dump_state.c projects/ifnet/contrib/wpa/hostapd/dump_state.h projects/ifnet/contrib/wpa/patches/openssl-0.9.8-tls-extensions.patch projects/ifnet/contrib/wpa/patches/openssl-0.9.8d-tls-extensions.patch projects/ifnet/contrib/wpa/patches/openssl-0.9.8e-tls-extensions.patch projects/ifnet/contrib/wpa/patches/openssl-0.9.8g-tls-extensions.patch projects/ifnet/contrib/wpa/patches/openssl-0.9.8h-tls-extensions.patch projects/ifnet/contrib/wpa/patches/openssl-0.9.8i-tls-extensions.patch projects/ifnet/contrib/wpa/patches/openssl-0.9.8x-tls-extensions.patch projects/ifnet/contrib/wpa/patches/openssl-0.9.9-session-ticket.patch projects/ifnet/contrib/wpa/src/crypto/crypto_nss.c projects/ifnet/contrib/wpa/src/crypto/fips_prf_cryptoapi.c projects/ifnet/contrib/wpa/src/crypto/fips_prf_gnutls.c projects/ifnet/contrib/wpa/src/crypto/fips_prf_nss.c projects/ifnet/contrib/wpa/src/crypto/tls_nss.c projects/ifnet/contrib/wpa/src/utils/eloop_none.c projects/ifnet/lib/libc/sys/ftruncate.c projects/ifnet/lib/libc/sys/lseek.c projects/ifnet/lib/libc/sys/mmap.c projects/ifnet/lib/libc/sys/pread.c projects/ifnet/lib/libc/sys/pwrite.c projects/ifnet/lib/libc/sys/truncate.c projects/ifnet/sys/fs/ext2fs/ext2_hash.c projects/ifnet/sys/fs/ext2fs/ext2_htree.c projects/ifnet/sys/netipsec/xform_ipip.c projects/ifnet/tools/build/options/WITHOUT_SYSCALL_COMPAT projects/ifnet/usr.sbin/crunch/crunchide/exec_aout.c Modified: projects/ifnet/.arcconfig projects/ifnet/.arclint projects/ifnet/Makefile.inc1 projects/ifnet/ObsoleteFiles.inc projects/ifnet/README projects/ifnet/bin/ed/glbl.c projects/ifnet/bin/sh/sh.1 projects/ifnet/bin/sh/tests/builtins/Makefile projects/ifnet/bin/sh/trap.c projects/ifnet/cddl/contrib/opensolaris/cmd/dtrace/dtrace.1 projects/ifnet/contrib/bmake/ChangeLog projects/ifnet/contrib/bmake/FILES projects/ifnet/contrib/bmake/Makefile projects/ifnet/contrib/bmake/PSD.doc/Makefile projects/ifnet/contrib/bmake/PSD.doc/tutorial.ms projects/ifnet/contrib/bmake/bmake.1 projects/ifnet/contrib/bmake/bmake.cat1 projects/ifnet/contrib/bmake/compat.c projects/ifnet/contrib/bmake/configure projects/ifnet/contrib/bmake/configure.in projects/ifnet/contrib/bmake/job.c projects/ifnet/contrib/bmake/lst.h projects/ifnet/contrib/bmake/lst.lib/lstInt.h projects/ifnet/contrib/bmake/lst.lib/lstRemove.c projects/ifnet/contrib/bmake/main.c projects/ifnet/contrib/bmake/make.1 projects/ifnet/contrib/bmake/make.c projects/ifnet/contrib/bmake/make.h projects/ifnet/contrib/bmake/meta.c projects/ifnet/contrib/bmake/mk/ChangeLog projects/ifnet/contrib/bmake/mk/FILES projects/ifnet/contrib/bmake/mk/auto.dep.mk projects/ifnet/contrib/bmake/mk/auto.obj.mk projects/ifnet/contrib/bmake/mk/autodep.mk projects/ifnet/contrib/bmake/mk/dep.mk projects/ifnet/contrib/bmake/mk/dirdeps.mk projects/ifnet/contrib/bmake/mk/gendirdeps.mk projects/ifnet/contrib/bmake/mk/install-mk projects/ifnet/contrib/bmake/mk/links.mk projects/ifnet/contrib/bmake/mk/meta.autodep.mk projects/ifnet/contrib/bmake/mk/meta.stage.mk projects/ifnet/contrib/bmake/mk/meta.sys.mk projects/ifnet/contrib/bmake/mk/meta2deps.py projects/ifnet/contrib/bmake/mk/meta2deps.sh projects/ifnet/contrib/bmake/mk/mk-files.txt projects/ifnet/contrib/bmake/mk/own.mk projects/ifnet/contrib/bmake/mk/sys.dependfile.mk projects/ifnet/contrib/bmake/nonints.h projects/ifnet/contrib/bmake/parse.c projects/ifnet/contrib/bmake/suff.c projects/ifnet/contrib/bmake/targ.c projects/ifnet/contrib/bmake/unit-tests/Makefile.in projects/ifnet/contrib/bmake/var.c projects/ifnet/contrib/llvm/lib/MC/MCParser/AsmParser.cpp projects/ifnet/contrib/wpa/COPYING projects/ifnet/contrib/wpa/README projects/ifnet/contrib/wpa/hostapd/ChangeLog projects/ifnet/contrib/wpa/hostapd/README projects/ifnet/contrib/wpa/hostapd/README-WPS projects/ifnet/contrib/wpa/hostapd/config_file.c projects/ifnet/contrib/wpa/hostapd/ctrl_iface.c projects/ifnet/contrib/wpa/hostapd/defconfig projects/ifnet/contrib/wpa/hostapd/eap_register.c projects/ifnet/contrib/wpa/hostapd/hlr_auc_gw.c projects/ifnet/contrib/wpa/hostapd/hostapd.8 projects/ifnet/contrib/wpa/hostapd/hostapd.conf projects/ifnet/contrib/wpa/hostapd/hostapd.eap_user projects/ifnet/contrib/wpa/hostapd/hostapd.eap_user_sqlite projects/ifnet/contrib/wpa/hostapd/hostapd_cli.c projects/ifnet/contrib/wpa/hostapd/main.c projects/ifnet/contrib/wpa/src/ap/accounting.c projects/ifnet/contrib/wpa/src/ap/ap_config.c projects/ifnet/contrib/wpa/src/ap/ap_config.h projects/ifnet/contrib/wpa/src/ap/ap_drv_ops.c projects/ifnet/contrib/wpa/src/ap/ap_drv_ops.h projects/ifnet/contrib/wpa/src/ap/ap_list.c projects/ifnet/contrib/wpa/src/ap/ap_list.h projects/ifnet/contrib/wpa/src/ap/ap_mlme.c projects/ifnet/contrib/wpa/src/ap/authsrv.c projects/ifnet/contrib/wpa/src/ap/beacon.c projects/ifnet/contrib/wpa/src/ap/beacon.h projects/ifnet/contrib/wpa/src/ap/ctrl_iface_ap.c projects/ifnet/contrib/wpa/src/ap/ctrl_iface_ap.h projects/ifnet/contrib/wpa/src/ap/drv_callbacks.c projects/ifnet/contrib/wpa/src/ap/eap_user_db.c projects/ifnet/contrib/wpa/src/ap/gas_serv.c projects/ifnet/contrib/wpa/src/ap/gas_serv.h projects/ifnet/contrib/wpa/src/ap/hostapd.c projects/ifnet/contrib/wpa/src/ap/hostapd.h projects/ifnet/contrib/wpa/src/ap/hs20.c projects/ifnet/contrib/wpa/src/ap/hs20.h projects/ifnet/contrib/wpa/src/ap/hw_features.c projects/ifnet/contrib/wpa/src/ap/hw_features.h projects/ifnet/contrib/wpa/src/ap/iapp.c projects/ifnet/contrib/wpa/src/ap/ieee802_11.c projects/ifnet/contrib/wpa/src/ap/ieee802_11.h projects/ifnet/contrib/wpa/src/ap/ieee802_11_auth.c projects/ifnet/contrib/wpa/src/ap/ieee802_11_ht.c projects/ifnet/contrib/wpa/src/ap/ieee802_11_shared.c projects/ifnet/contrib/wpa/src/ap/ieee802_11_vht.c projects/ifnet/contrib/wpa/src/ap/ieee802_1x.c projects/ifnet/contrib/wpa/src/ap/ieee802_1x.h projects/ifnet/contrib/wpa/src/ap/p2p_hostapd.c projects/ifnet/contrib/wpa/src/ap/peerkey_auth.c projects/ifnet/contrib/wpa/src/ap/pmksa_cache_auth.c projects/ifnet/contrib/wpa/src/ap/pmksa_cache_auth.h projects/ifnet/contrib/wpa/src/ap/sta_info.c projects/ifnet/contrib/wpa/src/ap/sta_info.h projects/ifnet/contrib/wpa/src/ap/tkip_countermeasures.c projects/ifnet/contrib/wpa/src/ap/vlan_init.c projects/ifnet/contrib/wpa/src/ap/vlan_init.h projects/ifnet/contrib/wpa/src/ap/wmm.c projects/ifnet/contrib/wpa/src/ap/wmm.h projects/ifnet/contrib/wpa/src/ap/wnm_ap.c projects/ifnet/contrib/wpa/src/ap/wnm_ap.h projects/ifnet/contrib/wpa/src/ap/wpa_auth.c projects/ifnet/contrib/wpa/src/ap/wpa_auth.h projects/ifnet/contrib/wpa/src/ap/wpa_auth_ft.c projects/ifnet/contrib/wpa/src/ap/wpa_auth_glue.c projects/ifnet/contrib/wpa/src/ap/wpa_auth_i.h projects/ifnet/contrib/wpa/src/ap/wpa_auth_ie.c projects/ifnet/contrib/wpa/src/ap/wpa_auth_ie.h projects/ifnet/contrib/wpa/src/ap/wps_hostapd.c projects/ifnet/contrib/wpa/src/ap/wps_hostapd.h projects/ifnet/contrib/wpa/src/common/defs.h projects/ifnet/contrib/wpa/src/common/eapol_common.h projects/ifnet/contrib/wpa/src/common/ieee802_11_common.c projects/ifnet/contrib/wpa/src/common/ieee802_11_common.h projects/ifnet/contrib/wpa/src/common/ieee802_11_defs.h projects/ifnet/contrib/wpa/src/common/privsep_commands.h projects/ifnet/contrib/wpa/src/common/version.h projects/ifnet/contrib/wpa/src/common/wpa_common.c projects/ifnet/contrib/wpa/src/common/wpa_common.h projects/ifnet/contrib/wpa/src/common/wpa_ctrl.c projects/ifnet/contrib/wpa/src/common/wpa_ctrl.h projects/ifnet/contrib/wpa/src/crypto/aes-ccm.c projects/ifnet/contrib/wpa/src/crypto/aes-eax.c projects/ifnet/contrib/wpa/src/crypto/aes-gcm.c projects/ifnet/contrib/wpa/src/crypto/aes-omac1.c projects/ifnet/contrib/wpa/src/crypto/aes-unwrap.c projects/ifnet/contrib/wpa/src/crypto/aes-wrap.c projects/ifnet/contrib/wpa/src/crypto/aes_wrap.h projects/ifnet/contrib/wpa/src/crypto/crypto.h projects/ifnet/contrib/wpa/src/crypto/crypto_internal-rsa.c projects/ifnet/contrib/wpa/src/crypto/crypto_openssl.c projects/ifnet/contrib/wpa/src/crypto/dh_groups.c projects/ifnet/contrib/wpa/src/crypto/dh_groups.h projects/ifnet/contrib/wpa/src/crypto/md5.c projects/ifnet/contrib/wpa/src/crypto/milenage.c projects/ifnet/contrib/wpa/src/crypto/ms_funcs.c projects/ifnet/contrib/wpa/src/crypto/random.c projects/ifnet/contrib/wpa/src/crypto/sha1-internal.c projects/ifnet/contrib/wpa/src/crypto/sha1-prf.c projects/ifnet/contrib/wpa/src/crypto/sha1.c projects/ifnet/contrib/wpa/src/crypto/sha256-prf.c projects/ifnet/contrib/wpa/src/crypto/sha256.h projects/ifnet/contrib/wpa/src/crypto/tls.h projects/ifnet/contrib/wpa/src/crypto/tls_gnutls.c projects/ifnet/contrib/wpa/src/crypto/tls_internal.c projects/ifnet/contrib/wpa/src/crypto/tls_none.c projects/ifnet/contrib/wpa/src/crypto/tls_openssl.c projects/ifnet/contrib/wpa/src/crypto/tls_schannel.c projects/ifnet/contrib/wpa/src/drivers/driver.h projects/ifnet/contrib/wpa/src/drivers/driver_bsd.c projects/ifnet/contrib/wpa/src/drivers/driver_common.c projects/ifnet/contrib/wpa/src/drivers/driver_ndis.c projects/ifnet/contrib/wpa/src/drivers/driver_privsep.c projects/ifnet/contrib/wpa/src/drivers/driver_wired.c projects/ifnet/contrib/wpa/src/drivers/drivers.c projects/ifnet/contrib/wpa/src/eap_common/eap_common.c projects/ifnet/contrib/wpa/src/eap_common/eap_common.h projects/ifnet/contrib/wpa/src/eap_common/eap_defs.h projects/ifnet/contrib/wpa/src/eap_common/eap_fast_common.c projects/ifnet/contrib/wpa/src/eap_common/eap_fast_common.h projects/ifnet/contrib/wpa/src/eap_common/eap_gpsk_common.c projects/ifnet/contrib/wpa/src/eap_common/eap_gpsk_common.h projects/ifnet/contrib/wpa/src/eap_common/eap_ikev2_common.c projects/ifnet/contrib/wpa/src/eap_common/eap_ikev2_common.h projects/ifnet/contrib/wpa/src/eap_common/eap_pax_common.c projects/ifnet/contrib/wpa/src/eap_common/eap_pax_common.h projects/ifnet/contrib/wpa/src/eap_common/eap_pwd_common.c projects/ifnet/contrib/wpa/src/eap_common/eap_pwd_common.h projects/ifnet/contrib/wpa/src/eap_common/eap_sim_common.c projects/ifnet/contrib/wpa/src/eap_common/eap_sim_common.h projects/ifnet/contrib/wpa/src/eap_common/ikev2_common.c projects/ifnet/contrib/wpa/src/eap_common/ikev2_common.h projects/ifnet/contrib/wpa/src/eap_peer/eap.c projects/ifnet/contrib/wpa/src/eap_peer/eap.h projects/ifnet/contrib/wpa/src/eap_peer/eap_aka.c projects/ifnet/contrib/wpa/src/eap_peer/eap_config.h projects/ifnet/contrib/wpa/src/eap_peer/eap_fast.c projects/ifnet/contrib/wpa/src/eap_peer/eap_fast_pac.c projects/ifnet/contrib/wpa/src/eap_peer/eap_gpsk.c projects/ifnet/contrib/wpa/src/eap_peer/eap_i.h projects/ifnet/contrib/wpa/src/eap_peer/eap_ikev2.c projects/ifnet/contrib/wpa/src/eap_peer/eap_leap.c projects/ifnet/contrib/wpa/src/eap_peer/eap_methods.c projects/ifnet/contrib/wpa/src/eap_peer/eap_methods.h projects/ifnet/contrib/wpa/src/eap_peer/eap_mschapv2.c projects/ifnet/contrib/wpa/src/eap_peer/eap_pax.c projects/ifnet/contrib/wpa/src/eap_peer/eap_peap.c projects/ifnet/contrib/wpa/src/eap_peer/eap_psk.c projects/ifnet/contrib/wpa/src/eap_peer/eap_pwd.c projects/ifnet/contrib/wpa/src/eap_peer/eap_sake.c projects/ifnet/contrib/wpa/src/eap_peer/eap_sim.c projects/ifnet/contrib/wpa/src/eap_peer/eap_tls.c projects/ifnet/contrib/wpa/src/eap_peer/eap_tls_common.c projects/ifnet/contrib/wpa/src/eap_peer/eap_tls_common.h projects/ifnet/contrib/wpa/src/eap_peer/eap_tnc.c projects/ifnet/contrib/wpa/src/eap_peer/eap_ttls.c projects/ifnet/contrib/wpa/src/eap_peer/eap_vendor_test.c projects/ifnet/contrib/wpa/src/eap_peer/eap_wsc.c projects/ifnet/contrib/wpa/src/eap_peer/ikev2.c projects/ifnet/contrib/wpa/src/eap_peer/mschapv2.c projects/ifnet/contrib/wpa/src/eap_peer/tncc.c projects/ifnet/contrib/wpa/src/eap_server/eap.h projects/ifnet/contrib/wpa/src/eap_server/eap_i.h projects/ifnet/contrib/wpa/src/eap_server/eap_methods.h projects/ifnet/contrib/wpa/src/eap_server/eap_server.c projects/ifnet/contrib/wpa/src/eap_server/eap_server_aka.c projects/ifnet/contrib/wpa/src/eap_server/eap_server_fast.c projects/ifnet/contrib/wpa/src/eap_server/eap_server_gpsk.c projects/ifnet/contrib/wpa/src/eap_server/eap_server_gtc.c projects/ifnet/contrib/wpa/src/eap_server/eap_server_identity.c projects/ifnet/contrib/wpa/src/eap_server/eap_server_ikev2.c projects/ifnet/contrib/wpa/src/eap_server/eap_server_md5.c projects/ifnet/contrib/wpa/src/eap_server/eap_server_methods.c projects/ifnet/contrib/wpa/src/eap_server/eap_server_mschapv2.c projects/ifnet/contrib/wpa/src/eap_server/eap_server_pax.c projects/ifnet/contrib/wpa/src/eap_server/eap_server_peap.c projects/ifnet/contrib/wpa/src/eap_server/eap_server_psk.c projects/ifnet/contrib/wpa/src/eap_server/eap_server_pwd.c projects/ifnet/contrib/wpa/src/eap_server/eap_server_sake.c projects/ifnet/contrib/wpa/src/eap_server/eap_server_sim.c projects/ifnet/contrib/wpa/src/eap_server/eap_server_tls.c projects/ifnet/contrib/wpa/src/eap_server/eap_server_tls_common.c projects/ifnet/contrib/wpa/src/eap_server/eap_server_tnc.c projects/ifnet/contrib/wpa/src/eap_server/eap_server_ttls.c projects/ifnet/contrib/wpa/src/eap_server/eap_server_wsc.c projects/ifnet/contrib/wpa/src/eap_server/eap_sim_db.c projects/ifnet/contrib/wpa/src/eap_server/eap_tls_common.h projects/ifnet/contrib/wpa/src/eap_server/ikev2.c projects/ifnet/contrib/wpa/src/eap_server/tncs.c projects/ifnet/contrib/wpa/src/eapol_auth/eapol_auth_dump.c projects/ifnet/contrib/wpa/src/eapol_auth/eapol_auth_sm.c projects/ifnet/contrib/wpa/src/eapol_auth/eapol_auth_sm.h projects/ifnet/contrib/wpa/src/eapol_auth/eapol_auth_sm_i.h projects/ifnet/contrib/wpa/src/eapol_supp/eapol_supp_sm.c projects/ifnet/contrib/wpa/src/eapol_supp/eapol_supp_sm.h projects/ifnet/contrib/wpa/src/l2_packet/l2_packet.h projects/ifnet/contrib/wpa/src/l2_packet/l2_packet_freebsd.c projects/ifnet/contrib/wpa/src/l2_packet/l2_packet_ndis.c projects/ifnet/contrib/wpa/src/l2_packet/l2_packet_none.c projects/ifnet/contrib/wpa/src/l2_packet/l2_packet_privsep.c projects/ifnet/contrib/wpa/src/p2p/p2p.c projects/ifnet/contrib/wpa/src/p2p/p2p.h projects/ifnet/contrib/wpa/src/p2p/p2p_build.c projects/ifnet/contrib/wpa/src/p2p/p2p_dev_disc.c projects/ifnet/contrib/wpa/src/p2p/p2p_go_neg.c projects/ifnet/contrib/wpa/src/p2p/p2p_group.c projects/ifnet/contrib/wpa/src/p2p/p2p_i.h projects/ifnet/contrib/wpa/src/p2p/p2p_invitation.c projects/ifnet/contrib/wpa/src/p2p/p2p_parse.c projects/ifnet/contrib/wpa/src/p2p/p2p_pd.c projects/ifnet/contrib/wpa/src/p2p/p2p_sd.c projects/ifnet/contrib/wpa/src/p2p/p2p_utils.c projects/ifnet/contrib/wpa/src/radius/radius.c projects/ifnet/contrib/wpa/src/radius/radius.h projects/ifnet/contrib/wpa/src/radius/radius_client.c projects/ifnet/contrib/wpa/src/radius/radius_das.c projects/ifnet/contrib/wpa/src/radius/radius_das.h projects/ifnet/contrib/wpa/src/radius/radius_server.c projects/ifnet/contrib/wpa/src/radius/radius_server.h projects/ifnet/contrib/wpa/src/rsn_supp/peerkey.c projects/ifnet/contrib/wpa/src/rsn_supp/peerkey.h projects/ifnet/contrib/wpa/src/rsn_supp/pmksa_cache.c projects/ifnet/contrib/wpa/src/rsn_supp/pmksa_cache.h projects/ifnet/contrib/wpa/src/rsn_supp/preauth.c projects/ifnet/contrib/wpa/src/rsn_supp/preauth.h projects/ifnet/contrib/wpa/src/rsn_supp/tdls.c projects/ifnet/contrib/wpa/src/rsn_supp/wpa.c projects/ifnet/contrib/wpa/src/rsn_supp/wpa.h projects/ifnet/contrib/wpa/src/rsn_supp/wpa_ft.c projects/ifnet/contrib/wpa/src/rsn_supp/wpa_i.h projects/ifnet/contrib/wpa/src/rsn_supp/wpa_ie.c projects/ifnet/contrib/wpa/src/rsn_supp/wpa_ie.h projects/ifnet/contrib/wpa/src/tls/asn1.c projects/ifnet/contrib/wpa/src/tls/asn1.h projects/ifnet/contrib/wpa/src/tls/libtommath.c projects/ifnet/contrib/wpa/src/tls/pkcs1.c projects/ifnet/contrib/wpa/src/tls/pkcs1.h projects/ifnet/contrib/wpa/src/tls/rsa.c projects/ifnet/contrib/wpa/src/tls/rsa.h projects/ifnet/contrib/wpa/src/tls/tlsv1_client.c projects/ifnet/contrib/wpa/src/tls/tlsv1_client_read.c projects/ifnet/contrib/wpa/src/tls/tlsv1_client_write.c projects/ifnet/contrib/wpa/src/tls/tlsv1_common.c projects/ifnet/contrib/wpa/src/tls/tlsv1_common.h projects/ifnet/contrib/wpa/src/tls/tlsv1_record.c projects/ifnet/contrib/wpa/src/tls/tlsv1_server.c projects/ifnet/contrib/wpa/src/tls/tlsv1_server.h projects/ifnet/contrib/wpa/src/tls/tlsv1_server_i.h projects/ifnet/contrib/wpa/src/tls/tlsv1_server_read.c projects/ifnet/contrib/wpa/src/tls/tlsv1_server_write.c projects/ifnet/contrib/wpa/src/tls/x509v3.c projects/ifnet/contrib/wpa/src/utils/base64.c projects/ifnet/contrib/wpa/src/utils/build_config.h projects/ifnet/contrib/wpa/src/utils/common.c projects/ifnet/contrib/wpa/src/utils/common.h projects/ifnet/contrib/wpa/src/utils/edit.c projects/ifnet/contrib/wpa/src/utils/edit_readline.c projects/ifnet/contrib/wpa/src/utils/edit_simple.c projects/ifnet/contrib/wpa/src/utils/eloop.c projects/ifnet/contrib/wpa/src/utils/eloop.h projects/ifnet/contrib/wpa/src/utils/eloop_win.c projects/ifnet/contrib/wpa/src/utils/ext_password_test.c projects/ifnet/contrib/wpa/src/utils/ip_addr.c projects/ifnet/contrib/wpa/src/utils/ip_addr.h projects/ifnet/contrib/wpa/src/utils/list.h projects/ifnet/contrib/wpa/src/utils/os.h projects/ifnet/contrib/wpa/src/utils/os_internal.c projects/ifnet/contrib/wpa/src/utils/os_none.c projects/ifnet/contrib/wpa/src/utils/os_unix.c projects/ifnet/contrib/wpa/src/utils/os_win32.c projects/ifnet/contrib/wpa/src/utils/pcsc_funcs.c projects/ifnet/contrib/wpa/src/utils/pcsc_funcs.h projects/ifnet/contrib/wpa/src/utils/radiotap.c projects/ifnet/contrib/wpa/src/utils/radiotap.h projects/ifnet/contrib/wpa/src/utils/radiotap_iter.h projects/ifnet/contrib/wpa/src/utils/trace.c projects/ifnet/contrib/wpa/src/utils/trace.h projects/ifnet/contrib/wpa/src/utils/uuid.c projects/ifnet/contrib/wpa/src/utils/wpa_debug.c projects/ifnet/contrib/wpa/src/utils/wpa_debug.h projects/ifnet/contrib/wpa/src/utils/wpabuf.c projects/ifnet/contrib/wpa/src/utils/wpabuf.h projects/ifnet/contrib/wpa/src/wps/http_client.c projects/ifnet/contrib/wpa/src/wps/http_server.c projects/ifnet/contrib/wpa/src/wps/httpread.c projects/ifnet/contrib/wpa/src/wps/ndef.c projects/ifnet/contrib/wpa/src/wps/wps.c projects/ifnet/contrib/wpa/src/wps/wps.h projects/ifnet/contrib/wpa/src/wps/wps_attr_build.c projects/ifnet/contrib/wpa/src/wps/wps_attr_parse.c projects/ifnet/contrib/wpa/src/wps/wps_attr_parse.h projects/ifnet/contrib/wpa/src/wps/wps_attr_process.c projects/ifnet/contrib/wpa/src/wps/wps_common.c projects/ifnet/contrib/wpa/src/wps/wps_defs.h projects/ifnet/contrib/wpa/src/wps/wps_dev_attr.c projects/ifnet/contrib/wpa/src/wps/wps_dev_attr.h projects/ifnet/contrib/wpa/src/wps/wps_enrollee.c projects/ifnet/contrib/wpa/src/wps/wps_er.c projects/ifnet/contrib/wpa/src/wps/wps_er.h projects/ifnet/contrib/wpa/src/wps/wps_er_ssdp.c projects/ifnet/contrib/wpa/src/wps/wps_i.h projects/ifnet/contrib/wpa/src/wps/wps_registrar.c projects/ifnet/contrib/wpa/src/wps/wps_upnp.c projects/ifnet/contrib/wpa/src/wps/wps_upnp_ap.c projects/ifnet/contrib/wpa/src/wps/wps_upnp_i.h projects/ifnet/contrib/wpa/src/wps/wps_upnp_ssdp.c projects/ifnet/contrib/wpa/src/wps/wps_upnp_web.c projects/ifnet/contrib/wpa/src/wps/wps_validate.c projects/ifnet/contrib/wpa/wpa_supplicant/ChangeLog projects/ifnet/contrib/wpa/wpa_supplicant/README projects/ifnet/contrib/wpa/wpa_supplicant/README-HS20 projects/ifnet/contrib/wpa/wpa_supplicant/README-P2P projects/ifnet/contrib/wpa/wpa_supplicant/README-WPS projects/ifnet/contrib/wpa/wpa_supplicant/ap.c projects/ifnet/contrib/wpa/wpa_supplicant/ap.h projects/ifnet/contrib/wpa/wpa_supplicant/bgscan.c projects/ifnet/contrib/wpa/wpa_supplicant/bgscan.h projects/ifnet/contrib/wpa/wpa_supplicant/bgscan_learn.c projects/ifnet/contrib/wpa/wpa_supplicant/bgscan_simple.c projects/ifnet/contrib/wpa/wpa_supplicant/bss.c projects/ifnet/contrib/wpa/wpa_supplicant/bss.h projects/ifnet/contrib/wpa/wpa_supplicant/config.c projects/ifnet/contrib/wpa/wpa_supplicant/config.h projects/ifnet/contrib/wpa/wpa_supplicant/config_file.c projects/ifnet/contrib/wpa/wpa_supplicant/config_none.c projects/ifnet/contrib/wpa/wpa_supplicant/config_ssid.h projects/ifnet/contrib/wpa/wpa_supplicant/ctrl_iface.c projects/ifnet/contrib/wpa/wpa_supplicant/ctrl_iface.h projects/ifnet/contrib/wpa/wpa_supplicant/ctrl_iface_named_pipe.c projects/ifnet/contrib/wpa/wpa_supplicant/ctrl_iface_udp.c projects/ifnet/contrib/wpa/wpa_supplicant/ctrl_iface_unix.c projects/ifnet/contrib/wpa/wpa_supplicant/dbus/Makefile projects/ifnet/contrib/wpa/wpa_supplicant/dbus/dbus_common.c projects/ifnet/contrib/wpa/wpa_supplicant/dbus/dbus_dict_helpers.c projects/ifnet/contrib/wpa/wpa_supplicant/dbus/dbus_dict_helpers.h projects/ifnet/contrib/wpa/wpa_supplicant/dbus/dbus_new.c projects/ifnet/contrib/wpa/wpa_supplicant/dbus/dbus_new.h projects/ifnet/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers.c projects/ifnet/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers.h projects/ifnet/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_p2p.c projects/ifnet/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_p2p.h projects/ifnet/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_wps.c projects/ifnet/contrib/wpa/wpa_supplicant/dbus/dbus_new_helpers.c projects/ifnet/contrib/wpa/wpa_supplicant/dbus/dbus_new_helpers.h projects/ifnet/contrib/wpa/wpa_supplicant/dbus/dbus_new_introspect.c projects/ifnet/contrib/wpa/wpa_supplicant/dbus/dbus_old.c projects/ifnet/contrib/wpa/wpa_supplicant/dbus/dbus_old.h projects/ifnet/contrib/wpa/wpa_supplicant/dbus/dbus_old_handlers.c projects/ifnet/contrib/wpa/wpa_supplicant/dbus/dbus_old_handlers.h projects/ifnet/contrib/wpa/wpa_supplicant/dbus/dbus_old_handlers_wps.c projects/ifnet/contrib/wpa/wpa_supplicant/defconfig projects/ifnet/contrib/wpa/wpa_supplicant/driver_i.h projects/ifnet/contrib/wpa/wpa_supplicant/eap_register.c projects/ifnet/contrib/wpa/wpa_supplicant/eapol_test.c projects/ifnet/contrib/wpa/wpa_supplicant/events.c projects/ifnet/contrib/wpa/wpa_supplicant/examples/p2p-action.sh projects/ifnet/contrib/wpa/wpa_supplicant/examples/wps-ap-cli projects/ifnet/contrib/wpa/wpa_supplicant/examples/wps-nfc.py projects/ifnet/contrib/wpa/wpa_supplicant/gas_query.c projects/ifnet/contrib/wpa/wpa_supplicant/gas_query.h projects/ifnet/contrib/wpa/wpa_supplicant/hs20_supplicant.c projects/ifnet/contrib/wpa/wpa_supplicant/hs20_supplicant.h projects/ifnet/contrib/wpa/wpa_supplicant/ibss_rsn.c projects/ifnet/contrib/wpa/wpa_supplicant/ibss_rsn.h projects/ifnet/contrib/wpa/wpa_supplicant/interworking.c projects/ifnet/contrib/wpa/wpa_supplicant/interworking.h projects/ifnet/contrib/wpa/wpa_supplicant/main.c projects/ifnet/contrib/wpa/wpa_supplicant/main_none.c projects/ifnet/contrib/wpa/wpa_supplicant/notify.c projects/ifnet/contrib/wpa/wpa_supplicant/notify.h projects/ifnet/contrib/wpa/wpa_supplicant/offchannel.c projects/ifnet/contrib/wpa/wpa_supplicant/p2p_supplicant.c projects/ifnet/contrib/wpa/wpa_supplicant/p2p_supplicant.h projects/ifnet/contrib/wpa/wpa_supplicant/preauth_test.c projects/ifnet/contrib/wpa/wpa_supplicant/scan.c projects/ifnet/contrib/wpa/wpa_supplicant/scan.h projects/ifnet/contrib/wpa/wpa_supplicant/sme.c projects/ifnet/contrib/wpa/wpa_supplicant/sme.h projects/ifnet/contrib/wpa/wpa_supplicant/tests/test_wpa.c projects/ifnet/contrib/wpa/wpa_supplicant/todo.txt projects/ifnet/contrib/wpa/wpa_supplicant/wifi_display.c projects/ifnet/contrib/wpa/wpa_supplicant/wifi_display.h projects/ifnet/contrib/wpa/wpa_supplicant/wnm_sta.c projects/ifnet/contrib/wpa/wpa_supplicant/wnm_sta.h projects/ifnet/contrib/wpa/wpa_supplicant/wpa_cli.c projects/ifnet/contrib/wpa/wpa_supplicant/wpa_priv.c projects/ifnet/contrib/wpa/wpa_supplicant/wpa_supplicant.c projects/ifnet/contrib/wpa/wpa_supplicant/wpa_supplicant.conf projects/ifnet/contrib/wpa/wpa_supplicant/wpa_supplicant_i.h projects/ifnet/contrib/wpa/wpa_supplicant/wpa_supplicant_template.conf projects/ifnet/contrib/wpa/wpa_supplicant/wpas_glue.c projects/ifnet/contrib/wpa/wpa_supplicant/wps_supplicant.c projects/ifnet/contrib/wpa/wpa_supplicant/wps_supplicant.h projects/ifnet/etc/defaults/rc.conf projects/ifnet/etc/rc.d/mountd projects/ifnet/etc/rc.d/nfsd projects/ifnet/lib/libc/Makefile projects/ifnet/lib/libc/amd64/sys/Makefile.inc projects/ifnet/lib/libc/arm/sys/Makefile.inc projects/ifnet/lib/libc/gen/setproctitle.c projects/ifnet/lib/libc/gen/waitid.c projects/ifnet/lib/libc/i386/sys/Makefile.inc projects/ifnet/lib/libc/iconv/citrus_prop.c projects/ifnet/lib/libc/include/compat.h projects/ifnet/lib/libc/include/libc_private.h projects/ifnet/lib/libc/mips/sys/Makefile.inc projects/ifnet/lib/libc/powerpc/sys/Makefile.inc projects/ifnet/lib/libc/powerpc64/sys/Makefile.inc projects/ifnet/lib/libc/sparc64/sys/Makefile.inc projects/ifnet/lib/libc/sys/Makefile.inc projects/ifnet/lib/libc/sys/fcntl.c projects/ifnet/lib/libc/sys/interposing_table.c projects/ifnet/lib/libmt/mt.3 projects/ifnet/lib/libpmc/libpmc.c projects/ifnet/lib/libpmc/pmc.haswellxeon.3 projects/ifnet/lib/libthr/Makefile projects/ifnet/lib/libthr/thread/thr_syscalls.c projects/ifnet/release/release.conf.sample projects/ifnet/release/release.sh projects/ifnet/release/tools/vmimage.subr projects/ifnet/sbin/dmesg/dmesg.c projects/ifnet/sbin/ipfw/nat.c projects/ifnet/sbin/mount/mount.8 projects/ifnet/sbin/mount/mount.c projects/ifnet/sbin/mount_nfs/Makefile projects/ifnet/sbin/mount_nfs/mount_nfs.8 projects/ifnet/share/man/man3/pthread_testcancel.3 projects/ifnet/share/man/man3/queue.3 projects/ifnet/share/man/man4/Makefile projects/ifnet/share/man/man4/ata.4 projects/ifnet/share/man/man4/run.4 projects/ifnet/share/man/man5/rc.conf.5 projects/ifnet/share/man/man5/src.conf.5 projects/ifnet/share/man/man9/SDT.9 projects/ifnet/share/man/man9/printf.9 projects/ifnet/share/mk/src.opts.mk projects/ifnet/sys/amd64/amd64/machdep.c projects/ifnet/sys/amd64/amd64/pmap.c projects/ifnet/sys/arm/allwinner/a10_clk.h projects/ifnet/sys/arm/allwinner/a20/a20_mp.c projects/ifnet/sys/arm/allwinner/a20/files.a20 projects/ifnet/sys/arm/allwinner/a20/std.a20 projects/ifnet/sys/arm/allwinner/files.a10 projects/ifnet/sys/arm/allwinner/if_emac.c projects/ifnet/sys/arm/allwinner/if_emacreg.h projects/ifnet/sys/arm/allwinner/std.a10 projects/ifnet/sys/arm/conf/CUBIEBOARD projects/ifnet/sys/arm/conf/CUBIEBOARD2 projects/ifnet/sys/arm64/arm64/trap.c projects/ifnet/sys/cam/scsi/scsi_all.c projects/ifnet/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c projects/ifnet/sys/compat/linux/linux_file.c projects/ifnet/sys/conf/files projects/ifnet/sys/conf/files.powerpc projects/ifnet/sys/dev/acpica/acpi.c projects/ifnet/sys/dev/acpica/acpivar.h projects/ifnet/sys/dev/atkbdc/psm.c projects/ifnet/sys/dev/etherswitch/miiproxy.c projects/ifnet/sys/dev/hwpmc/hwpmc_mpc7xxx.c projects/ifnet/sys/dev/hwpmc/hwpmc_powerpc.c projects/ifnet/sys/dev/hwpmc/hwpmc_powerpc.h projects/ifnet/sys/dev/hwpmc/hwpmc_ppc970.c projects/ifnet/sys/dev/hwpmc/pmc_events.h projects/ifnet/sys/dev/ixgbe/if_ix.c projects/ifnet/sys/dev/mii/acphy.c projects/ifnet/sys/dev/mii/brgphy.c projects/ifnet/sys/dev/mii/lxtphy.c projects/ifnet/sys/dev/mii/mii_physubr.c projects/ifnet/sys/dev/mii/miivar.h projects/ifnet/sys/dev/mii/mlphy.c projects/ifnet/sys/dev/mii/xmphy.c projects/ifnet/sys/dev/usb/usbdevs projects/ifnet/sys/dev/usb/video/udl.c projects/ifnet/sys/dev/usb/wlan/if_run.c projects/ifnet/sys/dev/virtio/block/virtio_blk.c projects/ifnet/sys/dev/xen/netfront/netfront.c projects/ifnet/sys/fs/ext2fs/ext2_dir.h projects/ifnet/sys/fs/ext2fs/ext2_extern.h projects/ifnet/sys/fs/ext2fs/ext2_lookup.c projects/ifnet/sys/fs/ext2fs/ext2_vfsops.c projects/ifnet/sys/fs/ext2fs/ext2fs.h projects/ifnet/sys/fs/nfs/nfs_commonport.c projects/ifnet/sys/fs/nfsclient/nfs_clrpcops.c projects/ifnet/sys/fs/nfsclient/nfs_clvfsops.c projects/ifnet/sys/fs/nfsserver/nfs_nfsdport.c projects/ifnet/sys/geom/uncompress/g_uncompress.c projects/ifnet/sys/i386/i386/apic_vector.s projects/ifnet/sys/i386/i386/db_trace.c projects/ifnet/sys/i386/i386/machdep.c projects/ifnet/sys/i386/i386/mp_machdep.c projects/ifnet/sys/i386/i386/pmap.c projects/ifnet/sys/i386/i386/swtch.s projects/ifnet/sys/i386/include/smp.h projects/ifnet/sys/i386/xen/mp_machdep.c projects/ifnet/sys/i386/xen/pmap.c projects/ifnet/sys/kern/init_sysent.c projects/ifnet/sys/kern/kern_synch.c projects/ifnet/sys/kern/kern_thread.c projects/ifnet/sys/kern/subr_prf.c projects/ifnet/sys/kern/sys_generic.c projects/ifnet/sys/kern/syscalls.c projects/ifnet/sys/kern/syscalls.master projects/ifnet/sys/kern/systrace_args.c projects/ifnet/sys/kern/vfs_cache.c projects/ifnet/sys/kern/vfs_syscalls.c projects/ifnet/sys/modules/ext2fs/Makefile projects/ifnet/sys/modules/hwpmc/Makefile projects/ifnet/sys/net/bpf.c projects/ifnet/sys/net/bpf.h projects/ifnet/sys/netgraph/bluetooth/include/ng_hci.h projects/ifnet/sys/netinet6/in6.c projects/ifnet/sys/netipsec/ipsec.c projects/ifnet/sys/netipsec/ipsec.h projects/ifnet/sys/netipsec/ipsec_input.c projects/ifnet/sys/netipsec/ipsec_output.c projects/ifnet/sys/netipsec/key.c projects/ifnet/sys/netipsec/xform.h projects/ifnet/sys/netipsec/xform_ah.c projects/ifnet/sys/netipsec/xform_esp.c projects/ifnet/sys/netipsec/xform_ipcomp.c projects/ifnet/sys/nfsclient/nfs.h projects/ifnet/sys/powerpc/booke/interrupt.c projects/ifnet/sys/powerpc/booke/locore.S projects/ifnet/sys/powerpc/booke/machdep.c projects/ifnet/sys/powerpc/booke/trap_subr.S projects/ifnet/sys/powerpc/include/pmc_mdep.h projects/ifnet/sys/sys/pmc.h projects/ifnet/sys/sys/syscall.h projects/ifnet/sys/sys/syscall.mk projects/ifnet/sys/sys/sysproto.h projects/ifnet/sys/vm/device_pager.c projects/ifnet/sys/vm/uma_core.c projects/ifnet/sys/vm/vm_mmap.c projects/ifnet/sys/x86/x86/mca.c projects/ifnet/sys/x86/xen/xen_apic.c projects/ifnet/tools/build/check-links.sh projects/ifnet/tools/tools/netmap/pkt-gen.c projects/ifnet/usr.bin/bmake/Makefile projects/ifnet/usr.bin/bmake/unit-tests/Makefile projects/ifnet/usr.bin/calendar/io.c projects/ifnet/usr.bin/find/find.1 projects/ifnet/usr.bin/nfsstat/nfsstat.c projects/ifnet/usr.bin/patch/inp.c projects/ifnet/usr.bin/patch/pch.c projects/ifnet/usr.bin/patch/util.c projects/ifnet/usr.bin/rpcgen/rpc_sample.c projects/ifnet/usr.sbin/bhyve/block_if.c projects/ifnet/usr.sbin/bhyve/block_if.h projects/ifnet/usr.sbin/bhyve/pci_ahci.c projects/ifnet/usr.sbin/bhyve/pci_virtio_block.c projects/ifnet/usr.sbin/bhyve/pci_virtio_net.c projects/ifnet/usr.sbin/bluetooth/hccontrol/Makefile projects/ifnet/usr.sbin/bluetooth/hccontrol/hccontrol.c projects/ifnet/usr.sbin/bluetooth/hccontrol/hccontrol.h projects/ifnet/usr.sbin/bluetooth/hccontrol/host_controller_baseband.c projects/ifnet/usr.sbin/config/main.c projects/ifnet/usr.sbin/crunch/crunchide/Makefile projects/ifnet/usr.sbin/crunch/crunchide/crunchide.c projects/ifnet/usr.sbin/crunch/crunchide/exec_elf32.c projects/ifnet/usr.sbin/crunch/crunchide/extern.h projects/ifnet/usr.sbin/ctld/ctl.conf.5 projects/ifnet/usr.sbin/inetd/inetd.c projects/ifnet/usr.sbin/mountd/mountd.c projects/ifnet/usr.sbin/nfsd/nfsd.8 projects/ifnet/usr.sbin/sysrc/sysrc projects/ifnet/usr.sbin/tzsetup/tzsetup.c projects/ifnet/usr.sbin/vidcontrol/vidcontrol.c projects/ifnet/usr.sbin/wpa/Makefile.crypto projects/ifnet/usr.sbin/wpa/hostapd/Makefile projects/ifnet/usr.sbin/wpa/wpa_passphrase/Makefile projects/ifnet/usr.sbin/wpa/wpa_supplicant/Makefile Directory Properties: projects/ifnet/ (props changed) projects/ifnet/cddl/ (props changed) projects/ifnet/cddl/contrib/opensolaris/ (props changed) projects/ifnet/contrib/bmake/ (props changed) projects/ifnet/contrib/llvm/ (props changed) projects/ifnet/contrib/wpa/ (props changed) projects/ifnet/etc/ (props changed) projects/ifnet/lib/libc/ (props changed) projects/ifnet/sbin/ (props changed) projects/ifnet/sbin/ipfw/ (props changed) projects/ifnet/share/ (props changed) projects/ifnet/share/man/man4/ (props changed) projects/ifnet/sys/ (props changed) projects/ifnet/sys/cddl/contrib/opensolaris/ (props changed) projects/ifnet/sys/conf/ (props changed) projects/ifnet/usr.bin/calendar/ (props changed) projects/ifnet/usr.sbin/bhyve/ (props changed) Modified: projects/ifnet/.arcconfig ============================================================================== --- projects/ifnet/.arcconfig Tue Apr 21 09:39:48 2015 (r281821) +++ projects/ifnet/.arcconfig Tue Apr 21 09:47:27 2015 (r281822) @@ -1,5 +1,4 @@ { "project.name": "S", - "phabricator.uri" : "https://reviews.freebsd.org/", - "history.immutable" : true + "phabricator.uri" : "https://reviews.freebsd.org/" } Modified: projects/ifnet/.arclint ============================================================================== --- projects/ifnet/.arclint Tue Apr 21 09:39:48 2015 (r281821) +++ projects/ifnet/.arclint Tue Apr 21 09:47:27 2015 (r281822) @@ -1,9 +1,25 @@ { + "exclude": "(contrib|crypto)", "linters": { "python": { "type": "pep8", - "exclude": "(contrib)", "include": "(\\.py$)" + }, + "spelling": { + "type": "spelling" + }, + "chmod": { + "type": "chmod" + }, + "merge-conflict": { + "type": "merge-conflict" + }, + "filename": { + "type": "filename" + }, + "json": { + "type": "json", + "include": "(\\.arclint|\\.json$)" } } } Modified: projects/ifnet/Makefile.inc1 ============================================================================== --- projects/ifnet/Makefile.inc1 Tue Apr 21 09:39:48 2015 (r281821) +++ projects/ifnet/Makefile.inc1 Tue Apr 21 09:47:27 2015 (r281822) @@ -1281,10 +1281,6 @@ _m4= lib/libohash \ ${_bt}-usr.bin/m4: ${_bt}-lib/libohash .endif -.if ${BOOTSTRAPPING} < 1000014 -_crunch= usr.sbin/crunch -.endif - .if ${BOOTSTRAPPING} < 1000026 _nmtree= lib/libnetbsd \ usr.sbin/nmtree @@ -1300,6 +1296,10 @@ _cat= bin/cat _lex= usr.bin/lex .endif +.if ${BOOTSTRAPPING} < 1001507 +_crunch= usr.sbin/crunch +.endif + .if ${BOOTSTRAPPING} >= 900040 && ${BOOTSTRAPPING} < 900041 _awk= usr.bin/awk .endif @@ -1469,12 +1469,9 @@ _btxld= usr.sbin/btxld .endif .endif .if ${TARGET_ARCH} != ${MACHINE_ARCH} -.if ${MK_RESCUE} != "no" || defined(RELEASEDIR) +.if ${MK_RESCUE} != "no" _crunchide= usr.sbin/crunch/crunchide .endif -.if ${TARGET_ARCH} == "i386" && defined(RELEASEDIR) -_kgzip= usr.sbin/kgzip -.endif .endif # If we're given an XAS, don't build binutils. @@ -1520,7 +1517,6 @@ cross-tools: .MAKE ${_cc} \ ${_btxld} \ ${_crunchide} \ - ${_kgzip} \ sys/boot/usb/tools ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \ cd ${.CURDIR}/${_tool} && \ Modified: projects/ifnet/ObsoleteFiles.inc ============================================================================== --- projects/ifnet/ObsoleteFiles.inc Tue Apr 21 09:39:48 2015 (r281821) +++ projects/ifnet/ObsoleteFiles.inc Tue Apr 21 09:47:27 2015 (r281822) @@ -38,6 +38,9 @@ # xargs -n1 | sort | uniq -d; # done +# 20150418 +OLD_FILES+=sbin/mount_oldnfs +OLD_FILES+=usr/share/man/man8/mount_oldnfs.8.gz # 20150416: ALTQ moved to net/altq OLD_FILES+=usr/include/altq/altq_rmclass_debug.h OLD_FILES+=usr/include/altq/altq.h Modified: projects/ifnet/README ============================================================================== --- projects/ifnet/README Tue Apr 21 09:39:48 2015 (r281821) +++ projects/ifnet/README Tue Apr 21 09:47:27 2015 (r281822) @@ -8,37 +8,32 @@ sources in this tree - please see the sp more information). The Makefile in this directory supports a number of targets for -building components (or all) of the FreeBSD source tree, the most -commonly used one being ``world'', which rebuilds and installs -everything in the FreeBSD system from the source tree except the -kernel, the kernel-modules and the contents of /etc. The ``world'' -target should only be used in cases where the source tree has not -changed from the currently running version. See: -http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html +building components (or all) of the FreeBSD source tree. See build(7) +and http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html for more information, including setting make(1) variables. -The ``buildkernel'' and ``installkernel'' targets build and install +The `buildkernel` and `installkernel` targets build and install the kernel and the modules (see below). Please see the top of the Makefile in this directory for more information on the standard build targets and compile-time flags. -Building a kernel is a somewhat more involved process, documentation -for which can be found at: - http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html -And in the config(8) man page. +Building a kernel is a somewhat more involved process. See build(7), config(8), +and http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html +for more information. + Note: If you want to build and install the kernel with the -``buildkernel'' and ``installkernel'' targets, you might need to build +`buildkernel` and `installkernel` targets, you might need to build world before. More information is available in the handbook. -The sample kernel configuration files reside in the sys//conf -sub-directory (assuming that you've installed the kernel sources), the -file named GENERIC being the one used to build your initial installation -kernel. The file NOTES contains entries and documentation for all possible +The kernel configuration files reside in the sys//conf +sub-directory. GENERIC is the default configuration used in release builds. +NOTES contains entries and documentation for all possible devices, not just those commonly used. Source Roadmap: --------------- + bin System/user commands. cddl Various commands and libraries under the Common Development Modified: projects/ifnet/bin/ed/glbl.c ============================================================================== --- projects/ifnet/bin/ed/glbl.c Tue Apr 21 09:39:48 2015 (r281821) +++ projects/ifnet/bin/ed/glbl.c Tue Apr 21 09:47:27 2015 (r281822) @@ -60,7 +60,7 @@ build_active_list(int isgcmd) return ERR; if (isbinary) NUL_TO_NEWLINE(s, lp->len); - if (!regexec(pat, s, 0, NULL, 0) == isgcmd && + if (!(regexec(pat, s, 0, NULL, 0) == isgcmd) && set_active_node(lp) < 0) return ERR; } @@ -153,7 +153,7 @@ set_active_node(line_t *lp) if (active_list != NULL) { #endif if ((ts = (line_t **) realloc(active_list, - (ti += MINBUFSZ) * sizeof(line_t **))) == NULL) { + (ti += MINBUFSZ) * sizeof(line_t *))) == NULL) { fprintf(stderr, "%s\n", strerror(errno)); errmsg = "out of memory"; SPL0(); Modified: projects/ifnet/bin/sh/sh.1 ============================================================================== --- projects/ifnet/bin/sh/sh.1 Tue Apr 21 09:39:48 2015 (r281821) +++ projects/ifnet/bin/sh/sh.1 Tue Apr 21 09:47:27 2015 (r281822) @@ -32,7 +32,7 @@ .\" from: @(#)sh.1 8.6 (Berkeley) 5/4/95 .\" $FreeBSD$ .\" -.Dd February 22, 2015 +.Dd April 18, 2015 .Dt SH 1 .Os .Sh NAME @@ -2574,8 +2574,7 @@ the former causes the specified signal t and the latter causes the default action to be taken. Omitting the .Ar action -is another way to request the default action, for compatibility reasons this -usage is not recommended though. +and using only signal numbers is another way to request the default action. In a subshell or utility environment, the shell resets trapped (but not ignored) signals to the default action. The Modified: projects/ifnet/bin/sh/tests/builtins/Makefile ============================================================================== --- projects/ifnet/bin/sh/tests/builtins/Makefile Tue Apr 21 09:39:48 2015 (r281821) +++ projects/ifnet/bin/sh/tests/builtins/Makefile Tue Apr 21 09:47:27 2015 (r281822) @@ -137,6 +137,8 @@ FILES+= trap11.0 FILES+= trap12.0 FILES+= trap13.0 FILES+= trap14.0 +FILES+= trap15.0 +FILES+= trap16.0 FILES+= trap2.0 FILES+= trap3.0 FILES+= trap4.0 Copied: projects/ifnet/bin/sh/tests/builtins/trap15.0 (from r281821, head/bin/sh/tests/builtins/trap15.0) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/ifnet/bin/sh/tests/builtins/trap15.0 Tue Apr 21 09:47:27 2015 (r281822, copy of r281821, head/bin/sh/tests/builtins/trap15.0) @@ -0,0 +1,5 @@ +# $FreeBSD$ + +(${SH} -c 'term(){ exit 5;}; trap term TERM; kill -TERM $$') & +wait >/dev/null 2>&1 $! +[ $? -eq 5 ] Copied: projects/ifnet/bin/sh/tests/builtins/trap16.0 (from r281821, head/bin/sh/tests/builtins/trap16.0) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/ifnet/bin/sh/tests/builtins/trap16.0 Tue Apr 21 09:47:27 2015 (r281822, copy of r281821, head/bin/sh/tests/builtins/trap16.0) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +traps=$(${SH} -c 'trap "echo bad" 0; trap - 0; trap') +[ -z "$traps" ] || exit 1 +traps=$(${SH} -c 'trap "echo bad" 0; trap "" 0; trap') +expected_traps=$(${SH} -c 'trap "" EXIT; trap') +[ "$traps" = "$expected_traps" ] || exit 2 +traps=$(${SH} -c 'trap "echo bad" 0; trap 0; trap') +[ -z "$traps" ] || exit 3 +traps=$(${SH} -c 'trap "echo bad" 0; trap -- 0; trap') +[ -z "$traps" ] || exit 4 +traps=$(${SH} -c 'trap "echo bad" 0 1 2; trap - 0 1 2; trap') +[ -z "$traps" ] || exit 5 +traps=$(${SH} -c 'trap "echo bad" 0 1 2; trap "" 0 1 2; trap') +expected_traps=$(${SH} -c 'trap "" EXIT HUP INT; trap') +[ "$traps" = "$expected_traps" ] || exit 6 +traps=$(${SH} -c 'trap "echo bad" 0 1 2; trap 0 1 2; trap') +[ -z "$traps" ] || exit 7 +traps=$(${SH} -c 'trap "echo bad" 0 1 2; trap -- 0 1 2; trap') +[ -z "$traps" ] || exit 8 Modified: projects/ifnet/bin/sh/trap.c ============================================================================== --- projects/ifnet/bin/sh/trap.c Tue Apr 21 09:39:48 2015 (r281821) +++ projects/ifnet/bin/sh/trap.c Tue Apr 21 09:47:27 2015 (r281822) @@ -183,7 +183,7 @@ trapcmd(int argc __unused, char **argv) return 0; } action = NULL; - if (*argv && sigstring_to_signum(*argv) == -1) { + if (*argv && !is_number(*argv)) { if (strcmp(*argv, "-") == 0) argv++; else { Modified: projects/ifnet/cddl/contrib/opensolaris/cmd/dtrace/dtrace.1 ============================================================================== --- projects/ifnet/cddl/contrib/opensolaris/cmd/dtrace/dtrace.1 Tue Apr 21 09:39:48 2015 (r281821) +++ projects/ifnet/cddl/contrib/opensolaris/cmd/dtrace/dtrace.1 Tue Apr 21 09:47:27 2015 (r281822) @@ -21,7 +21,7 @@ .\" .\" $FreeBSD$ .\" -.Dd October 5, 2013 +.Dd April 18, 2015 .Dt DTRACE 1 .Os .Sh NAME @@ -670,7 +670,8 @@ Invalid command line options or argument .Sh SEE ALSO .Xr cpp 1 , .Xr dtruss 1 , -.Xr elf 5 +.Xr elf 5 , +.Xr SDT 9 .Rs .%T Solaris Dynamic Tracing Guide .Re Modified: projects/ifnet/contrib/bmake/ChangeLog ============================================================================== --- projects/ifnet/contrib/bmake/ChangeLog Tue Apr 21 09:39:48 2015 (r281821) +++ projects/ifnet/contrib/bmake/ChangeLog Tue Apr 21 09:47:27 2015 (r281822) @@ -1,8 +1,76 @@ +2015-04-18 Simon J. Gerraty + + * Makefile (MAKE_VERSION): 20150418 + Merge with NetBSD make, pick up + o job.c: use memmove() rather than memcpy() + + * unit-tests/varshell.mk: SunOS cannot handle the TERMINATED_BY_SIGNAL + case, so skip it. + +2015-04-11 Simon J. Gerraty + + * Makefile (MAKE_VERSION): 20150411 + bump version - only mk/ changes. + +2015-04-10 Simon J. Gerraty + + * Makefile (MAKE_VERSION): 20150410 + Merge with NetBSD make, pick up + o document different handling of '-' in jobs mode vs compat + o fix jobs mode so that '-' only applies to whole job + when shell lacks hasErrCtl + o meta.c: use separate vars to track lcwd and latestdir (read) + per process + +2015-04-01 Simon J. Gerraty + + * Makefile (MAKE_VERSION): 20150401 + Merge with NetBSD make, pick up + o meta.c: close meta file in child + + * Makefile: use BINDIR.bmake if set. + Same for MANDIR and SHAREDIR + Handy for testing release candidates + in various environments. + +2015-03-26 Simon J. Gerraty + + * move initialization of savederr to block where it is used + to avoid spurious warning from gcc5 + +2014-11-11 Simon J. Gerraty + + * Makefile (MAKE_VERSION): 20141111 + just a cooler number + +2014-11-05 Simon J. Gerraty + + * Makefile (MAKE_VERSION): 20141105 + Merge with NetBSD make, pick up + o revert major overhaul of suffix handling + and POSIX compliance - too much breakage + and impossible to make backwards compatible. + o we still have the new unit test structure which is ok. + o meta.c ensure "-- filemon" is at start of line. + +2014-09-17 Simon J. Gerraty + + * configure.in: test that result of getconf PATH_MAX is numeric + and discard if not. Apparently needed for Hurd. + +2014-08-30 Simon J. Gerraty + + * Makefile (MAKE_VERSION): 20140830 + Merge with NetBSD make, pick up + o major overhaul of suffix handling + o improved POSIX compliance + o overhauled unit-tests + 2014-06-20 Simon J. Gerraty * Makefile (MAKE_VERSION): 20140620 Merge with NetBSD make, pick up - o var.c return varNoError rather than var_Error for ::= modidiers. + o var.c return varNoError rather than var_Error for ::= modifiers. 2014-05-22 Simon J. Gerraty Modified: projects/ifnet/contrib/bmake/FILES ============================================================================== --- projects/ifnet/contrib/bmake/FILES Tue Apr 21 09:39:48 2015 (r281821) +++ projects/ifnet/contrib/bmake/FILES Tue Apr 21 09:47:27 2015 (r281822) @@ -92,35 +92,74 @@ targ.c trace.c trace.h unit-tests/Makefile.in -unit-tests/comment -unit-tests/cond1 -unit-tests/doterror -unit-tests/dotwait -unit-tests/error -unit-tests/export -unit-tests/export-all -unit-tests/export-env -unit-tests/forloop -unit-tests/forsubst -unit-tests/hash -unit-tests/misc -unit-tests/moderrs -unit-tests/modmatch -unit-tests/modmisc -unit-tests/modorder -unit-tests/modts -unit-tests/modword -unit-tests/order -unit-tests/phony-end -unit-tests/posix -unit-tests/qequals -unit-tests/sunshcmd -unit-tests/sysv -unit-tests/ternary -unit-tests/test.exp -unit-tests/unexport -unit-tests/unexport-env -unit-tests/varcmd +unit-tests/comment.exp +unit-tests/comment.mk +unit-tests/cond1.exp +unit-tests/cond1.mk +unit-tests/doterror.exp +unit-tests/doterror.mk +unit-tests/dotwait.exp +unit-tests/dotwait.mk +unit-tests/error.exp +unit-tests/error.mk +unit-tests/escape.exp +unit-tests/escape.mk +unit-tests/export-all.exp +unit-tests/export-all.mk +unit-tests/export-env.exp +unit-tests/export-env.mk +unit-tests/export.exp +unit-tests/export.mk +unit-tests/forloop.exp +unit-tests/forloop.mk +unit-tests/forsubst.exp +unit-tests/forsubst.mk +unit-tests/hash.exp +unit-tests/hash.mk +unit-tests/impsrc.exp +unit-tests/impsrc.mk +unit-tests/misc.exp +unit-tests/misc.mk +unit-tests/moderrs.exp +unit-tests/moderrs.mk +unit-tests/modmatch.exp +unit-tests/modmatch.mk +unit-tests/modmisc.exp +unit-tests/modmisc.mk +unit-tests/modorder.exp +unit-tests/modorder.mk +unit-tests/modts.exp +unit-tests/modts.mk +unit-tests/modword.exp +unit-tests/modword.mk +unit-tests/order.exp +unit-tests/order.mk +unit-tests/phony-end.exp +unit-tests/phony-end.mk +unit-tests/posix.exp +unit-tests/posix.mk +unit-tests/posix1.exp +unit-tests/posix1.mk +unit-tests/qequals.exp +unit-tests/qequals.mk +unit-tests/suffixes.exp +unit-tests/suffixes.mk +unit-tests/sunshcmd.exp +unit-tests/sunshcmd.mk +unit-tests/sysv.exp +unit-tests/sysv.mk +unit-tests/ternary.exp +unit-tests/ternary.mk +unit-tests/unexport-env.exp +unit-tests/unexport-env.mk +unit-tests/unexport.exp +unit-tests/unexport.mk +unit-tests/varcmd.exp +unit-tests/varcmd.mk +unit-tests/varmisc.exp +unit-tests/varmisc.mk +unit-tests/varshell.exp +unit-tests/varshell.mk util.c var.c wait.h Modified: projects/ifnet/contrib/bmake/Makefile ============================================================================== --- projects/ifnet/contrib/bmake/Makefile Tue Apr 21 09:39:48 2015 (r281821) +++ projects/ifnet/contrib/bmake/Makefile Tue Apr 21 09:47:27 2015 (r281822) @@ -1,7 +1,7 @@ -# $Id: Makefile,v 1.27 2014/06/20 14:51:54 sjg Exp $ +# $Id: Makefile,v 1.36 2015/04/18 19:58:53 sjg Exp $ # Base version on src date -MAKE_VERSION= 20140620 +MAKE_VERSION= 20150418 PROG= bmake @@ -180,9 +180,9 @@ COPTS.parse.c += -Wno-format-nonliteral COPTS.var.c += -Wno-format-nonliteral # Force these -SHAREDIR= ${prefix}/share -BINDIR= ${prefix}/bin -MANDIR= ${SHAREDIR}/man +SHAREDIR= ${SHAREDIR.bmake:U${prefix}/share} +BINDIR= ${BINDIR.bmake:U${prefix}/bin} +MANDIR= ${MANDIR.bmake:U${SHAREDIR}/man} .if !exists(.depend) ${OBJS}: config.h Modified: projects/ifnet/contrib/bmake/PSD.doc/Makefile ============================================================================== --- projects/ifnet/contrib/bmake/PSD.doc/Makefile Tue Apr 21 09:39:48 2015 (r281821) +++ projects/ifnet/contrib/bmake/PSD.doc/Makefile Tue Apr 21 09:47:27 2015 (r281822) @@ -1,8 +1,10 @@ -# $NetBSD: Makefile,v 1.2 1995/06/14 15:20:23 christos Exp $ +# $NetBSD: Makefile,v 1.4 2014/07/05 19:22:43 dholland Exp $ # @(#)Makefile 8.1 (Berkeley) 8/14/93 -DIR= psd/12.make +SECTION=reference/ref1 +ARTICLE=make SRCS= tutorial.ms MACROS= -ms +EXTRAHTMLFILES=make1.png make2.png .include Modified: projects/ifnet/contrib/bmake/PSD.doc/tutorial.ms ============================================================================== --- projects/ifnet/contrib/bmake/PSD.doc/tutorial.ms Tue Apr 21 09:39:48 2015 (r281821) +++ projects/ifnet/contrib/bmake/PSD.doc/tutorial.ms Tue Apr 21 09:47:27 2015 (r281822) @@ -1,4 +1,4 @@ -.\" $NetBSD: tutorial.ms,v 1.11 2011/08/18 15:19:30 sjg Exp $ +.\" $NetBSD: tutorial.ms,v 1.12 2014/09/30 21:33:14 christos Exp $ .\" Copyright (c) 1988, 1989, 1993 .\" The Regents of the University of California. All rights reserved. .\" @@ -67,6 +67,16 @@ .\" .EH 'PSD:12-%''PMake \*- A Tutorial' .OH 'PMake \*- A Tutorial''PSD:12-%' +.\" Ix is an indexing macro similar to .IX but I've disabled it for now +.\" Since that would require 2 passes and I am not in the mood for that. +.de Ix +.. +.\" Rd is section (region) define and Rm is region mention? Again disable for +.\" now. +.de Rd +.. +.de Rm +.. .\" xH is a macro to provide numbered headers that are automatically stuffed .\" into a table-of-contents, properly indented, etc. If the first argument .\" is numeric, it is taken as the depth for numbering (as for .NH), else Modified: projects/ifnet/contrib/bmake/bmake.1 ============================================================================== --- projects/ifnet/contrib/bmake/bmake.1 Tue Apr 21 09:39:48 2015 (r281821) +++ projects/ifnet/contrib/bmake/bmake.1 Tue Apr 21 09:47:27 2015 (r281822) @@ -1,4 +1,4 @@ -.\" $NetBSD: make.1,v 1.229 2014/01/19 10:23:29 apb Exp $ +.\" $NetBSD: make.1,v 1.247 2015/04/10 08:43:32 wiz Exp $ .\" .\" Copyright (c) 1990, 1993 .\" The Regents of the University of California. All rights reserved. @@ -29,7 +29,7 @@ .\" .\" from: @(#)make.1 8.4 (Berkeley) 3/19/94 .\" -.Dd February 14, 2014 +.Dd April 9, 2015 .Dt MAKE 1 .Os .Sh NAME @@ -209,8 +209,6 @@ Force the option to print raw values of variables. .It Ar v Print debugging information about variable assignment. -.It Ar w -Print entering and leaving directory messages, pre and post processing. .It Ar x Run shell commands with .Fl x @@ -352,6 +350,8 @@ contains a then the value will be expanded before printing. .It Fl W Treat any warnings during makefile parsing as errors. +.It Fl w +Print entering and leaving directory messages, pre and post processing. .It Fl X Don't export variables passed on the command line to the environment individually. @@ -441,17 +441,29 @@ The value need not necessarily be used to describe existing files. Expansion is in directory order, not alphabetically as done in the shell. .Sh SHELL COMMANDS -Each target may have associated with it a series of shell commands, normally +Each target may have associated with it one or more lines of shell +commands, normally used to create the target. -Each of the commands in this script +Each of the lines in this script .Em must be preceded by a tab. -While any target may appear on a dependency line, only one of these -dependencies may be followed by a creation script, unless the +(For historical reasons, spaces are not accepted.) +While targets can appear in many dependency lines if desired, by +default only one of these rules may be followed by a creation +script. +If the .Ql Ic \&:: -operator is used. +operator is used, however, all rules may include scripts and the +scripts are executed in the order found. .Pp -If the first characters of the command line are any combination of +Each line is treated as a separate shell command, unless the end of +line is escaped with a backslash +.Pq Ql \e +in which case that line and the next are combined. +.\" The escaped newline is retained and passed to the shell, which +.\" normally ignores it. +.\" However, the tab at the beginning of the following line is removed. +If the first characters of the command are any combination of .Ql Ic @ , .Ql Ic + , or @@ -469,6 +481,7 @@ This is similar to the effect of the .MA except that the effect can be limited to a single line of a script. A .Ql Ic \- +in compatibility mode causes any non-zero exit status of the command line to be ignored. .Pp When @@ -477,22 +490,21 @@ is run in jobs mode with .Fl j Ar max_jobs , the entire script for the target is fed to a single instance of the shell. -.Pp In compatibility (non-jobs) mode, each command is run in a separate process. If the command contains any shell meta characters .Pq Ql #=|^(){};&<>*?[]:$`\e\en -it will be passed to the shell, otherwise +it will be passed to the shell; otherwise .Nm will attempt direct execution. -.Pp -Since -.Nm -will -.Xr chdir 2 -to -.Ql Va .OBJDIR -before executing any targets, each child process -starts with that as its current working directory. +If a line starts with +.Ql Ic \- +and the shell has ErrCtl enabled then failure of the command line +will be ignored as in compatibility mode. +Otherwise +.Ql Ic \- +affects the entire job; +the script will stop at the first command line that fails, +but the target will not be deemed to have failed. .Pp Makefiles should be written so that the mode of .Nm @@ -500,20 +512,32 @@ operation does not change their behavior For example, any command which needs to use .Dq cd or -.Dq chdir , -without side-effect should be put in parenthesis: +.Dq chdir +without potentially changing the directory for subsequent commands +should be put in parentheses so it executes in a subshell. +To force the use of one shell, escape the line breaks so as to make +the whole script one command. +For example: .Bd -literal -offset indent - avoid-chdir-side-effects: @echo Building $@ in `pwd` - @(cd ${.CURDIR} && ${.MAKE} $@) + @(cd ${.CURDIR} && ${MAKE} $@) @echo Back in `pwd` ensure-one-shell-regardless-of-mode: - @echo Building $@ in `pwd`; \\ - (cd ${.CURDIR} && ${.MAKE} $@); \\ + @echo Building $@ in `pwd`; \e + (cd ${.CURDIR} && ${MAKE} $@); \e echo Back in `pwd` .Ed +.Pp +Since +.Nm +will +.Xr chdir 2 +to +.Ql Va .OBJDIR +before executing any targets, each child process +starts with that as its current working directory. .Sh VARIABLE ASSIGNMENTS Variables in make are much like variables in the shell, and, by tradition, consist of all upper-case letters. @@ -624,13 +648,19 @@ Variables defined in the makefile or in Variables defined as part of the command line. .It Local variables Variables that are defined specific to a certain target. +.El +.Pp +Local variables are all built in and their values vary magically from +target to target. +It is not currently possible to define new local variables. The seven local variables are as follows: -.Bl -tag -width ".ARCHIVE" +.Bl -tag -width ".ARCHIVE" -offset indent .It Va .ALLSRC The list of all sources for this target; also known as .Ql Va \&\*[Gt] . .It Va .ARCHIVE -The name of the archive file. +The name of the archive file; also known as +.Ql Va \&! . .It Va .IMPSRC In suffix-transformation rules, the name/path of the source from which the target is to be transformed (the @@ -639,7 +669,8 @@ source); also known as .Ql Va \&\*[Lt] . It is not defined in explicit rules. .It Va .MEMBER -The name of the archive member. +The name of the archive member; also known as +.Ql Va % . .It Va .OODATE The list of sources for this target that were deemed out-of-date; also known as @@ -648,31 +679,41 @@ known as The file prefix of the target, containing only the file portion, no suffix or preceding directory components; also known as .Ql Va * . +The suffix must be one of the known suffixes declared with +.Ic .SUFFIXES +or it will not be recognized. .It Va .TARGET The name of the target; also known as .Ql Va @ . .El .Pp The shorter forms -.Ql Va @ , +.Ql ( Va \*[Gt] , +.Ql Va \&! , +.Ql Va \*[Lt] , +.Ql Va % , .Ql Va \&? , -.Ql Va \&\*[Lt] , -.Ql Va \&\*[Gt] , +.Ql Va * , and -.Ql Va * +.Ql Va @ ) are permitted for backward -compatibility with historical makefiles and are not recommended. -The six variables -.Ql Va "@F" , -.Ql Va "@D" , -.Ql Va "\*[Lt]F" , -.Ql Va "\*[Lt]D" , -.Ql Va "*F" , +compatibility with historical makefiles and legacy POSIX make and are +not recommended. +.Pp +Variants of these variables with the punctuation followed immediately by +.Ql D +or +.Ql F , +e.g. +.Ql Va $(@D) , +are legacy forms equivalent to using the +.Ql :H and -.Ql Va "*D" -are permitted for compatibility with +.Ql :T +modifiers. +These forms are accepted for compatibility with .At V -makefiles and are not recommended. +makefiles and POSIX but are not recommended. .Pp Four of the local variables may be used in sources on dependency lines because they expand to the proper value for each target on the line. @@ -682,7 +723,6 @@ These variables are .Ql Va .ARCHIVE , and .Ql Va .MEMBER . -.El .Ss Additional built-in variables In addition, .Nm @@ -2119,19 +2159,87 @@ system makefile system makefile directory .El .Sh COMPATIBILITY -The basic make syntax is compatible between different versions of make, +The basic make syntax is compatible between different versions of make; however the special variables, variable modifiers and conditionals are not. -.Pp -The way that parallel makes are scheduled changed in -NetBSD 4.0 -so that .ORDER and .WAIT apply recursively to the dependent nodes. -The algorithms used may change again in the future. +.Ss Older versions +An incomplete list of changes in older versions of +.Nm : .Pp The way that .for loop variables are substituted changed after NetBSD 5.0 so that they still appear to be variable expansions. In particular this stops them being treated as syntax, and removes some obscure problems using them in .if statements. +.Pp +The way that parallel makes are scheduled changed in +NetBSD 4.0 +so that .ORDER and .WAIT apply recursively to the dependent nodes. +The algorithms used may change again in the future. +.Ss Other make dialects +Other make dialects (GNU make, SVR4 make, POSIX make, etc.) do not +support most of the features of +.Nm +as described in this manual. +Most notably: +.Bl -bullet -offset indent +.It +The +.Ic .WAIT +and +.Ic .ORDER +declarations and most functionality pertaining to parallelization. +(GNU make supports parallelization but lacks these features needed to +control it effectively.) +.It +Directives, including for loops and conditionals and most of the +forms of include files. +(GNU make has its own incompatible and less powerful syntax for +conditionals.) +.It +All built-in variables that begin with a dot. +.It +Most of the special sources and targets that begin with a dot, +with the notable exception of +.Ic .PHONY , +.Ic .PRECIOUS , +and +.Ic .SUFFIXES . +.It +Variable modifiers, except for the +.Dl :old=new +string substitution, which does not portably support globbing with +.Ql % +and historically only works on declared suffixes. +.It +The +.Ic $> +variable even in its short form; most makes support this functionality +but its name varies. +.El +.Pp +Some features are somewhat more portable, such as assignment with +.Ic += , +.Ic ?= , +and +.Ic != . +The +.Ic .PATH +functionality is based on an older feature +.Ic VPATH +found in GNU make and many versions of SVR4 make; however, +historically its behavior is too ill-defined (and too buggy) to rely +upon. +.Pp +The +.Ic $@ +and +.Ic $< +variables are more or less universally portable, as is the +.Ic $(MAKE) +variable. +Basic use of suffix rules (for files only in the current directory, +not trying to chain transformations together, etc.) is also reasonably +portable. .Sh SEE ALSO .Xr mkdep 1 .Sh HISTORY Modified: projects/ifnet/contrib/bmake/bmake.cat1 ============================================================================== --- projects/ifnet/contrib/bmake/bmake.cat1 Tue Apr 21 09:39:48 2015 (r281821) +++ projects/ifnet/contrib/bmake/bmake.cat1 Tue Apr 21 09:47:27 2015 (r281822) @@ -122,9 +122,6 @@ DDEESSCCRRIIPPTTIIOONN _v Print debugging information about variable assignment. - _w Print entering and leaving directory messages, pre and - post processing. - _x Run shell commands with --xx so the actual commands are printed as they are executed. @@ -221,6 +218,9 @@ DDEESSCCRRIIPPTTIIOONN --WW Treat any warnings during makefile parsing as errors. + --ww Print entering and leaving directory messages, pre and post pro- + cessing. + --XX Don't export variables passed on the command line to the environ- ment individually. Variables passed on the command line are still exported via the _M_A_K_E_F_L_A_G_S environment variable. This @@ -273,46 +273,55 @@ FFIILLEE DDEEPPEENNDDEENNCC done in the shell. SSHHEELLLL CCOOMMMMAANNDDSS - Each target may have associated with it a series of shell commands, nor- - mally used to create the target. Each of the commands in this script - _m_u_s_t be preceded by a tab. While any target may appear on a dependency - line, only one of these dependencies may be followed by a creation - script, unless the `::::' operator is used. - - If the first characters of the command line are any combination of `@@', - `++', or `--', the command is treated specially. A `@@' causes the command - not to be echoed before it is executed. A `++' causes the command to be - executed even when --nn is given. This is similar to the effect of the - .MAKE special source, except that the effect can be limited to a single - line of a script. A `--' causes any non-zero exit status of the command - line to be ignored. + Each target may have associated with it one or more lines of shell com- + mands, normally used to create the target. Each of the lines in this + script _m_u_s_t be preceded by a tab. (For historical reasons, spaces are + not accepted.) While targets can appear in many dependency lines if + desired, by default only one of these rules may be followed by a creation + script. If the `::::' operator is used, however, all rules may include + scripts and the scripts are executed in the order found. + + Each line is treated as a separate shell command, unless the end of line + is escaped with a backslash (`\') in which case that line and the next + are combined. If the first characters of the command are any combination + of `@@', `++', or `--', the command is treated specially. A `@@' causes the + command not to be echoed before it is executed. A `++' causes the command + to be executed even when --nn is given. This is similar to the effect of + the .MAKE special source, except that the effect can be limited to a sin- + gle line of a script. A `--' in compatibility mode causes any non-zero + exit status of the command line to be ignored. When bbmmaakkee is run in jobs mode with --jj _m_a_x___j_o_b_s, the entire script for - the target is fed to a single instance of the shell. - - In compatibility (non-jobs) mode, each command is run in a separate - process. If the command contains any shell meta characters - (`#=|^(){};&<>*?[]:$`\\n') it will be passed to the shell, otherwise - bbmmaakkee will attempt direct execution. - - Since bbmmaakkee will chdir(2) to `_._O_B_J_D_I_R' before executing any targets, each - child process starts with that as its current working directory. + the target is fed to a single instance of the shell. In compatibility + (non-jobs) mode, each command is run in a separate process. If the com- + mand contains any shell meta characters (`#=|^(){};&<>*?[]:$`\\n') it + will be passed to the shell; otherwise bbmmaakkee will attempt direct execu- + tion. If a line starts with `--' and the shell has ErrCtl enabled then + failure of the command line will be ignored as in compatibility mode. + Otherwise `--' affects the entire job; the script will stop at the first + command line that fails, but the target will not be deemed to have + failed. Makefiles should be written so that the mode of bbmmaakkee operation does not change their behavior. For example, any command which needs to use - ``cd'' or ``chdir'', without side-effect should be put in parenthesis: - + ``cd'' or ``chdir'' without potentially changing the directory for subse- + quent commands should be put in parentheses so it executes in a subshell. + To force the use of one shell, escape the line breaks so as to make the + whole script one command. For example: avoid-chdir-side-effects: @echo Building $@ in `pwd` - @(cd ${.CURDIR} && ${.MAKE} $@) + @(cd ${.CURDIR} && ${MAKE} $@) @echo Back in `pwd` ensure-one-shell-regardless-of-mode: @echo Building $@ in `pwd`; \ - (cd ${.CURDIR} && ${.MAKE} $@); \ + (cd ${.CURDIR} && ${MAKE} $@); \ echo Back in `pwd` + Since bbmmaakkee will chdir(2) to `_._O_B_J_D_I_R' before executing any targets, each + child process starts with that as its current working directory. + VVAARRIIAABBLLEE AASSSSIIGGNNMMEENNTTSS Variables in make are much like variables in the shell, and, by tradi- tion, consist of all upper-case letters. @@ -402,40 +411,47 @@ VVAARRIIAABBLLEE AASSSSIIGG Variables defined as part of the command line. Local variables - Variables that are defined specific to a certain target. The - seven local variables are as follows: + Variables that are defined specific to a certain target. - _._A_L_L_S_R_C The list of all sources for this target; also known as - `_>'. + Local variables are all built in and their values vary magically from + target to target. It is not currently possible to define new local vari- + ables. The seven local variables are as follows: - _._A_R_C_H_I_V_E The name of the archive file. + _._A_L_L_S_R_C The list of all sources for this target; also known as + `_>'. - _._I_M_P_S_R_C In suffix-transformation rules, the name/path of the - source from which the target is to be transformed (the - ``implied'' source); also known as `_<'. It is not - defined in explicit rules. + _._A_R_C_H_I_V_E The name of the archive file; also known as `_!'. - _._M_E_M_B_E_R The name of the archive member. + _._I_M_P_S_R_C In suffix-transformation rules, the name/path of the + source from which the target is to be transformed (the + ``implied'' source); also known as `_<'. It is not + defined in explicit rules. - _._O_O_D_A_T_E The list of sources for this target that were deemed - out-of-date; also known as `_?'. + _._M_E_M_B_E_R The name of the archive member; also known as `_%'. - _._P_R_E_F_I_X The file prefix of the target, containing only the file - portion, no suffix or preceding directory components; - also known as `_*'. + _._O_O_D_A_T_E The list of sources for this target that were deemed out- + of-date; also known as `_?'. - _._T_A_R_G_E_T The name of the target; also known as `_@'. *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Tue Apr 21 19:33:35 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6F3CCD92; Tue, 21 Apr 2015 19:33:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 58F32127F; Tue, 21 Apr 2015 19:33:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3LJXZcN033765; Tue, 21 Apr 2015 19:33:35 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3LJXVDF033722; Tue, 21 Apr 2015 19:33:31 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201504211933.t3LJXVDF033722@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Tue, 21 Apr 2015 19:33:31 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r281837 - in projects/em_mq: . bin/ed contrib/bmake contrib/bmake/PSD.doc contrib/bmake/lst.lib contrib/bmake/mk contrib/bmake/unit-tests contrib/llvm/lib/MC/MCParser contrib/llvm/patch... 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.20 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: Tue, 21 Apr 2015 19:33:35 -0000 Author: sbruno Date: Tue Apr 21 19:33:30 2015 New Revision: 281837 URL: https://svnweb.freebsd.org/changeset/base/281837 Log: MFH @281750 Added: projects/em_mq/contrib/bmake/mk/cython.mk - copied unchanged from r281836, head/contrib/bmake/mk/cython.mk projects/em_mq/contrib/bmake/mk/manifest.mk - copied unchanged from r281836, head/contrib/bmake/mk/manifest.mk projects/em_mq/contrib/bmake/mk/mkopt.sh - copied unchanged from r281836, head/contrib/bmake/mk/mkopt.sh projects/em_mq/contrib/bmake/mk/whats.mk - copied unchanged from r281836, head/contrib/bmake/mk/whats.mk projects/em_mq/contrib/bmake/unit-tests/comment.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/comment.exp projects/em_mq/contrib/bmake/unit-tests/comment.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/comment.mk projects/em_mq/contrib/bmake/unit-tests/cond1.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/cond1.exp projects/em_mq/contrib/bmake/unit-tests/cond1.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/cond1.mk projects/em_mq/contrib/bmake/unit-tests/doterror.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/doterror.exp projects/em_mq/contrib/bmake/unit-tests/doterror.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/doterror.mk projects/em_mq/contrib/bmake/unit-tests/dotwait.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/dotwait.exp projects/em_mq/contrib/bmake/unit-tests/dotwait.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/dotwait.mk projects/em_mq/contrib/bmake/unit-tests/error.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/error.exp projects/em_mq/contrib/bmake/unit-tests/error.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/error.mk projects/em_mq/contrib/bmake/unit-tests/escape.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/escape.exp projects/em_mq/contrib/bmake/unit-tests/escape.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/escape.mk projects/em_mq/contrib/bmake/unit-tests/export-all.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/export-all.exp projects/em_mq/contrib/bmake/unit-tests/export-all.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/export-all.mk projects/em_mq/contrib/bmake/unit-tests/export-env.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/export-env.exp projects/em_mq/contrib/bmake/unit-tests/export-env.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/export-env.mk projects/em_mq/contrib/bmake/unit-tests/export.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/export.exp projects/em_mq/contrib/bmake/unit-tests/export.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/export.mk projects/em_mq/contrib/bmake/unit-tests/forloop.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/forloop.exp projects/em_mq/contrib/bmake/unit-tests/forloop.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/forloop.mk projects/em_mq/contrib/bmake/unit-tests/forsubst.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/forsubst.exp projects/em_mq/contrib/bmake/unit-tests/forsubst.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/forsubst.mk projects/em_mq/contrib/bmake/unit-tests/hash.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/hash.exp projects/em_mq/contrib/bmake/unit-tests/hash.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/hash.mk projects/em_mq/contrib/bmake/unit-tests/impsrc.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/impsrc.exp projects/em_mq/contrib/bmake/unit-tests/impsrc.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/impsrc.mk projects/em_mq/contrib/bmake/unit-tests/misc.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/misc.exp projects/em_mq/contrib/bmake/unit-tests/misc.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/misc.mk projects/em_mq/contrib/bmake/unit-tests/moderrs.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/moderrs.exp projects/em_mq/contrib/bmake/unit-tests/moderrs.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/moderrs.mk projects/em_mq/contrib/bmake/unit-tests/modmatch.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/modmatch.exp projects/em_mq/contrib/bmake/unit-tests/modmatch.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/modmatch.mk projects/em_mq/contrib/bmake/unit-tests/modmisc.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/modmisc.exp projects/em_mq/contrib/bmake/unit-tests/modmisc.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/modmisc.mk projects/em_mq/contrib/bmake/unit-tests/modorder.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/modorder.exp projects/em_mq/contrib/bmake/unit-tests/modorder.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/modorder.mk projects/em_mq/contrib/bmake/unit-tests/modts.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/modts.exp projects/em_mq/contrib/bmake/unit-tests/modts.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/modts.mk projects/em_mq/contrib/bmake/unit-tests/modword.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/modword.exp projects/em_mq/contrib/bmake/unit-tests/modword.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/modword.mk projects/em_mq/contrib/bmake/unit-tests/order.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/order.exp projects/em_mq/contrib/bmake/unit-tests/order.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/order.mk projects/em_mq/contrib/bmake/unit-tests/phony-end.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/phony-end.exp projects/em_mq/contrib/bmake/unit-tests/phony-end.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/phony-end.mk projects/em_mq/contrib/bmake/unit-tests/posix.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/posix.exp projects/em_mq/contrib/bmake/unit-tests/posix.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/posix.mk projects/em_mq/contrib/bmake/unit-tests/posix1.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/posix1.exp projects/em_mq/contrib/bmake/unit-tests/posix1.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/posix1.mk projects/em_mq/contrib/bmake/unit-tests/qequals.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/qequals.exp projects/em_mq/contrib/bmake/unit-tests/qequals.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/qequals.mk projects/em_mq/contrib/bmake/unit-tests/suffixes.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/suffixes.exp projects/em_mq/contrib/bmake/unit-tests/suffixes.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/suffixes.mk projects/em_mq/contrib/bmake/unit-tests/sunshcmd.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/sunshcmd.exp projects/em_mq/contrib/bmake/unit-tests/sunshcmd.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/sunshcmd.mk projects/em_mq/contrib/bmake/unit-tests/sysv.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/sysv.exp projects/em_mq/contrib/bmake/unit-tests/sysv.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/sysv.mk projects/em_mq/contrib/bmake/unit-tests/ternary.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/ternary.exp projects/em_mq/contrib/bmake/unit-tests/ternary.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/ternary.mk projects/em_mq/contrib/bmake/unit-tests/unexport-env.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/unexport-env.exp projects/em_mq/contrib/bmake/unit-tests/unexport-env.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/unexport-env.mk projects/em_mq/contrib/bmake/unit-tests/unexport.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/unexport.exp projects/em_mq/contrib/bmake/unit-tests/unexport.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/unexport.mk projects/em_mq/contrib/bmake/unit-tests/varcmd.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/varcmd.exp projects/em_mq/contrib/bmake/unit-tests/varcmd.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/varcmd.mk projects/em_mq/contrib/bmake/unit-tests/varmisc.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/varmisc.exp projects/em_mq/contrib/bmake/unit-tests/varmisc.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/varmisc.mk projects/em_mq/contrib/bmake/unit-tests/varshell.exp - copied unchanged from r281836, head/contrib/bmake/unit-tests/varshell.exp projects/em_mq/contrib/bmake/unit-tests/varshell.mk - copied unchanged from r281836, head/contrib/bmake/unit-tests/varshell.mk projects/em_mq/contrib/llvm/patches/patch-13-llvm-r229911-uleb128-commas.diff - copied unchanged from r281836, head/contrib/llvm/patches/patch-13-llvm-r229911-uleb128-commas.diff projects/em_mq/contrib/wpa/CONTRIBUTIONS - copied unchanged from r281836, head/contrib/wpa/CONTRIBUTIONS projects/em_mq/contrib/wpa/hostapd/hapd_module_tests.c - copied unchanged from r281836, head/contrib/wpa/hostapd/hapd_module_tests.c projects/em_mq/contrib/wpa/hostapd/wps-ap-nfc.py - copied unchanged from r281836, head/contrib/wpa/hostapd/wps-ap-nfc.py projects/em_mq/contrib/wpa/hs20/ - copied from r281836, head/contrib/wpa/hs20/ projects/em_mq/contrib/wpa/patches/openssl-0.9.8za-tls-extensions.patch - copied unchanged from r281836, head/contrib/wpa/patches/openssl-0.9.8za-tls-extensions.patch projects/em_mq/contrib/wpa/src/ap/acs.c - copied unchanged from r281836, head/contrib/wpa/src/ap/acs.c projects/em_mq/contrib/wpa/src/ap/acs.h - copied unchanged from r281836, head/contrib/wpa/src/ap/acs.h projects/em_mq/contrib/wpa/src/ap/bss_load.c - copied unchanged from r281836, head/contrib/wpa/src/ap/bss_load.c projects/em_mq/contrib/wpa/src/ap/bss_load.h - copied unchanged from r281836, head/contrib/wpa/src/ap/bss_load.h projects/em_mq/contrib/wpa/src/ap/dfs.c - copied unchanged from r281836, head/contrib/wpa/src/ap/dfs.c projects/em_mq/contrib/wpa/src/ap/dfs.h - copied unchanged from r281836, head/contrib/wpa/src/ap/dfs.h projects/em_mq/contrib/wpa/src/ap/dhcp_snoop.c - copied unchanged from r281836, head/contrib/wpa/src/ap/dhcp_snoop.c projects/em_mq/contrib/wpa/src/ap/dhcp_snoop.h - copied unchanged from r281836, head/contrib/wpa/src/ap/dhcp_snoop.h projects/em_mq/contrib/wpa/src/ap/ndisc_snoop.c - copied unchanged from r281836, head/contrib/wpa/src/ap/ndisc_snoop.c projects/em_mq/contrib/wpa/src/ap/ndisc_snoop.h - copied unchanged from r281836, head/contrib/wpa/src/ap/ndisc_snoop.h projects/em_mq/contrib/wpa/src/ap/x_snoop.c - copied unchanged from r281836, head/contrib/wpa/src/ap/x_snoop.c projects/em_mq/contrib/wpa/src/ap/x_snoop.h - copied unchanged from r281836, head/contrib/wpa/src/ap/x_snoop.h projects/em_mq/contrib/wpa/src/common/common_module_tests.c - copied unchanged from r281836, head/contrib/wpa/src/common/common_module_tests.c projects/em_mq/contrib/wpa/src/common/hw_features_common.c - copied unchanged from r281836, head/contrib/wpa/src/common/hw_features_common.c projects/em_mq/contrib/wpa/src/common/hw_features_common.h - copied unchanged from r281836, head/contrib/wpa/src/common/hw_features_common.h projects/em_mq/contrib/wpa/src/common/ieee802_1x_defs.h - copied unchanged from r281836, head/contrib/wpa/src/common/ieee802_1x_defs.h projects/em_mq/contrib/wpa/src/common/qca-vendor-attr.h - copied unchanged from r281836, head/contrib/wpa/src/common/qca-vendor-attr.h projects/em_mq/contrib/wpa/src/common/qca-vendor.h - copied unchanged from r281836, head/contrib/wpa/src/common/qca-vendor.h projects/em_mq/contrib/wpa/src/common/sae.c - copied unchanged from r281836, head/contrib/wpa/src/common/sae.c projects/em_mq/contrib/wpa/src/common/sae.h - copied unchanged from r281836, head/contrib/wpa/src/common/sae.h projects/em_mq/contrib/wpa/src/common/tnc.h - copied unchanged from r281836, head/contrib/wpa/src/common/tnc.h projects/em_mq/contrib/wpa/src/common/wpa_helpers.c - copied unchanged from r281836, head/contrib/wpa/src/common/wpa_helpers.c projects/em_mq/contrib/wpa/src/common/wpa_helpers.h - copied unchanged from r281836, head/contrib/wpa/src/common/wpa_helpers.h projects/em_mq/contrib/wpa/src/crypto/aes-siv.c - copied unchanged from r281836, head/contrib/wpa/src/crypto/aes-siv.c projects/em_mq/contrib/wpa/src/crypto/aes_siv.h - copied unchanged from r281836, head/contrib/wpa/src/crypto/aes_siv.h projects/em_mq/contrib/wpa/src/crypto/crypto_module_tests.c - copied unchanged from r281836, head/contrib/wpa/src/crypto/crypto_module_tests.c projects/em_mq/contrib/wpa/src/crypto/sha256-kdf.c - copied unchanged from r281836, head/contrib/wpa/src/crypto/sha256-kdf.c projects/em_mq/contrib/wpa/src/crypto/sha384.h - copied unchanged from r281836, head/contrib/wpa/src/crypto/sha384.h projects/em_mq/contrib/wpa/src/drivers/driver_macsec_qca.c - copied unchanged from r281836, head/contrib/wpa/src/drivers/driver_macsec_qca.c projects/em_mq/contrib/wpa/src/drivers/driver_nl80211.h - copied unchanged from r281836, head/contrib/wpa/src/drivers/driver_nl80211.h projects/em_mq/contrib/wpa/src/drivers/driver_nl80211_android.c - copied unchanged from r281836, head/contrib/wpa/src/drivers/driver_nl80211_android.c projects/em_mq/contrib/wpa/src/drivers/driver_nl80211_capa.c - copied unchanged from r281836, head/contrib/wpa/src/drivers/driver_nl80211_capa.c projects/em_mq/contrib/wpa/src/drivers/driver_nl80211_event.c - copied unchanged from r281836, head/contrib/wpa/src/drivers/driver_nl80211_event.c projects/em_mq/contrib/wpa/src/drivers/driver_nl80211_monitor.c - copied unchanged from r281836, head/contrib/wpa/src/drivers/driver_nl80211_monitor.c projects/em_mq/contrib/wpa/src/drivers/driver_nl80211_scan.c - copied unchanged from r281836, head/contrib/wpa/src/drivers/driver_nl80211_scan.c projects/em_mq/contrib/wpa/src/drivers/driver_openbsd.c - copied unchanged from r281836, head/contrib/wpa/src/drivers/driver_openbsd.c projects/em_mq/contrib/wpa/src/drivers/linux_defines.h - copied unchanged from r281836, head/contrib/wpa/src/drivers/linux_defines.h projects/em_mq/contrib/wpa/src/eap_common/eap_eke_common.c - copied unchanged from r281836, head/contrib/wpa/src/eap_common/eap_eke_common.c projects/em_mq/contrib/wpa/src/eap_common/eap_eke_common.h - copied unchanged from r281836, head/contrib/wpa/src/eap_common/eap_eke_common.h projects/em_mq/contrib/wpa/src/eap_peer/eap_eke.c - copied unchanged from r281836, head/contrib/wpa/src/eap_peer/eap_eke.c projects/em_mq/contrib/wpa/src/eap_peer/eap_proxy.h - copied unchanged from r281836, head/contrib/wpa/src/eap_peer/eap_proxy.h projects/em_mq/contrib/wpa/src/eap_peer/eap_proxy_dummy.c - copied unchanged from r281836, head/contrib/wpa/src/eap_peer/eap_proxy_dummy.c projects/em_mq/contrib/wpa/src/eap_server/eap_server_eke.c - copied unchanged from r281836, head/contrib/wpa/src/eap_server/eap_server_eke.c projects/em_mq/contrib/wpa/src/pae/ - copied from r281836, head/contrib/wpa/src/pae/ projects/em_mq/contrib/wpa/src/utils/bitfield.c - copied unchanged from r281836, head/contrib/wpa/src/utils/bitfield.c projects/em_mq/contrib/wpa/src/utils/bitfield.h - copied unchanged from r281836, head/contrib/wpa/src/utils/bitfield.h projects/em_mq/contrib/wpa/src/utils/browser-android.c - copied unchanged from r281836, head/contrib/wpa/src/utils/browser-android.c projects/em_mq/contrib/wpa/src/utils/browser-system.c - copied unchanged from r281836, head/contrib/wpa/src/utils/browser-system.c projects/em_mq/contrib/wpa/src/utils/browser-wpadebug.c - copied unchanged from r281836, head/contrib/wpa/src/utils/browser-wpadebug.c projects/em_mq/contrib/wpa/src/utils/browser.c - copied unchanged from r281836, head/contrib/wpa/src/utils/browser.c projects/em_mq/contrib/wpa/src/utils/browser.h - copied unchanged from r281836, head/contrib/wpa/src/utils/browser.h projects/em_mq/contrib/wpa/src/utils/http-utils.h - copied unchanged from r281836, head/contrib/wpa/src/utils/http-utils.h projects/em_mq/contrib/wpa/src/utils/http_curl.c - copied unchanged from r281836, head/contrib/wpa/src/utils/http_curl.c projects/em_mq/contrib/wpa/src/utils/platform.h - copied unchanged from r281836, head/contrib/wpa/src/utils/platform.h projects/em_mq/contrib/wpa/src/utils/utils_module_tests.c - copied unchanged from r281836, head/contrib/wpa/src/utils/utils_module_tests.c projects/em_mq/contrib/wpa/src/utils/xml-utils.c - copied unchanged from r281836, head/contrib/wpa/src/utils/xml-utils.c projects/em_mq/contrib/wpa/src/utils/xml-utils.h - copied unchanged from r281836, head/contrib/wpa/src/utils/xml-utils.h projects/em_mq/contrib/wpa/src/utils/xml_libxml2.c - copied unchanged from r281836, head/contrib/wpa/src/utils/xml_libxml2.c projects/em_mq/contrib/wpa/src/wps/wps_module_tests.c - copied unchanged from r281836, head/contrib/wpa/src/wps/wps_module_tests.c projects/em_mq/contrib/wpa/wpa_supplicant/eap_proxy_dummy.mak - copied unchanged from r281836, head/contrib/wpa/wpa_supplicant/eap_proxy_dummy.mak projects/em_mq/contrib/wpa/wpa_supplicant/eap_proxy_dummy.mk - copied unchanged from r281836, head/contrib/wpa/wpa_supplicant/eap_proxy_dummy.mk projects/em_mq/contrib/wpa/wpa_supplicant/examples/p2p-nfc.py - copied unchanged from r281836, head/contrib/wpa/wpa_supplicant/examples/p2p-nfc.py projects/em_mq/contrib/wpa/wpa_supplicant/mesh.c - copied unchanged from r281836, head/contrib/wpa/wpa_supplicant/mesh.c projects/em_mq/contrib/wpa/wpa_supplicant/mesh.h - copied unchanged from r281836, head/contrib/wpa/wpa_supplicant/mesh.h projects/em_mq/contrib/wpa/wpa_supplicant/mesh_mpm.c - copied unchanged from r281836, head/contrib/wpa/wpa_supplicant/mesh_mpm.c projects/em_mq/contrib/wpa/wpa_supplicant/mesh_mpm.h - copied unchanged from r281836, head/contrib/wpa/wpa_supplicant/mesh_mpm.h projects/em_mq/contrib/wpa/wpa_supplicant/mesh_rsn.c - copied unchanged from r281836, head/contrib/wpa/wpa_supplicant/mesh_rsn.c projects/em_mq/contrib/wpa/wpa_supplicant/mesh_rsn.h - copied unchanged from r281836, head/contrib/wpa/wpa_supplicant/mesh_rsn.h projects/em_mq/contrib/wpa/wpa_supplicant/wmm_ac.c - copied unchanged from r281836, head/contrib/wpa/wpa_supplicant/wmm_ac.c projects/em_mq/contrib/wpa/wpa_supplicant/wmm_ac.h - copied unchanged from r281836, head/contrib/wpa/wpa_supplicant/wmm_ac.h projects/em_mq/contrib/wpa/wpa_supplicant/wpas_kay.c - copied unchanged from r281836, head/contrib/wpa/wpa_supplicant/wpas_kay.c projects/em_mq/contrib/wpa/wpa_supplicant/wpas_kay.h - copied unchanged from r281836, head/contrib/wpa/wpa_supplicant/wpas_kay.h projects/em_mq/contrib/wpa/wpa_supplicant/wpas_module_tests.c - copied unchanged from r281836, head/contrib/wpa/wpa_supplicant/wpas_module_tests.c projects/em_mq/release/arm64/ - copied from r281836, head/release/arm64/ projects/em_mq/sys/modules/dtb/allwinner/ - copied from r281836, head/sys/modules/dtb/allwinner/ Deleted: projects/em_mq/contrib/bmake/unit-tests/comment projects/em_mq/contrib/bmake/unit-tests/cond1 projects/em_mq/contrib/bmake/unit-tests/doterror projects/em_mq/contrib/bmake/unit-tests/dotwait projects/em_mq/contrib/bmake/unit-tests/error projects/em_mq/contrib/bmake/unit-tests/export projects/em_mq/contrib/bmake/unit-tests/export-all projects/em_mq/contrib/bmake/unit-tests/export-env projects/em_mq/contrib/bmake/unit-tests/forloop projects/em_mq/contrib/bmake/unit-tests/forsubst projects/em_mq/contrib/bmake/unit-tests/hash projects/em_mq/contrib/bmake/unit-tests/misc projects/em_mq/contrib/bmake/unit-tests/moderrs projects/em_mq/contrib/bmake/unit-tests/modmatch projects/em_mq/contrib/bmake/unit-tests/modmisc projects/em_mq/contrib/bmake/unit-tests/modorder projects/em_mq/contrib/bmake/unit-tests/modts projects/em_mq/contrib/bmake/unit-tests/modword projects/em_mq/contrib/bmake/unit-tests/order projects/em_mq/contrib/bmake/unit-tests/phony-end projects/em_mq/contrib/bmake/unit-tests/posix projects/em_mq/contrib/bmake/unit-tests/qequals projects/em_mq/contrib/bmake/unit-tests/sunshcmd projects/em_mq/contrib/bmake/unit-tests/sysv projects/em_mq/contrib/bmake/unit-tests/ternary projects/em_mq/contrib/bmake/unit-tests/test.exp projects/em_mq/contrib/bmake/unit-tests/unexport projects/em_mq/contrib/bmake/unit-tests/unexport-env projects/em_mq/contrib/bmake/unit-tests/varcmd projects/em_mq/contrib/wpa/hostapd/dump_state.c projects/em_mq/contrib/wpa/hostapd/dump_state.h projects/em_mq/contrib/wpa/patches/openssl-0.9.8-tls-extensions.patch projects/em_mq/contrib/wpa/patches/openssl-0.9.8d-tls-extensions.patch projects/em_mq/contrib/wpa/patches/openssl-0.9.8e-tls-extensions.patch projects/em_mq/contrib/wpa/patches/openssl-0.9.8g-tls-extensions.patch projects/em_mq/contrib/wpa/patches/openssl-0.9.8h-tls-extensions.patch projects/em_mq/contrib/wpa/patches/openssl-0.9.8i-tls-extensions.patch projects/em_mq/contrib/wpa/patches/openssl-0.9.8x-tls-extensions.patch projects/em_mq/contrib/wpa/patches/openssl-0.9.9-session-ticket.patch projects/em_mq/contrib/wpa/src/crypto/crypto_nss.c projects/em_mq/contrib/wpa/src/crypto/fips_prf_cryptoapi.c projects/em_mq/contrib/wpa/src/crypto/fips_prf_gnutls.c projects/em_mq/contrib/wpa/src/crypto/fips_prf_nss.c projects/em_mq/contrib/wpa/src/crypto/tls_nss.c projects/em_mq/contrib/wpa/src/utils/eloop_none.c Modified: projects/em_mq/.arcconfig projects/em_mq/.arclint projects/em_mq/Makefile.inc1 projects/em_mq/bin/ed/glbl.c projects/em_mq/contrib/bmake/ChangeLog projects/em_mq/contrib/bmake/FILES projects/em_mq/contrib/bmake/Makefile projects/em_mq/contrib/bmake/PSD.doc/Makefile projects/em_mq/contrib/bmake/PSD.doc/tutorial.ms projects/em_mq/contrib/bmake/bmake.1 projects/em_mq/contrib/bmake/bmake.cat1 projects/em_mq/contrib/bmake/compat.c projects/em_mq/contrib/bmake/configure projects/em_mq/contrib/bmake/configure.in projects/em_mq/contrib/bmake/job.c projects/em_mq/contrib/bmake/lst.h projects/em_mq/contrib/bmake/lst.lib/lstInt.h projects/em_mq/contrib/bmake/lst.lib/lstRemove.c projects/em_mq/contrib/bmake/main.c projects/em_mq/contrib/bmake/make.1 projects/em_mq/contrib/bmake/make.c projects/em_mq/contrib/bmake/make.h projects/em_mq/contrib/bmake/meta.c projects/em_mq/contrib/bmake/mk/ChangeLog projects/em_mq/contrib/bmake/mk/FILES projects/em_mq/contrib/bmake/mk/auto.dep.mk projects/em_mq/contrib/bmake/mk/auto.obj.mk projects/em_mq/contrib/bmake/mk/autodep.mk projects/em_mq/contrib/bmake/mk/dep.mk projects/em_mq/contrib/bmake/mk/dirdeps.mk projects/em_mq/contrib/bmake/mk/gendirdeps.mk projects/em_mq/contrib/bmake/mk/install-mk projects/em_mq/contrib/bmake/mk/links.mk projects/em_mq/contrib/bmake/mk/meta.autodep.mk projects/em_mq/contrib/bmake/mk/meta.stage.mk projects/em_mq/contrib/bmake/mk/meta.sys.mk projects/em_mq/contrib/bmake/mk/meta2deps.py projects/em_mq/contrib/bmake/mk/meta2deps.sh projects/em_mq/contrib/bmake/mk/mk-files.txt projects/em_mq/contrib/bmake/mk/own.mk projects/em_mq/contrib/bmake/mk/sys.dependfile.mk projects/em_mq/contrib/bmake/nonints.h projects/em_mq/contrib/bmake/parse.c projects/em_mq/contrib/bmake/suff.c projects/em_mq/contrib/bmake/targ.c projects/em_mq/contrib/bmake/unit-tests/Makefile.in projects/em_mq/contrib/bmake/var.c projects/em_mq/contrib/llvm/lib/MC/MCParser/AsmParser.cpp projects/em_mq/contrib/wpa/COPYING projects/em_mq/contrib/wpa/README projects/em_mq/contrib/wpa/hostapd/ChangeLog projects/em_mq/contrib/wpa/hostapd/README projects/em_mq/contrib/wpa/hostapd/README-WPS projects/em_mq/contrib/wpa/hostapd/config_file.c projects/em_mq/contrib/wpa/hostapd/ctrl_iface.c projects/em_mq/contrib/wpa/hostapd/defconfig projects/em_mq/contrib/wpa/hostapd/eap_register.c projects/em_mq/contrib/wpa/hostapd/hlr_auc_gw.c projects/em_mq/contrib/wpa/hostapd/hostapd.8 projects/em_mq/contrib/wpa/hostapd/hostapd.conf projects/em_mq/contrib/wpa/hostapd/hostapd.eap_user projects/em_mq/contrib/wpa/hostapd/hostapd.eap_user_sqlite projects/em_mq/contrib/wpa/hostapd/hostapd_cli.c projects/em_mq/contrib/wpa/hostapd/main.c projects/em_mq/contrib/wpa/src/ap/accounting.c projects/em_mq/contrib/wpa/src/ap/ap_config.c projects/em_mq/contrib/wpa/src/ap/ap_config.h projects/em_mq/contrib/wpa/src/ap/ap_drv_ops.c projects/em_mq/contrib/wpa/src/ap/ap_drv_ops.h projects/em_mq/contrib/wpa/src/ap/ap_list.c projects/em_mq/contrib/wpa/src/ap/ap_list.h projects/em_mq/contrib/wpa/src/ap/ap_mlme.c projects/em_mq/contrib/wpa/src/ap/authsrv.c projects/em_mq/contrib/wpa/src/ap/beacon.c projects/em_mq/contrib/wpa/src/ap/beacon.h projects/em_mq/contrib/wpa/src/ap/ctrl_iface_ap.c projects/em_mq/contrib/wpa/src/ap/ctrl_iface_ap.h projects/em_mq/contrib/wpa/src/ap/drv_callbacks.c projects/em_mq/contrib/wpa/src/ap/eap_user_db.c projects/em_mq/contrib/wpa/src/ap/gas_serv.c projects/em_mq/contrib/wpa/src/ap/gas_serv.h projects/em_mq/contrib/wpa/src/ap/hostapd.c projects/em_mq/contrib/wpa/src/ap/hostapd.h projects/em_mq/contrib/wpa/src/ap/hs20.c projects/em_mq/contrib/wpa/src/ap/hs20.h projects/em_mq/contrib/wpa/src/ap/hw_features.c projects/em_mq/contrib/wpa/src/ap/hw_features.h projects/em_mq/contrib/wpa/src/ap/iapp.c projects/em_mq/contrib/wpa/src/ap/ieee802_11.c projects/em_mq/contrib/wpa/src/ap/ieee802_11.h projects/em_mq/contrib/wpa/src/ap/ieee802_11_auth.c projects/em_mq/contrib/wpa/src/ap/ieee802_11_ht.c projects/em_mq/contrib/wpa/src/ap/ieee802_11_shared.c projects/em_mq/contrib/wpa/src/ap/ieee802_11_vht.c projects/em_mq/contrib/wpa/src/ap/ieee802_1x.c projects/em_mq/contrib/wpa/src/ap/ieee802_1x.h projects/em_mq/contrib/wpa/src/ap/p2p_hostapd.c projects/em_mq/contrib/wpa/src/ap/peerkey_auth.c projects/em_mq/contrib/wpa/src/ap/pmksa_cache_auth.c projects/em_mq/contrib/wpa/src/ap/pmksa_cache_auth.h projects/em_mq/contrib/wpa/src/ap/sta_info.c projects/em_mq/contrib/wpa/src/ap/sta_info.h projects/em_mq/contrib/wpa/src/ap/tkip_countermeasures.c projects/em_mq/contrib/wpa/src/ap/vlan_init.c projects/em_mq/contrib/wpa/src/ap/vlan_init.h projects/em_mq/contrib/wpa/src/ap/wmm.c projects/em_mq/contrib/wpa/src/ap/wmm.h projects/em_mq/contrib/wpa/src/ap/wnm_ap.c projects/em_mq/contrib/wpa/src/ap/wnm_ap.h projects/em_mq/contrib/wpa/src/ap/wpa_auth.c projects/em_mq/contrib/wpa/src/ap/wpa_auth.h projects/em_mq/contrib/wpa/src/ap/wpa_auth_ft.c projects/em_mq/contrib/wpa/src/ap/wpa_auth_glue.c projects/em_mq/contrib/wpa/src/ap/wpa_auth_i.h projects/em_mq/contrib/wpa/src/ap/wpa_auth_ie.c projects/em_mq/contrib/wpa/src/ap/wpa_auth_ie.h projects/em_mq/contrib/wpa/src/ap/wps_hostapd.c projects/em_mq/contrib/wpa/src/ap/wps_hostapd.h projects/em_mq/contrib/wpa/src/common/defs.h projects/em_mq/contrib/wpa/src/common/eapol_common.h projects/em_mq/contrib/wpa/src/common/ieee802_11_common.c projects/em_mq/contrib/wpa/src/common/ieee802_11_common.h projects/em_mq/contrib/wpa/src/common/ieee802_11_defs.h projects/em_mq/contrib/wpa/src/common/privsep_commands.h projects/em_mq/contrib/wpa/src/common/version.h projects/em_mq/contrib/wpa/src/common/wpa_common.c projects/em_mq/contrib/wpa/src/common/wpa_common.h projects/em_mq/contrib/wpa/src/common/wpa_ctrl.c projects/em_mq/contrib/wpa/src/common/wpa_ctrl.h projects/em_mq/contrib/wpa/src/crypto/aes-ccm.c projects/em_mq/contrib/wpa/src/crypto/aes-eax.c projects/em_mq/contrib/wpa/src/crypto/aes-gcm.c projects/em_mq/contrib/wpa/src/crypto/aes-omac1.c projects/em_mq/contrib/wpa/src/crypto/aes-unwrap.c projects/em_mq/contrib/wpa/src/crypto/aes-wrap.c projects/em_mq/contrib/wpa/src/crypto/aes_wrap.h projects/em_mq/contrib/wpa/src/crypto/crypto.h projects/em_mq/contrib/wpa/src/crypto/crypto_internal-rsa.c projects/em_mq/contrib/wpa/src/crypto/crypto_openssl.c projects/em_mq/contrib/wpa/src/crypto/dh_groups.c projects/em_mq/contrib/wpa/src/crypto/dh_groups.h projects/em_mq/contrib/wpa/src/crypto/md5.c projects/em_mq/contrib/wpa/src/crypto/milenage.c projects/em_mq/contrib/wpa/src/crypto/ms_funcs.c projects/em_mq/contrib/wpa/src/crypto/random.c projects/em_mq/contrib/wpa/src/crypto/sha1-internal.c projects/em_mq/contrib/wpa/src/crypto/sha1-prf.c projects/em_mq/contrib/wpa/src/crypto/sha1.c projects/em_mq/contrib/wpa/src/crypto/sha256-prf.c projects/em_mq/contrib/wpa/src/crypto/sha256.h projects/em_mq/contrib/wpa/src/crypto/tls.h projects/em_mq/contrib/wpa/src/crypto/tls_gnutls.c projects/em_mq/contrib/wpa/src/crypto/tls_internal.c projects/em_mq/contrib/wpa/src/crypto/tls_none.c projects/em_mq/contrib/wpa/src/crypto/tls_openssl.c projects/em_mq/contrib/wpa/src/crypto/tls_schannel.c projects/em_mq/contrib/wpa/src/drivers/driver.h projects/em_mq/contrib/wpa/src/drivers/driver_bsd.c projects/em_mq/contrib/wpa/src/drivers/driver_common.c projects/em_mq/contrib/wpa/src/drivers/driver_ndis.c projects/em_mq/contrib/wpa/src/drivers/driver_privsep.c projects/em_mq/contrib/wpa/src/drivers/driver_wired.c projects/em_mq/contrib/wpa/src/drivers/drivers.c projects/em_mq/contrib/wpa/src/eap_common/eap_common.c projects/em_mq/contrib/wpa/src/eap_common/eap_common.h projects/em_mq/contrib/wpa/src/eap_common/eap_defs.h projects/em_mq/contrib/wpa/src/eap_common/eap_fast_common.c projects/em_mq/contrib/wpa/src/eap_common/eap_fast_common.h projects/em_mq/contrib/wpa/src/eap_common/eap_gpsk_common.c projects/em_mq/contrib/wpa/src/eap_common/eap_gpsk_common.h projects/em_mq/contrib/wpa/src/eap_common/eap_ikev2_common.c projects/em_mq/contrib/wpa/src/eap_common/eap_ikev2_common.h projects/em_mq/contrib/wpa/src/eap_common/eap_pax_common.c projects/em_mq/contrib/wpa/src/eap_common/eap_pax_common.h projects/em_mq/contrib/wpa/src/eap_common/eap_pwd_common.c projects/em_mq/contrib/wpa/src/eap_common/eap_pwd_common.h projects/em_mq/contrib/wpa/src/eap_common/eap_sim_common.c projects/em_mq/contrib/wpa/src/eap_common/eap_sim_common.h projects/em_mq/contrib/wpa/src/eap_common/ikev2_common.c projects/em_mq/contrib/wpa/src/eap_common/ikev2_common.h projects/em_mq/contrib/wpa/src/eap_peer/eap.c projects/em_mq/contrib/wpa/src/eap_peer/eap.h projects/em_mq/contrib/wpa/src/eap_peer/eap_aka.c projects/em_mq/contrib/wpa/src/eap_peer/eap_config.h projects/em_mq/contrib/wpa/src/eap_peer/eap_fast.c projects/em_mq/contrib/wpa/src/eap_peer/eap_fast_pac.c projects/em_mq/contrib/wpa/src/eap_peer/eap_gpsk.c projects/em_mq/contrib/wpa/src/eap_peer/eap_i.h projects/em_mq/contrib/wpa/src/eap_peer/eap_ikev2.c projects/em_mq/contrib/wpa/src/eap_peer/eap_leap.c projects/em_mq/contrib/wpa/src/eap_peer/eap_methods.c projects/em_mq/contrib/wpa/src/eap_peer/eap_methods.h projects/em_mq/contrib/wpa/src/eap_peer/eap_mschapv2.c projects/em_mq/contrib/wpa/src/eap_peer/eap_pax.c projects/em_mq/contrib/wpa/src/eap_peer/eap_peap.c projects/em_mq/contrib/wpa/src/eap_peer/eap_psk.c projects/em_mq/contrib/wpa/src/eap_peer/eap_pwd.c projects/em_mq/contrib/wpa/src/eap_peer/eap_sake.c projects/em_mq/contrib/wpa/src/eap_peer/eap_sim.c projects/em_mq/contrib/wpa/src/eap_peer/eap_tls.c projects/em_mq/contrib/wpa/src/eap_peer/eap_tls_common.c projects/em_mq/contrib/wpa/src/eap_peer/eap_tls_common.h projects/em_mq/contrib/wpa/src/eap_peer/eap_tnc.c projects/em_mq/contrib/wpa/src/eap_peer/eap_ttls.c projects/em_mq/contrib/wpa/src/eap_peer/eap_vendor_test.c projects/em_mq/contrib/wpa/src/eap_peer/eap_wsc.c projects/em_mq/contrib/wpa/src/eap_peer/ikev2.c projects/em_mq/contrib/wpa/src/eap_peer/mschapv2.c projects/em_mq/contrib/wpa/src/eap_peer/tncc.c projects/em_mq/contrib/wpa/src/eap_server/eap.h projects/em_mq/contrib/wpa/src/eap_server/eap_i.h projects/em_mq/contrib/wpa/src/eap_server/eap_methods.h projects/em_mq/contrib/wpa/src/eap_server/eap_server.c projects/em_mq/contrib/wpa/src/eap_server/eap_server_aka.c projects/em_mq/contrib/wpa/src/eap_server/eap_server_fast.c projects/em_mq/contrib/wpa/src/eap_server/eap_server_gpsk.c projects/em_mq/contrib/wpa/src/eap_server/eap_server_gtc.c projects/em_mq/contrib/wpa/src/eap_server/eap_server_identity.c projects/em_mq/contrib/wpa/src/eap_server/eap_server_ikev2.c projects/em_mq/contrib/wpa/src/eap_server/eap_server_md5.c projects/em_mq/contrib/wpa/src/eap_server/eap_server_methods.c projects/em_mq/contrib/wpa/src/eap_server/eap_server_mschapv2.c projects/em_mq/contrib/wpa/src/eap_server/eap_server_pax.c projects/em_mq/contrib/wpa/src/eap_server/eap_server_peap.c projects/em_mq/contrib/wpa/src/eap_server/eap_server_psk.c projects/em_mq/contrib/wpa/src/eap_server/eap_server_pwd.c projects/em_mq/contrib/wpa/src/eap_server/eap_server_sake.c projects/em_mq/contrib/wpa/src/eap_server/eap_server_sim.c projects/em_mq/contrib/wpa/src/eap_server/eap_server_tls.c projects/em_mq/contrib/wpa/src/eap_server/eap_server_tls_common.c projects/em_mq/contrib/wpa/src/eap_server/eap_server_tnc.c projects/em_mq/contrib/wpa/src/eap_server/eap_server_ttls.c projects/em_mq/contrib/wpa/src/eap_server/eap_server_wsc.c projects/em_mq/contrib/wpa/src/eap_server/eap_sim_db.c projects/em_mq/contrib/wpa/src/eap_server/eap_tls_common.h projects/em_mq/contrib/wpa/src/eap_server/ikev2.c projects/em_mq/contrib/wpa/src/eap_server/tncs.c projects/em_mq/contrib/wpa/src/eapol_auth/eapol_auth_dump.c projects/em_mq/contrib/wpa/src/eapol_auth/eapol_auth_sm.c projects/em_mq/contrib/wpa/src/eapol_auth/eapol_auth_sm.h projects/em_mq/contrib/wpa/src/eapol_auth/eapol_auth_sm_i.h projects/em_mq/contrib/wpa/src/eapol_supp/eapol_supp_sm.c projects/em_mq/contrib/wpa/src/eapol_supp/eapol_supp_sm.h projects/em_mq/contrib/wpa/src/l2_packet/l2_packet.h projects/em_mq/contrib/wpa/src/l2_packet/l2_packet_freebsd.c projects/em_mq/contrib/wpa/src/l2_packet/l2_packet_ndis.c projects/em_mq/contrib/wpa/src/l2_packet/l2_packet_none.c projects/em_mq/contrib/wpa/src/l2_packet/l2_packet_privsep.c projects/em_mq/contrib/wpa/src/p2p/p2p.c projects/em_mq/contrib/wpa/src/p2p/p2p.h projects/em_mq/contrib/wpa/src/p2p/p2p_build.c projects/em_mq/contrib/wpa/src/p2p/p2p_dev_disc.c projects/em_mq/contrib/wpa/src/p2p/p2p_go_neg.c projects/em_mq/contrib/wpa/src/p2p/p2p_group.c projects/em_mq/contrib/wpa/src/p2p/p2p_i.h projects/em_mq/contrib/wpa/src/p2p/p2p_invitation.c projects/em_mq/contrib/wpa/src/p2p/p2p_parse.c projects/em_mq/contrib/wpa/src/p2p/p2p_pd.c projects/em_mq/contrib/wpa/src/p2p/p2p_sd.c projects/em_mq/contrib/wpa/src/p2p/p2p_utils.c projects/em_mq/contrib/wpa/src/radius/radius.c projects/em_mq/contrib/wpa/src/radius/radius.h projects/em_mq/contrib/wpa/src/radius/radius_client.c projects/em_mq/contrib/wpa/src/radius/radius_das.c projects/em_mq/contrib/wpa/src/radius/radius_das.h projects/em_mq/contrib/wpa/src/radius/radius_server.c projects/em_mq/contrib/wpa/src/radius/radius_server.h projects/em_mq/contrib/wpa/src/rsn_supp/peerkey.c projects/em_mq/contrib/wpa/src/rsn_supp/peerkey.h projects/em_mq/contrib/wpa/src/rsn_supp/pmksa_cache.c projects/em_mq/contrib/wpa/src/rsn_supp/pmksa_cache.h projects/em_mq/contrib/wpa/src/rsn_supp/preauth.c projects/em_mq/contrib/wpa/src/rsn_supp/preauth.h projects/em_mq/contrib/wpa/src/rsn_supp/tdls.c projects/em_mq/contrib/wpa/src/rsn_supp/wpa.c projects/em_mq/contrib/wpa/src/rsn_supp/wpa.h projects/em_mq/contrib/wpa/src/rsn_supp/wpa_ft.c projects/em_mq/contrib/wpa/src/rsn_supp/wpa_i.h projects/em_mq/contrib/wpa/src/rsn_supp/wpa_ie.c projects/em_mq/contrib/wpa/src/rsn_supp/wpa_ie.h projects/em_mq/contrib/wpa/src/tls/asn1.c projects/em_mq/contrib/wpa/src/tls/asn1.h projects/em_mq/contrib/wpa/src/tls/libtommath.c projects/em_mq/contrib/wpa/src/tls/pkcs1.c projects/em_mq/contrib/wpa/src/tls/pkcs1.h projects/em_mq/contrib/wpa/src/tls/rsa.c projects/em_mq/contrib/wpa/src/tls/rsa.h projects/em_mq/contrib/wpa/src/tls/tlsv1_client.c projects/em_mq/contrib/wpa/src/tls/tlsv1_client_read.c projects/em_mq/contrib/wpa/src/tls/tlsv1_client_write.c projects/em_mq/contrib/wpa/src/tls/tlsv1_common.c projects/em_mq/contrib/wpa/src/tls/tlsv1_common.h projects/em_mq/contrib/wpa/src/tls/tlsv1_record.c projects/em_mq/contrib/wpa/src/tls/tlsv1_server.c projects/em_mq/contrib/wpa/src/tls/tlsv1_server.h projects/em_mq/contrib/wpa/src/tls/tlsv1_server_i.h projects/em_mq/contrib/wpa/src/tls/tlsv1_server_read.c projects/em_mq/contrib/wpa/src/tls/tlsv1_server_write.c projects/em_mq/contrib/wpa/src/tls/x509v3.c projects/em_mq/contrib/wpa/src/utils/base64.c projects/em_mq/contrib/wpa/src/utils/build_config.h projects/em_mq/contrib/wpa/src/utils/common.c projects/em_mq/contrib/wpa/src/utils/common.h projects/em_mq/contrib/wpa/src/utils/edit.c projects/em_mq/contrib/wpa/src/utils/edit_readline.c projects/em_mq/contrib/wpa/src/utils/edit_simple.c projects/em_mq/contrib/wpa/src/utils/eloop.c projects/em_mq/contrib/wpa/src/utils/eloop.h projects/em_mq/contrib/wpa/src/utils/eloop_win.c projects/em_mq/contrib/wpa/src/utils/ext_password_test.c projects/em_mq/contrib/wpa/src/utils/ip_addr.c projects/em_mq/contrib/wpa/src/utils/ip_addr.h projects/em_mq/contrib/wpa/src/utils/list.h projects/em_mq/contrib/wpa/src/utils/os.h projects/em_mq/contrib/wpa/src/utils/os_internal.c projects/em_mq/contrib/wpa/src/utils/os_none.c projects/em_mq/contrib/wpa/src/utils/os_unix.c projects/em_mq/contrib/wpa/src/utils/os_win32.c projects/em_mq/contrib/wpa/src/utils/pcsc_funcs.c projects/em_mq/contrib/wpa/src/utils/pcsc_funcs.h projects/em_mq/contrib/wpa/src/utils/radiotap.c projects/em_mq/contrib/wpa/src/utils/radiotap.h projects/em_mq/contrib/wpa/src/utils/radiotap_iter.h projects/em_mq/contrib/wpa/src/utils/trace.c projects/em_mq/contrib/wpa/src/utils/trace.h projects/em_mq/contrib/wpa/src/utils/uuid.c projects/em_mq/contrib/wpa/src/utils/wpa_debug.c projects/em_mq/contrib/wpa/src/utils/wpa_debug.h projects/em_mq/contrib/wpa/src/utils/wpabuf.c projects/em_mq/contrib/wpa/src/utils/wpabuf.h projects/em_mq/contrib/wpa/src/wps/http_client.c projects/em_mq/contrib/wpa/src/wps/http_server.c projects/em_mq/contrib/wpa/src/wps/httpread.c projects/em_mq/contrib/wpa/src/wps/ndef.c projects/em_mq/contrib/wpa/src/wps/wps.c projects/em_mq/contrib/wpa/src/wps/wps.h projects/em_mq/contrib/wpa/src/wps/wps_attr_build.c projects/em_mq/contrib/wpa/src/wps/wps_attr_parse.c projects/em_mq/contrib/wpa/src/wps/wps_attr_parse.h projects/em_mq/contrib/wpa/src/wps/wps_attr_process.c projects/em_mq/contrib/wpa/src/wps/wps_common.c projects/em_mq/contrib/wpa/src/wps/wps_defs.h projects/em_mq/contrib/wpa/src/wps/wps_dev_attr.c projects/em_mq/contrib/wpa/src/wps/wps_dev_attr.h projects/em_mq/contrib/wpa/src/wps/wps_enrollee.c projects/em_mq/contrib/wpa/src/wps/wps_er.c projects/em_mq/contrib/wpa/src/wps/wps_er.h projects/em_mq/contrib/wpa/src/wps/wps_er_ssdp.c projects/em_mq/contrib/wpa/src/wps/wps_i.h projects/em_mq/contrib/wpa/src/wps/wps_registrar.c projects/em_mq/contrib/wpa/src/wps/wps_upnp.c projects/em_mq/contrib/wpa/src/wps/wps_upnp_ap.c projects/em_mq/contrib/wpa/src/wps/wps_upnp_i.h projects/em_mq/contrib/wpa/src/wps/wps_upnp_ssdp.c projects/em_mq/contrib/wpa/src/wps/wps_upnp_web.c projects/em_mq/contrib/wpa/src/wps/wps_validate.c projects/em_mq/contrib/wpa/wpa_supplicant/ChangeLog projects/em_mq/contrib/wpa/wpa_supplicant/README projects/em_mq/contrib/wpa/wpa_supplicant/README-HS20 projects/em_mq/contrib/wpa/wpa_supplicant/README-P2P projects/em_mq/contrib/wpa/wpa_supplicant/README-WPS projects/em_mq/contrib/wpa/wpa_supplicant/ap.c projects/em_mq/contrib/wpa/wpa_supplicant/ap.h projects/em_mq/contrib/wpa/wpa_supplicant/bgscan.c projects/em_mq/contrib/wpa/wpa_supplicant/bgscan.h projects/em_mq/contrib/wpa/wpa_supplicant/bgscan_learn.c projects/em_mq/contrib/wpa/wpa_supplicant/bgscan_simple.c projects/em_mq/contrib/wpa/wpa_supplicant/bss.c projects/em_mq/contrib/wpa/wpa_supplicant/bss.h projects/em_mq/contrib/wpa/wpa_supplicant/config.c projects/em_mq/contrib/wpa/wpa_supplicant/config.h projects/em_mq/contrib/wpa/wpa_supplicant/config_file.c projects/em_mq/contrib/wpa/wpa_supplicant/config_none.c projects/em_mq/contrib/wpa/wpa_supplicant/config_ssid.h projects/em_mq/contrib/wpa/wpa_supplicant/ctrl_iface.c projects/em_mq/contrib/wpa/wpa_supplicant/ctrl_iface.h projects/em_mq/contrib/wpa/wpa_supplicant/ctrl_iface_named_pipe.c projects/em_mq/contrib/wpa/wpa_supplicant/ctrl_iface_udp.c projects/em_mq/contrib/wpa/wpa_supplicant/ctrl_iface_unix.c projects/em_mq/contrib/wpa/wpa_supplicant/dbus/Makefile projects/em_mq/contrib/wpa/wpa_supplicant/dbus/dbus_common.c projects/em_mq/contrib/wpa/wpa_supplicant/dbus/dbus_dict_helpers.c projects/em_mq/contrib/wpa/wpa_supplicant/dbus/dbus_dict_helpers.h projects/em_mq/contrib/wpa/wpa_supplicant/dbus/dbus_new.c projects/em_mq/contrib/wpa/wpa_supplicant/dbus/dbus_new.h projects/em_mq/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers.c projects/em_mq/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers.h projects/em_mq/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_p2p.c projects/em_mq/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_p2p.h projects/em_mq/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_wps.c projects/em_mq/contrib/wpa/wpa_supplicant/dbus/dbus_new_helpers.c projects/em_mq/contrib/wpa/wpa_supplicant/dbus/dbus_new_helpers.h projects/em_mq/contrib/wpa/wpa_supplicant/dbus/dbus_new_introspect.c projects/em_mq/contrib/wpa/wpa_supplicant/dbus/dbus_old.c projects/em_mq/contrib/wpa/wpa_supplicant/dbus/dbus_old.h projects/em_mq/contrib/wpa/wpa_supplicant/dbus/dbus_old_handlers.c projects/em_mq/contrib/wpa/wpa_supplicant/dbus/dbus_old_handlers.h projects/em_mq/contrib/wpa/wpa_supplicant/dbus/dbus_old_handlers_wps.c projects/em_mq/contrib/wpa/wpa_supplicant/defconfig projects/em_mq/contrib/wpa/wpa_supplicant/driver_i.h projects/em_mq/contrib/wpa/wpa_supplicant/eap_register.c projects/em_mq/contrib/wpa/wpa_supplicant/eapol_test.c projects/em_mq/contrib/wpa/wpa_supplicant/events.c projects/em_mq/contrib/wpa/wpa_supplicant/examples/p2p-action.sh projects/em_mq/contrib/wpa/wpa_supplicant/examples/wps-ap-cli projects/em_mq/contrib/wpa/wpa_supplicant/examples/wps-nfc.py projects/em_mq/contrib/wpa/wpa_supplicant/gas_query.c projects/em_mq/contrib/wpa/wpa_supplicant/gas_query.h projects/em_mq/contrib/wpa/wpa_supplicant/hs20_supplicant.c projects/em_mq/contrib/wpa/wpa_supplicant/hs20_supplicant.h projects/em_mq/contrib/wpa/wpa_supplicant/ibss_rsn.c projects/em_mq/contrib/wpa/wpa_supplicant/ibss_rsn.h projects/em_mq/contrib/wpa/wpa_supplicant/interworking.c projects/em_mq/contrib/wpa/wpa_supplicant/interworking.h projects/em_mq/contrib/wpa/wpa_supplicant/main.c projects/em_mq/contrib/wpa/wpa_supplicant/main_none.c projects/em_mq/contrib/wpa/wpa_supplicant/notify.c projects/em_mq/contrib/wpa/wpa_supplicant/notify.h projects/em_mq/contrib/wpa/wpa_supplicant/offchannel.c projects/em_mq/contrib/wpa/wpa_supplicant/p2p_supplicant.c projects/em_mq/contrib/wpa/wpa_supplicant/p2p_supplicant.h projects/em_mq/contrib/wpa/wpa_supplicant/preauth_test.c projects/em_mq/contrib/wpa/wpa_supplicant/scan.c projects/em_mq/contrib/wpa/wpa_supplicant/scan.h projects/em_mq/contrib/wpa/wpa_supplicant/sme.c projects/em_mq/contrib/wpa/wpa_supplicant/sme.h projects/em_mq/contrib/wpa/wpa_supplicant/tests/test_wpa.c projects/em_mq/contrib/wpa/wpa_supplicant/todo.txt projects/em_mq/contrib/wpa/wpa_supplicant/wifi_display.c projects/em_mq/contrib/wpa/wpa_supplicant/wifi_display.h projects/em_mq/contrib/wpa/wpa_supplicant/wnm_sta.c projects/em_mq/contrib/wpa/wpa_supplicant/wnm_sta.h projects/em_mq/contrib/wpa/wpa_supplicant/wpa_cli.c projects/em_mq/contrib/wpa/wpa_supplicant/wpa_priv.c projects/em_mq/contrib/wpa/wpa_supplicant/wpa_supplicant.c projects/em_mq/contrib/wpa/wpa_supplicant/wpa_supplicant.conf projects/em_mq/contrib/wpa/wpa_supplicant/wpa_supplicant_i.h projects/em_mq/contrib/wpa/wpa_supplicant/wpa_supplicant_template.conf projects/em_mq/contrib/wpa/wpa_supplicant/wpas_glue.c projects/em_mq/contrib/wpa/wpa_supplicant/wps_supplicant.c projects/em_mq/contrib/wpa/wpa_supplicant/wps_supplicant.h projects/em_mq/lib/libc/gen/setproctitle.c projects/em_mq/lib/libc/iconv/citrus_prop.c projects/em_mq/lib/libmt/mt.3 projects/em_mq/lib/libpmc/pmc.haswellxeon.3 projects/em_mq/release/release.conf.sample projects/em_mq/release/release.sh projects/em_mq/release/tools/vmimage.subr projects/em_mq/sbin/dmesg/dmesg.c projects/em_mq/share/man/man3/queue.3 projects/em_mq/share/man/man4/ata.4 projects/em_mq/share/man/man9/printf.9 projects/em_mq/sys/amd64/amd64/machdep.c projects/em_mq/sys/arm/allwinner/a20/a20_mp.c projects/em_mq/sys/arm/conf/CUBIEBOARD projects/em_mq/sys/arm/conf/CUBIEBOARD2 projects/em_mq/sys/cam/scsi/scsi_all.c projects/em_mq/sys/compat/linux/linux_getcwd.c projects/em_mq/sys/compat/linux/linux_misc.h projects/em_mq/sys/conf/NOTES projects/em_mq/sys/conf/options projects/em_mq/sys/dev/iicbus/iic.c projects/em_mq/sys/dev/iicbus/iic.h projects/em_mq/sys/dev/iicbus/iicbus_if.m projects/em_mq/sys/dev/iicbus/iiconf.c projects/em_mq/sys/dev/ixgbe/if_ix.c projects/em_mq/sys/dev/mii/acphy.c projects/em_mq/sys/dev/mii/brgphy.c projects/em_mq/sys/dev/mii/lxtphy.c projects/em_mq/sys/dev/mii/mii_physubr.c projects/em_mq/sys/dev/mii/miivar.h projects/em_mq/sys/dev/mii/mlphy.c projects/em_mq/sys/dev/mii/xmphy.c projects/em_mq/sys/dev/usb/video/udl.c projects/em_mq/sys/dev/xen/netfront/netfront.c projects/em_mq/sys/fs/nfsclient/nfs_clrpcops.c projects/em_mq/sys/geom/uncompress/g_uncompress.c projects/em_mq/sys/i386/i386/machdep.c projects/em_mq/sys/kern/kern_physio.c projects/em_mq/sys/kern/subr_prf.c projects/em_mq/sys/kern/vfs_cache.c projects/em_mq/sys/net/bpf.c projects/em_mq/sys/net/bpf.h projects/em_mq/sys/net/if_media.c projects/em_mq/sys/sys/syscallsubr.h projects/em_mq/sys/vm/uma_core.c projects/em_mq/sys/x86/x86/mca.c projects/em_mq/tools/build/check-links.sh projects/em_mq/usr.bin/bmake/Makefile projects/em_mq/usr.bin/bmake/unit-tests/Makefile projects/em_mq/usr.bin/find/find.1 projects/em_mq/usr.bin/patch/inp.c projects/em_mq/usr.bin/patch/pch.c projects/em_mq/usr.bin/patch/util.c projects/em_mq/usr.sbin/bhyve/pci_ahci.c projects/em_mq/usr.sbin/bhyve/pci_virtio_net.c projects/em_mq/usr.sbin/crunch/crunchide/exec_elf32.c projects/em_mq/usr.sbin/ctld/ctl.conf.5 projects/em_mq/usr.sbin/sysrc/sysrc projects/em_mq/usr.sbin/vidcontrol/vidcontrol.c projects/em_mq/usr.sbin/wpa/Makefile.crypto projects/em_mq/usr.sbin/wpa/hostapd/Makefile projects/em_mq/usr.sbin/wpa/wpa_passphrase/Makefile projects/em_mq/usr.sbin/wpa/wpa_supplicant/Makefile Directory Properties: projects/em_mq/ (props changed) projects/em_mq/contrib/bmake/ (props changed) projects/em_mq/contrib/llvm/ (props changed) projects/em_mq/contrib/wpa/ (props changed) projects/em_mq/lib/libc/ (props changed) projects/em_mq/sbin/ (props changed) projects/em_mq/share/ (props changed) projects/em_mq/share/man/man4/ (props changed) projects/em_mq/sys/ (props changed) projects/em_mq/sys/conf/ (props changed) projects/em_mq/sys/x86/include/acpica_machdep.h (props changed) projects/em_mq/usr.sbin/bhyve/ (props changed) Modified: projects/em_mq/.arcconfig ============================================================================== --- projects/em_mq/.arcconfig Tue Apr 21 17:02:55 2015 (r281836) +++ projects/em_mq/.arcconfig Tue Apr 21 19:33:30 2015 (r281837) @@ -1,5 +1,4 @@ { "project.name": "S", - "phabricator.uri" : "https://reviews.freebsd.org/", - "history.immutable" : true + "phabricator.uri" : "https://reviews.freebsd.org/" } Modified: projects/em_mq/.arclint ============================================================================== --- projects/em_mq/.arclint Tue Apr 21 17:02:55 2015 (r281836) +++ projects/em_mq/.arclint Tue Apr 21 19:33:30 2015 (r281837) @@ -1,9 +1,25 @@ { + "exclude": "(contrib|crypto)", "linters": { "python": { "type": "pep8", - "exclude": "(contrib)", "include": "(\\.py$)" + }, + "spelling": { + "type": "spelling" + }, + "chmod": { + "type": "chmod" + }, + "merge-conflict": { + "type": "merge-conflict" + }, + "filename": { + "type": "filename" + }, + "json": { + "type": "json", + "include": "(\\.arclint|\\.json$)" } } } Modified: projects/em_mq/Makefile.inc1 ============================================================================== --- projects/em_mq/Makefile.inc1 Tue Apr 21 17:02:55 2015 (r281836) +++ projects/em_mq/Makefile.inc1 Tue Apr 21 19:33:30 2015 (r281837) @@ -1357,13 +1357,7 @@ _kerberos5_bootstrap_tools= \ kerberos5/tools/slc \ usr.bin/compile_et -${_bt}-kerberos5/lib/libroken: ${_bt}-kerberos5/tools/make-roken -${_bt}-kerberos5/tools/asn1_compile: \ - ${_bt}-kerberos5/lib/libroken ${_bt}-kerberos5/lib/libvers -${_bt}-kerberos5/tools/slc: \ - ${_bt}-kerberos5/lib/libroken ${_bt}-kerberos5/lib/libvers -${_bt}-usr.bin/compile_et: \ - ${_bt}-kerberos5/lib/libroken ${_bt}-kerberos5/lib/libvers +.ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g} .endif bootstrap-tools: .PHONY Modified: projects/em_mq/bin/ed/glbl.c ============================================================================== --- projects/em_mq/bin/ed/glbl.c Tue Apr 21 17:02:55 2015 (r281836) +++ projects/em_mq/bin/ed/glbl.c Tue Apr 21 19:33:30 2015 (r281837) @@ -60,7 +60,7 @@ build_active_list(int isgcmd) return ERR; if (isbinary) NUL_TO_NEWLINE(s, lp->len); - if (!regexec(pat, s, 0, NULL, 0) == isgcmd && + if (!(regexec(pat, s, 0, NULL, 0) == isgcmd) && set_active_node(lp) < 0) return ERR; } Modified: projects/em_mq/contrib/bmake/ChangeLog ============================================================================== --- projects/em_mq/contrib/bmake/ChangeLog Tue Apr 21 17:02:55 2015 (r281836) +++ projects/em_mq/contrib/bmake/ChangeLog Tue Apr 21 19:33:30 2015 (r281837) @@ -1,8 +1,76 @@ +2015-04-18 Simon J. Gerraty + + * Makefile (MAKE_VERSION): 20150418 + Merge with NetBSD make, pick up + o job.c: use memmove() rather than memcpy() + + * unit-tests/varshell.mk: SunOS cannot handle the TERMINATED_BY_SIGNAL + case, so skip it. + +2015-04-11 Simon J. Gerraty + + * Makefile (MAKE_VERSION): 20150411 + bump version - only mk/ changes. + +2015-04-10 Simon J. Gerraty + + * Makefile (MAKE_VERSION): 20150410 + Merge with NetBSD make, pick up + o document different handling of '-' in jobs mode vs compat + o fix jobs mode so that '-' only applies to whole job + when shell lacks hasErrCtl + o meta.c: use separate vars to track lcwd and latestdir (read) + per process + +2015-04-01 Simon J. Gerraty + + * Makefile (MAKE_VERSION): 20150401 + Merge with NetBSD make, pick up + o meta.c: close meta file in child + + * Makefile: use BINDIR.bmake if set. + Same for MANDIR and SHAREDIR + Handy for testing release candidates + in various environments. + +2015-03-26 Simon J. Gerraty + + * move initialization of savederr to block where it is used + to avoid spurious warning from gcc5 + +2014-11-11 Simon J. Gerraty + + * Makefile (MAKE_VERSION): 20141111 + just a cooler number + +2014-11-05 Simon J. Gerraty + + * Makefile (MAKE_VERSION): 20141105 + Merge with NetBSD make, pick up + o revert major overhaul of suffix handling + and POSIX compliance - too much breakage + and impossible to make backwards compatible. + o we still have the new unit test structure which is ok. + o meta.c ensure "-- filemon" is at start of line. + +2014-09-17 Simon J. Gerraty + + * configure.in: test that result of getconf PATH_MAX is numeric + and discard if not. Apparently needed for Hurd. + +2014-08-30 Simon J. Gerraty + + * Makefile (MAKE_VERSION): 20140830 + Merge with NetBSD make, pick up + o major overhaul of suffix handling + o improved POSIX compliance + o overhauled unit-tests + 2014-06-20 Simon J. Gerraty * Makefile (MAKE_VERSION): 20140620 Merge with NetBSD make, pick up - o var.c return varNoError rather than var_Error for ::= modidiers. + o var.c return varNoError rather than var_Error for ::= modifiers. 2014-05-22 Simon J. Gerraty Modified: projects/em_mq/contrib/bmake/FILES ============================================================================== --- projects/em_mq/contrib/bmake/FILES Tue Apr 21 17:02:55 2015 (r281836) +++ projects/em_mq/contrib/bmake/FILES Tue Apr 21 19:33:30 2015 (r281837) @@ -92,35 +92,74 @@ targ.c trace.c trace.h unit-tests/Makefile.in -unit-tests/comment -unit-tests/cond1 -unit-tests/doterror -unit-tests/dotwait -unit-tests/error -unit-tests/export -unit-tests/export-all -unit-tests/export-env -unit-tests/forloop -unit-tests/forsubst -unit-tests/hash -unit-tests/misc -unit-tests/moderrs -unit-tests/modmatch -unit-tests/modmisc -unit-tests/modorder -unit-tests/modts -unit-tests/modword -unit-tests/order -unit-tests/phony-end -unit-tests/posix -unit-tests/qequals -unit-tests/sunshcmd -unit-tests/sysv -unit-tests/ternary -unit-tests/test.exp -unit-tests/unexport -unit-tests/unexport-env -unit-tests/varcmd +unit-tests/comment.exp +unit-tests/comment.mk +unit-tests/cond1.exp +unit-tests/cond1.mk +unit-tests/doterror.exp +unit-tests/doterror.mk +unit-tests/dotwait.exp +unit-tests/dotwait.mk +unit-tests/error.exp +unit-tests/error.mk +unit-tests/escape.exp +unit-tests/escape.mk +unit-tests/export-all.exp +unit-tests/export-all.mk +unit-tests/export-env.exp +unit-tests/export-env.mk +unit-tests/export.exp +unit-tests/export.mk +unit-tests/forloop.exp +unit-tests/forloop.mk +unit-tests/forsubst.exp +unit-tests/forsubst.mk +unit-tests/hash.exp +unit-tests/hash.mk +unit-tests/impsrc.exp +unit-tests/impsrc.mk +unit-tests/misc.exp +unit-tests/misc.mk +unit-tests/moderrs.exp +unit-tests/moderrs.mk +unit-tests/modmatch.exp +unit-tests/modmatch.mk +unit-tests/modmisc.exp +unit-tests/modmisc.mk +unit-tests/modorder.exp +unit-tests/modorder.mk +unit-tests/modts.exp +unit-tests/modts.mk +unit-tests/modword.exp +unit-tests/modword.mk +unit-tests/order.exp +unit-tests/order.mk +unit-tests/phony-end.exp +unit-tests/phony-end.mk +unit-tests/posix.exp +unit-tests/posix.mk +unit-tests/posix1.exp +unit-tests/posix1.mk +unit-tests/qequals.exp +unit-tests/qequals.mk +unit-tests/suffixes.exp +unit-tests/suffixes.mk +unit-tests/sunshcmd.exp +unit-tests/sunshcmd.mk +unit-tests/sysv.exp +unit-tests/sysv.mk +unit-tests/ternary.exp +unit-tests/ternary.mk +unit-tests/unexport-env.exp +unit-tests/unexport-env.mk +unit-tests/unexport.exp +unit-tests/unexport.mk +unit-tests/varcmd.exp +unit-tests/varcmd.mk +unit-tests/varmisc.exp +unit-tests/varmisc.mk +unit-tests/varshell.exp +unit-tests/varshell.mk util.c var.c wait.h Modified: projects/em_mq/contrib/bmake/Makefile ============================================================================== --- projects/em_mq/contrib/bmake/Makefile Tue Apr 21 17:02:55 2015 (r281836) +++ projects/em_mq/contrib/bmake/Makefile Tue Apr 21 19:33:30 2015 (r281837) @@ -1,7 +1,7 @@ -# $Id: Makefile,v 1.27 2014/06/20 14:51:54 sjg Exp $ +# $Id: Makefile,v 1.36 2015/04/18 19:58:53 sjg Exp $ # Base version on src date -MAKE_VERSION= 20140620 +MAKE_VERSION= 20150418 PROG= bmake @@ -180,9 +180,9 @@ COPTS.parse.c += -Wno-format-nonliteral COPTS.var.c += -Wno-format-nonliteral # Force these -SHAREDIR= ${prefix}/share -BINDIR= ${prefix}/bin -MANDIR= ${SHAREDIR}/man +SHAREDIR= ${SHAREDIR.bmake:U${prefix}/share} +BINDIR= ${BINDIR.bmake:U${prefix}/bin} +MANDIR= ${MANDIR.bmake:U${SHAREDIR}/man} .if !exists(.depend) ${OBJS}: config.h Modified: projects/em_mq/contrib/bmake/PSD.doc/Makefile ============================================================================== --- projects/em_mq/contrib/bmake/PSD.doc/Makefile Tue Apr 21 17:02:55 2015 (r281836) +++ projects/em_mq/contrib/bmake/PSD.doc/Makefile Tue Apr 21 19:33:30 2015 (r281837) @@ -1,8 +1,10 @@ -# $NetBSD: Makefile,v 1.2 1995/06/14 15:20:23 christos Exp $ +# $NetBSD: Makefile,v 1.4 2014/07/05 19:22:43 dholland Exp $ # @(#)Makefile 8.1 (Berkeley) 8/14/93 -DIR= psd/12.make +SECTION=reference/ref1 +ARTICLE=make SRCS= tutorial.ms MACROS= -ms +EXTRAHTMLFILES=make1.png make2.png .include Modified: projects/em_mq/contrib/bmake/PSD.doc/tutorial.ms ============================================================================== --- projects/em_mq/contrib/bmake/PSD.doc/tutorial.ms Tue Apr 21 17:02:55 2015 (r281836) +++ projects/em_mq/contrib/bmake/PSD.doc/tutorial.ms Tue Apr 21 19:33:30 2015 (r281837) @@ -1,4 +1,4 @@ -.\" $NetBSD: tutorial.ms,v 1.11 2011/08/18 15:19:30 sjg Exp $ +.\" $NetBSD: tutorial.ms,v 1.12 2014/09/30 21:33:14 christos Exp $ .\" Copyright (c) 1988, 1989, 1993 .\" The Regents of the University of California. All rights reserved. .\" @@ -67,6 +67,16 @@ .\" .EH 'PSD:12-%''PMake \*- A Tutorial' .OH 'PMake \*- A Tutorial''PSD:12-%' +.\" Ix is an indexing macro similar to .IX but I've disabled it for now +.\" Since that would require 2 passes and I am not in the mood for that. +.de Ix +.. +.\" Rd is section (region) define and Rm is region mention? Again disable for +.\" now. +.de Rd +.. +.de Rm +.. .\" xH is a macro to provide numbered headers that are automatically stuffed .\" into a table-of-contents, properly indented, etc. If the first argument .\" is numeric, it is taken as the depth for numbering (as for .NH), else Modified: projects/em_mq/contrib/bmake/bmake.1 ============================================================================== --- projects/em_mq/contrib/bmake/bmake.1 Tue Apr 21 17:02:55 2015 (r281836) +++ projects/em_mq/contrib/bmake/bmake.1 Tue Apr 21 19:33:30 2015 (r281837) @@ -1,4 +1,4 @@ -.\" $NetBSD: make.1,v 1.229 2014/01/19 10:23:29 apb Exp $ +.\" $NetBSD: make.1,v 1.247 2015/04/10 08:43:32 wiz Exp $ .\" .\" Copyright (c) 1990, 1993 .\" The Regents of the University of California. All rights reserved. @@ -29,7 +29,7 @@ .\" .\" from: @(#)make.1 8.4 (Berkeley) 3/19/94 .\" -.Dd February 14, 2014 +.Dd April 9, 2015 .Dt MAKE 1 .Os .Sh NAME @@ -209,8 +209,6 @@ Force the option to print raw values of variables. .It Ar v Print debugging information about variable assignment. -.It Ar w -Print entering and leaving directory messages, pre and post processing. .It Ar x Run shell commands with .Fl x @@ -352,6 +350,8 @@ contains a then the value will be expanded before printing. .It Fl W Treat any warnings during makefile parsing as errors. +.It Fl w +Print entering and leaving directory messages, pre and post processing. .It Fl X Don't export variables passed on the command line to the environment individually. @@ -441,17 +441,29 @@ The value need not necessarily be used to describe existing files. Expansion is in directory order, not alphabetically as done in the shell. .Sh SHELL COMMANDS -Each target may have associated with it a series of shell commands, normally +Each target may have associated with it one or more lines of shell +commands, normally used to create the target. -Each of the commands in this script +Each of the lines in this script .Em must be preceded by a tab. -While any target may appear on a dependency line, only one of these -dependencies may be followed by a creation script, unless the +(For historical reasons, spaces are not accepted.) +While targets can appear in many dependency lines if desired, by +default only one of these rules may be followed by a creation +script. +If the .Ql Ic \&:: -operator is used. +operator is used, however, all rules may include scripts and the +scripts are executed in the order found. .Pp -If the first characters of the command line are any combination of +Each line is treated as a separate shell command, unless the end of +line is escaped with a backslash +.Pq Ql \e +in which case that line and the next are combined. +.\" The escaped newline is retained and passed to the shell, which +.\" normally ignores it. +.\" However, the tab at the beginning of the following line is removed. +If the first characters of the command are any combination of .Ql Ic @ , .Ql Ic + , or @@ -469,6 +481,7 @@ This is similar to the effect of the .MA except that the effect can be limited to a single line of a script. A .Ql Ic \- +in compatibility mode causes any non-zero exit status of the command line to be ignored. .Pp When @@ -477,22 +490,21 @@ is run in jobs mode with .Fl j Ar max_jobs , the entire script for the target is fed to a single instance of the shell. -.Pp In compatibility (non-jobs) mode, each command is run in a separate process. If the command contains any shell meta characters .Pq Ql #=|^(){};&<>*?[]:$`\e\en -it will be passed to the shell, otherwise +it will be passed to the shell; otherwise .Nm will attempt direct execution. -.Pp -Since -.Nm -will -.Xr chdir 2 -to -.Ql Va .OBJDIR -before executing any targets, each child process -starts with that as its current working directory. +If a line starts with +.Ql Ic \- +and the shell has ErrCtl enabled then failure of the command line +will be ignored as in compatibility mode. +Otherwise +.Ql Ic \- +affects the entire job; +the script will stop at the first command line that fails, +but the target will not be deemed to have failed. .Pp Makefiles should be written so that the mode of .Nm @@ -500,20 +512,32 @@ operation does not change their behavior For example, any command which needs to use .Dq cd or -.Dq chdir , -without side-effect should be put in parenthesis: +.Dq chdir +without potentially changing the directory for subsequent commands +should be put in parentheses so it executes in a subshell. +To force the use of one shell, escape the line breaks so as to make +the whole script one command. +For example: .Bd -literal -offset indent - avoid-chdir-side-effects: @echo Building $@ in `pwd` - @(cd ${.CURDIR} && ${.MAKE} $@) + @(cd ${.CURDIR} && ${MAKE} $@) @echo Back in `pwd` ensure-one-shell-regardless-of-mode: - @echo Building $@ in `pwd`; \\ - (cd ${.CURDIR} && ${.MAKE} $@); \\ + @echo Building $@ in `pwd`; \e + (cd ${.CURDIR} && ${MAKE} $@); \e echo Back in `pwd` .Ed +.Pp +Since +.Nm +will +.Xr chdir 2 +to +.Ql Va .OBJDIR +before executing any targets, each child process +starts with that as its current working directory. .Sh VARIABLE ASSIGNMENTS Variables in make are much like variables in the shell, and, by tradition, consist of all upper-case letters. @@ -624,13 +648,19 @@ Variables defined in the makefile or in Variables defined as part of the command line. .It Local variables Variables that are defined specific to a certain target. +.El +.Pp +Local variables are all built in and their values vary magically from +target to target. +It is not currently possible to define new local variables. The seven local variables are as follows: -.Bl -tag -width ".ARCHIVE" +.Bl -tag -width ".ARCHIVE" -offset indent .It Va .ALLSRC The list of all sources for this target; also known as .Ql Va \&\*[Gt] . .It Va .ARCHIVE -The name of the archive file. +The name of the archive file; also known as +.Ql Va \&! . .It Va .IMPSRC In suffix-transformation rules, the name/path of the source from which the target is to be transformed (the @@ -639,7 +669,8 @@ source); also known as .Ql Va \&\*[Lt] . It is not defined in explicit rules. .It Va .MEMBER -The name of the archive member. +The name of the archive member; also known as +.Ql Va % . .It Va .OODATE The list of sources for this target that were deemed out-of-date; also known as @@ -648,31 +679,41 @@ known as The file prefix of the target, containing only the file portion, no suffix or preceding directory components; also known as .Ql Va * . +The suffix must be one of the known suffixes declared with +.Ic .SUFFIXES +or it will not be recognized. .It Va .TARGET The name of the target; also known as .Ql Va @ . .El .Pp The shorter forms -.Ql Va @ , +.Ql ( Va \*[Gt] , +.Ql Va \&! , +.Ql Va \*[Lt] , +.Ql Va % , .Ql Va \&? , -.Ql Va \&\*[Lt] , -.Ql Va \&\*[Gt] , +.Ql Va * , and -.Ql Va * +.Ql Va @ ) are permitted for backward -compatibility with historical makefiles and are not recommended. -The six variables -.Ql Va "@F" , -.Ql Va "@D" , -.Ql Va "\*[Lt]F" , -.Ql Va "\*[Lt]D" , -.Ql Va "*F" , +compatibility with historical makefiles and legacy POSIX make and are +not recommended. +.Pp +Variants of these variables with the punctuation followed immediately by +.Ql D +or +.Ql F , +e.g. +.Ql Va $(@D) , +are legacy forms equivalent to using the +.Ql :H and -.Ql Va "*D" -are permitted for compatibility with +.Ql :T +modifiers. +These forms are accepted for compatibility with .At V -makefiles and are not recommended. +makefiles and POSIX but are not recommended. .Pp Four of the local variables may be used in sources on dependency lines because they expand to the proper value for each target on the line. @@ -682,7 +723,6 @@ These variables are .Ql Va .ARCHIVE , and .Ql Va .MEMBER . -.El .Ss Additional built-in variables In addition, .Nm @@ -2119,19 +2159,87 @@ system makefile system makefile directory .El .Sh COMPATIBILITY -The basic make syntax is compatible between different versions of make, +The basic make syntax is compatible between different versions of make; however the special variables, variable modifiers and conditionals are not. -.Pp -The way that parallel makes are scheduled changed in -NetBSD 4.0 -so that .ORDER and .WAIT apply recursively to the dependent nodes. -The algorithms used may change again in the future. +.Ss Older versions +An incomplete list of changes in older versions of +.Nm : .Pp The way that .for loop variables are substituted changed after NetBSD 5.0 so that they still appear to be variable expansions. In particular this stops them being treated as syntax, and removes some obscure problems using them in .if statements. +.Pp +The way that parallel makes are scheduled changed in +NetBSD 4.0 +so that .ORDER and .WAIT apply recursively to the dependent nodes. +The algorithms used may change again in the future. +.Ss Other make dialects +Other make dialects (GNU make, SVR4 make, POSIX make, etc.) do not +support most of the features of +.Nm +as described in this manual. +Most notably: +.Bl -bullet -offset indent +.It +The +.Ic .WAIT +and +.Ic .ORDER +declarations and most functionality pertaining to parallelization. +(GNU make supports parallelization but lacks these features needed to +control it effectively.) +.It +Directives, including for loops and conditionals and most of the +forms of include files. +(GNU make has its own incompatible and less powerful syntax for +conditionals.) +.It +All built-in variables that begin with a dot. +.It +Most of the special sources and targets that begin with a dot, +with the notable exception of +.Ic .PHONY , +.Ic .PRECIOUS , +and +.Ic .SUFFIXES . +.It +Variable modifiers, except for the +.Dl :old=new +string substitution, which does not portably support globbing with +.Ql % +and historically only works on declared suffixes. +.It +The +.Ic $> +variable even in its short form; most makes support this functionality +but its name varies. +.El +.Pp +Some features are somewhat more portable, such as assignment with +.Ic += , +.Ic ?= , +and +.Ic != . +The +.Ic .PATH +functionality is based on an older feature +.Ic VPATH +found in GNU make and many versions of SVR4 make; however, +historically its behavior is too ill-defined (and too buggy) to rely +upon. +.Pp +The +.Ic $@ +and +.Ic $< +variables are more or less universally portable, as is the +.Ic $(MAKE) +variable. +Basic use of suffix rules (for files only in the current directory, +not trying to chain transformations together, etc.) is also reasonably +portable. .Sh SEE ALSO .Xr mkdep 1 .Sh HISTORY Modified: projects/em_mq/contrib/bmake/bmake.cat1 ============================================================================== --- projects/em_mq/contrib/bmake/bmake.cat1 Tue Apr 21 17:02:55 2015 (r281836) +++ projects/em_mq/contrib/bmake/bmake.cat1 Tue Apr 21 19:33:30 2015 (r281837) @@ -122,9 +122,6 @@ DDEESSCCRRIIPPTTIIOONN _v Print debugging information about variable assignment. - _w Print entering and leaving directory messages, pre and - post processing. - _x Run shell commands with --xx so the actual commands are printed as they are executed. @@ -221,6 +218,9 @@ DDEESSCCRRIIPPTTIIOONN --WW Treat any warnings during makefile parsing as errors. + --ww Print entering and leaving directory messages, pre and post pro- + cessing. + --XX Don't export variables passed on the command line to the environ- ment individually. Variables passed on the command line are still exported via the _M_A_K_E_F_L_A_G_S environment variable. This @@ -273,46 +273,55 @@ FFIILLEE DDEEPPEENNDDEENNCC done in the shell. SSHHEELLLL CCOOMMMMAANNDDSS - Each target may have associated with it a series of shell commands, nor- - mally used to create the target. Each of the commands in this script - _m_u_s_t be preceded by a tab. While any target may appear on a dependency - line, only one of these dependencies may be followed by a creation - script, unless the `::::' operator is used. - - If the first characters of the command line are any combination of `@@', - `++', or `--', the command is treated specially. A `@@' causes the command - not to be echoed before it is executed. A `++' causes the command to be - executed even when --nn is given. This is similar to the effect of the - .MAKE special source, except that the effect can be limited to a single - line of a script. A `--' causes any non-zero exit status of the command - line to be ignored. + Each target may have associated with it one or more lines of shell com- + mands, normally used to create the target. Each of the lines in this + script _m_u_s_t be preceded by a tab. (For historical reasons, spaces are + not accepted.) While targets can appear in many dependency lines if + desired, by default only one of these rules may be followed by a creation + script. If the `::::' operator is used, however, all rules may include + scripts and the scripts are executed in the order found. + + Each line is treated as a separate shell command, unless the end of line + is escaped with a backslash (`\') in which case that line and the next + are combined. If the first characters of the command are any combination + of `@@', `++', or `--', the command is treated specially. A `@@' causes the + command not to be echoed before it is executed. A `++' causes the command + to be executed even when --nn is given. This is similar to the effect of + the .MAKE special source, except that the effect can be limited to a sin- + gle line of a script. A `--' in compatibility mode causes any non-zero + exit status of the command line to be ignored. When bbmmaakkee is run in jobs mode with --jj _m_a_x___j_o_b_s, the entire script for - the target is fed to a single instance of the shell. - - In compatibility (non-jobs) mode, each command is run in a separate - process. If the command contains any shell meta characters - (`#=|^(){};&<>*?[]:$`\\n') it will be passed to the shell, otherwise - bbmmaakkee will attempt direct execution. - - Since bbmmaakkee will chdir(2) to `_._O_B_J_D_I_R' before executing any targets, each - child process starts with that as its current working directory. + the target is fed to a single instance of the shell. In compatibility + (non-jobs) mode, each command is run in a separate process. If the com- + mand contains any shell meta characters (`#=|^(){};&<>*?[]:$`\\n') it + will be passed to the shell; otherwise bbmmaakkee will attempt direct execu- + tion. If a line starts with `--' and the shell has ErrCtl enabled then + failure of the command line will be ignored as in compatibility mode. + Otherwise `--' affects the entire job; the script will stop at the first + command line that fails, but the target will not be deemed to have + failed. Makefiles should be written so that the mode of bbmmaakkee operation does not change their behavior. For example, any command which needs to use - ``cd'' or ``chdir'', without side-effect should be put in parenthesis: - + ``cd'' or ``chdir'' without potentially changing the directory for subse- + quent commands should be put in parentheses so it executes in a subshell. + To force the use of one shell, escape the line breaks so as to make the + whole script one command. For example: avoid-chdir-side-effects: @echo Building $@ in `pwd` - @(cd ${.CURDIR} && ${.MAKE} $@) + @(cd ${.CURDIR} && ${MAKE} $@) @echo Back in `pwd` ensure-one-shell-regardless-of-mode: @echo Building $@ in `pwd`; \ - (cd ${.CURDIR} && ${.MAKE} $@); \ + (cd ${.CURDIR} && ${MAKE} $@); \ echo Back in `pwd` + Since bbmmaakkee will chdir(2) to `_._O_B_J_D_I_R' before executing any targets, each + child process starts with that as its current working directory. + VVAARRIIAABBLLEE AASSSSIIGGNNMMEENNTTSS Variables in make are much like variables in the shell, and, by tradi- tion, consist of all upper-case letters. @@ -402,40 +411,47 @@ VVAARRIIAABBLLEE AASSSSIIGG Variables defined as part of the command line. Local variables - Variables that are defined specific to a certain target. The - seven local variables are as follows: + Variables that are defined specific to a certain target. - _._A_L_L_S_R_C The list of all sources for this target; also known as - `_>'. + Local variables are all built in and their values vary magically from + target to target. It is not currently possible to define new local vari- + ables. The seven local variables are as follows: - _._A_R_C_H_I_V_E The name of the archive file. + _._A_L_L_S_R_C The list of all sources for this target; also known as + `_>'. - _._I_M_P_S_R_C In suffix-transformation rules, the name/path of the - source from which the target is to be transformed (the - ``implied'' source); also known as `_<'. It is not - defined in explicit rules. + _._A_R_C_H_I_V_E The name of the archive file; also known as `_!'. - _._M_E_M_B_E_R The name of the archive member. + _._I_M_P_S_R_C In suffix-transformation rules, the name/path of the + source from which the target is to be transformed (the + ``implied'' source); also known as `_<'. It is not + defined in explicit rules. - _._O_O_D_A_T_E The list of sources for this target that were deemed - out-of-date; also known as `_?'. + _._M_E_M_B_E_R The name of the archive member; also known as `_%'. - _._P_R_E_F_I_X The file prefix of the target, containing only the file - portion, no suffix or preceding directory components; - also known as `_*'. + _._O_O_D_A_T_E The list of sources for this target that were deemed out- + of-date; also known as `_?'. - _._T_A_R_G_E_T The name of the target; also known as `_@'. + _._P_R_E_F_I_X The file prefix of the target, containing only the file + portion, no suffix or preceding directory components; + also known as `_*'. The suffix must be one of the known + suffixes declared with ..SSUUFFFFIIXXEESS or it will not be recog- + nized. - The shorter forms `_@', `_?', `_<', `_>', and `_*' are permitted for - backward compatibility with historical makefiles and are not rec- - ommended. The six variables `_@_F', `_@_D', `_<_F', `_<_D', `_*_F', and - `_*_D' are permitted for compatibility with AT&T System V UNIX - makefiles and are not recommended. + _._T_A_R_G_E_T The name of the target; also known as `_@'. - Four of the local variables may be used in sources on dependency - lines because they expand to the proper value for each target on - the line. These variables are `_._T_A_R_G_E_T', `_._P_R_E_F_I_X', `_._A_R_C_H_I_V_E', - and `_._M_E_M_B_E_R'. + The shorter forms (`_>', `_!', `_<', `_%', `_?', `_*', and `_@') are permitted + for backward compatibility with historical makefiles and legacy POSIX + make and are not recommended. + + Variants of these variables with the punctuation followed immediately by + `D' or `F', e.g. `_$_(_@_D_)', are legacy forms equivalent to using the `:H' + and `:T' modifiers. These forms are accepted for compatibility with AT&T + System V UNIX makefiles and POSIX but are not recommended. + + Four of the local variables may be used in sources on dependency lines + because they expand to the proper value for each target on the line. + These variables are `_._T_A_R_G_E_T', `_._P_R_E_F_I_X', `_._A_R_C_H_I_V_E', and `_._M_E_M_B_E_R'. AAddddiittiioonnaall bbuuiilltt--iinn vvaarriiaabblleess In addition, bbmmaakkee sets or knows about the following variables: @@ -1356,19 +1372,58 @@ FFIILLEESS /usr/share/mk system makefile directory CCOOMMPPAATTIIBBIILLIITTYY - The basic make syntax is compatible between different versions of make, + The basic make syntax is compatible between different versions of make; however the special variables, variable modifiers and conditionals are not. - The way that parallel makes are scheduled changed in NetBSD 4.0 so that - .ORDER and .WAIT apply recursively to the dependent nodes. The algo- - rithms used may change again in the future. + OOllddeerr vveerrssiioonnss + An incomplete list of changes in older versions of bbmmaakkee: The way that .for loop variables are substituted changed after NetBSD 5.0 so that they still appear to be variable expansions. In particular this stops them being treated as syntax, and removes some obscure problems using them in .if statements. + The way that parallel makes are scheduled changed in NetBSD 4.0 so that + .ORDER and .WAIT apply recursively to the dependent nodes. The algo- + rithms used may change again in the future. + + OOtthheerr mmaakkee ddiiaalleeccttss + Other make dialects (GNU make, SVR4 make, POSIX make, etc.) do not sup- + port most of the features of bbmmaakkee as described in this manual. Most + notably: + + ++oo The ..WWAAIITT and ..OORRDDEERR declarations and most functionality per- + taining to parallelization. (GNU make supports parallelization + but lacks these features needed to control it effectively.) + + ++oo Directives, including for loops and conditionals and most of + the forms of include files. (GNU make has its own incompatible + and less powerful syntax for conditionals.) + + ++oo All built-in variables that begin with a dot. + + ++oo Most of the special sources and targets that begin with a dot, + with the notable exception of ..PPHHOONNYY, ..PPRREECCIIOOUUSS, and ..SSUUFFFFIIXXEESS. + + ++oo Variable modifiers, except for the + :old=new + string substitution, which does not portably support globbing + with `%' and historically only works on declared suffixes. + + ++oo The $$>> variable even in its short form; most makes support this + functionality but its name varies. + + Some features are somewhat more portable, such as assignment with ++==, ??==, + and !!==. The ..PPAATTHH functionality is based on an older feature VVPPAATTHH found + in GNU make and many versions of SVR4 make; however, historically its + behavior is too ill-defined (and too buggy) to rely upon. + + The $$@@ and $$<< variables are more or less universally portable, as is the + $$((MMAAKKEE)) variable. Basic use of suffix rules (for files only in the cur- + rent directory, not trying to chain transformations together, etc.) is + also reasonably portable. + SSEEEE AALLSSOO mkdep(1) @@ -1394,4 +1449,4 @@ BBUUGGSS There is no way of escaping a space character in a filename. -NetBSD 5.1 February 14, 2014 NetBSD 5.1 +NetBSD 5.1 April 9, 2015 NetBSD 5.1 Modified: projects/em_mq/contrib/bmake/compat.c ============================================================================== --- projects/em_mq/contrib/bmake/compat.c Tue Apr 21 17:02:55 2015 (r281836) +++ projects/em_mq/contrib/bmake/compat.c Tue Apr 21 19:33:30 2015 (r281837) @@ -1,4 +1,4 @@ -/* $NetBSD: compat.c,v 1.94 2014/01/03 00:02:01 sjg Exp $ */ +/* $NetBSD: compat.c,v 1.96 2014/09/07 20:55:34 joerg Exp $ */ /* * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. @@ -70,14 +70,14 @@ */ #ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: compat.c,v 1.94 2014/01/03 00:02:01 sjg Exp $"; +static char rcsid[] = "$NetBSD: compat.c,v 1.96 2014/09/07 20:55:34 joerg Exp $"; #else #include #ifndef lint #if 0 static char sccsid[] = "@(#)compat.c 8.2 (Berkeley) 3/19/94"; #else -__RCSID("$NetBSD: compat.c,v 1.94 2014/01/03 00:02:01 sjg Exp $"); +__RCSID("$NetBSD: compat.c,v 1.96 2014/09/07 20:55:34 joerg Exp $"); #endif #endif /* not lint */ #endif Modified: projects/em_mq/contrib/bmake/configure ============================================================================== Binary file (source and/or target). No diff available. Modified: projects/em_mq/contrib/bmake/configure.in ============================================================================== --- projects/em_mq/contrib/bmake/configure.in Tue Apr 21 17:02:55 2015 (r281836) +++ projects/em_mq/contrib/bmake/configure.in Tue Apr 21 19:33:30 2015 (r281837) @@ -1,6 +1,6 @@ dnl dnl RCSid: -dnl $Id: configure.in,v 1.52 2014/02/15 22:27:59 sjg Exp $ +dnl $Id: configure.in,v 1.53 2014/11/06 01:49:40 sjg Exp $ dnl dnl Process this file with autoconf to produce a configure script dnl @@ -82,6 +82,8 @@ dnl dnl Hurd refuses to define PATH_MAX or MAXPATHLEN if test -x /usr/bin/getconf; then bmake_path_max=`getconf PATH_MAX / 2> /dev/null` + # only a numeric response is useful + test ${bmake_path_max:-0} -gt 0 2> /dev/null || bmake_path_max= fi bmake_path_max=${bmake_path_max:-1024} if test $bmake_path_max -gt 1024; then Modified: projects/em_mq/contrib/bmake/job.c ============================================================================== --- projects/em_mq/contrib/bmake/job.c Tue Apr 21 17:02:55 2015 (r281836) +++ projects/em_mq/contrib/bmake/job.c Tue Apr 21 19:33:30 2015 (r281837) @@ -1,4 +1,4 @@ -/* $NetBSD: job.c,v 1.176 2013/08/04 16:48:15 sjg Exp $ */ +/* $NetBSD: job.c,v 1.180 2015/04/16 13:31:03 joerg Exp $ */ /* * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. @@ -70,14 +70,14 @@ */ #ifndef MAKE_NATIVE -static char rcsid[] = "$NetBSD: job.c,v 1.176 2013/08/04 16:48:15 sjg Exp $"; +static char rcsid[] = "$NetBSD: job.c,v 1.180 2015/04/16 13:31:03 joerg Exp $"; #else #include #ifndef lint #if 0 static char sccsid[] = "@(#)job.c 8.2 (Berkeley) 3/19/94"; #else -__RCSID("$NetBSD: job.c,v 1.176 2013/08/04 16:48:15 sjg Exp $"); +__RCSID("$NetBSD: job.c,v 1.180 2015/04/16 13:31:03 joerg Exp $"); #endif #endif /* not lint */ #endif @@ -744,7 +744,6 @@ JobPrintCommand(void *cmdp, void *jobp) shutUp = DEBUG(LOUD) ? FALSE : TRUE; break; case '-': - job->flags |= JOB_IGNERR; errOff = TRUE; break; case '+': @@ -823,6 +822,7 @@ JobPrintCommand(void *cmdp, void *jobp) * to ignore errors. Set cmdTemplate to use the weirdness * instead of the simple "%s\n" template. */ + job->flags |= JOB_IGNERR; if (!(job->flags & JOB_SILENT) && !shutUp) { if (commandShell->hasEchoCtl) { DBPRINTF("%s\n", commandShell->echoOff); @@ -1376,7 +1376,8 @@ JobExec(Job *job, char **argv) (void)fcntl(0, F_SETFD, 0); (void)lseek(0, (off_t)0, SEEK_SET); - if (Always_pass_job_queue || (job->node->type & OP_MAKE)) { + if (Always_pass_job_queue || + (job->node->type & (OP_MAKE | OP_SUBMAKE))) { /* * Pass job token pipe to submakes. */ @@ -1910,16 +1911,16 @@ end_loop: *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Wed Apr 22 12:39:41 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DC452E59; Wed, 22 Apr 2015 12:39:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BFD561BB2; Wed, 22 Apr 2015 12:39:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3MCdffJ037880; Wed, 22 Apr 2015 12:39:41 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3MCdX6d037656; Wed, 22 Apr 2015 12:39:33 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201504221239.t3MCdX6d037656@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Wed, 22 Apr 2015 12:39:33 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r281852 - in projects/release-install-debug: . bin/cp bin/csh bin/ed bin/expr bin/kill bin/mv bin/pax bin/pkill/tests bin/ps bin/rcp bin/sh bin/sh/bltin bin/sh/tests/builtins bin/sh/tes... 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.20 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: Wed, 22 Apr 2015 12:39:42 -0000 Author: gjb Date: Wed Apr 22 12:39:19 2015 New Revision: 281852 URL: https://svnweb.freebsd.org/changeset/base/281852 Log: MFH: r279077-r281849 Sponsored by: The FreeBSD Foundation Added: projects/release-install-debug/bin/sh/tests/builtins/trap15.0 - copied unchanged from r281849, head/bin/sh/tests/builtins/trap15.0 projects/release-install-debug/bin/sh/tests/builtins/trap16.0 - copied unchanged from r281849, head/bin/sh/tests/builtins/trap16.0 projects/release-install-debug/bin/sh/tests/expansion/ifs6.0 - copied unchanged from r281849, head/bin/sh/tests/expansion/ifs6.0 projects/release-install-debug/bin/sh/tests/expansion/ifs7.0 - copied unchanged from r281849, head/bin/sh/tests/expansion/ifs7.0 projects/release-install-debug/cddl/usr.sbin/dtrace/tests/ - copied from r281849, head/cddl/usr.sbin/dtrace/tests/ projects/release-install-debug/contrib/binutils/binutils/doc/binutils.7 - copied unchanged from r281849, head/contrib/binutils/binutils/doc/binutils.7 projects/release-install-debug/contrib/binutils/gas/doc/as.7 - copied unchanged from r281849, head/contrib/binutils/gas/doc/as.7 projects/release-install-debug/contrib/binutils/ld/ld.7 - copied unchanged from r281849, head/contrib/binutils/ld/ld.7 projects/release-install-debug/contrib/binutils/ld/ldint.7 - copied unchanged from r281849, head/contrib/binutils/ld/ldint.7 projects/release-install-debug/contrib/bmake/mk/cython.mk - copied unchanged from r281849, head/contrib/bmake/mk/cython.mk projects/release-install-debug/contrib/bmake/mk/manifest.mk - copied unchanged from r281849, head/contrib/bmake/mk/manifest.mk projects/release-install-debug/contrib/bmake/mk/mkopt.sh - copied unchanged from r281849, head/contrib/bmake/mk/mkopt.sh projects/release-install-debug/contrib/bmake/mk/whats.mk - copied unchanged from r281849, head/contrib/bmake/mk/whats.mk projects/release-install-debug/contrib/bmake/unit-tests/comment.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/comment.exp projects/release-install-debug/contrib/bmake/unit-tests/comment.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/comment.mk projects/release-install-debug/contrib/bmake/unit-tests/cond1.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/cond1.exp projects/release-install-debug/contrib/bmake/unit-tests/cond1.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/cond1.mk projects/release-install-debug/contrib/bmake/unit-tests/doterror.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/doterror.exp projects/release-install-debug/contrib/bmake/unit-tests/doterror.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/doterror.mk projects/release-install-debug/contrib/bmake/unit-tests/dotwait.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/dotwait.exp projects/release-install-debug/contrib/bmake/unit-tests/dotwait.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/dotwait.mk projects/release-install-debug/contrib/bmake/unit-tests/error.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/error.exp projects/release-install-debug/contrib/bmake/unit-tests/error.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/error.mk projects/release-install-debug/contrib/bmake/unit-tests/escape.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/escape.exp projects/release-install-debug/contrib/bmake/unit-tests/escape.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/escape.mk projects/release-install-debug/contrib/bmake/unit-tests/export-all.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/export-all.exp projects/release-install-debug/contrib/bmake/unit-tests/export-all.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/export-all.mk projects/release-install-debug/contrib/bmake/unit-tests/export-env.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/export-env.exp projects/release-install-debug/contrib/bmake/unit-tests/export-env.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/export-env.mk projects/release-install-debug/contrib/bmake/unit-tests/export.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/export.exp projects/release-install-debug/contrib/bmake/unit-tests/export.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/export.mk projects/release-install-debug/contrib/bmake/unit-tests/forloop.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/forloop.exp projects/release-install-debug/contrib/bmake/unit-tests/forloop.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/forloop.mk projects/release-install-debug/contrib/bmake/unit-tests/forsubst.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/forsubst.exp projects/release-install-debug/contrib/bmake/unit-tests/forsubst.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/forsubst.mk projects/release-install-debug/contrib/bmake/unit-tests/hash.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/hash.exp projects/release-install-debug/contrib/bmake/unit-tests/hash.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/hash.mk projects/release-install-debug/contrib/bmake/unit-tests/impsrc.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/impsrc.exp projects/release-install-debug/contrib/bmake/unit-tests/impsrc.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/impsrc.mk projects/release-install-debug/contrib/bmake/unit-tests/misc.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/misc.exp projects/release-install-debug/contrib/bmake/unit-tests/misc.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/misc.mk projects/release-install-debug/contrib/bmake/unit-tests/moderrs.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/moderrs.exp projects/release-install-debug/contrib/bmake/unit-tests/moderrs.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/moderrs.mk projects/release-install-debug/contrib/bmake/unit-tests/modmatch.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/modmatch.exp projects/release-install-debug/contrib/bmake/unit-tests/modmatch.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/modmatch.mk projects/release-install-debug/contrib/bmake/unit-tests/modmisc.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/modmisc.exp projects/release-install-debug/contrib/bmake/unit-tests/modmisc.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/modmisc.mk projects/release-install-debug/contrib/bmake/unit-tests/modorder.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/modorder.exp projects/release-install-debug/contrib/bmake/unit-tests/modorder.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/modorder.mk projects/release-install-debug/contrib/bmake/unit-tests/modts.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/modts.exp projects/release-install-debug/contrib/bmake/unit-tests/modts.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/modts.mk projects/release-install-debug/contrib/bmake/unit-tests/modword.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/modword.exp projects/release-install-debug/contrib/bmake/unit-tests/modword.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/modword.mk projects/release-install-debug/contrib/bmake/unit-tests/order.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/order.exp projects/release-install-debug/contrib/bmake/unit-tests/order.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/order.mk projects/release-install-debug/contrib/bmake/unit-tests/phony-end.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/phony-end.exp projects/release-install-debug/contrib/bmake/unit-tests/phony-end.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/phony-end.mk projects/release-install-debug/contrib/bmake/unit-tests/posix.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/posix.exp projects/release-install-debug/contrib/bmake/unit-tests/posix.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/posix.mk projects/release-install-debug/contrib/bmake/unit-tests/posix1.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/posix1.exp projects/release-install-debug/contrib/bmake/unit-tests/posix1.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/posix1.mk projects/release-install-debug/contrib/bmake/unit-tests/qequals.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/qequals.exp projects/release-install-debug/contrib/bmake/unit-tests/qequals.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/qequals.mk projects/release-install-debug/contrib/bmake/unit-tests/suffixes.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/suffixes.exp projects/release-install-debug/contrib/bmake/unit-tests/suffixes.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/suffixes.mk projects/release-install-debug/contrib/bmake/unit-tests/sunshcmd.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/sunshcmd.exp projects/release-install-debug/contrib/bmake/unit-tests/sunshcmd.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/sunshcmd.mk projects/release-install-debug/contrib/bmake/unit-tests/sysv.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/sysv.exp projects/release-install-debug/contrib/bmake/unit-tests/sysv.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/sysv.mk projects/release-install-debug/contrib/bmake/unit-tests/ternary.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/ternary.exp projects/release-install-debug/contrib/bmake/unit-tests/ternary.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/ternary.mk projects/release-install-debug/contrib/bmake/unit-tests/unexport-env.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/unexport-env.exp projects/release-install-debug/contrib/bmake/unit-tests/unexport-env.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/unexport-env.mk projects/release-install-debug/contrib/bmake/unit-tests/unexport.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/unexport.exp projects/release-install-debug/contrib/bmake/unit-tests/unexport.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/unexport.mk projects/release-install-debug/contrib/bmake/unit-tests/varcmd.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/varcmd.exp projects/release-install-debug/contrib/bmake/unit-tests/varcmd.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/varcmd.mk projects/release-install-debug/contrib/bmake/unit-tests/varmisc.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/varmisc.exp projects/release-install-debug/contrib/bmake/unit-tests/varmisc.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/varmisc.mk projects/release-install-debug/contrib/bmake/unit-tests/varshell.exp - copied unchanged from r281849, head/contrib/bmake/unit-tests/varshell.exp projects/release-install-debug/contrib/bmake/unit-tests/varshell.mk - copied unchanged from r281849, head/contrib/bmake/unit-tests/varshell.mk projects/release-install-debug/contrib/compiler-rt/include/sanitizer/coverage_interface.h - copied unchanged from r281849, head/contrib/compiler-rt/include/sanitizer/coverage_interface.h projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_activation_flags.inc - copied unchanged from r281849, head/contrib/compiler-rt/lib/asan/asan_activation_flags.inc projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_allocator.cc - copied unchanged from r281849, head/contrib/compiler-rt/lib/asan/asan_allocator.cc projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_flags.cc - copied unchanged from r281849, head/contrib/compiler-rt/lib/asan/asan_flags.cc projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_flags.inc - copied unchanged from r281849, head/contrib/compiler-rt/lib/asan/asan_flags.inc projects/release-install-debug/contrib/compiler-rt/lib/builtins/fixtfdi.c - copied unchanged from r281849, head/contrib/compiler-rt/lib/builtins/fixtfdi.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/fixtfsi.c - copied unchanged from r281849, head/contrib/compiler-rt/lib/builtins/fixtfsi.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/fixtfti.c - copied unchanged from r281849, head/contrib/compiler-rt/lib/builtins/fixtfti.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/fixunstfdi.c - copied unchanged from r281849, head/contrib/compiler-rt/lib/builtins/fixunstfdi.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/fixunstfsi.c - copied unchanged from r281849, head/contrib/compiler-rt/lib/builtins/fixunstfsi.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/fixunstfti.c - copied unchanged from r281849, head/contrib/compiler-rt/lib/builtins/fixunstfti.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/floatditf.c - copied unchanged from r281849, head/contrib/compiler-rt/lib/builtins/floatditf.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/floatunditf.c - copied unchanged from r281849, head/contrib/compiler-rt/lib/builtins/floatunditf.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/fp_fixint_impl.inc - copied unchanged from r281849, head/contrib/compiler-rt/lib/builtins/fp_fixint_impl.inc projects/release-install-debug/contrib/compiler-rt/lib/builtins/fp_fixuint_impl.inc - copied unchanged from r281849, head/contrib/compiler-rt/lib/builtins/fp_fixuint_impl.inc projects/release-install-debug/contrib/compiler-rt/lib/builtins/multc3.c - copied unchanged from r281849, head/contrib/compiler-rt/lib/builtins/multc3.c projects/release-install-debug/contrib/compiler-rt/lib/dfsan/dfsan_flags.inc - copied unchanged from r281849, head/contrib/compiler-rt/lib/dfsan/dfsan_flags.inc projects/release-install-debug/contrib/compiler-rt/lib/lsan/lsan_flags.inc - copied unchanged from r281849, head/contrib/compiler-rt/lib/lsan/lsan_flags.inc projects/release-install-debug/contrib/compiler-rt/lib/msan/msan_flags.inc - copied unchanged from r281849, head/contrib/compiler-rt/lib/msan/msan_flags.inc projects/release-install-debug/contrib/compiler-rt/lib/msan/msan_poisoning.cc - copied unchanged from r281849, head/contrib/compiler-rt/lib/msan/msan_poisoning.cc projects/release-install-debug/contrib/compiler-rt/lib/msan/msan_poisoning.h - copied unchanged from r281849, head/contrib/compiler-rt/lib/msan/msan_poisoning.h projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.cc - copied unchanged from r281849, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.h - copied unchanged from r281849, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.h projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc - copied unchanged from r281849, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_interface_internal.h - copied unchanged from r281849, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_interface_internal.h projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.inc - copied unchanged from r281849, head/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.inc projects/release-install-debug/contrib/compiler-rt/lib/ubsan/ubsan_flags.inc - copied unchanged from r281849, head/contrib/compiler-rt/lib/ubsan/ubsan_flags.inc projects/release-install-debug/contrib/diff/doc/diff.7 - copied unchanged from r281849, head/contrib/diff/doc/diff.7 projects/release-install-debug/contrib/gcc/config/aarch64/ - copied from r281849, head/contrib/gcc/config/aarch64/ projects/release-install-debug/contrib/gperf/doc/gperf.7 - copied unchanged from r281849, head/contrib/gperf/doc/gperf.7 projects/release-install-debug/contrib/libucl/klib/ - copied from r281849, head/contrib/libucl/klib/ projects/release-install-debug/contrib/libucl/tests/basic/14.in - copied unchanged from r281849, head/contrib/libucl/tests/basic/14.in projects/release-install-debug/contrib/libucl/tests/basic/14.res - copied unchanged from r281849, head/contrib/libucl/tests/basic/14.res projects/release-install-debug/contrib/llvm/FREEBSD-Xlist - copied unchanged from r281849, head/contrib/llvm/FREEBSD-Xlist projects/release-install-debug/contrib/llvm/include/llvm/Analysis/AssumptionCache.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/Analysis/AssumptionCache.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/FunctionTargetTransformInfo.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/Analysis/FunctionTargetTransformInfo.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/DIE.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/CodeGen/DIE.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/ForwardControlFlowIntegrity.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/CodeGen/ForwardControlFlowIntegrity.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/MachineCombinerPattern.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/CodeGen/MachineCombinerPattern.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/PBQPRAConstraint.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/CodeGen/PBQPRAConstraint.h projects/release-install-debug/contrib/llvm/include/llvm/DebugInfo/DWARFAbbreviationDeclaration.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/DebugInfo/DWARFAbbreviationDeclaration.h projects/release-install-debug/contrib/llvm/include/llvm/DebugInfo/DWARFAcceleratorTable.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/DebugInfo/DWARFAcceleratorTable.h projects/release-install-debug/contrib/llvm/include/llvm/DebugInfo/DWARFCompileUnit.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/DebugInfo/DWARFCompileUnit.h projects/release-install-debug/contrib/llvm/include/llvm/DebugInfo/DWARFContext.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/DebugInfo/DWARFContext.h projects/release-install-debug/contrib/llvm/include/llvm/DebugInfo/DWARFDebugAbbrev.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/DebugInfo/DWARFDebugAbbrev.h projects/release-install-debug/contrib/llvm/include/llvm/DebugInfo/DWARFDebugArangeSet.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/DebugInfo/DWARFDebugArangeSet.h projects/release-install-debug/contrib/llvm/include/llvm/DebugInfo/DWARFDebugAranges.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/DebugInfo/DWARFDebugAranges.h projects/release-install-debug/contrib/llvm/include/llvm/DebugInfo/DWARFDebugFrame.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/DebugInfo/DWARFDebugFrame.h projects/release-install-debug/contrib/llvm/include/llvm/DebugInfo/DWARFDebugInfoEntry.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/DebugInfo/DWARFDebugInfoEntry.h projects/release-install-debug/contrib/llvm/include/llvm/DebugInfo/DWARFDebugLine.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/DebugInfo/DWARFDebugLine.h projects/release-install-debug/contrib/llvm/include/llvm/DebugInfo/DWARFDebugLoc.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/DebugInfo/DWARFDebugLoc.h projects/release-install-debug/contrib/llvm/include/llvm/DebugInfo/DWARFDebugRangeList.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/DebugInfo/DWARFDebugRangeList.h projects/release-install-debug/contrib/llvm/include/llvm/DebugInfo/DWARFRelocMap.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/DebugInfo/DWARFRelocMap.h projects/release-install-debug/contrib/llvm/include/llvm/DebugInfo/DWARFSection.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/DebugInfo/DWARFSection.h projects/release-install-debug/contrib/llvm/include/llvm/DebugInfo/DWARFTypeUnit.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/DebugInfo/DWARFTypeUnit.h projects/release-install-debug/contrib/llvm/include/llvm/DebugInfo/DWARFUnit.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/DebugInfo/DWARFUnit.h projects/release-install-debug/contrib/llvm/include/llvm/IR/Metadata.def - copied unchanged from r281849, head/contrib/llvm/include/llvm/IR/Metadata.def projects/release-install-debug/contrib/llvm/include/llvm/IR/MetadataTracking.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/IR/MetadataTracking.h projects/release-install-debug/contrib/llvm/include/llvm/IR/PassManagerInternal.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/IR/PassManagerInternal.h projects/release-install-debug/contrib/llvm/include/llvm/IR/Statepoint.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/IR/Statepoint.h projects/release-install-debug/contrib/llvm/include/llvm/IR/TrackingMDRef.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/IR/TrackingMDRef.h projects/release-install-debug/contrib/llvm/include/llvm/IR/UseListOrder.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/IR/UseListOrder.h projects/release-install-debug/contrib/llvm/include/llvm/ProfileData/CoverageMapping.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/ProfileData/CoverageMapping.h projects/release-install-debug/contrib/llvm/include/llvm/ProfileData/CoverageMappingReader.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/ProfileData/CoverageMappingReader.h projects/release-install-debug/contrib/llvm/include/llvm/ProfileData/CoverageMappingWriter.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/ProfileData/CoverageMappingWriter.h projects/release-install-debug/contrib/llvm/include/llvm/ProfileData/SampleProf.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/ProfileData/SampleProf.h projects/release-install-debug/contrib/llvm/include/llvm/ProfileData/SampleProfReader.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/ProfileData/SampleProfReader.h projects/release-install-debug/contrib/llvm/include/llvm/ProfileData/SampleProfWriter.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/ProfileData/SampleProfWriter.h projects/release-install-debug/contrib/llvm/include/llvm/Support/ELFRelocs/ - copied from r281849, head/contrib/llvm/include/llvm/Support/ELFRelocs/ projects/release-install-debug/contrib/llvm/include/llvm/Support/Options.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/Support/Options.h projects/release-install-debug/contrib/llvm/include/llvm/Support/StreamingMemoryObject.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/Support/StreamingMemoryObject.h projects/release-install-debug/contrib/llvm/include/llvm/Support/UniqueLock.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/Support/UniqueLock.h projects/release-install-debug/contrib/llvm/include/llvm/Transforms/Utils/SymbolRewriter.h - copied unchanged from r281849, head/contrib/llvm/include/llvm/Transforms/Utils/SymbolRewriter.h projects/release-install-debug/contrib/llvm/lib/Analysis/AssumptionCache.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Analysis/AssumptionCache.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/CFLAliasAnalysis.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Analysis/CFLAliasAnalysis.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/FunctionTargetTransformInfo.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Analysis/FunctionTargetTransformInfo.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/ScopedNoAliasAA.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Analysis/ScopedNoAliasAA.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/StratifiedSets.h - copied unchanged from r281849, head/contrib/llvm/lib/Analysis/StratifiedSets.h projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp - copied unchanged from r281849, head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h - copied unchanged from r281849, head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.cpp - copied unchanged from r281849, head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h - copied unchanged from r281849, head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/Win64Exception.h - copied unchanged from r281849, head/contrib/llvm/lib/CodeGen/AsmPrinter/Win64Exception.h projects/release-install-debug/contrib/llvm/lib/CodeGen/AtomicExpandPass.cpp - copied unchanged from r281849, head/contrib/llvm/lib/CodeGen/AtomicExpandPass.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/ForwardControlFlowIntegrity.cpp - copied unchanged from r281849, head/contrib/llvm/lib/CodeGen/ForwardControlFlowIntegrity.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/MachineCombiner.cpp - copied unchanged from r281849, head/contrib/llvm/lib/CodeGen/MachineCombiner.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp - copied unchanged from r281849, head/contrib/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.h - copied unchanged from r281849, head/contrib/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.h projects/release-install-debug/contrib/llvm/lib/CodeGen/StatepointExampleGC.cpp - copied unchanged from r281849, head/contrib/llvm/lib/CodeGen/StatepointExampleGC.cpp projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFAcceleratorTable.cpp - copied unchanged from r281849, head/contrib/llvm/lib/DebugInfo/DWARFAcceleratorTable.cpp projects/release-install-debug/contrib/llvm/lib/DebugInfo/SyntaxHighlighting.cpp - copied unchanged from r281849, head/contrib/llvm/lib/DebugInfo/SyntaxHighlighting.cpp projects/release-install-debug/contrib/llvm/lib/DebugInfo/SyntaxHighlighting.h - copied unchanged from r281849, head/contrib/llvm/lib/DebugInfo/SyntaxHighlighting.h projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp - copied unchanged from r281849, head/contrib/llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/MCJIT/ObjectBuffer.h - copied unchanged from r281849, head/contrib/llvm/lib/ExecutionEngine/MCJIT/ObjectBuffer.h projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp - copied unchanged from r281849, head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCheckerImpl.h - copied unchanged from r281849, head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCheckerImpl.h projects/release-install-debug/contrib/llvm/lib/IR/MetadataTracking.cpp - copied unchanged from r281849, head/contrib/llvm/lib/IR/MetadataTracking.cpp projects/release-install-debug/contrib/llvm/lib/IR/Statepoint.cpp - copied unchanged from r281849, head/contrib/llvm/lib/IR/Statepoint.cpp projects/release-install-debug/contrib/llvm/lib/IR/UseListOrder.cpp - copied unchanged from r281849, head/contrib/llvm/lib/IR/UseListOrder.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCDisassembler/MCDisassembler.cpp - copied unchanged from r281849, head/contrib/llvm/lib/MC/MCDisassembler/MCDisassembler.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCDisassembler/MCExternalSymbolizer.cpp - copied unchanged from r281849, head/contrib/llvm/lib/MC/MCDisassembler/MCExternalSymbolizer.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCDisassembler/MCRelocationInfo.cpp - copied unchanged from r281849, head/contrib/llvm/lib/MC/MCDisassembler/MCRelocationInfo.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCWinEH.cpp - copied unchanged from r281849, head/contrib/llvm/lib/MC/MCWinEH.cpp projects/release-install-debug/contrib/llvm/lib/ProfileData/CoverageMapping.cpp - copied unchanged from r281849, head/contrib/llvm/lib/ProfileData/CoverageMapping.cpp projects/release-install-debug/contrib/llvm/lib/ProfileData/CoverageMappingReader.cpp - copied unchanged from r281849, head/contrib/llvm/lib/ProfileData/CoverageMappingReader.cpp projects/release-install-debug/contrib/llvm/lib/ProfileData/CoverageMappingWriter.cpp - copied unchanged from r281849, head/contrib/llvm/lib/ProfileData/CoverageMappingWriter.cpp projects/release-install-debug/contrib/llvm/lib/ProfileData/SampleProf.cpp - copied unchanged from r281849, head/contrib/llvm/lib/ProfileData/SampleProf.cpp projects/release-install-debug/contrib/llvm/lib/ProfileData/SampleProfReader.cpp - copied unchanged from r281849, head/contrib/llvm/lib/ProfileData/SampleProfReader.cpp projects/release-install-debug/contrib/llvm/lib/ProfileData/SampleProfWriter.cpp - copied unchanged from r281849, head/contrib/llvm/lib/ProfileData/SampleProfWriter.cpp projects/release-install-debug/contrib/llvm/lib/Support/MathExtras.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Support/MathExtras.cpp projects/release-install-debug/contrib/llvm/lib/Support/Options.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Support/Options.cpp projects/release-install-debug/contrib/llvm/lib/Support/StreamingMemoryObject.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Support/StreamingMemoryObject.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64A53Fix835769.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Target/AArch64/AArch64A53Fix835769.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64A57FPLoadBalancing.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Target/AArch64/AArch64A57FPLoadBalancing.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64CallingConvention.h - copied unchanged from r281849, head/contrib/llvm/lib/Target/AArch64/AArch64CallingConvention.h projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64ConditionOptimizer.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Target/AArch64/AArch64ConditionOptimizer.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64MachineCombinerPattern.h - copied unchanged from r281849, head/contrib/llvm/lib/Target/AArch64/AArch64MachineCombinerPattern.h projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.h - copied unchanged from r281849, head/contrib/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.h - copied unchanged from r281849, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendDarwin.h - copied unchanged from r281849, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendDarwin.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendELF.h - copied unchanged from r281849, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendELF.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendWinCOFF.h - copied unchanged from r281849, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendWinCOFF.h projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/Disassembler/ - copied from r281849, head/contrib/llvm/lib/Target/Hexagon/Disassembler/ projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonAsmBackend.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonAsmBackend.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonELFObjectWriter.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonELFObjectWriter.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.h - copied unchanged from r281849, head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.h projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.h - copied unchanged from r281849, head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.h - copied unchanged from r281849, head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.h projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXLowerStructArgs.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Target/NVPTX/NVPTXLowerStructArgs.cpp projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.h - copied unchanged from r281849, head/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.h projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCInstrSPE.td - copied unchanged from r281849, head/contrib/llvm/lib/Target/PowerPC/PPCInstrSPE.td projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCScheduleP8.td - copied unchanged from r281849, head/contrib/llvm/lib/Target/PowerPC/PPCScheduleP8.td projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPUAlwaysInlinePass.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Target/R600/AMDGPUAlwaysInlinePass.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDKernelCodeT.h - copied unchanged from r281849, head/contrib/llvm/lib/Target/R600/AMDKernelCodeT.h projects/release-install-debug/contrib/llvm/lib/Target/R600/AsmParser/ - copied from r281849, head/contrib/llvm/lib/Target/R600/AsmParser/ projects/release-install-debug/contrib/llvm/lib/Target/R600/CIInstructions.td - copied unchanged from r281849, head/contrib/llvm/lib/Target/R600/CIInstructions.td projects/release-install-debug/contrib/llvm/lib/Target/R600/SIFoldOperands.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Target/R600/SIFoldOperands.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/SILoadStoreOptimizer.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Target/R600/SILoadStoreOptimizer.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/SIPrepareScratchRegs.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Target/R600/SIPrepareScratchRegs.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/VIInstrFormats.td - copied unchanged from r281849, head/contrib/llvm/lib/Target/R600/VIInstrFormats.td projects/release-install-debug/contrib/llvm/lib/Target/R600/VIInstructions.td - copied unchanged from r281849, head/contrib/llvm/lib/Target/R600/VIInstructions.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86CallFrameOptimization.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Target/X86/X86CallFrameOptimization.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/X86InstrSGX.td - copied unchanged from r281849, head/contrib/llvm/lib/Target/X86/X86InstrSGX.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86IntrinsicsInfo.h - copied unchanged from r281849, head/contrib/llvm/lib/Target/X86/X86IntrinsicsInfo.h projects/release-install-debug/contrib/llvm/lib/Target/X86/X86ScheduleBtVer2.td - copied unchanged from r281849, head/contrib/llvm/lib/Target/X86/X86ScheduleBtVer2.td projects/release-install-debug/contrib/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/AlignmentFromAssumptions.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Transforms/Scalar/AlignmentFromAssumptions.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/SymbolRewriter.cpp - copied unchanged from r281849, head/contrib/llvm/lib/Transforms/Utils/SymbolRewriter.cpp projects/release-install-debug/contrib/llvm/patches/patch-01-freebsd-kprintf.diff - copied unchanged from r281849, head/contrib/llvm/patches/patch-01-freebsd-kprintf.diff projects/release-install-debug/contrib/llvm/patches/patch-02-clang-vendor-suffix.diff - copied unchanged from r281849, head/contrib/llvm/patches/patch-02-clang-vendor-suffix.diff projects/release-install-debug/contrib/llvm/patches/patch-03-add-CC-aliases.diff - copied unchanged from r281849, head/contrib/llvm/patches/patch-03-add-CC-aliases.diff projects/release-install-debug/contrib/llvm/patches/patch-04-add-llvm-gvn-option.diff - copied unchanged from r281849, head/contrib/llvm/patches/patch-04-add-llvm-gvn-option.diff projects/release-install-debug/contrib/llvm/patches/patch-05-enable-armv6-clrex.diff - copied unchanged from r281849, head/contrib/llvm/patches/patch-05-enable-armv6-clrex.diff projects/release-install-debug/contrib/llvm/patches/patch-06-clang-add-mips-triples.diff - copied unchanged from r281849, head/contrib/llvm/patches/patch-06-clang-add-mips-triples.diff projects/release-install-debug/contrib/llvm/patches/patch-07-llvm-r227752-boot2-shrink.diff - copied unchanged from r281849, head/contrib/llvm/patches/patch-07-llvm-r227752-boot2-shrink.diff projects/release-install-debug/contrib/llvm/patches/patch-08-llvm-r227089-fix-mips-i128.diff - copied unchanged from r281849, head/contrib/llvm/patches/patch-08-llvm-r227089-fix-mips-i128.diff projects/release-install-debug/contrib/llvm/patches/patch-09-llvm-r230058-indirectbrs-assert.diff - copied unchanged from r281849, head/contrib/llvm/patches/patch-09-llvm-r230058-indirectbrs-assert.diff projects/release-install-debug/contrib/llvm/patches/patch-10-llvm-r230348-arm-fix-bad-ha.diff - copied unchanged from r281849, head/contrib/llvm/patches/patch-10-llvm-r230348-arm-fix-bad-ha.diff projects/release-install-debug/contrib/llvm/patches/patch-11-llvm-r231227-aarch64-tls-relocs.diff - copied unchanged from r281849, head/contrib/llvm/patches/patch-11-llvm-r231227-aarch64-tls-relocs.diff projects/release-install-debug/contrib/llvm/patches/patch-12-clang-r227115-constantarraytype.diff - copied unchanged from r281849, head/contrib/llvm/patches/patch-12-clang-r227115-constantarraytype.diff projects/release-install-debug/contrib/llvm/patches/patch-13-llvm-r229911-uleb128-commas.diff - copied unchanged from r281849, head/contrib/llvm/patches/patch-13-llvm-r229911-uleb128-commas.diff projects/release-install-debug/contrib/llvm/tools/clang/FREEBSD-Xlist - copied unchanged from r281849, head/contrib/llvm/tools/clang/FREEBSD-Xlist projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/CodeInjector.h - copied unchanged from r281849, head/contrib/llvm/tools/clang/include/clang/Analysis/CodeInjector.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsLe64.def - copied unchanged from r281849, head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsLe64.def projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/SanitizerBlacklist.h - copied unchanged from r281849, head/contrib/llvm/tools/clang/include/clang/Basic/SanitizerBlacklist.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.h - copied unchanged from r281849, head/contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticReader.h - copied unchanged from r281849, head/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticReader.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnostics.h - copied unchanged from r281849, head/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnostics.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/ModelConsumer.h - copied unchanged from r281849, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/ModelConsumer.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Tooling/Core/ - copied from r281849, head/contrib/llvm/tools/clang/include/clang/Tooling/Core/ projects/release-install-debug/contrib/llvm/tools/clang/lib/Analysis/CodeInjector.cpp - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/Analysis/CodeInjector.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Basic/SanitizerBlacklist.cpp - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/Basic/SanitizerBlacklist.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Basic/Sanitizers.cpp - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/Basic/Sanitizers.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.cpp - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.h - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.h projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.cpp - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.h - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Driver/CrossWindowsToolChain.cpp - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/Driver/CrossWindowsToolChain.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Driver/MSVCToolChain.cpp - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/Driver/MSVCToolChain.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.cpp - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.h - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/CodeGenOptions.cpp - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/Frontend/CodeGenOptions.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticReader.cpp - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticReader.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Headers/__stddef_max_align_t.h - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/Headers/__stddef_max_align_t.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Headers/adxintrin.h - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/Headers/adxintrin.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Headers/avx512bwintrin.h - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/Headers/avx512bwintrin.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Headers/avx512erintrin.h - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/Headers/avx512erintrin.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Headers/avx512fintrin.h - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/Headers/avx512fintrin.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Headers/avx512vlbwintrin.h - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/Headers/avx512vlbwintrin.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Headers/avx512vlintrin.h - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/Headers/avx512vlintrin.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Headers/stdatomic.h - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/Headers/stdatomic.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Headers/vadefs.h - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/Headers/vadefs.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaCUDA.cpp - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/Sema/SemaCUDA.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelConsumer.cpp - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelConsumer.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.h - copied unchanged from r281849, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Tooling/Core/ - copied from r281849, head/contrib/llvm/tools/clang/lib/Tooling/Core/ projects/release-install-debug/contrib/llvm/tools/lldb/FREEBSD-Xlist - copied unchanged from r281849, head/contrib/llvm/tools/lldb/FREEBSD-Xlist projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/SBExecutionContext.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/API/SBExecutionContext.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/SBThreadCollection.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/API/SBThreadCollection.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/SBThreadPlan.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/API/SBThreadPlan.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseMap.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseMap.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/DataFormatters/StringPrinter.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/DataFormatters/StringPrinter.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeValidator.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeValidator.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Expression/ClangModulesDeclVendor.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Expression/ClangModulesDeclVendor.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/ConnectionFileDescriptor.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Host/ConnectionFileDescriptor.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeProcess.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeProcess.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeProcessBase.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeProcessBase.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThread.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThread.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThreadBase.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThreadBase.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThreadForward.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThreadForward.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/HostThread.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Host/HostThread.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/MonitoringProcessLauncher.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Host/MonitoringProcessLauncher.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/PipeBase.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Host/PipeBase.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/ProcessLauncher.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Host/ProcessLauncher.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/ThisThread.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Host/ThisThread.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/ThreadLauncher.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Host/ThreadLauncher.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/freebsd/HostThreadFreeBSD.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Host/freebsd/HostThreadFreeBSD.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/posix/ConnectionFileDescriptorPosix.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Host/posix/ConnectionFileDescriptorPosix.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostThreadPosix.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostThreadPosix.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/posix/PipePosix.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Host/posix/PipePosix.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/posix/ProcessLauncherPosix.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Host/posix/ProcessLauncherPosix.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueChar.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueChar.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Symbol/CompactUnwindInfo.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Symbol/CompactUnwindInfo.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Symbol/DeclVendor.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Symbol/DeclVendor.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntime.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntime.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntimeStopInfo.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntimeStopInfo.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Target/MemoryHistory.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Target/MemoryHistory.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Target/ThreadCollection.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Target/ThreadCollection.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanPython.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanPython.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Utility/ProcessStructReader.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Utility/ProcessStructReader.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Utility/RegisterNumber.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/include/lldb/Utility/RegisterNumber.h projects/release-install-debug/contrib/llvm/tools/lldb/source/API/SBExecutionContext.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/API/SBExecutionContext.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/API/SBThreadCollection.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/API/SBThreadCollection.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/API/SBThreadPlan.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/API/SBThreadPlan.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/LibCxxInitializerList.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/DataFormatters/LibCxxInitializerList.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/LibCxxVector.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/DataFormatters/LibCxxVector.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/NSIndexPath.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/DataFormatters/NSIndexPath.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/StringPrinter.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/DataFormatters/StringPrinter.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/TypeValidator.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/DataFormatters/TypeValidator.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Expression/ClangModulesDeclVendor.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Expression/ClangModulesDeclVendor.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/common/HostNativeThreadBase.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Host/common/HostNativeThreadBase.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/common/HostProcess.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Host/common/HostProcess.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/common/HostThread.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Host/common/HostThread.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/common/MonitoringProcessLauncher.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Host/common/MonitoringProcessLauncher.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/common/PipeBase.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Host/common/PipeBase.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/common/ThisThread.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Host/common/ThisThread.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/common/ThreadLauncher.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Host/common/ThreadLauncher.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/freebsd/HostThreadFreeBSD.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Host/freebsd/HostThreadFreeBSD.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/freebsd/ThisThread.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Host/freebsd/ThisThread.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/posix/HostThreadPosix.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Host/posix/HostThreadPosix.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/posix/PipePosix.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Host/posix/PipePosix.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/posix/ProcessLauncherPosix.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Host/posix/ProcessLauncherPosix.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/OptionValueChar.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Interpreter/OptionValueChar.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/ - copied from r281849, head/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/ projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/ - copied from r281849, head/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/ projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ - copied from r281849, head/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/MemoryHistory/ - copied from r281849, head/contrib/llvm/tools/lldb/source/Plugins/MemoryHistory/ projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextPOSIXProcessMonitor_powerpc.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextPOSIXProcessMonitor_powerpc.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextPOSIXProcessMonitor_powerpc.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextPOSIXProcessMonitor_powerpc.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_powerpc.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_powerpc.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_powerpc.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_powerpc.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_powerpc.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_powerpc.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_powerpc.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_powerpc.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Symbol/CompactUnwindInfo.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Symbol/CompactUnwindInfo.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/InstrumentationRuntime.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Target/InstrumentationRuntime.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/InstrumentationRuntimeStopInfo.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Target/InstrumentationRuntimeStopInfo.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/MemoryHistory.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Target/MemoryHistory.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/ThreadCollection.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Target/ThreadCollection.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/ThreadPlanPython.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Target/ThreadPlanPython.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Utility/RegisterNumber.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Utility/RegisterNumber.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Utility/UriParser.cpp - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Utility/UriParser.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Utility/UriParser.h - copied unchanged from r281849, head/contrib/llvm/tools/lldb/source/Utility/UriParser.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/compact-unwind/ - copied from r281849, head/contrib/llvm/tools/lldb/tools/compact-unwind/ projects/release-install-debug/contrib/llvm/tools/llvm-cov/ - copied from r281849, head/contrib/llvm/tools/llvm-cov/ projects/release-install-debug/contrib/llvm/tools/llvm-profdata/ - copied from r281849, head/contrib/llvm/tools/llvm-profdata/ projects/release-install-debug/contrib/mdocml/compat_strtonum.c - copied unchanged from r281849, head/contrib/mdocml/compat_strtonum.c projects/release-install-debug/contrib/mdocml/test-strtonum.c - copied unchanged from r281849, head/contrib/mdocml/test-strtonum.c projects/release-install-debug/contrib/ntp/FREEBSD-Xlist - copied unchanged from r281849, head/contrib/ntp/FREEBSD-Xlist projects/release-install-debug/contrib/ntp/FREEBSD-upgrade - copied unchanged from r281849, head/contrib/ntp/FREEBSD-upgrade projects/release-install-debug/contrib/ntp/check-libopts.mf - copied unchanged from r281849, head/contrib/ntp/check-libopts.mf projects/release-install-debug/contrib/ntp/deps-ver - copied unchanged from r281849, head/contrib/ntp/deps-ver projects/release-install-debug/contrib/ntp/depsver.mf - copied unchanged from r281849, head/contrib/ntp/depsver.mf projects/release-install-debug/contrib/ntp/html/access.html - copied unchanged from r281849, head/contrib/ntp/html/access.html projects/release-install-debug/contrib/ntp/html/authentic.html - copied unchanged from r281849, head/contrib/ntp/html/authentic.html projects/release-install-debug/contrib/ntp/html/autokey.html - copied unchanged from r281849, head/contrib/ntp/html/autokey.html projects/release-install-debug/contrib/ntp/html/bugs.html - copied unchanged from r281849, head/contrib/ntp/html/bugs.html projects/release-install-debug/contrib/ntp/html/build.html - copied unchanged from r281849, head/contrib/ntp/html/build.html projects/release-install-debug/contrib/ntp/html/clock.html - copied unchanged from r281849, head/contrib/ntp/html/clock.html projects/release-install-debug/contrib/ntp/html/cluster.html - copied unchanged from r281849, head/contrib/ntp/html/cluster.html projects/release-install-debug/contrib/ntp/html/comdex.html - copied unchanged from r281849, head/contrib/ntp/html/comdex.html projects/release-install-debug/contrib/ntp/html/config.html - copied unchanged from r281849, head/contrib/ntp/html/config.html projects/release-install-debug/contrib/ntp/html/decode.html - copied unchanged from r281849, head/contrib/ntp/html/decode.html projects/release-install-debug/contrib/ntp/html/discipline.html - copied unchanged from r281849, head/contrib/ntp/html/discipline.html projects/release-install-debug/contrib/ntp/html/discover.html - copied unchanged from r281849, head/contrib/ntp/html/discover.html projects/release-install-debug/contrib/ntp/html/drivers/driver45.html - copied unchanged from r281849, head/contrib/ntp/html/drivers/driver45.html projects/release-install-debug/contrib/ntp/html/drivers/driver46.html - copied unchanged from r281849, head/contrib/ntp/html/drivers/driver46.html projects/release-install-debug/contrib/ntp/html/drivers/mx4200data.html - copied unchanged from r281849, head/contrib/ntp/html/drivers/mx4200data.html projects/release-install-debug/contrib/ntp/html/filter.html - copied unchanged from r281849, head/contrib/ntp/html/filter.html projects/release-install-debug/contrib/ntp/html/hints/ - copied from r281849, head/contrib/ntp/html/hints/ projects/release-install-debug/contrib/ntp/html/hints.html - copied unchanged from r281849, head/contrib/ntp/html/hints.html projects/release-install-debug/contrib/ntp/html/history.html - copied unchanged from r281849, head/contrib/ntp/html/history.html projects/release-install-debug/contrib/ntp/html/huffpuff.html - copied unchanged from r281849, head/contrib/ntp/html/huffpuff.html projects/release-install-debug/contrib/ntp/html/icons/sitemap.png - copied unchanged from r281849, head/contrib/ntp/html/icons/sitemap.png projects/release-install-debug/contrib/ntp/html/kernpps.html - copied unchanged from r281849, head/contrib/ntp/html/kernpps.html projects/release-install-debug/contrib/ntp/html/leap.html - copied unchanged from r281849, head/contrib/ntp/html/leap.html projects/release-install-debug/contrib/ntp/html/ntp-wait.html - copied unchanged from r281849, head/contrib/ntp/html/ntp-wait.html projects/release-install-debug/contrib/ntp/html/orphan.html - copied unchanged from r281849, head/contrib/ntp/html/orphan.html projects/release-install-debug/contrib/ntp/html/pic/ - copied from r281849, head/contrib/ntp/html/pic/ projects/release-install-debug/contrib/ntp/html/poll.html - copied unchanged from r281849, head/contrib/ntp/html/poll.html projects/release-install-debug/contrib/ntp/html/quick.html - copied unchanged from r281849, head/contrib/ntp/html/quick.html projects/release-install-debug/contrib/ntp/html/rate.html - copied unchanged from r281849, head/contrib/ntp/html/rate.html projects/release-install-debug/contrib/ntp/html/scripts/accopt.txt - copied unchanged from r281849, head/contrib/ntp/html/scripts/accopt.txt projects/release-install-debug/contrib/ntp/html/scripts/audio.txt - copied unchanged from r281849, head/contrib/ntp/html/scripts/audio.txt projects/release-install-debug/contrib/ntp/html/scripts/authopt.txt - copied unchanged from r281849, head/contrib/ntp/html/scripts/authopt.txt projects/release-install-debug/contrib/ntp/html/scripts/clockopt.txt - copied unchanged from r281849, head/contrib/ntp/html/scripts/clockopt.txt projects/release-install-debug/contrib/ntp/html/scripts/command.txt - copied unchanged from r281849, head/contrib/ntp/html/scripts/command.txt projects/release-install-debug/contrib/ntp/html/scripts/config.txt - copied unchanged from r281849, head/contrib/ntp/html/scripts/config.txt projects/release-install-debug/contrib/ntp/html/scripts/confopt.txt - copied unchanged from r281849, head/contrib/ntp/html/scripts/confopt.txt projects/release-install-debug/contrib/ntp/html/scripts/external.txt - copied unchanged from r281849, head/contrib/ntp/html/scripts/external.txt projects/release-install-debug/contrib/ntp/html/scripts/hand.txt - copied unchanged from r281849, head/contrib/ntp/html/scripts/hand.txt projects/release-install-debug/contrib/ntp/html/scripts/install.txt - copied unchanged from r281849, head/contrib/ntp/html/scripts/install.txt projects/release-install-debug/contrib/ntp/html/scripts/manual.txt - copied unchanged from r281849, head/contrib/ntp/html/scripts/manual.txt projects/release-install-debug/contrib/ntp/html/scripts/misc.txt - copied unchanged from r281849, head/contrib/ntp/html/scripts/misc.txt projects/release-install-debug/contrib/ntp/html/scripts/miscopt.txt - copied unchanged from r281849, head/contrib/ntp/html/scripts/miscopt.txt projects/release-install-debug/contrib/ntp/html/scripts/monopt.txt - copied unchanged from r281849, head/contrib/ntp/html/scripts/monopt.txt projects/release-install-debug/contrib/ntp/html/scripts/refclock.txt - copied unchanged from r281849, head/contrib/ntp/html/scripts/refclock.txt projects/release-install-debug/contrib/ntp/html/scripts/special.txt - copied unchanged from r281849, head/contrib/ntp/html/scripts/special.txt projects/release-install-debug/contrib/ntp/html/select.html - copied unchanged from r281849, head/contrib/ntp/html/select.html projects/release-install-debug/contrib/ntp/html/sitemap.html - copied unchanged from r281849, head/contrib/ntp/html/sitemap.html projects/release-install-debug/contrib/ntp/html/stats.html - copied unchanged from r281849, head/contrib/ntp/html/stats.html projects/release-install-debug/contrib/ntp/html/warp.html - copied unchanged from r281849, head/contrib/ntp/html/warp.html projects/release-install-debug/contrib/ntp/html/xleave.html - copied unchanged from r281849, head/contrib/ntp/html/xleave.html projects/release-install-debug/contrib/ntp/include/declcond.h - copied unchanged from r281849, head/contrib/ntp/include/declcond.h projects/release-install-debug/contrib/ntp/include/intreswork.h - copied unchanged from r281849, head/contrib/ntp/include/intreswork.h projects/release-install-debug/contrib/ntp/include/lib_strbuf.h - copied unchanged from r281849, head/contrib/ntp/include/lib_strbuf.h projects/release-install-debug/contrib/ntp/include/libntp.h - copied unchanged from r281849, head/contrib/ntp/include/libntp.h projects/release-install-debug/contrib/ntp/include/ntp_assert.h - copied unchanged from r281849, head/contrib/ntp/include/ntp_assert.h projects/release-install-debug/contrib/ntp/include/ntp_intres.h - copied unchanged from r281849, head/contrib/ntp/include/ntp_intres.h projects/release-install-debug/contrib/ntp/include/ntp_libopts.h - copied unchanged from r281849, head/contrib/ntp/include/ntp_libopts.h projects/release-install-debug/contrib/ntp/include/ntp_lineedit.h - copied unchanged from r281849, head/contrib/ntp/include/ntp_lineedit.h projects/release-install-debug/contrib/ntp/include/ntp_lists.h - copied unchanged from r281849, head/contrib/ntp/include/ntp_lists.h projects/release-install-debug/contrib/ntp/include/ntp_net.h - copied unchanged from r281849, head/contrib/ntp/include/ntp_net.h projects/release-install-debug/contrib/ntp/include/ntp_prio_q.h - copied unchanged from r281849, head/contrib/ntp/include/ntp_prio_q.h projects/release-install-debug/contrib/ntp/include/ntp_worker.h - copied unchanged from r281849, head/contrib/ntp/include/ntp_worker.h projects/release-install-debug/contrib/ntp/include/ntp_workimpl.h - copied unchanged from r281849, head/contrib/ntp/include/ntp_workimpl.h projects/release-install-debug/contrib/ntp/include/refclock_atom.h - copied unchanged from r281849, head/contrib/ntp/include/refclock_atom.h projects/release-install-debug/contrib/ntp/include/ssl_applink.c - copied unchanged from r281849, head/contrib/ntp/include/ssl_applink.c projects/release-install-debug/contrib/ntp/include/timespecops.h - copied unchanged from r281849, head/contrib/ntp/include/timespecops.h projects/release-install-debug/contrib/ntp/include/timetoa.h - copied unchanged from r281849, head/contrib/ntp/include/timetoa.h projects/release-install-debug/contrib/ntp/include/timevalops.h - copied unchanged from r281849, head/contrib/ntp/include/timevalops.h projects/release-install-debug/contrib/ntp/include/vint64ops.h - copied unchanged from r281849, head/contrib/ntp/include/vint64ops.h projects/release-install-debug/contrib/ntp/includes.mf - copied unchanged from r281849, head/contrib/ntp/includes.mf projects/release-install-debug/contrib/ntp/lib/ - copied from r281849, head/contrib/ntp/lib/ projects/release-install-debug/contrib/ntp/libjsmn/ - copied from r281849, head/contrib/ntp/libjsmn/ projects/release-install-debug/contrib/ntp/libntp/bsd_strerror.c - copied unchanged from r281849, head/contrib/ntp/libntp/bsd_strerror.c projects/release-install-debug/contrib/ntp/libntp/ntp_calendar.c - copied unchanged from r281849, head/contrib/ntp/libntp/ntp_calendar.c projects/release-install-debug/contrib/ntp/libntp/ntp_crypto_rnd.c - copied unchanged from r281849, head/contrib/ntp/libntp/ntp_crypto_rnd.c projects/release-install-debug/contrib/ntp/libntp/ntp_intres.c - copied unchanged from r281849, head/contrib/ntp/libntp/ntp_intres.c projects/release-install-debug/contrib/ntp/libntp/ntp_libopts.c - copied unchanged from r281849, head/contrib/ntp/libntp/ntp_libopts.c projects/release-install-debug/contrib/ntp/libntp/ntp_lineedit.c - copied unchanged from r281849, head/contrib/ntp/libntp/ntp_lineedit.c projects/release-install-debug/contrib/ntp/libntp/ntp_worker.c - copied unchanged from r281849, head/contrib/ntp/libntp/ntp_worker.c projects/release-install-debug/contrib/ntp/libntp/socket.c - copied unchanged from r281849, head/contrib/ntp/libntp/socket.c projects/release-install-debug/contrib/ntp/libntp/ssl_init.c - copied unchanged from r281849, head/contrib/ntp/libntp/ssl_init.c projects/release-install-debug/contrib/ntp/libntp/strl_obsd.c - copied unchanged from r281849, head/contrib/ntp/libntp/strl_obsd.c projects/release-install-debug/contrib/ntp/libntp/timetoa.c - copied unchanged from r281849, head/contrib/ntp/libntp/timetoa.c projects/release-install-debug/contrib/ntp/libntp/timevalops.c - copied unchanged from r281849, head/contrib/ntp/libntp/timevalops.c projects/release-install-debug/contrib/ntp/libntp/vint64ops.c - copied unchanged from r281849, head/contrib/ntp/libntp/vint64ops.c projects/release-install-debug/contrib/ntp/libntp/work_fork.c - copied unchanged from r281849, head/contrib/ntp/libntp/work_fork.c projects/release-install-debug/contrib/ntp/libntp/work_thread.c - copied unchanged from r281849, head/contrib/ntp/libntp/work_thread.c projects/release-install-debug/contrib/ntp/libparse/clk_sel240x.c - copied unchanged from r281849, head/contrib/ntp/libparse/clk_sel240x.c projects/release-install-debug/contrib/ntp/ntpd/complete.conf.in - copied unchanged from r281849, head/contrib/ntp/ntpd/complete.conf.in projects/release-install-debug/contrib/ntp/ntpd/declcond.h - copied unchanged from r281849, head/contrib/ntp/ntpd/declcond.h projects/release-install-debug/contrib/ntp/ntpd/invoke-ntp.conf.menu - copied unchanged from r281849, head/contrib/ntp/ntpd/invoke-ntp.conf.menu projects/release-install-debug/contrib/ntp/ntpd/invoke-ntp.conf.texi - copied unchanged from r281849, head/contrib/ntp/ntpd/invoke-ntp.conf.texi projects/release-install-debug/contrib/ntp/ntpd/invoke-ntp.keys.menu - copied unchanged from r281849, head/contrib/ntp/ntpd/invoke-ntp.keys.menu projects/release-install-debug/contrib/ntp/ntpd/invoke-ntp.keys.texi - copied unchanged from r281849, head/contrib/ntp/ntpd/invoke-ntp.keys.texi projects/release-install-debug/contrib/ntp/ntpd/invoke-ntpd.menu - copied unchanged from r281849, head/contrib/ntp/ntpd/invoke-ntpd.menu projects/release-install-debug/contrib/ntp/ntpd/invoke-ntpd.texi - copied unchanged from r281849, head/contrib/ntp/ntpd/invoke-ntpd.texi projects/release-install-debug/contrib/ntp/ntpd/keyword-gen-utd - copied unchanged from r281849, head/contrib/ntp/ntpd/keyword-gen-utd projects/release-install-debug/contrib/ntp/ntpd/keyword-gen.c - copied unchanged from r281849, head/contrib/ntp/ntpd/keyword-gen.c projects/release-install-debug/contrib/ntp/ntpd/ntp.conf.5man - copied unchanged from r281849, head/contrib/ntp/ntpd/ntp.conf.5man projects/release-install-debug/contrib/ntp/ntpd/ntp.conf.5mdoc - copied unchanged from r281849, head/contrib/ntp/ntpd/ntp.conf.5mdoc projects/release-install-debug/contrib/ntp/ntpd/ntp.conf.def - copied unchanged from r281849, head/contrib/ntp/ntpd/ntp.conf.def projects/release-install-debug/contrib/ntp/ntpd/ntp.conf.html - copied unchanged from r281849, head/contrib/ntp/ntpd/ntp.conf.html projects/release-install-debug/contrib/ntp/ntpd/ntp.conf.man.in - copied unchanged from r281849, head/contrib/ntp/ntpd/ntp.conf.man.in projects/release-install-debug/contrib/ntp/ntpd/ntp.conf.mdoc.in - copied unchanged from r281849, head/contrib/ntp/ntpd/ntp.conf.mdoc.in projects/release-install-debug/contrib/ntp/ntpd/ntp.conf.texi - copied unchanged from r281849, head/contrib/ntp/ntpd/ntp.conf.texi projects/release-install-debug/contrib/ntp/ntpd/ntp.keys.5man - copied unchanged from r281849, head/contrib/ntp/ntpd/ntp.keys.5man projects/release-install-debug/contrib/ntp/ntpd/ntp.keys.5mdoc - copied unchanged from r281849, head/contrib/ntp/ntpd/ntp.keys.5mdoc projects/release-install-debug/contrib/ntp/ntpd/ntp.keys.def - copied unchanged from r281849, head/contrib/ntp/ntpd/ntp.keys.def projects/release-install-debug/contrib/ntp/ntpd/ntp.keys.html - copied unchanged from r281849, head/contrib/ntp/ntpd/ntp.keys.html projects/release-install-debug/contrib/ntp/ntpd/ntp.keys.man.in - copied unchanged from r281849, head/contrib/ntp/ntpd/ntp.keys.man.in projects/release-install-debug/contrib/ntp/ntpd/ntp.keys.mdoc.in - copied unchanged from r281849, head/contrib/ntp/ntpd/ntp.keys.mdoc.in projects/release-install-debug/contrib/ntp/ntpd/ntp.keys.texi - copied unchanged from r281849, head/contrib/ntp/ntpd/ntp.keys.texi projects/release-install-debug/contrib/ntp/ntpd/ntp_keyword.h - copied unchanged from r281849, head/contrib/ntp/ntpd/ntp_keyword.h projects/release-install-debug/contrib/ntp/ntpd/ntp_leapsec.c - copied unchanged from r281849, head/contrib/ntp/ntpd/ntp_leapsec.c projects/release-install-debug/contrib/ntp/ntpd/ntp_leapsec.h - copied unchanged from r281849, head/contrib/ntp/ntpd/ntp_leapsec.h projects/release-install-debug/contrib/ntp/ntpd/ntp_parser.c - copied unchanged from r281849, head/contrib/ntp/ntpd/ntp_parser.c projects/release-install-debug/contrib/ntp/ntpd/ntp_parser.h - copied unchanged from r281849, head/contrib/ntp/ntpd/ntp_parser.h projects/release-install-debug/contrib/ntp/ntpd/ntp_prio_q.c - copied unchanged from r281849, head/contrib/ntp/ntpd/ntp_prio_q.c projects/release-install-debug/contrib/ntp/ntpd/ntp_scanner.c - copied unchanged from r281849, head/contrib/ntp/ntpd/ntp_scanner.c projects/release-install-debug/contrib/ntp/ntpd/ntp_scanner.h - copied unchanged from r281849, head/contrib/ntp/ntpd/ntp_scanner.h projects/release-install-debug/contrib/ntp/ntpd/ntp_signd.c - copied unchanged from r281849, head/contrib/ntp/ntpd/ntp_signd.c projects/release-install-debug/contrib/ntp/ntpd/ntpd.1ntpdman - copied unchanged from r281849, head/contrib/ntp/ntpd/ntpd.1ntpdman projects/release-install-debug/contrib/ntp/ntpd/ntpd.1ntpdmdoc - copied unchanged from r281849, head/contrib/ntp/ntpd/ntpd.1ntpdmdoc projects/release-install-debug/contrib/ntp/ntpd/ntpd.html - copied unchanged from r281849, head/contrib/ntp/ntpd/ntpd.html projects/release-install-debug/contrib/ntp/ntpd/ntpd.man.in - copied unchanged from r281849, head/contrib/ntp/ntpd/ntpd.man.in projects/release-install-debug/contrib/ntp/ntpd/ntpd.mdoc.in - copied unchanged from r281849, head/contrib/ntp/ntpd/ntpd.mdoc.in projects/release-install-debug/contrib/ntp/ntpd/ntpd.texi - copied unchanged from r281849, head/contrib/ntp/ntpd/ntpd.texi projects/release-install-debug/contrib/ntp/ntpd/refclock_gpsdjson.c - copied unchanged from r281849, head/contrib/ntp/ntpd/refclock_gpsdjson.c projects/release-install-debug/contrib/ntp/ntpd/refclock_tsyncpci.c - copied unchanged from r281849, head/contrib/ntp/ntpd/refclock_tsyncpci.c projects/release-install-debug/contrib/ntp/ntpdc/invoke-ntpdc.menu - copied unchanged from r281849, head/contrib/ntp/ntpdc/invoke-ntpdc.menu projects/release-install-debug/contrib/ntp/ntpdc/invoke-ntpdc.texi - copied unchanged from r281849, head/contrib/ntp/ntpdc/invoke-ntpdc.texi projects/release-install-debug/contrib/ntp/ntpdc/ntpdc.1ntpdcman - copied unchanged from r281849, head/contrib/ntp/ntpdc/ntpdc.1ntpdcman projects/release-install-debug/contrib/ntp/ntpdc/ntpdc.1ntpdcmdoc - copied unchanged from r281849, head/contrib/ntp/ntpdc/ntpdc.1ntpdcmdoc projects/release-install-debug/contrib/ntp/ntpdc/ntpdc.html - copied unchanged from r281849, head/contrib/ntp/ntpdc/ntpdc.html projects/release-install-debug/contrib/ntp/ntpdc/ntpdc.man.in - copied unchanged from r281849, head/contrib/ntp/ntpdc/ntpdc.man.in projects/release-install-debug/contrib/ntp/ntpdc/ntpdc.mdoc.in - copied unchanged from r281849, head/contrib/ntp/ntpdc/ntpdc.mdoc.in projects/release-install-debug/contrib/ntp/ntpdc/ntpdc.texi - copied unchanged from r281849, head/contrib/ntp/ntpdc/ntpdc.texi projects/release-install-debug/contrib/ntp/ntpq/invoke-ntpq.menu - copied unchanged from r281849, head/contrib/ntp/ntpq/invoke-ntpq.menu projects/release-install-debug/contrib/ntp/ntpq/invoke-ntpq.texi - copied unchanged from r281849, head/contrib/ntp/ntpq/invoke-ntpq.texi projects/release-install-debug/contrib/ntp/ntpq/libntpq.c - copied unchanged from r281849, head/contrib/ntp/ntpq/libntpq.c projects/release-install-debug/contrib/ntp/ntpq/libntpq.h - copied unchanged from r281849, head/contrib/ntp/ntpq/libntpq.h projects/release-install-debug/contrib/ntp/ntpq/libntpq_subs.c - copied unchanged from r281849, head/contrib/ntp/ntpq/libntpq_subs.c projects/release-install-debug/contrib/ntp/ntpq/ntpq.1ntpqman - copied unchanged from r281849, head/contrib/ntp/ntpq/ntpq.1ntpqman projects/release-install-debug/contrib/ntp/ntpq/ntpq.1ntpqmdoc - copied unchanged from r281849, head/contrib/ntp/ntpq/ntpq.1ntpqmdoc projects/release-install-debug/contrib/ntp/ntpq/ntpq.html - copied unchanged from r281849, head/contrib/ntp/ntpq/ntpq.html projects/release-install-debug/contrib/ntp/ntpq/ntpq.man.in - copied unchanged from r281849, head/contrib/ntp/ntpq/ntpq.man.in projects/release-install-debug/contrib/ntp/ntpq/ntpq.mdoc.in - copied unchanged from r281849, head/contrib/ntp/ntpq/ntpq.mdoc.in projects/release-install-debug/contrib/ntp/ntpq/ntpq.texi - copied unchanged from r281849, head/contrib/ntp/ntpq/ntpq.texi projects/release-install-debug/contrib/ntp/ntpsnmpd/ - copied from r281849, head/contrib/ntp/ntpsnmpd/ projects/release-install-debug/contrib/ntp/scripts/build/ - copied from r281849, head/contrib/ntp/scripts/build/ projects/release-install-debug/contrib/ntp/scripts/calc_tickadj/ - copied from r281849, head/contrib/ntp/scripts/calc_tickadj/ projects/release-install-debug/contrib/ntp/scripts/deprecated/ - copied from r281849, head/contrib/ntp/scripts/deprecated/ projects/release-install-debug/contrib/ntp/scripts/invoke-plot_summary.menu - copied unchanged from r281849, head/contrib/ntp/scripts/invoke-plot_summary.menu projects/release-install-debug/contrib/ntp/scripts/invoke-plot_summary.texi - copied unchanged from r281849, head/contrib/ntp/scripts/invoke-plot_summary.texi projects/release-install-debug/contrib/ntp/scripts/invoke-summary.menu - copied unchanged from r281849, head/contrib/ntp/scripts/invoke-summary.menu projects/release-install-debug/contrib/ntp/scripts/invoke-summary.texi - copied unchanged from r281849, head/contrib/ntp/scripts/invoke-summary.texi projects/release-install-debug/contrib/ntp/scripts/lib/ - copied from r281849, head/contrib/ntp/scripts/lib/ projects/release-install-debug/contrib/ntp/scripts/ntp-wait/ - copied from r281849, head/contrib/ntp/scripts/ntp-wait/ projects/release-install-debug/contrib/ntp/scripts/ntpsweep/ - copied from r281849, head/contrib/ntp/scripts/ntpsweep/ projects/release-install-debug/contrib/ntp/scripts/ntptrace/ - copied from r281849, head/contrib/ntp/scripts/ntptrace/ projects/release-install-debug/contrib/ntp/scripts/plot_summary-opts - copied unchanged from r281849, head/contrib/ntp/scripts/plot_summary-opts projects/release-install-debug/contrib/ntp/scripts/plot_summary-opts.def - copied unchanged from r281849, head/contrib/ntp/scripts/plot_summary-opts.def projects/release-install-debug/contrib/ntp/scripts/plot_summary.1plot_summaryman - copied unchanged from r281849, head/contrib/ntp/scripts/plot_summary.1plot_summaryman projects/release-install-debug/contrib/ntp/scripts/plot_summary.1plot_summarymdoc - copied unchanged from r281849, head/contrib/ntp/scripts/plot_summary.1plot_summarymdoc projects/release-install-debug/contrib/ntp/scripts/plot_summary.html - copied unchanged from r281849, head/contrib/ntp/scripts/plot_summary.html projects/release-install-debug/contrib/ntp/scripts/plot_summary.man.in - copied unchanged from r281849, head/contrib/ntp/scripts/plot_summary.man.in projects/release-install-debug/contrib/ntp/scripts/plot_summary.mdoc.in - copied unchanged from r281849, head/contrib/ntp/scripts/plot_summary.mdoc.in projects/release-install-debug/contrib/ntp/scripts/plot_summary.texi - copied unchanged from r281849, head/contrib/ntp/scripts/plot_summary.texi projects/release-install-debug/contrib/ntp/scripts/rc/ - copied from r281849, head/contrib/ntp/scripts/rc/ projects/release-install-debug/contrib/ntp/scripts/summary-opts - copied unchanged from r281849, head/contrib/ntp/scripts/summary-opts projects/release-install-debug/contrib/ntp/scripts/summary-opts.def - copied unchanged from r281849, head/contrib/ntp/scripts/summary-opts.def projects/release-install-debug/contrib/ntp/scripts/summary.1summaryman - copied unchanged from r281849, head/contrib/ntp/scripts/summary.1summaryman projects/release-install-debug/contrib/ntp/scripts/summary.1summarymdoc - copied unchanged from r281849, head/contrib/ntp/scripts/summary.1summarymdoc projects/release-install-debug/contrib/ntp/scripts/summary.html - copied unchanged from r281849, head/contrib/ntp/scripts/summary.html projects/release-install-debug/contrib/ntp/scripts/summary.man.in - copied unchanged from r281849, head/contrib/ntp/scripts/summary.man.in projects/release-install-debug/contrib/ntp/scripts/summary.mdoc.in - copied unchanged from r281849, head/contrib/ntp/scripts/summary.mdoc.in projects/release-install-debug/contrib/ntp/scripts/summary.texi - copied unchanged from r281849, head/contrib/ntp/scripts/summary.texi projects/release-install-debug/contrib/ntp/sntp/ag-tpl/ - copied from r281849, head/contrib/ntp/sntp/ag-tpl/ projects/release-install-debug/contrib/ntp/sntp/check-libntp.mf - copied unchanged from r281849, head/contrib/ntp/sntp/check-libntp.mf projects/release-install-debug/contrib/ntp/sntp/check-libopts.mf - copied unchanged from r281849, head/contrib/ntp/sntp/check-libopts.mf projects/release-install-debug/contrib/ntp/sntp/crypto.c - copied unchanged from r281849, head/contrib/ntp/sntp/crypto.c projects/release-install-debug/contrib/ntp/sntp/crypto.h - copied unchanged from r281849, head/contrib/ntp/sntp/crypto.h projects/release-install-debug/contrib/ntp/sntp/data_formats.h - copied unchanged from r281849, head/contrib/ntp/sntp/data_formats.h projects/release-install-debug/contrib/ntp/sntp/deps-ver - copied unchanged from r281849, head/contrib/ntp/sntp/deps-ver projects/release-install-debug/contrib/ntp/sntp/depsver.mf - copied unchanged from r281849, head/contrib/ntp/sntp/depsver.mf projects/release-install-debug/contrib/ntp/sntp/include/ - copied from r281849, head/contrib/ntp/sntp/include/ projects/release-install-debug/contrib/ntp/sntp/includes.mf - copied unchanged from r281849, head/contrib/ntp/sntp/includes.mf projects/release-install-debug/contrib/ntp/sntp/invoke-sntp.menu - copied unchanged from r281849, head/contrib/ntp/sntp/invoke-sntp.menu projects/release-install-debug/contrib/ntp/sntp/invoke-sntp.texi - copied unchanged from r281849, head/contrib/ntp/sntp/invoke-sntp.texi projects/release-install-debug/contrib/ntp/sntp/kod_management.c - copied unchanged from r281849, head/contrib/ntp/sntp/kod_management.c projects/release-install-debug/contrib/ntp/sntp/kod_management.h - copied unchanged from r281849, head/contrib/ntp/sntp/kod_management.h projects/release-install-debug/contrib/ntp/sntp/libevent/ - copied from r281849, head/contrib/ntp/sntp/libevent/ projects/release-install-debug/contrib/ntp/sntp/libopts/COPYING.gplv3 - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/COPYING.gplv3 projects/release-install-debug/contrib/ntp/sntp/libopts/COPYING.lgplv3 - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/COPYING.lgplv3 projects/release-install-debug/contrib/ntp/sntp/libopts/ag-char-map.h - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/ag-char-map.h projects/release-install-debug/contrib/ntp/sntp/libopts/alias.c - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/alias.c projects/release-install-debug/contrib/ntp/sntp/libopts/ao-strs.c - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/ao-strs.c projects/release-install-debug/contrib/ntp/sntp/libopts/ao-strs.h - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/ao-strs.h projects/release-install-debug/contrib/ntp/sntp/libopts/autoopts/project.h - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/autoopts/project.h projects/release-install-debug/contrib/ntp/sntp/libopts/check.c - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/check.c projects/release-install-debug/contrib/ntp/sntp/libopts/compat/_Noreturn.h - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/compat/_Noreturn.h projects/release-install-debug/contrib/ntp/sntp/libopts/enum.c - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/enum.c projects/release-install-debug/contrib/ntp/sntp/libopts/env.c - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/env.c projects/release-install-debug/contrib/ntp/sntp/libopts/file.c - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/file.c projects/release-install-debug/contrib/ntp/sntp/libopts/find.c - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/find.c projects/release-install-debug/contrib/ntp/sntp/libopts/gettext.h - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/gettext.h projects/release-install-debug/contrib/ntp/sntp/libopts/init.c - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/init.c projects/release-install-debug/contrib/ntp/sntp/libopts/intprops.h - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/intprops.h projects/release-install-debug/contrib/ntp/sntp/libopts/m4/stdnoreturn.m4 - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/m4/stdnoreturn.m4 projects/release-install-debug/contrib/ntp/sntp/libopts/option-value-type.c - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/option-value-type.c projects/release-install-debug/contrib/ntp/sntp/libopts/option-value-type.h - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/option-value-type.h projects/release-install-debug/contrib/ntp/sntp/libopts/option-xat-attribute.c - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/option-xat-attribute.c projects/release-install-debug/contrib/ntp/sntp/libopts/option-xat-attribute.h - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/option-xat-attribute.h projects/release-install-debug/contrib/ntp/sntp/libopts/parse-duration.c - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/parse-duration.c projects/release-install-debug/contrib/ntp/sntp/libopts/parse-duration.h - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/parse-duration.h projects/release-install-debug/contrib/ntp/sntp/libopts/reset.c - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/reset.c projects/release-install-debug/contrib/ntp/sntp/libopts/stdnoreturn.in.h - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/stdnoreturn.in.h projects/release-install-debug/contrib/ntp/sntp/libopts/time.c - copied unchanged from r281849, head/contrib/ntp/sntp/libopts/time.c projects/release-install-debug/contrib/ntp/sntp/loc/ - copied from r281849, head/contrib/ntp/sntp/loc/ projects/release-install-debug/contrib/ntp/sntp/log.c - copied unchanged from r281849, head/contrib/ntp/sntp/log.c projects/release-install-debug/contrib/ntp/sntp/log.h - copied unchanged from r281849, head/contrib/ntp/sntp/log.h projects/release-install-debug/contrib/ntp/sntp/m4/ - copied from r281849, head/contrib/ntp/sntp/m4/ projects/release-install-debug/contrib/ntp/sntp/main.h - copied unchanged from r281849, head/contrib/ntp/sntp/main.h projects/release-install-debug/contrib/ntp/sntp/networking.c - copied unchanged from r281849, head/contrib/ntp/sntp/networking.c projects/release-install-debug/contrib/ntp/sntp/networking.h - copied unchanged from r281849, head/contrib/ntp/sntp/networking.h projects/release-install-debug/contrib/ntp/sntp/scm-rev - copied unchanged from r281849, head/contrib/ntp/sntp/scm-rev projects/release-install-debug/contrib/ntp/sntp/scripts/ - copied from r281849, head/contrib/ntp/sntp/scripts/ projects/release-install-debug/contrib/ntp/sntp/sntp.1sntpman - copied unchanged from r281849, head/contrib/ntp/sntp/sntp.1sntpman projects/release-install-debug/contrib/ntp/sntp/sntp.1sntpmdoc - copied unchanged from r281849, head/contrib/ntp/sntp/sntp.1sntpmdoc projects/release-install-debug/contrib/ntp/sntp/sntp.c - copied unchanged from r281849, head/contrib/ntp/sntp/sntp.c projects/release-install-debug/contrib/ntp/sntp/sntp.html - copied unchanged from r281849, head/contrib/ntp/sntp/sntp.html projects/release-install-debug/contrib/ntp/sntp/sntp.man.in - copied unchanged from r281849, head/contrib/ntp/sntp/sntp.man.in projects/release-install-debug/contrib/ntp/sntp/sntp.mdoc.in - copied unchanged from r281849, head/contrib/ntp/sntp/sntp.mdoc.in projects/release-install-debug/contrib/ntp/sntp/sntp.texi - copied unchanged from r281849, head/contrib/ntp/sntp/sntp.texi projects/release-install-debug/contrib/ntp/sntp/tests/ - copied from r281849, head/contrib/ntp/sntp/tests/ projects/release-install-debug/contrib/ntp/sntp/tests_main.cpp - copied unchanged from r281849, head/contrib/ntp/sntp/tests_main.cpp projects/release-install-debug/contrib/ntp/sntp/tests_main.h - copied unchanged from r281849, head/contrib/ntp/sntp/tests_main.h projects/release-install-debug/contrib/ntp/sntp/utilities.c - copied unchanged from r281849, head/contrib/ntp/sntp/utilities.c projects/release-install-debug/contrib/ntp/sntp/utilities.h - copied unchanged from r281849, head/contrib/ntp/sntp/utilities.h projects/release-install-debug/contrib/ntp/tests/ - copied from r281849, head/contrib/ntp/tests/ projects/release-install-debug/contrib/ntp/util/invoke-ntp-keygen.menu - copied unchanged from r281849, head/contrib/ntp/util/invoke-ntp-keygen.menu projects/release-install-debug/contrib/ntp/util/invoke-ntp-keygen.texi - copied unchanged from r281849, head/contrib/ntp/util/invoke-ntp-keygen.texi projects/release-install-debug/contrib/ntp/util/ntp-keygen.1ntp-keygenman - copied unchanged from r281849, head/contrib/ntp/util/ntp-keygen.1ntp-keygenman projects/release-install-debug/contrib/ntp/util/ntp-keygen.1ntp-keygenmdoc - copied unchanged from r281849, head/contrib/ntp/util/ntp-keygen.1ntp-keygenmdoc projects/release-install-debug/contrib/ntp/util/ntp-keygen.html - copied unchanged from r281849, head/contrib/ntp/util/ntp-keygen.html projects/release-install-debug/contrib/ntp/util/ntp-keygen.man.in - copied unchanged from r281849, head/contrib/ntp/util/ntp-keygen.man.in projects/release-install-debug/contrib/ntp/util/ntp-keygen.mdoc.in - copied unchanged from r281849, head/contrib/ntp/util/ntp-keygen.mdoc.in projects/release-install-debug/contrib/ntp/util/ntp-keygen.texi - copied unchanged from r281849, head/contrib/ntp/util/ntp-keygen.texi projects/release-install-debug/contrib/ntp/util/tg2.c - copied unchanged from r281849, head/contrib/ntp/util/tg2.c projects/release-install-debug/contrib/ntp/ylwrap - copied unchanged from r281849, head/contrib/ntp/ylwrap projects/release-install-debug/contrib/nvi/docs/man/ - copied from r281849, head/contrib/nvi/docs/man/ projects/release-install-debug/contrib/wpa/CONTRIBUTIONS - copied unchanged from r281849, head/contrib/wpa/CONTRIBUTIONS projects/release-install-debug/contrib/wpa/hostapd/hapd_module_tests.c - copied unchanged from r281849, head/contrib/wpa/hostapd/hapd_module_tests.c projects/release-install-debug/contrib/wpa/hostapd/wps-ap-nfc.py - copied unchanged from r281849, head/contrib/wpa/hostapd/wps-ap-nfc.py projects/release-install-debug/contrib/wpa/hs20/ - copied from r281849, head/contrib/wpa/hs20/ projects/release-install-debug/contrib/wpa/patches/openssl-0.9.8za-tls-extensions.patch - copied unchanged from r281849, head/contrib/wpa/patches/openssl-0.9.8za-tls-extensions.patch projects/release-install-debug/contrib/wpa/src/ap/acs.c - copied unchanged from r281849, head/contrib/wpa/src/ap/acs.c projects/release-install-debug/contrib/wpa/src/ap/acs.h - copied unchanged from r281849, head/contrib/wpa/src/ap/acs.h projects/release-install-debug/contrib/wpa/src/ap/bss_load.c - copied unchanged from r281849, head/contrib/wpa/src/ap/bss_load.c projects/release-install-debug/contrib/wpa/src/ap/bss_load.h - copied unchanged from r281849, head/contrib/wpa/src/ap/bss_load.h projects/release-install-debug/contrib/wpa/src/ap/dfs.c - copied unchanged from r281849, head/contrib/wpa/src/ap/dfs.c projects/release-install-debug/contrib/wpa/src/ap/dfs.h - copied unchanged from r281849, head/contrib/wpa/src/ap/dfs.h projects/release-install-debug/contrib/wpa/src/ap/dhcp_snoop.c - copied unchanged from r281849, head/contrib/wpa/src/ap/dhcp_snoop.c projects/release-install-debug/contrib/wpa/src/ap/dhcp_snoop.h - copied unchanged from r281849, head/contrib/wpa/src/ap/dhcp_snoop.h projects/release-install-debug/contrib/wpa/src/ap/ndisc_snoop.c - copied unchanged from r281849, head/contrib/wpa/src/ap/ndisc_snoop.c projects/release-install-debug/contrib/wpa/src/ap/ndisc_snoop.h - copied unchanged from r281849, head/contrib/wpa/src/ap/ndisc_snoop.h projects/release-install-debug/contrib/wpa/src/ap/x_snoop.c - copied unchanged from r281849, head/contrib/wpa/src/ap/x_snoop.c projects/release-install-debug/contrib/wpa/src/ap/x_snoop.h - copied unchanged from r281849, head/contrib/wpa/src/ap/x_snoop.h projects/release-install-debug/contrib/wpa/src/common/common_module_tests.c - copied unchanged from r281849, head/contrib/wpa/src/common/common_module_tests.c projects/release-install-debug/contrib/wpa/src/common/hw_features_common.c - copied unchanged from r281849, head/contrib/wpa/src/common/hw_features_common.c projects/release-install-debug/contrib/wpa/src/common/hw_features_common.h - copied unchanged from r281849, head/contrib/wpa/src/common/hw_features_common.h projects/release-install-debug/contrib/wpa/src/common/ieee802_1x_defs.h - copied unchanged from r281849, head/contrib/wpa/src/common/ieee802_1x_defs.h projects/release-install-debug/contrib/wpa/src/common/qca-vendor-attr.h - copied unchanged from r281849, head/contrib/wpa/src/common/qca-vendor-attr.h projects/release-install-debug/contrib/wpa/src/common/qca-vendor.h - copied unchanged from r281849, head/contrib/wpa/src/common/qca-vendor.h projects/release-install-debug/contrib/wpa/src/common/sae.c - copied unchanged from r281849, head/contrib/wpa/src/common/sae.c projects/release-install-debug/contrib/wpa/src/common/sae.h - copied unchanged from r281849, head/contrib/wpa/src/common/sae.h projects/release-install-debug/contrib/wpa/src/common/tnc.h - copied unchanged from r281849, head/contrib/wpa/src/common/tnc.h projects/release-install-debug/contrib/wpa/src/common/wpa_helpers.c - copied unchanged from r281849, head/contrib/wpa/src/common/wpa_helpers.c projects/release-install-debug/contrib/wpa/src/common/wpa_helpers.h - copied unchanged from r281849, head/contrib/wpa/src/common/wpa_helpers.h projects/release-install-debug/contrib/wpa/src/crypto/aes-siv.c - copied unchanged from r281849, head/contrib/wpa/src/crypto/aes-siv.c projects/release-install-debug/contrib/wpa/src/crypto/aes_siv.h - copied unchanged from r281849, head/contrib/wpa/src/crypto/aes_siv.h projects/release-install-debug/contrib/wpa/src/crypto/crypto_module_tests.c - copied unchanged from r281849, head/contrib/wpa/src/crypto/crypto_module_tests.c projects/release-install-debug/contrib/wpa/src/crypto/sha256-kdf.c - copied unchanged from r281849, head/contrib/wpa/src/crypto/sha256-kdf.c projects/release-install-debug/contrib/wpa/src/crypto/sha384.h - copied unchanged from r281849, head/contrib/wpa/src/crypto/sha384.h projects/release-install-debug/contrib/wpa/src/drivers/driver_macsec_qca.c - copied unchanged from r281849, head/contrib/wpa/src/drivers/driver_macsec_qca.c projects/release-install-debug/contrib/wpa/src/drivers/driver_nl80211.h - copied unchanged from r281849, head/contrib/wpa/src/drivers/driver_nl80211.h projects/release-install-debug/contrib/wpa/src/drivers/driver_nl80211_android.c - copied unchanged from r281849, head/contrib/wpa/src/drivers/driver_nl80211_android.c projects/release-install-debug/contrib/wpa/src/drivers/driver_nl80211_capa.c - copied unchanged from r281849, head/contrib/wpa/src/drivers/driver_nl80211_capa.c projects/release-install-debug/contrib/wpa/src/drivers/driver_nl80211_event.c - copied unchanged from r281849, head/contrib/wpa/src/drivers/driver_nl80211_event.c projects/release-install-debug/contrib/wpa/src/drivers/driver_nl80211_monitor.c - copied unchanged from r281849, head/contrib/wpa/src/drivers/driver_nl80211_monitor.c projects/release-install-debug/contrib/wpa/src/drivers/driver_nl80211_scan.c - copied unchanged from r281849, head/contrib/wpa/src/drivers/driver_nl80211_scan.c projects/release-install-debug/contrib/wpa/src/drivers/driver_openbsd.c - copied unchanged from r281849, head/contrib/wpa/src/drivers/driver_openbsd.c projects/release-install-debug/contrib/wpa/src/drivers/linux_defines.h - copied unchanged from r281849, head/contrib/wpa/src/drivers/linux_defines.h projects/release-install-debug/contrib/wpa/src/eap_common/eap_eke_common.c - copied unchanged from r281849, head/contrib/wpa/src/eap_common/eap_eke_common.c projects/release-install-debug/contrib/wpa/src/eap_common/eap_eke_common.h - copied unchanged from r281849, head/contrib/wpa/src/eap_common/eap_eke_common.h projects/release-install-debug/contrib/wpa/src/eap_peer/eap_eke.c - copied unchanged from r281849, head/contrib/wpa/src/eap_peer/eap_eke.c projects/release-install-debug/contrib/wpa/src/eap_peer/eap_proxy.h - copied unchanged from r281849, head/contrib/wpa/src/eap_peer/eap_proxy.h projects/release-install-debug/contrib/wpa/src/eap_peer/eap_proxy_dummy.c - copied unchanged from r281849, head/contrib/wpa/src/eap_peer/eap_proxy_dummy.c projects/release-install-debug/contrib/wpa/src/eap_server/eap_server_eke.c - copied unchanged from r281849, head/contrib/wpa/src/eap_server/eap_server_eke.c projects/release-install-debug/contrib/wpa/src/pae/ - copied from r281849, head/contrib/wpa/src/pae/ projects/release-install-debug/contrib/wpa/src/utils/bitfield.c - copied unchanged from r281849, head/contrib/wpa/src/utils/bitfield.c projects/release-install-debug/contrib/wpa/src/utils/bitfield.h - copied unchanged from r281849, head/contrib/wpa/src/utils/bitfield.h projects/release-install-debug/contrib/wpa/src/utils/browser-android.c - copied unchanged from r281849, head/contrib/wpa/src/utils/browser-android.c projects/release-install-debug/contrib/wpa/src/utils/browser-system.c - copied unchanged from r281849, head/contrib/wpa/src/utils/browser-system.c projects/release-install-debug/contrib/wpa/src/utils/browser-wpadebug.c - copied unchanged from r281849, head/contrib/wpa/src/utils/browser-wpadebug.c projects/release-install-debug/contrib/wpa/src/utils/browser.c - copied unchanged from r281849, head/contrib/wpa/src/utils/browser.c projects/release-install-debug/contrib/wpa/src/utils/browser.h - copied unchanged from r281849, head/contrib/wpa/src/utils/browser.h projects/release-install-debug/contrib/wpa/src/utils/http-utils.h - copied unchanged from r281849, head/contrib/wpa/src/utils/http-utils.h projects/release-install-debug/contrib/wpa/src/utils/http_curl.c - copied unchanged from r281849, head/contrib/wpa/src/utils/http_curl.c projects/release-install-debug/contrib/wpa/src/utils/platform.h - copied unchanged from r281849, head/contrib/wpa/src/utils/platform.h projects/release-install-debug/contrib/wpa/src/utils/utils_module_tests.c - copied unchanged from r281849, head/contrib/wpa/src/utils/utils_module_tests.c projects/release-install-debug/contrib/wpa/src/utils/xml-utils.c - copied unchanged from r281849, head/contrib/wpa/src/utils/xml-utils.c projects/release-install-debug/contrib/wpa/src/utils/xml-utils.h - copied unchanged from r281849, head/contrib/wpa/src/utils/xml-utils.h projects/release-install-debug/contrib/wpa/src/utils/xml_libxml2.c - copied unchanged from r281849, head/contrib/wpa/src/utils/xml_libxml2.c projects/release-install-debug/contrib/wpa/src/wps/wps_module_tests.c - copied unchanged from r281849, head/contrib/wpa/src/wps/wps_module_tests.c projects/release-install-debug/contrib/wpa/wpa_supplicant/eap_proxy_dummy.mak - copied unchanged from r281849, head/contrib/wpa/wpa_supplicant/eap_proxy_dummy.mak projects/release-install-debug/contrib/wpa/wpa_supplicant/eap_proxy_dummy.mk - copied unchanged from r281849, head/contrib/wpa/wpa_supplicant/eap_proxy_dummy.mk projects/release-install-debug/contrib/wpa/wpa_supplicant/examples/p2p-nfc.py - copied unchanged from r281849, head/contrib/wpa/wpa_supplicant/examples/p2p-nfc.py projects/release-install-debug/contrib/wpa/wpa_supplicant/mesh.c - copied unchanged from r281849, head/contrib/wpa/wpa_supplicant/mesh.c projects/release-install-debug/contrib/wpa/wpa_supplicant/mesh.h - copied unchanged from r281849, head/contrib/wpa/wpa_supplicant/mesh.h projects/release-install-debug/contrib/wpa/wpa_supplicant/mesh_mpm.c - copied unchanged from r281849, head/contrib/wpa/wpa_supplicant/mesh_mpm.c projects/release-install-debug/contrib/wpa/wpa_supplicant/mesh_mpm.h - copied unchanged from r281849, head/contrib/wpa/wpa_supplicant/mesh_mpm.h projects/release-install-debug/contrib/wpa/wpa_supplicant/mesh_rsn.c - copied unchanged from r281849, head/contrib/wpa/wpa_supplicant/mesh_rsn.c projects/release-install-debug/contrib/wpa/wpa_supplicant/mesh_rsn.h - copied unchanged from r281849, head/contrib/wpa/wpa_supplicant/mesh_rsn.h projects/release-install-debug/contrib/wpa/wpa_supplicant/wmm_ac.c - copied unchanged from r281849, head/contrib/wpa/wpa_supplicant/wmm_ac.c projects/release-install-debug/contrib/wpa/wpa_supplicant/wmm_ac.h - copied unchanged from r281849, head/contrib/wpa/wpa_supplicant/wmm_ac.h projects/release-install-debug/contrib/wpa/wpa_supplicant/wpas_kay.c - copied unchanged from r281849, head/contrib/wpa/wpa_supplicant/wpas_kay.c projects/release-install-debug/contrib/wpa/wpa_supplicant/wpas_kay.h - copied unchanged from r281849, head/contrib/wpa/wpa_supplicant/wpas_kay.h projects/release-install-debug/contrib/wpa/wpa_supplicant/wpas_module_tests.c - copied unchanged from r281849, head/contrib/wpa/wpa_supplicant/wpas_module_tests.c projects/release-install-debug/crypto/openssl/crypto/evp/evp_extra_test.c - copied unchanged from r281849, head/crypto/openssl/crypto/evp/evp_extra_test.c projects/release-install-debug/crypto/openssl/doc/crypto/d2i_CMS_ContentInfo.pod - copied unchanged from r281849, head/crypto/openssl/doc/crypto/d2i_CMS_ContentInfo.pod projects/release-install-debug/crypto/openssl/doc/crypto/d2i_ECPrivateKey.pod - copied unchanged from r281849, head/crypto/openssl/doc/crypto/d2i_ECPrivateKey.pod projects/release-install-debug/crypto/openssl/doc/ssl/SSL_CTX_set_read_ahead.pod - copied unchanged from r281849, head/crypto/openssl/doc/ssl/SSL_CTX_set_read_ahead.pod projects/release-install-debug/crypto/openssl/util/indent.pro - copied unchanged from r281849, head/crypto/openssl/util/indent.pro projects/release-install-debug/crypto/openssl/util/openssl-format-source - copied unchanged from r281849, head/crypto/openssl/util/openssl-format-source projects/release-install-debug/crypto/openssl/util/su-filter.pl - copied unchanged from r281849, head/crypto/openssl/util/su-filter.pl projects/release-install-debug/etc/autofs/special_noauto - copied unchanged from r281849, head/etc/autofs/special_noauto projects/release-install-debug/etc/etc.aarch64/ - copied from r281849, head/etc/etc.aarch64/ projects/release-install-debug/etc/rc.d/iovctl - copied unchanged from r281849, head/etc/rc.d/iovctl projects/release-install-debug/lib/clang/liblldbPluginABISysV_ppc/ - copied from r281849, head/lib/clang/liblldbPluginABISysV_ppc/ projects/release-install-debug/lib/clang/liblldbPluginABISysV_ppc64/ - copied from r281849, head/lib/clang/liblldbPluginABISysV_ppc64/ projects/release-install-debug/lib/clang/liblldbPluginInstrumentationRuntimeAddressSanitizer/ - copied from r281849, head/lib/clang/liblldbPluginInstrumentationRuntimeAddressSanitizer/ projects/release-install-debug/lib/clang/liblldbPluginMemoryHistoryASan/ - copied from r281849, head/lib/clang/liblldbPluginMemoryHistoryASan/ projects/release-install-debug/lib/csu/aarch64/ - copied from r281849, head/lib/csu/aarch64/ projects/release-install-debug/lib/libc/aarch64/ - copied from r281849, head/lib/libc/aarch64/ projects/release-install-debug/lib/libc/sys/kevent.c - copied unchanged from r281849, head/lib/libc/sys/kevent.c projects/release-install-debug/lib/libc/sys/ppoll.c - copied unchanged from r281849, head/lib/libc/sys/ppoll.c projects/release-install-debug/lib/libc/sys/trivial-vdso_tc.c - copied unchanged from r281849, head/lib/libc/sys/trivial-vdso_tc.c projects/release-install-debug/lib/libc/sys/wait6.c - copied unchanged from r281849, head/lib/libc/sys/wait6.c projects/release-install-debug/lib/libkvm/kvm_aarch64.c - copied unchanged from r281849, head/lib/libkvm/kvm_aarch64.c projects/release-install-debug/lib/libmt/ - copied from r281849, head/lib/libmt/ projects/release-install-debug/lib/libnv/tests/dnv_tests.cc - copied unchanged from r281849, head/lib/libnv/tests/dnv_tests.cc projects/release-install-debug/lib/libnv/tests/nv_tests.cc - copied unchanged from r281849, head/lib/libnv/tests/nv_tests.cc projects/release-install-debug/lib/libpmc/pmc.haswellxeon.3 - copied unchanged from r281849, head/lib/libpmc/pmc.haswellxeon.3 projects/release-install-debug/lib/libstand/powerpc/syncicache.c - copied unchanged from r281849, head/lib/libstand/powerpc/syncicache.c projects/release-install-debug/lib/libthr/arch/aarch64/ - copied from r281849, head/lib/libthr/arch/aarch64/ projects/release-install-debug/lib/libthread_db/arch/aarch64/ - copied from r281849, head/lib/libthread_db/arch/aarch64/ projects/release-install-debug/lib/msun/aarch64/ - copied from r281849, head/lib/msun/aarch64/ projects/release-install-debug/libexec/rtld-elf/aarch64/ - copied from r281849, head/libexec/rtld-elf/aarch64/ projects/release-install-debug/release/Makefile.ec2 - copied unchanged from r281849, head/release/Makefile.ec2 projects/release-install-debug/release/arm64/ - copied from r281849, head/release/arm64/ projects/release-install-debug/release/tools/ec2.conf - copied unchanged from r281849, head/release/tools/ec2.conf projects/release-install-debug/release/tools/gce-package.sh - copied unchanged from r281849, head/release/tools/gce-package.sh projects/release-install-debug/secure/lib/libcrypto/man/d2i_CMS_ContentInfo.3 - copied unchanged from r281849, head/secure/lib/libcrypto/man/d2i_CMS_ContentInfo.3 projects/release-install-debug/secure/lib/libcrypto/man/d2i_ECPrivateKey.3 - copied unchanged from r281849, head/secure/lib/libcrypto/man/d2i_ECPrivateKey.3 projects/release-install-debug/secure/lib/libcrypto/opensslconf-aarch64.h - copied unchanged from r281849, head/secure/lib/libcrypto/opensslconf-aarch64.h projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_set_read_ahead.3 - copied unchanged from r281849, head/secure/lib/libssl/man/SSL_CTX_set_read_ahead.3 projects/release-install-debug/share/dtrace/tcpconn - copied unchanged from r281849, head/share/dtrace/tcpconn projects/release-install-debug/share/dtrace/tcpstate - copied unchanged from r281849, head/share/dtrace/tcpstate projects/release-install-debug/share/dtrace/tcptrack - copied unchanged from r281849, head/share/dtrace/tcptrack projects/release-install-debug/share/dtrace/udptrack - copied unchanged from r281849, head/share/dtrace/udptrack projects/release-install-debug/share/examples/uefisign/ - copied from r281849, head/share/examples/uefisign/ projects/release-install-debug/share/man/man4/ds1307.4 - copied unchanged from r281849, head/share/man/man4/ds1307.4 projects/release-install-debug/share/man/man4/ds3231.4 - copied unchanged from r281849, head/share/man/man4/ds3231.4 projects/release-install-debug/share/man/man4/dtrace-io.4 - copied unchanged from r281849, head/share/man/man4/dtrace-io.4 projects/release-install-debug/share/man/man4/dtrace-ip.4 - copied unchanged from r281849, head/share/man/man4/dtrace-ip.4 projects/release-install-debug/share/man/man4/dtrace-proc.4 - copied unchanged from r281849, head/share/man/man4/dtrace-proc.4 projects/release-install-debug/share/man/man4/dtrace-sched.4 - copied unchanged from r281849, head/share/man/man4/dtrace-sched.4 projects/release-install-debug/share/man/man4/dtrace-tcp.4 - copied unchanged from r281849, head/share/man/man4/dtrace-tcp.4 projects/release-install-debug/share/man/man4/dtrace-udp.4 - copied unchanged from r281849, head/share/man/man4/dtrace-udp.4 projects/release-install-debug/share/man/man9/PCI_ADD_VF.9 - copied unchanged from r281849, head/share/man/man9/PCI_ADD_VF.9 projects/release-install-debug/share/man/man9/PCI_INIT_IOV.9 - copied unchanged from r281849, head/share/man/man9/PCI_INIT_IOV.9 projects/release-install-debug/share/man/man9/PCI_UNINIT_IOV.9 - copied unchanged from r281849, head/share/man/man9/PCI_UNINIT_IOV.9 projects/release-install-debug/share/man/man9/pci_iov_schema.9 - copied unchanged from r281849, head/share/man/man9/pci_iov_schema.9 projects/release-install-debug/sys/arm/allwinner/files.allwinner - copied unchanged from r281849, head/sys/arm/allwinner/files.allwinner projects/release-install-debug/sys/arm/amlogic/ - copied from r281849, head/sys/arm/amlogic/ projects/release-install-debug/sys/arm/arm/pmap-v6-new.c - copied unchanged from r281849, head/sys/arm/arm/pmap-v6-new.c projects/release-install-debug/sys/arm/broadcom/bcm2835/bcm2836.c - copied unchanged from r281849, head/sys/arm/broadcom/bcm2835/bcm2836.c projects/release-install-debug/sys/arm/broadcom/bcm2835/bcm2836.h - copied unchanged from r281849, head/sys/arm/broadcom/bcm2835/bcm2836.h projects/release-install-debug/sys/arm/broadcom/bcm2835/bcm283x_dwc_fdt.c - copied unchanged from r281849, head/sys/arm/broadcom/bcm2835/bcm283x_dwc_fdt.c projects/release-install-debug/sys/arm/broadcom/bcm2835/files.bcm2836 - copied unchanged from r281849, head/sys/arm/broadcom/bcm2835/files.bcm2836 projects/release-install-debug/sys/arm/broadcom/bcm2835/files.bcm283x - copied unchanged from r281849, head/sys/arm/broadcom/bcm2835/files.bcm283x projects/release-install-debug/sys/arm/broadcom/bcm2835/std.bcm2836 - copied unchanged from r281849, head/sys/arm/broadcom/bcm2835/std.bcm2836 projects/release-install-debug/sys/arm/conf/ODROIDC1 - copied unchanged from r281849, head/sys/arm/conf/ODROIDC1 projects/release-install-debug/sys/arm/conf/RPI2 - copied unchanged from r281849, head/sys/arm/conf/RPI2 projects/release-install-debug/sys/arm/conf/SOCKIT.common - copied unchanged from r281849, head/sys/arm/conf/SOCKIT.common projects/release-install-debug/sys/arm/conf/VIRT - copied unchanged from r281849, head/sys/arm/conf/VIRT projects/release-install-debug/sys/arm/conf/VSATV102 - copied unchanged from r281849, head/sys/arm/conf/VSATV102 projects/release-install-debug/sys/arm/include/pmap-v6.h - copied unchanged from r281849, head/sys/arm/include/pmap-v6.h projects/release-install-debug/sys/arm/include/pmap_var.h - copied unchanged from r281849, head/sys/arm/include/pmap_var.h projects/release-install-debug/sys/arm/include/pte-v6.h - copied unchanged from r281849, head/sys/arm/include/pte-v6.h projects/release-install-debug/sys/arm/qemu/ - copied from r281849, head/sys/arm/qemu/ projects/release-install-debug/sys/arm64/ - copied from r281849, head/sys/arm64/ projects/release-install-debug/sys/boot/Makefile.arm64 - copied unchanged from r281849, head/sys/boot/Makefile.arm64 projects/release-install-debug/sys/boot/arm64/ - copied from r281849, head/sys/boot/arm64/ projects/release-install-debug/sys/boot/efi/boot1/ - copied from r281849, head/sys/boot/efi/boot1/ projects/release-install-debug/sys/boot/efi/fdt/ - copied from r281849, head/sys/boot/efi/fdt/ projects/release-install-debug/sys/boot/efi/include/arm/ - copied from r281849, head/sys/boot/efi/include/arm/ projects/release-install-debug/sys/boot/efi/include/arm64/ - copied from r281849, head/sys/boot/efi/include/arm64/ projects/release-install-debug/sys/boot/efi/loader/ - copied from r281849, head/sys/boot/efi/loader/ projects/release-install-debug/sys/boot/fdt/dts/arm/bcm2836.dtsi - copied unchanged from r281849, head/sys/boot/fdt/dts/arm/bcm2836.dtsi projects/release-install-debug/sys/boot/fdt/dts/arm/meson8b.dtsi - copied unchanged from r281849, head/sys/boot/fdt/dts/arm/meson8b.dtsi projects/release-install-debug/sys/boot/fdt/dts/arm/odroidc1.dts - copied unchanged from r281849, head/sys/boot/fdt/dts/arm/odroidc1.dts projects/release-install-debug/sys/boot/fdt/dts/arm/rpi2.dts - copied unchanged from r281849, head/sys/boot/fdt/dts/arm/rpi2.dts projects/release-install-debug/sys/boot/fdt/dts/arm/vsatv102-m6.dts - copied unchanged from r281849, head/sys/boot/fdt/dts/arm/vsatv102-m6.dts projects/release-install-debug/sys/boot/ficl/aarch64/ - copied from r281849, head/sys/boot/ficl/aarch64/ projects/release-install-debug/sys/boot/forth/Makefile - copied unchanged from r281849, head/sys/boot/forth/Makefile projects/release-install-debug/sys/boot/forth/Makefile.inc - copied unchanged from r281849, head/sys/boot/forth/Makefile.inc projects/release-install-debug/sys/boot/forth/brand-fbsd.4th - copied unchanged from r281849, head/sys/boot/forth/brand-fbsd.4th projects/release-install-debug/sys/boot/forth/logo-beastie.4th - copied unchanged from r281849, head/sys/boot/forth/logo-beastie.4th projects/release-install-debug/sys/boot/forth/logo-beastiebw.4th - copied unchanged from r281849, head/sys/boot/forth/logo-beastiebw.4th projects/release-install-debug/sys/boot/forth/logo-fbsdbw.4th - copied unchanged from r281849, head/sys/boot/forth/logo-fbsdbw.4th projects/release-install-debug/sys/boot/forth/logo-orb.4th - copied unchanged from r281849, head/sys/boot/forth/logo-orb.4th projects/release-install-debug/sys/boot/forth/logo-orbbw.4th - copied unchanged from r281849, head/sys/boot/forth/logo-orbbw.4th projects/release-install-debug/sys/boot/i386/libi386/smbios.h - copied unchanged from r281849, head/sys/boot/i386/libi386/smbios.h projects/release-install-debug/sys/boot/powerpc/ofw/ofwfdt.c - copied unchanged from r281849, head/sys/boot/powerpc/ofw/ofwfdt.c projects/release-install-debug/sys/cddl/compat/opensolaris/sys/nvpair.h - copied unchanged from r281849, head/sys/cddl/compat/opensolaris/sys/nvpair.h projects/release-install-debug/sys/conf/Makefile.arm64 - copied unchanged from r281849, head/sys/conf/Makefile.arm64 projects/release-install-debug/sys/conf/files.arm64 - copied unchanged from r281849, head/sys/conf/files.arm64 projects/release-install-debug/sys/conf/ldscript.arm64 - copied unchanged from r281849, head/sys/conf/ldscript.arm64 projects/release-install-debug/sys/conf/options.arm64 - copied unchanged from r281849, head/sys/conf/options.arm64 projects/release-install-debug/sys/crypto/aesni/aesni_os.h - copied unchanged from r281849, head/sys/crypto/aesni/aesni_os.h projects/release-install-debug/sys/dev/drm2/drm_os_freebsd.c - copied unchanged from r281849, head/sys/dev/drm2/drm_os_freebsd.c projects/release-install-debug/sys/dev/fdt/fdt_arm64.c - copied unchanged from r281849, head/sys/dev/fdt/fdt_arm64.c projects/release-install-debug/sys/dev/fdt/simplebus.h - copied unchanged from r281849, head/sys/dev/fdt/simplebus.h projects/release-install-debug/sys/dev/hwpmc/hwpmc_e500.c - copied unchanged from r281849, head/sys/dev/hwpmc/hwpmc_e500.c projects/release-install-debug/sys/dev/hwpmc/hwpmc_mips74k.c - copied unchanged from r281849, head/sys/dev/hwpmc/hwpmc_mips74k.c projects/release-install-debug/sys/dev/iicbus/ds1307.c - copied unchanged from r281849, head/sys/dev/iicbus/ds1307.c projects/release-install-debug/sys/dev/iicbus/ds1307reg.h - copied unchanged from r281849, head/sys/dev/iicbus/ds1307reg.h projects/release-install-debug/sys/dev/iicbus/ds3231.c - copied unchanged from r281849, head/sys/dev/iicbus/ds3231.c projects/release-install-debug/sys/dev/iicbus/ds3231reg.h - copied unchanged from r281849, head/sys/dev/iicbus/ds3231reg.h projects/release-install-debug/sys/dev/ixgbe/if_ix.c - copied unchanged from r281849, head/sys/dev/ixgbe/if_ix.c projects/release-install-debug/sys/dev/ixgbe/if_ixv.c - copied unchanged from r281849, head/sys/dev/ixgbe/if_ixv.c projects/release-install-debug/sys/dev/ixgbe/ix_txrx.c - copied unchanged from r281849, head/sys/dev/ixgbe/ix_txrx.c projects/release-install-debug/sys/dev/netmap/if_ixl_netmap.h - copied unchanged from r281849, head/sys/dev/netmap/if_ixl_netmap.h projects/release-install-debug/sys/dev/pci/pci_iov.c - copied unchanged from r281849, head/sys/dev/pci/pci_iov.c projects/release-install-debug/sys/dev/pci/pci_iov_private.h - copied unchanged from r281849, head/sys/dev/pci/pci_iov_private.h projects/release-install-debug/sys/dev/pci/pci_iov_schema.c - copied unchanged from r281849, head/sys/dev/pci/pci_iov_schema.c projects/release-install-debug/sys/dev/pci/schema_private.h - copied unchanged from r281849, head/sys/dev/pci/schema_private.h projects/release-install-debug/sys/dev/psci/ - copied from r281849, head/sys/dev/psci/ projects/release-install-debug/sys/dev/sfxge/sfxge_version.h - copied unchanged from r281849, head/sys/dev/sfxge/sfxge_version.h projects/release-install-debug/sys/dev/uart/uart_cpu_fdt.h - copied unchanged from r281849, head/sys/dev/uart/uart_cpu_fdt.h projects/release-install-debug/sys/dev/usb/controller/dwc_otg_fdt.h - copied unchanged from r281849, head/sys/dev/usb/controller/dwc_otg_fdt.h projects/release-install-debug/sys/dev/xen/debug/ - copied from r281849, head/sys/dev/xen/debug/ projects/release-install-debug/sys/gnu/dts/arm/aks-cdu.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/aks-cdu.dts projects/release-install-debug/sys/gnu/dts/arm/am335x-base0033.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/am335x-base0033.dts projects/release-install-debug/sys/gnu/dts/arm/am335x-bone-common.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/am335x-bone-common.dtsi projects/release-install-debug/sys/gnu/dts/arm/am335x-bone.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/am335x-bone.dts projects/release-install-debug/sys/gnu/dts/arm/am335x-boneblack.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/am335x-boneblack.dts projects/release-install-debug/sys/gnu/dts/arm/am335x-evm.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/am335x-evm.dts projects/release-install-debug/sys/gnu/dts/arm/am335x-evmsk.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/am335x-evmsk.dts projects/release-install-debug/sys/gnu/dts/arm/am335x-igep0033.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/am335x-igep0033.dtsi projects/release-install-debug/sys/gnu/dts/arm/am335x-lxm.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/am335x-lxm.dts projects/release-install-debug/sys/gnu/dts/arm/am335x-nano.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/am335x-nano.dts projects/release-install-debug/sys/gnu/dts/arm/am335x-pepper.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/am335x-pepper.dts projects/release-install-debug/sys/gnu/dts/arm/am33xx-clocks.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/am33xx-clocks.dtsi projects/release-install-debug/sys/gnu/dts/arm/am33xx.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/am33xx.dtsi projects/release-install-debug/sys/gnu/dts/arm/am3517-craneboard.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/am3517-craneboard.dts projects/release-install-debug/sys/gnu/dts/arm/am3517-evm.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/am3517-evm.dts projects/release-install-debug/sys/gnu/dts/arm/am3517.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/am3517.dtsi projects/release-install-debug/sys/gnu/dts/arm/am3517_mt_ventoux.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/am3517_mt_ventoux.dts projects/release-install-debug/sys/gnu/dts/arm/am35xx-clocks.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/am35xx-clocks.dtsi projects/release-install-debug/sys/gnu/dts/arm/am4372.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/am4372.dtsi projects/release-install-debug/sys/gnu/dts/arm/am437x-gp-evm.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/am437x-gp-evm.dts projects/release-install-debug/sys/gnu/dts/arm/am437x-idk-evm.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/am437x-idk-evm.dts projects/release-install-debug/sys/gnu/dts/arm/am437x-sk-evm.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/am437x-sk-evm.dts projects/release-install-debug/sys/gnu/dts/arm/am43x-epos-evm.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/am43x-epos-evm.dts projects/release-install-debug/sys/gnu/dts/arm/am43xx-clocks.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/am43xx-clocks.dtsi projects/release-install-debug/sys/gnu/dts/arm/am57xx-beagle-x15.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/am57xx-beagle-x15.dts projects/release-install-debug/sys/gnu/dts/arm/arm-realview-pb1176.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/arm-realview-pb1176.dts projects/release-install-debug/sys/gnu/dts/arm/armada-370-db.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-370-db.dts projects/release-install-debug/sys/gnu/dts/arm/armada-370-mirabox.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-370-mirabox.dts projects/release-install-debug/sys/gnu/dts/arm/armada-370-netgear-rn102.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-370-netgear-rn102.dts projects/release-install-debug/sys/gnu/dts/arm/armada-370-netgear-rn104.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-370-netgear-rn104.dts projects/release-install-debug/sys/gnu/dts/arm/armada-370-rd.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-370-rd.dts projects/release-install-debug/sys/gnu/dts/arm/armada-370-synology-ds213j.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-370-synology-ds213j.dts projects/release-install-debug/sys/gnu/dts/arm/armada-370-xp.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-370-xp.dtsi projects/release-install-debug/sys/gnu/dts/arm/armada-370.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-370.dtsi projects/release-install-debug/sys/gnu/dts/arm/armada-375-db.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-375-db.dts projects/release-install-debug/sys/gnu/dts/arm/armada-375.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-375.dtsi projects/release-install-debug/sys/gnu/dts/arm/armada-380.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-380.dtsi projects/release-install-debug/sys/gnu/dts/arm/armada-385-db-ap.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-385-db-ap.dts projects/release-install-debug/sys/gnu/dts/arm/armada-385.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-385.dtsi projects/release-install-debug/sys/gnu/dts/arm/armada-388-db.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-388-db.dts projects/release-install-debug/sys/gnu/dts/arm/armada-388-gp.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-388-gp.dts projects/release-install-debug/sys/gnu/dts/arm/armada-388-rd.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-388-rd.dts projects/release-install-debug/sys/gnu/dts/arm/armada-388.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-388.dtsi projects/release-install-debug/sys/gnu/dts/arm/armada-38x.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-38x.dtsi projects/release-install-debug/sys/gnu/dts/arm/armada-xp-axpwifiap.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-xp-axpwifiap.dts projects/release-install-debug/sys/gnu/dts/arm/armada-xp-db.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-xp-db.dts projects/release-install-debug/sys/gnu/dts/arm/armada-xp-gp.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-xp-gp.dts projects/release-install-debug/sys/gnu/dts/arm/armada-xp-lenovo-ix4-300d.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-xp-lenovo-ix4-300d.dts projects/release-install-debug/sys/gnu/dts/arm/armada-xp-matrix.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-xp-matrix.dts projects/release-install-debug/sys/gnu/dts/arm/armada-xp-mv78230.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-xp-mv78230.dtsi projects/release-install-debug/sys/gnu/dts/arm/armada-xp-mv78260.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-xp-mv78260.dtsi projects/release-install-debug/sys/gnu/dts/arm/armada-xp-mv78460.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-xp-mv78460.dtsi projects/release-install-debug/sys/gnu/dts/arm/armada-xp-netgear-rn2120.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-xp-netgear-rn2120.dts projects/release-install-debug/sys/gnu/dts/arm/armada-xp-openblocks-ax3-4.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-xp-openblocks-ax3-4.dts projects/release-install-debug/sys/gnu/dts/arm/armada-xp-synology-ds414.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-xp-synology-ds414.dts projects/release-install-debug/sys/gnu/dts/arm/armada-xp.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/armada-xp.dtsi projects/release-install-debug/sys/gnu/dts/arm/armv7-m.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/armv7-m.dtsi projects/release-install-debug/sys/gnu/dts/arm/at91-sama5d4ek.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/at91-sama5d4ek.dts projects/release-install-debug/sys/gnu/dts/arm/at91sam9xe.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/at91sam9xe.dtsi projects/release-install-debug/sys/gnu/dts/arm/atlas6-evb.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/atlas6-evb.dts projects/release-install-debug/sys/gnu/dts/arm/atlas6.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/atlas6.dtsi projects/release-install-debug/sys/gnu/dts/arm/atlas7-evb.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/atlas7-evb.dts projects/release-install-debug/sys/gnu/dts/arm/atlas7.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/atlas7.dtsi projects/release-install-debug/sys/gnu/dts/arm/axm5516-cpus.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/axm5516-cpus.dtsi projects/release-install-debug/sys/gnu/dts/arm/axp209.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/axp209.dtsi projects/release-install-debug/sys/gnu/dts/arm/bcm-cygnus-clock.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm-cygnus-clock.dtsi projects/release-install-debug/sys/gnu/dts/arm/bcm-cygnus.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm-cygnus.dtsi projects/release-install-debug/sys/gnu/dts/arm/bcm11351.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm11351.dtsi projects/release-install-debug/sys/gnu/dts/arm/bcm21664-garnet.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm21664-garnet.dts projects/release-install-debug/sys/gnu/dts/arm/bcm21664.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm21664.dtsi projects/release-install-debug/sys/gnu/dts/arm/bcm28155-ap.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm28155-ap.dts projects/release-install-debug/sys/gnu/dts/arm/bcm2835-rpi-b-plus.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm2835-rpi-b-plus.dts projects/release-install-debug/sys/gnu/dts/arm/bcm2835-rpi-b.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm2835-rpi-b.dts projects/release-install-debug/sys/gnu/dts/arm/bcm2835-rpi.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm2835-rpi.dtsi projects/release-install-debug/sys/gnu/dts/arm/bcm2835.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm2835.dtsi projects/release-install-debug/sys/gnu/dts/arm/bcm4708-buffalo-wzr-1750dhp.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm4708-buffalo-wzr-1750dhp.dts projects/release-install-debug/sys/gnu/dts/arm/bcm4708-luxul-xwc-1000.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm4708-luxul-xwc-1000.dts projects/release-install-debug/sys/gnu/dts/arm/bcm4708-netgear-r6250.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm4708-netgear-r6250.dts projects/release-install-debug/sys/gnu/dts/arm/bcm4708-netgear-r6300-v2.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm4708-netgear-r6300-v2.dts projects/release-install-debug/sys/gnu/dts/arm/bcm4708.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm4708.dtsi projects/release-install-debug/sys/gnu/dts/arm/bcm47081-asus-rt-n18u.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm47081-asus-rt-n18u.dts projects/release-install-debug/sys/gnu/dts/arm/bcm47081-buffalo-wzr-600dhp2.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm47081-buffalo-wzr-600dhp2.dts projects/release-install-debug/sys/gnu/dts/arm/bcm47081-buffalo-wzr-900dhp.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm47081-buffalo-wzr-900dhp.dts projects/release-install-debug/sys/gnu/dts/arm/bcm47081.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm47081.dtsi projects/release-install-debug/sys/gnu/dts/arm/bcm5301x.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm5301x.dtsi projects/release-install-debug/sys/gnu/dts/arm/bcm59056.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm59056.dtsi projects/release-install-debug/sys/gnu/dts/arm/bcm63138.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm63138.dtsi projects/release-install-debug/sys/gnu/dts/arm/bcm7445-bcm97445svmb.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm7445-bcm97445svmb.dts projects/release-install-debug/sys/gnu/dts/arm/bcm7445.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm7445.dtsi projects/release-install-debug/sys/gnu/dts/arm/bcm911360_entphn.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm911360_entphn.dts projects/release-install-debug/sys/gnu/dts/arm/bcm911360k.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm911360k.dts projects/release-install-debug/sys/gnu/dts/arm/bcm958300k.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm958300k.dts projects/release-install-debug/sys/gnu/dts/arm/bcm963138dvt.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/bcm963138dvt.dts projects/release-install-debug/sys/gnu/dts/arm/berlin2-sony-nsz-gs7.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/berlin2-sony-nsz-gs7.dts projects/release-install-debug/sys/gnu/dts/arm/berlin2.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/berlin2.dtsi projects/release-install-debug/sys/gnu/dts/arm/berlin2cd-google-chromecast.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/berlin2cd-google-chromecast.dts projects/release-install-debug/sys/gnu/dts/arm/berlin2cd.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/berlin2cd.dtsi projects/release-install-debug/sys/gnu/dts/arm/berlin2q-marvell-dmp.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/berlin2q-marvell-dmp.dts projects/release-install-debug/sys/gnu/dts/arm/berlin2q.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/berlin2q.dtsi projects/release-install-debug/sys/gnu/dts/arm/cros-adc-thermistors.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/cros-adc-thermistors.dtsi projects/release-install-debug/sys/gnu/dts/arm/cros-ec-keyboard.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/cros-ec-keyboard.dtsi projects/release-install-debug/sys/gnu/dts/arm/cx92755.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/cx92755.dtsi projects/release-install-debug/sys/gnu/dts/arm/cx92755_equinox.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/cx92755_equinox.dts projects/release-install-debug/sys/gnu/dts/arm/da850-enbw-cmc.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/da850-enbw-cmc.dts projects/release-install-debug/sys/gnu/dts/arm/da850-evm.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/da850-evm.dts projects/release-install-debug/sys/gnu/dts/arm/da850.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/da850.dtsi projects/release-install-debug/sys/gnu/dts/arm/dm8168-evm.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/dm8168-evm.dts projects/release-install-debug/sys/gnu/dts/arm/dm816x-clocks.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/dm816x-clocks.dtsi projects/release-install-debug/sys/gnu/dts/arm/dm816x.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/dm816x.dtsi projects/release-install-debug/sys/gnu/dts/arm/dove-cm-a510.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/dove-cm-a510.dts projects/release-install-debug/sys/gnu/dts/arm/dove-cubox-es.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/dove-cubox-es.dts projects/release-install-debug/sys/gnu/dts/arm/dove-cubox.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/dove-cubox.dts projects/release-install-debug/sys/gnu/dts/arm/dove-d2plug.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/dove-d2plug.dts projects/release-install-debug/sys/gnu/dts/arm/dove-d3plug.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/dove-d3plug.dts projects/release-install-debug/sys/gnu/dts/arm/dove-dove-db.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/dove-dove-db.dts projects/release-install-debug/sys/gnu/dts/arm/dove.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/dove.dtsi projects/release-install-debug/sys/gnu/dts/arm/dra7-evm.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/dra7-evm.dts projects/release-install-debug/sys/gnu/dts/arm/dra7.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/dra7.dtsi projects/release-install-debug/sys/gnu/dts/arm/dra72-evm.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/dra72-evm.dts projects/release-install-debug/sys/gnu/dts/arm/dra72x.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/dra72x.dtsi projects/release-install-debug/sys/gnu/dts/arm/dra74x.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/dra74x.dtsi projects/release-install-debug/sys/gnu/dts/arm/dra7xx-clocks.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/dra7xx-clocks.dtsi projects/release-install-debug/sys/gnu/dts/arm/ea3250.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/ea3250.dts projects/release-install-debug/sys/gnu/dts/arm/ecx-2000.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/ecx-2000.dts projects/release-install-debug/sys/gnu/dts/arm/ecx-common.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/ecx-common.dtsi projects/release-install-debug/sys/gnu/dts/arm/efm32gg-dk3750.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/efm32gg-dk3750.dts projects/release-install-debug/sys/gnu/dts/arm/efm32gg.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/efm32gg.dtsi projects/release-install-debug/sys/gnu/dts/arm/elpida_ecb240abacn.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/elpida_ecb240abacn.dtsi projects/release-install-debug/sys/gnu/dts/arm/emev2-kzm9d.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/emev2-kzm9d.dts projects/release-install-debug/sys/gnu/dts/arm/emev2.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/emev2.dtsi projects/release-install-debug/sys/gnu/dts/arm/exynos3250-monk.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos3250-monk.dts projects/release-install-debug/sys/gnu/dts/arm/exynos3250-pinctrl.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos3250-pinctrl.dtsi projects/release-install-debug/sys/gnu/dts/arm/exynos3250-rinato.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos3250-rinato.dts projects/release-install-debug/sys/gnu/dts/arm/exynos3250.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos3250.dtsi projects/release-install-debug/sys/gnu/dts/arm/exynos4.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos4.dtsi projects/release-install-debug/sys/gnu/dts/arm/exynos4210-origen.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos4210-origen.dts projects/release-install-debug/sys/gnu/dts/arm/exynos4210-pinctrl.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos4210-pinctrl.dtsi projects/release-install-debug/sys/gnu/dts/arm/exynos4210-smdkv310.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos4210-smdkv310.dts projects/release-install-debug/sys/gnu/dts/arm/exynos4210-trats.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos4210-trats.dts projects/release-install-debug/sys/gnu/dts/arm/exynos4210-universal_c210.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos4210-universal_c210.dts projects/release-install-debug/sys/gnu/dts/arm/exynos4210.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos4210.dtsi projects/release-install-debug/sys/gnu/dts/arm/exynos4212.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos4212.dtsi projects/release-install-debug/sys/gnu/dts/arm/exynos4412-odroid-common.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos4412-odroid-common.dtsi projects/release-install-debug/sys/gnu/dts/arm/exynos4412-odroidu3.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos4412-odroidu3.dts projects/release-install-debug/sys/gnu/dts/arm/exynos4412-odroidx.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos4412-odroidx.dts projects/release-install-debug/sys/gnu/dts/arm/exynos4412-odroidx2.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos4412-odroidx2.dts projects/release-install-debug/sys/gnu/dts/arm/exynos4412-origen.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos4412-origen.dts projects/release-install-debug/sys/gnu/dts/arm/exynos4412-smdk4412.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos4412-smdk4412.dts projects/release-install-debug/sys/gnu/dts/arm/exynos4412-tiny4412.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos4412-tiny4412.dts projects/release-install-debug/sys/gnu/dts/arm/exynos4412-trats2.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos4412-trats2.dts projects/release-install-debug/sys/gnu/dts/arm/exynos4412.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos4412.dtsi projects/release-install-debug/sys/gnu/dts/arm/exynos4415-pinctrl.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos4415-pinctrl.dtsi projects/release-install-debug/sys/gnu/dts/arm/exynos4415.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos4415.dtsi projects/release-install-debug/sys/gnu/dts/arm/exynos4x12-pinctrl.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos4x12-pinctrl.dtsi projects/release-install-debug/sys/gnu/dts/arm/exynos4x12.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos4x12.dtsi projects/release-install-debug/sys/gnu/dts/arm/exynos5.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos5.dtsi projects/release-install-debug/sys/gnu/dts/arm/exynos5250-arndale.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos5250-arndale.dts projects/release-install-debug/sys/gnu/dts/arm/exynos5250-pinctrl.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos5250-pinctrl.dtsi projects/release-install-debug/sys/gnu/dts/arm/exynos5250-smdk5250.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos5250-smdk5250.dts projects/release-install-debug/sys/gnu/dts/arm/exynos5250-spring.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos5250-spring.dts projects/release-install-debug/sys/gnu/dts/arm/exynos5250.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos5250.dtsi projects/release-install-debug/sys/gnu/dts/arm/exynos5260-pinctrl.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos5260-pinctrl.dtsi projects/release-install-debug/sys/gnu/dts/arm/exynos5260-xyref5260.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos5260-xyref5260.dts projects/release-install-debug/sys/gnu/dts/arm/exynos5260.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos5260.dtsi projects/release-install-debug/sys/gnu/dts/arm/exynos5410-smdk5410.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos5410-smdk5410.dts projects/release-install-debug/sys/gnu/dts/arm/exynos5410.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos5410.dtsi projects/release-install-debug/sys/gnu/dts/arm/exynos5420-arndale-octa.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos5420-arndale-octa.dts projects/release-install-debug/sys/gnu/dts/arm/exynos5420-pinctrl.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos5420-pinctrl.dtsi projects/release-install-debug/sys/gnu/dts/arm/exynos5420-smdk5420.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos5420-smdk5420.dts projects/release-install-debug/sys/gnu/dts/arm/exynos5420.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos5420.dtsi projects/release-install-debug/sys/gnu/dts/arm/exynos5422-odroidxu3.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos5422-odroidxu3.dts projects/release-install-debug/sys/gnu/dts/arm/exynos5440-sd5v1.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos5440-sd5v1.dts projects/release-install-debug/sys/gnu/dts/arm/exynos5440-ssdk5440.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos5440-ssdk5440.dts projects/release-install-debug/sys/gnu/dts/arm/exynos5440.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos5440.dtsi projects/release-install-debug/sys/gnu/dts/arm/exynos5800.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/exynos5800.dtsi projects/release-install-debug/sys/gnu/dts/arm/hi3620-hi4511.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/hi3620-hi4511.dts projects/release-install-debug/sys/gnu/dts/arm/hi3620.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/hi3620.dtsi projects/release-install-debug/sys/gnu/dts/arm/highbank.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/highbank.dts projects/release-install-debug/sys/gnu/dts/arm/hip01-ca9x2.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/hip01-ca9x2.dts projects/release-install-debug/sys/gnu/dts/arm/hip01.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/hip01.dtsi projects/release-install-debug/sys/gnu/dts/arm/hip04-d01.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/hip04-d01.dts projects/release-install-debug/sys/gnu/dts/arm/hip04.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/hip04.dtsi projects/release-install-debug/sys/gnu/dts/arm/hisi-x5hd2-dkb.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/hisi-x5hd2-dkb.dts projects/release-install-debug/sys/gnu/dts/arm/hisi-x5hd2.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/hisi-x5hd2.dtsi projects/release-install-debug/sys/gnu/dts/arm/imx1-ads.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx1-ads.dts projects/release-install-debug/sys/gnu/dts/arm/imx1-apf9328.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx1-apf9328.dts projects/release-install-debug/sys/gnu/dts/arm/imx1-pinfunc.h - copied unchanged from r281849, head/sys/gnu/dts/arm/imx1-pinfunc.h projects/release-install-debug/sys/gnu/dts/arm/imx1.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/imx1.dtsi projects/release-install-debug/sys/gnu/dts/arm/imx23-evk.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx23-evk.dts projects/release-install-debug/sys/gnu/dts/arm/imx23-olinuxino.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx23-olinuxino.dts projects/release-install-debug/sys/gnu/dts/arm/imx23-pinfunc.h - copied unchanged from r281849, head/sys/gnu/dts/arm/imx23-pinfunc.h projects/release-install-debug/sys/gnu/dts/arm/imx23-stmp378x_devb.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx23-stmp378x_devb.dts projects/release-install-debug/sys/gnu/dts/arm/imx23.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/imx23.dtsi projects/release-install-debug/sys/gnu/dts/arm/imx25-eukrea-cpuimx25.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/imx25-eukrea-cpuimx25.dtsi projects/release-install-debug/sys/gnu/dts/arm/imx25-eukrea-mbimxsd25-baseboard-cmo-qvga.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx25-eukrea-mbimxsd25-baseboard-cmo-qvga.dts projects/release-install-debug/sys/gnu/dts/arm/imx25-eukrea-mbimxsd25-baseboard-dvi-svga.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx25-eukrea-mbimxsd25-baseboard-dvi-svga.dts projects/release-install-debug/sys/gnu/dts/arm/imx25-eukrea-mbimxsd25-baseboard-dvi-vga.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx25-eukrea-mbimxsd25-baseboard-dvi-vga.dts projects/release-install-debug/sys/gnu/dts/arm/imx25-eukrea-mbimxsd25-baseboard.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx25-eukrea-mbimxsd25-baseboard.dts projects/release-install-debug/sys/gnu/dts/arm/imx25-karo-tx25.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx25-karo-tx25.dts projects/release-install-debug/sys/gnu/dts/arm/imx25-pdk.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx25-pdk.dts projects/release-install-debug/sys/gnu/dts/arm/imx25-pinfunc.h - copied unchanged from r281849, head/sys/gnu/dts/arm/imx25-pinfunc.h projects/release-install-debug/sys/gnu/dts/arm/imx25.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/imx25.dtsi projects/release-install-debug/sys/gnu/dts/arm/imx27-apf27.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx27-apf27.dts projects/release-install-debug/sys/gnu/dts/arm/imx27-apf27dev.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx27-apf27dev.dts projects/release-install-debug/sys/gnu/dts/arm/imx27-eukrea-cpuimx27.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/imx27-eukrea-cpuimx27.dtsi projects/release-install-debug/sys/gnu/dts/arm/imx27-eukrea-mbimxsd27-baseboard.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx27-eukrea-mbimxsd27-baseboard.dts projects/release-install-debug/sys/gnu/dts/arm/imx27-pdk.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx27-pdk.dts projects/release-install-debug/sys/gnu/dts/arm/imx27-phytec-phycard-s-rdk.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx27-phytec-phycard-s-rdk.dts projects/release-install-debug/sys/gnu/dts/arm/imx27-phytec-phycard-s-som.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/imx27-phytec-phycard-s-som.dtsi projects/release-install-debug/sys/gnu/dts/arm/imx27-phytec-phycore-rdk.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx27-phytec-phycore-rdk.dts projects/release-install-debug/sys/gnu/dts/arm/imx27-phytec-phycore-som.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/imx27-phytec-phycore-som.dtsi projects/release-install-debug/sys/gnu/dts/arm/imx27-pinfunc.h - copied unchanged from r281849, head/sys/gnu/dts/arm/imx27-pinfunc.h projects/release-install-debug/sys/gnu/dts/arm/imx27.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/imx27.dtsi projects/release-install-debug/sys/gnu/dts/arm/imx28-apf28.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx28-apf28.dts projects/release-install-debug/sys/gnu/dts/arm/imx28-apf28dev.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx28-apf28dev.dts projects/release-install-debug/sys/gnu/dts/arm/imx28-apx4devkit.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx28-apx4devkit.dts projects/release-install-debug/sys/gnu/dts/arm/imx28-cfa10036.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx28-cfa10036.dts projects/release-install-debug/sys/gnu/dts/arm/imx28-cfa10037.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx28-cfa10037.dts projects/release-install-debug/sys/gnu/dts/arm/imx28-cfa10049.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx28-cfa10049.dts projects/release-install-debug/sys/gnu/dts/arm/imx28-cfa10055.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx28-cfa10055.dts projects/release-install-debug/sys/gnu/dts/arm/imx28-cfa10056.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx28-cfa10056.dts projects/release-install-debug/sys/gnu/dts/arm/imx28-cfa10057.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx28-cfa10057.dts projects/release-install-debug/sys/gnu/dts/arm/imx28-cfa10058.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx28-cfa10058.dts projects/release-install-debug/sys/gnu/dts/arm/imx28-duckbill.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx28-duckbill.dts projects/release-install-debug/sys/gnu/dts/arm/imx28-eukrea-mbmx283lc.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx28-eukrea-mbmx283lc.dts projects/release-install-debug/sys/gnu/dts/arm/imx28-eukrea-mbmx287lc.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx28-eukrea-mbmx287lc.dts projects/release-install-debug/sys/gnu/dts/arm/imx28-eukrea-mbmx28lc.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/imx28-eukrea-mbmx28lc.dtsi projects/release-install-debug/sys/gnu/dts/arm/imx28-evk.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx28-evk.dts projects/release-install-debug/sys/gnu/dts/arm/imx28-m28.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/imx28-m28.dtsi projects/release-install-debug/sys/gnu/dts/arm/imx28-m28cu3.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx28-m28cu3.dts projects/release-install-debug/sys/gnu/dts/arm/imx28-m28evk.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx28-m28evk.dts projects/release-install-debug/sys/gnu/dts/arm/imx28-pinfunc.h - copied unchanged from r281849, head/sys/gnu/dts/arm/imx28-pinfunc.h projects/release-install-debug/sys/gnu/dts/arm/imx28-sps1.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx28-sps1.dts projects/release-install-debug/sys/gnu/dts/arm/imx28-tx28.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx28-tx28.dts projects/release-install-debug/sys/gnu/dts/arm/imx28.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/imx28.dtsi projects/release-install-debug/sys/gnu/dts/arm/imx31-bug.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx31-bug.dts projects/release-install-debug/sys/gnu/dts/arm/imx31.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/imx31.dtsi projects/release-install-debug/sys/gnu/dts/arm/imx35-eukrea-cpuimx35.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/imx35-eukrea-cpuimx35.dtsi projects/release-install-debug/sys/gnu/dts/arm/imx35-eukrea-mbimxsd35-baseboard.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx35-eukrea-mbimxsd35-baseboard.dts projects/release-install-debug/sys/gnu/dts/arm/imx35-pdk.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx35-pdk.dts projects/release-install-debug/sys/gnu/dts/arm/imx35-pinfunc.h - copied unchanged from r281849, head/sys/gnu/dts/arm/imx35-pinfunc.h projects/release-install-debug/sys/gnu/dts/arm/imx35.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/imx35.dtsi projects/release-install-debug/sys/gnu/dts/arm/imx50-evk.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx50-evk.dts projects/release-install-debug/sys/gnu/dts/arm/imx50-pinfunc.h - copied unchanged from r281849, head/sys/gnu/dts/arm/imx50-pinfunc.h projects/release-install-debug/sys/gnu/dts/arm/imx50.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/imx50.dtsi projects/release-install-debug/sys/gnu/dts/arm/imx6dl-gw552x.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx6dl-gw552x.dts projects/release-install-debug/sys/gnu/dts/arm/imx6dl-udoo.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx6dl-udoo.dts projects/release-install-debug/sys/gnu/dts/arm/imx6q-gw552x.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx6q-gw552x.dts projects/release-install-debug/sys/gnu/dts/arm/imx6q-hummingboard.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx6q-hummingboard.dts projects/release-install-debug/sys/gnu/dts/arm/imx6q-tbs2910.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx6q-tbs2910.dts projects/release-install-debug/sys/gnu/dts/arm/imx6qdl-gw552x.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/imx6qdl-gw552x.dtsi projects/release-install-debug/sys/gnu/dts/arm/imx6qdl-hummingboard.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/imx6qdl-hummingboard.dtsi projects/release-install-debug/sys/gnu/dts/arm/imx6qdl-microsom-ar8035.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/imx6qdl-microsom-ar8035.dtsi projects/release-install-debug/sys/gnu/dts/arm/imx6qdl-microsom.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/imx6qdl-microsom.dtsi projects/release-install-debug/sys/gnu/dts/arm/imx6qdl-phytec-pbab01.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/imx6qdl-phytec-pbab01.dtsi projects/release-install-debug/sys/gnu/dts/arm/imx6qdl-udoo.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/imx6qdl-udoo.dtsi projects/release-install-debug/sys/gnu/dts/arm/imx6sx-pinfunc.h - copied unchanged from r281849, head/sys/gnu/dts/arm/imx6sx-pinfunc.h projects/release-install-debug/sys/gnu/dts/arm/imx6sx-sabreauto.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/imx6sx-sabreauto.dts projects/release-install-debug/sys/gnu/dts/arm/integrator.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/integrator.dtsi projects/release-install-debug/sys/gnu/dts/arm/integratorap.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/integratorap.dts projects/release-install-debug/sys/gnu/dts/arm/integratorcp.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/integratorcp.dts projects/release-install-debug/sys/gnu/dts/arm/k2e-clocks.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/k2e-clocks.dtsi projects/release-install-debug/sys/gnu/dts/arm/k2e-evm.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/k2e-evm.dts projects/release-install-debug/sys/gnu/dts/arm/k2e.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/k2e.dtsi projects/release-install-debug/sys/gnu/dts/arm/k2hk-clocks.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/k2hk-clocks.dtsi projects/release-install-debug/sys/gnu/dts/arm/k2hk-evm.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/k2hk-evm.dts projects/release-install-debug/sys/gnu/dts/arm/k2hk.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/k2hk.dtsi projects/release-install-debug/sys/gnu/dts/arm/k2l-clocks.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/k2l-clocks.dtsi projects/release-install-debug/sys/gnu/dts/arm/k2l-evm.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/k2l-evm.dts projects/release-install-debug/sys/gnu/dts/arm/k2l.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/k2l.dtsi projects/release-install-debug/sys/gnu/dts/arm/keystone-clocks.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/keystone-clocks.dtsi projects/release-install-debug/sys/gnu/dts/arm/keystone.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/keystone.dtsi projects/release-install-debug/sys/gnu/dts/arm/kirkwood-6192.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-6192.dtsi projects/release-install-debug/sys/gnu/dts/arm/kirkwood-6281.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-6281.dtsi projects/release-install-debug/sys/gnu/dts/arm/kirkwood-6282.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-6282.dtsi projects/release-install-debug/sys/gnu/dts/arm/kirkwood-98dx4122.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-98dx4122.dtsi projects/release-install-debug/sys/gnu/dts/arm/kirkwood-b3.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-b3.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-blackarmor-nas220.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-blackarmor-nas220.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-cloudbox.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-cloudbox.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-d2net.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-d2net.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-db-88f6281.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-db-88f6281.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-db-88f6282.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-db-88f6282.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-db.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-db.dtsi projects/release-install-debug/sys/gnu/dts/arm/kirkwood-dir665.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-dir665.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-dns320.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-dns320.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-dns325.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-dns325.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-dnskw.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-dnskw.dtsi projects/release-install-debug/sys/gnu/dts/arm/kirkwood-dockstar.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-dockstar.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-dreamplug.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-dreamplug.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ds109.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ds109.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ds110jv10.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ds110jv10.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ds111.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ds111.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ds112.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ds112.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ds209.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ds209.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ds210.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ds210.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ds212.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ds212.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ds212j.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ds212j.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ds409.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ds409.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ds409slim.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ds409slim.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ds411.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ds411.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ds411j.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ds411j.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ds411slim.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ds411slim.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-goflexnet.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-goflexnet.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-guruplug-server-plus.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-guruplug-server-plus.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ib62x0.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ib62x0.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-iconnect.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-iconnect.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-iomega_ix2_200.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-iomega_ix2_200.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-is2.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-is2.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-km_common.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-km_common.dtsi projects/release-install-debug/sys/gnu/dts/arm/kirkwood-km_fixedeth.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-km_fixedeth.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-km_kirkwood.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-km_kirkwood.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-laplug.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-laplug.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-lschlv2.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-lschlv2.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-lsxhl.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-lsxhl.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-lsxl.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-lsxl.dtsi projects/release-install-debug/sys/gnu/dts/arm/kirkwood-mplcec4.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-mplcec4.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-mv88f6281gtw-ge.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-mv88f6281gtw-ge.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-net2big.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-net2big.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-net5big.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-net5big.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-netgear_readynas_duo_v2.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-netgear_readynas_duo_v2.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-netgear_readynas_nv+_v2.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-netgear_readynas_nv+_v2.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-netxbig.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-netxbig.dtsi projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ns2-common.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ns2-common.dtsi projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ns2.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ns2.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ns2lite.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ns2lite.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ns2max.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ns2max.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ns2mini.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ns2mini.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-nsa310.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-nsa310.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-nsa310a.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-nsa310a.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-nsa320.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-nsa320.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-nsa3x0-common.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-nsa3x0-common.dtsi projects/release-install-debug/sys/gnu/dts/arm/kirkwood-openblocks_a6.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-openblocks_a6.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-openblocks_a7.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-openblocks_a7.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-openrd-base.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-openrd-base.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-openrd-client.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-openrd-client.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-openrd-ultimate.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-openrd-ultimate.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-openrd.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-openrd.dtsi projects/release-install-debug/sys/gnu/dts/arm/kirkwood-pogo_e02.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-pogo_e02.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-rd88f6192.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-rd88f6192.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-rd88f6281-a.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-rd88f6281-a.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-rd88f6281-z0.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-rd88f6281-z0.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-rd88f6281.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-rd88f6281.dtsi projects/release-install-debug/sys/gnu/dts/arm/kirkwood-rs212.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-rs212.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-rs409.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-rs409.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-rs411.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-rs411.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-sheevaplug-common.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-sheevaplug-common.dtsi projects/release-install-debug/sys/gnu/dts/arm/kirkwood-sheevaplug-esata.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-sheevaplug-esata.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-sheevaplug.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-sheevaplug.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-synology.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-synology.dtsi projects/release-install-debug/sys/gnu/dts/arm/kirkwood-t5325.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-t5325.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-topkick.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-topkick.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ts219-6281.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ts219-6281.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ts219-6282.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ts219-6282.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ts219.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ts219.dtsi projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ts419-6281.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ts419-6281.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ts419-6282.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ts419-6282.dts projects/release-install-debug/sys/gnu/dts/arm/kirkwood-ts419.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood-ts419.dtsi projects/release-install-debug/sys/gnu/dts/arm/kirkwood.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/kirkwood.dtsi projects/release-install-debug/sys/gnu/dts/arm/lpc32xx.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/lpc32xx.dtsi projects/release-install-debug/sys/gnu/dts/arm/ls1021a-qds.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/ls1021a-qds.dts projects/release-install-debug/sys/gnu/dts/arm/ls1021a-twr.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/ls1021a-twr.dts projects/release-install-debug/sys/gnu/dts/arm/ls1021a.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/ls1021a.dtsi projects/release-install-debug/sys/gnu/dts/arm/meson.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/meson.dtsi projects/release-install-debug/sys/gnu/dts/arm/meson6-atv1200.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/meson6-atv1200.dts projects/release-install-debug/sys/gnu/dts/arm/meson6.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/meson6.dtsi projects/release-install-debug/sys/gnu/dts/arm/meson8.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/meson8.dtsi projects/release-install-debug/sys/gnu/dts/arm/moxart-uc7112lx.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/moxart-uc7112lx.dts projects/release-install-debug/sys/gnu/dts/arm/moxart.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/moxart.dtsi projects/release-install-debug/sys/gnu/dts/arm/mt6589-aquaris5.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/mt6589-aquaris5.dts projects/release-install-debug/sys/gnu/dts/arm/mt6589.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/mt6589.dtsi projects/release-install-debug/sys/gnu/dts/arm/mt6592-evb.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/mt6592-evb.dts projects/release-install-debug/sys/gnu/dts/arm/mt6592.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/mt6592.dtsi projects/release-install-debug/sys/gnu/dts/arm/mt8127-moose.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/mt8127-moose.dts projects/release-install-debug/sys/gnu/dts/arm/mt8127.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/mt8127.dtsi projects/release-install-debug/sys/gnu/dts/arm/mt8135-evbp1.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/mt8135-evbp1.dts projects/release-install-debug/sys/gnu/dts/arm/mt8135.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/mt8135.dtsi projects/release-install-debug/sys/gnu/dts/arm/mxs-pinfunc.h - copied unchanged from r281849, head/sys/gnu/dts/arm/mxs-pinfunc.h projects/release-install-debug/sys/gnu/dts/arm/nspire-classic.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/nspire-classic.dtsi projects/release-install-debug/sys/gnu/dts/arm/nspire-clp.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/nspire-clp.dts projects/release-install-debug/sys/gnu/dts/arm/nspire-cx.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/nspire-cx.dts projects/release-install-debug/sys/gnu/dts/arm/nspire-tp.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/nspire-tp.dts projects/release-install-debug/sys/gnu/dts/arm/nspire.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/nspire.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap-gpmc-smsc911x.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap-gpmc-smsc911x.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap-gpmc-smsc9221.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap-gpmc-smsc9221.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap-zoom-common.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap-zoom-common.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap2.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap2.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap2420-clocks.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap2420-clocks.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap2420-h4.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap2420-h4.dts projects/release-install-debug/sys/gnu/dts/arm/omap2420-n800.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap2420-n800.dts projects/release-install-debug/sys/gnu/dts/arm/omap2420-n810-wimax.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap2420-n810-wimax.dts projects/release-install-debug/sys/gnu/dts/arm/omap2420-n810.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap2420-n810.dts projects/release-install-debug/sys/gnu/dts/arm/omap2420-n8x0-common.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap2420-n8x0-common.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap2420.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap2420.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap2430-clocks.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap2430-clocks.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap2430-sdp.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap2430-sdp.dts projects/release-install-debug/sys/gnu/dts/arm/omap2430.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap2430.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap24xx-clocks.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap24xx-clocks.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-beagle-xm-ab.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-beagle-xm-ab.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-beagle-xm.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-beagle-xm.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-beagle.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-beagle.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-cm-t3517.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-cm-t3517.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-cm-t3530.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-cm-t3530.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-cm-t3730.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-cm-t3730.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-cm-t3x.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-cm-t3x.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-cm-t3x30.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-cm-t3x30.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-devkit8000.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-devkit8000.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-evm-37xx.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-evm-37xx.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-evm-common.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-evm-common.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-evm.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-evm.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-gta04.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-gta04.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-gta04a3.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-gta04a3.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-gta04a4.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-gta04a4.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-gta04a5.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-gta04a5.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-ha-common.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-ha-common.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-ha-lcd.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-ha-lcd.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-ha.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-ha.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-igep.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-igep.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-igep0020-common.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-igep0020-common.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-igep0020-rev-f.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-igep0020-rev-f.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-igep0020.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-igep0020.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-igep0030-common.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-igep0030-common.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-igep0030-rev-g.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-igep0030-rev-g.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-igep0030.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-igep0030.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-ldp.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-ldp.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-lilly-a83x.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-lilly-a83x.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-lilly-dbb056.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-lilly-dbb056.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-n9.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-n9.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-n900.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-n900.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-n950-n9.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-n950-n9.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-n950.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-n950.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-overo-alto35-common.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo-alto35-common.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-overo-alto35.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo-alto35.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-overo-base.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo-base.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-overo-chestnut43-common.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo-chestnut43-common.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-overo-chestnut43.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo-chestnut43.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-overo-common-dvi.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo-common-dvi.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-overo-common-lcd35.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo-common-lcd35.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-overo-common-lcd43.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo-common-lcd43.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-overo-common-peripherals.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo-common-peripherals.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-overo-gallop43-common.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo-gallop43-common.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-overo-gallop43.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo-gallop43.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-overo-palo43-common.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo-palo43-common.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-overo-palo43.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo-palo43.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-overo-storm-alto35.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo-storm-alto35.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-overo-storm-chestnut43.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo-storm-chestnut43.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-overo-storm-gallop43.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo-storm-gallop43.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-overo-storm-palo43.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo-storm-palo43.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-overo-storm-summit.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo-storm-summit.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-overo-storm-tobi.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo-storm-tobi.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-overo-storm.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo-storm.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-overo-summit-common.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo-summit-common.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-overo-summit.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo-summit.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-overo-tobi-common.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo-tobi-common.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-overo-tobi.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo-tobi.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-overo.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-overo.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-panel-sharp-ls037v7dw01.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-panel-sharp-ls037v7dw01.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-sb-t35.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-sb-t35.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-sbc-t3517.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-sbc-t3517.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-sbc-t3530.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-sbc-t3530.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-sbc-t3730.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-sbc-t3730.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-tao3530.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-tao3530.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3-thunder.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-thunder.dts projects/release-install-debug/sys/gnu/dts/arm/omap3-zoom3.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3-zoom3.dts projects/release-install-debug/sys/gnu/dts/arm/omap3.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3430-sdp.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3430-sdp.dts projects/release-install-debug/sys/gnu/dts/arm/omap3430es1-clocks.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3430es1-clocks.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap34xx-hs.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap34xx-hs.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap34xx-omap36xx-clocks.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap34xx-omap36xx-clocks.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap34xx.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap34xx.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap36xx-am35xx-omap3430es2plus-clocks.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap36xx-am35xx-omap3430es2plus-clocks.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap36xx-clocks.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap36xx-clocks.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap36xx-hs.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap36xx-hs.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap36xx-omap3430es2plus-clocks.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap36xx-omap3430es2plus-clocks.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap36xx.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap36xx.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap3xxx-clocks.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap3xxx-clocks.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap4-cpu-thermal.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap4-cpu-thermal.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap4-duovero-parlor.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap4-duovero-parlor.dts projects/release-install-debug/sys/gnu/dts/arm/omap4-duovero.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap4-duovero.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap4-panda-a4.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap4-panda-a4.dts projects/release-install-debug/sys/gnu/dts/arm/omap4-panda-common.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap4-panda-common.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap4-panda-es.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap4-panda-es.dts projects/release-install-debug/sys/gnu/dts/arm/omap4-panda.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap4-panda.dts projects/release-install-debug/sys/gnu/dts/arm/omap4-sdp-es23plus.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap4-sdp-es23plus.dts projects/release-install-debug/sys/gnu/dts/arm/omap4-sdp.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap4-sdp.dts projects/release-install-debug/sys/gnu/dts/arm/omap4-var-dvk-om44.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap4-var-dvk-om44.dts projects/release-install-debug/sys/gnu/dts/arm/omap4-var-om44customboard.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap4-var-om44customboard.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap4-var-som-om44-wlan.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap4-var-som-om44-wlan.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap4-var-som-om44.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap4-var-som-om44.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap4-var-stk-om44.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap4-var-stk-om44.dts projects/release-install-debug/sys/gnu/dts/arm/omap4.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap4.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap443x-clocks.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap443x-clocks.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap443x.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap443x.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap4460.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap4460.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap446x-clocks.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap446x-clocks.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap44xx-clocks.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap44xx-clocks.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap5-cm-t54.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap5-cm-t54.dts projects/release-install-debug/sys/gnu/dts/arm/omap5-core-thermal.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap5-core-thermal.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap5-gpu-thermal.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap5-gpu-thermal.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap5-sbc-t54.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap5-sbc-t54.dts projects/release-install-debug/sys/gnu/dts/arm/omap5-uevm.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/omap5-uevm.dts projects/release-install-debug/sys/gnu/dts/arm/omap5.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap5.dtsi projects/release-install-debug/sys/gnu/dts/arm/omap54xx-clocks.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/omap54xx-clocks.dtsi projects/release-install-debug/sys/gnu/dts/arm/orion5x-lacie-d2-network.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/orion5x-lacie-d2-network.dts projects/release-install-debug/sys/gnu/dts/arm/orion5x-lacie-ethernet-disk-mini-v2.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/orion5x-lacie-ethernet-disk-mini-v2.dts projects/release-install-debug/sys/gnu/dts/arm/orion5x-maxtor-shared-storage-2.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/orion5x-maxtor-shared-storage-2.dts projects/release-install-debug/sys/gnu/dts/arm/orion5x-mv88f5182.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/orion5x-mv88f5182.dtsi projects/release-install-debug/sys/gnu/dts/arm/orion5x-rd88f5182-nas.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/orion5x-rd88f5182-nas.dts projects/release-install-debug/sys/gnu/dts/arm/orion5x.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/orion5x.dtsi projects/release-install-debug/sys/gnu/dts/arm/phy3250.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/phy3250.dts projects/release-install-debug/sys/gnu/dts/arm/picoxcell-pc3x2.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/picoxcell-pc3x2.dtsi projects/release-install-debug/sys/gnu/dts/arm/picoxcell-pc3x3.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/picoxcell-pc3x3.dtsi projects/release-install-debug/sys/gnu/dts/arm/picoxcell-pc7302-pc3x2.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/picoxcell-pc7302-pc3x2.dts projects/release-install-debug/sys/gnu/dts/arm/picoxcell-pc7302-pc3x3.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/picoxcell-pc7302-pc3x3.dts projects/release-install-debug/sys/gnu/dts/arm/prima2-evb.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/prima2-evb.dts projects/release-install-debug/sys/gnu/dts/arm/prima2.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/prima2.dtsi projects/release-install-debug/sys/gnu/dts/arm/pxa27x.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/pxa27x.dtsi projects/release-install-debug/sys/gnu/dts/arm/pxa2xx.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/pxa2xx.dtsi projects/release-install-debug/sys/gnu/dts/arm/pxa3xx.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/pxa3xx.dtsi projects/release-install-debug/sys/gnu/dts/arm/r7s72100-genmai.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/r7s72100-genmai.dts projects/release-install-debug/sys/gnu/dts/arm/r7s72100.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/r7s72100.dtsi projects/release-install-debug/sys/gnu/dts/arm/r8a73a4-ape6evm-reference.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/r8a73a4-ape6evm-reference.dts projects/release-install-debug/sys/gnu/dts/arm/r8a73a4-ape6evm.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/r8a73a4-ape6evm.dts projects/release-install-debug/sys/gnu/dts/arm/r8a73a4.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/r8a73a4.dtsi projects/release-install-debug/sys/gnu/dts/arm/r8a7740-armadillo800eva.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/r8a7740-armadillo800eva.dts projects/release-install-debug/sys/gnu/dts/arm/r8a7740.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/r8a7740.dtsi projects/release-install-debug/sys/gnu/dts/arm/r8a7778-bockw-reference.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/r8a7778-bockw-reference.dts projects/release-install-debug/sys/gnu/dts/arm/r8a7778-bockw.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/r8a7778-bockw.dts projects/release-install-debug/sys/gnu/dts/arm/r8a7778.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/r8a7778.dtsi projects/release-install-debug/sys/gnu/dts/arm/r8a7779-marzen.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/r8a7779-marzen.dts projects/release-install-debug/sys/gnu/dts/arm/r8a7779.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/r8a7779.dtsi projects/release-install-debug/sys/gnu/dts/arm/r8a7790-lager.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/r8a7790-lager.dts projects/release-install-debug/sys/gnu/dts/arm/r8a7790.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/r8a7790.dtsi projects/release-install-debug/sys/gnu/dts/arm/r8a7791-henninger.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/r8a7791-henninger.dts projects/release-install-debug/sys/gnu/dts/arm/r8a7791-koelsch.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/r8a7791-koelsch.dts projects/release-install-debug/sys/gnu/dts/arm/r8a7791.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/r8a7791.dtsi projects/release-install-debug/sys/gnu/dts/arm/r8a7794-alt.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/r8a7794-alt.dts projects/release-install-debug/sys/gnu/dts/arm/r8a7794.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/r8a7794.dtsi projects/release-install-debug/sys/gnu/dts/arm/r8a77xx-aa104xd12-panel.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/r8a77xx-aa104xd12-panel.dtsi projects/release-install-debug/sys/gnu/dts/arm/rk3066a-bqcurie2.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/rk3066a-bqcurie2.dts projects/release-install-debug/sys/gnu/dts/arm/rk3066a-marsboard.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/rk3066a-marsboard.dts projects/release-install-debug/sys/gnu/dts/arm/rk3066a-rayeager.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/rk3066a-rayeager.dts projects/release-install-debug/sys/gnu/dts/arm/rk3066a.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/rk3066a.dtsi projects/release-install-debug/sys/gnu/dts/arm/rk3188-radxarock.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/rk3188-radxarock.dts projects/release-install-debug/sys/gnu/dts/arm/rk3188.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/rk3188.dtsi projects/release-install-debug/sys/gnu/dts/arm/rk3288-evb-act8846.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/rk3288-evb-act8846.dts projects/release-install-debug/sys/gnu/dts/arm/rk3288-evb-rk808.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/rk3288-evb-rk808.dts projects/release-install-debug/sys/gnu/dts/arm/rk3288-evb.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/rk3288-evb.dtsi projects/release-install-debug/sys/gnu/dts/arm/rk3288-firefly-beta.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/rk3288-firefly-beta.dts projects/release-install-debug/sys/gnu/dts/arm/rk3288-firefly.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/rk3288-firefly.dts projects/release-install-debug/sys/gnu/dts/arm/rk3288-firefly.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/rk3288-firefly.dtsi projects/release-install-debug/sys/gnu/dts/arm/rk3288-thermal.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/rk3288-thermal.dtsi projects/release-install-debug/sys/gnu/dts/arm/rk3288.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/rk3288.dtsi projects/release-install-debug/sys/gnu/dts/arm/rk3xxx.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/rk3xxx.dtsi projects/release-install-debug/sys/gnu/dts/arm/s3c2416-pinctrl.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/s3c2416-pinctrl.dtsi projects/release-install-debug/sys/gnu/dts/arm/s3c2416-smdk2416.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/s3c2416-smdk2416.dts projects/release-install-debug/sys/gnu/dts/arm/s3c2416.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/s3c2416.dtsi projects/release-install-debug/sys/gnu/dts/arm/s3c24xx.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/s3c24xx.dtsi projects/release-install-debug/sys/gnu/dts/arm/s5pv210-aquila.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/s5pv210-aquila.dts projects/release-install-debug/sys/gnu/dts/arm/s5pv210-goni.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/s5pv210-goni.dts projects/release-install-debug/sys/gnu/dts/arm/s5pv210-pinctrl.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/s5pv210-pinctrl.dtsi projects/release-install-debug/sys/gnu/dts/arm/s5pv210-smdkc110.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/s5pv210-smdkc110.dts projects/release-install-debug/sys/gnu/dts/arm/s5pv210-smdkv210.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/s5pv210-smdkv210.dts projects/release-install-debug/sys/gnu/dts/arm/s5pv210-torbreck.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/s5pv210-torbreck.dts projects/release-install-debug/sys/gnu/dts/arm/s5pv210.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/s5pv210.dtsi projects/release-install-debug/sys/gnu/dts/arm/sama5d4.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/sama5d4.dtsi projects/release-install-debug/sys/gnu/dts/arm/samsung_k3pe0e000b.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/samsung_k3pe0e000b.dtsi projects/release-install-debug/sys/gnu/dts/arm/sh7372-mackerel.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sh7372-mackerel.dts projects/release-install-debug/sys/gnu/dts/arm/sh7372.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/sh7372.dtsi projects/release-install-debug/sys/gnu/dts/arm/sh73a0-kzm9g-reference.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sh73a0-kzm9g-reference.dts projects/release-install-debug/sys/gnu/dts/arm/sh73a0-kzm9g.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sh73a0-kzm9g.dts projects/release-install-debug/sys/gnu/dts/arm/sh73a0.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/sh73a0.dtsi projects/release-install-debug/sys/gnu/dts/arm/spear1310-evb.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/spear1310-evb.dts projects/release-install-debug/sys/gnu/dts/arm/spear1310.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/spear1310.dtsi projects/release-install-debug/sys/gnu/dts/arm/spear1340-evb.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/spear1340-evb.dts projects/release-install-debug/sys/gnu/dts/arm/spear1340.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/spear1340.dtsi projects/release-install-debug/sys/gnu/dts/arm/spear13xx.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/spear13xx.dtsi projects/release-install-debug/sys/gnu/dts/arm/spear300-evb.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/spear300-evb.dts projects/release-install-debug/sys/gnu/dts/arm/spear300.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/spear300.dtsi projects/release-install-debug/sys/gnu/dts/arm/spear310-evb.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/spear310-evb.dts projects/release-install-debug/sys/gnu/dts/arm/spear310.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/spear310.dtsi projects/release-install-debug/sys/gnu/dts/arm/spear320-evb.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/spear320-evb.dts projects/release-install-debug/sys/gnu/dts/arm/spear320-hmi.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/spear320-hmi.dts projects/release-install-debug/sys/gnu/dts/arm/spear320.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/spear320.dtsi projects/release-install-debug/sys/gnu/dts/arm/spear3xx.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/spear3xx.dtsi projects/release-install-debug/sys/gnu/dts/arm/spear600-evb.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/spear600-evb.dts projects/release-install-debug/sys/gnu/dts/arm/spear600.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/spear600.dtsi projects/release-install-debug/sys/gnu/dts/arm/st-pincfg.h - copied unchanged from r281849, head/sys/gnu/dts/arm/st-pincfg.h projects/release-install-debug/sys/gnu/dts/arm/ste-ccu8540-pinctrl.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/ste-ccu8540-pinctrl.dtsi projects/release-install-debug/sys/gnu/dts/arm/ste-ccu8540.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/ste-ccu8540.dts projects/release-install-debug/sys/gnu/dts/arm/ste-ccu9540.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/ste-ccu9540.dts projects/release-install-debug/sys/gnu/dts/arm/ste-dbx5x0.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/ste-dbx5x0.dtsi projects/release-install-debug/sys/gnu/dts/arm/ste-href-ab8500.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/ste-href-ab8500.dtsi projects/release-install-debug/sys/gnu/dts/arm/ste-href-ab8505.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/ste-href-ab8505.dtsi projects/release-install-debug/sys/gnu/dts/arm/ste-href-family-pinctrl.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/ste-href-family-pinctrl.dtsi projects/release-install-debug/sys/gnu/dts/arm/ste-href-stuib.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/ste-href-stuib.dtsi projects/release-install-debug/sys/gnu/dts/arm/ste-href-tvk1281618.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/ste-href-tvk1281618.dtsi projects/release-install-debug/sys/gnu/dts/arm/ste-href.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/ste-href.dtsi projects/release-install-debug/sys/gnu/dts/arm/ste-hrefprev60-stuib.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/ste-hrefprev60-stuib.dts projects/release-install-debug/sys/gnu/dts/arm/ste-hrefprev60-tvk.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/ste-hrefprev60-tvk.dts projects/release-install-debug/sys/gnu/dts/arm/ste-hrefprev60.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/ste-hrefprev60.dtsi projects/release-install-debug/sys/gnu/dts/arm/ste-hrefv60plus-stuib.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/ste-hrefv60plus-stuib.dts projects/release-install-debug/sys/gnu/dts/arm/ste-hrefv60plus-tvk.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/ste-hrefv60plus-tvk.dts projects/release-install-debug/sys/gnu/dts/arm/ste-hrefv60plus.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/ste-hrefv60plus.dtsi projects/release-install-debug/sys/gnu/dts/arm/ste-nomadik-nhk15.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/ste-nomadik-nhk15.dts projects/release-install-debug/sys/gnu/dts/arm/ste-nomadik-pinctrl.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/ste-nomadik-pinctrl.dtsi projects/release-install-debug/sys/gnu/dts/arm/ste-nomadik-s8815.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/ste-nomadik-s8815.dts projects/release-install-debug/sys/gnu/dts/arm/ste-nomadik-stn8815.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/ste-nomadik-stn8815.dtsi projects/release-install-debug/sys/gnu/dts/arm/ste-snowball.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/ste-snowball.dts projects/release-install-debug/sys/gnu/dts/arm/ste-u300.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/ste-u300.dts projects/release-install-debug/sys/gnu/dts/arm/stih407-b2120.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/stih407-b2120.dts projects/release-install-debug/sys/gnu/dts/arm/stih407-clock.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/stih407-clock.dtsi projects/release-install-debug/sys/gnu/dts/arm/stih407-family.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/stih407-family.dtsi projects/release-install-debug/sys/gnu/dts/arm/stih407-pinctrl.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/stih407-pinctrl.dtsi projects/release-install-debug/sys/gnu/dts/arm/stih407.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/stih407.dtsi projects/release-install-debug/sys/gnu/dts/arm/stih410-b2120.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/stih410-b2120.dts projects/release-install-debug/sys/gnu/dts/arm/stih410-clock.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/stih410-clock.dtsi projects/release-install-debug/sys/gnu/dts/arm/stih410-pinctrl.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/stih410-pinctrl.dtsi projects/release-install-debug/sys/gnu/dts/arm/stih410.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/stih410.dtsi projects/release-install-debug/sys/gnu/dts/arm/stih415-b2000.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/stih415-b2000.dts projects/release-install-debug/sys/gnu/dts/arm/stih415-b2020.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/stih415-b2020.dts projects/release-install-debug/sys/gnu/dts/arm/stih415-clock.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/stih415-clock.dtsi projects/release-install-debug/sys/gnu/dts/arm/stih415-pinctrl.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/stih415-pinctrl.dtsi projects/release-install-debug/sys/gnu/dts/arm/stih415.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/stih415.dtsi projects/release-install-debug/sys/gnu/dts/arm/stih416-b2000.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/stih416-b2000.dts projects/release-install-debug/sys/gnu/dts/arm/stih416-b2020.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/stih416-b2020.dts projects/release-install-debug/sys/gnu/dts/arm/stih416-b2020e.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/stih416-b2020e.dts projects/release-install-debug/sys/gnu/dts/arm/stih416-clock.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/stih416-clock.dtsi projects/release-install-debug/sys/gnu/dts/arm/stih416-pinctrl.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/stih416-pinctrl.dtsi projects/release-install-debug/sys/gnu/dts/arm/stih416.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/stih416.dtsi projects/release-install-debug/sys/gnu/dts/arm/stih418-b2199.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/stih418-b2199.dts projects/release-install-debug/sys/gnu/dts/arm/stih418-clock.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/stih418-clock.dtsi projects/release-install-debug/sys/gnu/dts/arm/stih418.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/stih418.dtsi projects/release-install-debug/sys/gnu/dts/arm/stih41x-b2000.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/stih41x-b2000.dtsi projects/release-install-debug/sys/gnu/dts/arm/stih41x-b2020.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/stih41x-b2020.dtsi projects/release-install-debug/sys/gnu/dts/arm/stih41x-b2020x.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/stih41x-b2020x.dtsi projects/release-install-debug/sys/gnu/dts/arm/stih41x.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/stih41x.dtsi projects/release-install-debug/sys/gnu/dts/arm/stihxxx-b2120.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/stihxxx-b2120.dtsi projects/release-install-debug/sys/gnu/dts/arm/sun4i-a10-a1000.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun4i-a10-a1000.dts projects/release-install-debug/sys/gnu/dts/arm/sun4i-a10-ba10-tvbox.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun4i-a10-ba10-tvbox.dts projects/release-install-debug/sys/gnu/dts/arm/sun4i-a10-chuwi-v7-cw0825.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun4i-a10-chuwi-v7-cw0825.dts projects/release-install-debug/sys/gnu/dts/arm/sun4i-a10-cubieboard.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun4i-a10-cubieboard.dts projects/release-install-debug/sys/gnu/dts/arm/sun4i-a10-hackberry.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun4i-a10-hackberry.dts projects/release-install-debug/sys/gnu/dts/arm/sun4i-a10-hyundai-a7hd.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun4i-a10-hyundai-a7hd.dts projects/release-install-debug/sys/gnu/dts/arm/sun4i-a10-inet97fv2.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun4i-a10-inet97fv2.dts projects/release-install-debug/sys/gnu/dts/arm/sun4i-a10-marsboard.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun4i-a10-marsboard.dts projects/release-install-debug/sys/gnu/dts/arm/sun4i-a10-mini-xplus.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun4i-a10-mini-xplus.dts projects/release-install-debug/sys/gnu/dts/arm/sun4i-a10-mk802.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun4i-a10-mk802.dts projects/release-install-debug/sys/gnu/dts/arm/sun4i-a10-mk802ii.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun4i-a10-mk802ii.dts projects/release-install-debug/sys/gnu/dts/arm/sun4i-a10-olinuxino-lime.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun4i-a10-olinuxino-lime.dts projects/release-install-debug/sys/gnu/dts/arm/sun4i-a10-pcduino.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun4i-a10-pcduino.dts projects/release-install-debug/sys/gnu/dts/arm/sun4i-a10.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/sun4i-a10.dtsi projects/release-install-debug/sys/gnu/dts/arm/sun5i-a10s-mk802.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun5i-a10s-mk802.dts projects/release-install-debug/sys/gnu/dts/arm/sun5i-a10s-olinuxino-micro.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun5i-a10s-olinuxino-micro.dts projects/release-install-debug/sys/gnu/dts/arm/sun5i-a10s-r7-tv-dongle.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun5i-a10s-r7-tv-dongle.dts projects/release-install-debug/sys/gnu/dts/arm/sun5i-a10s.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/sun5i-a10s.dtsi projects/release-install-debug/sys/gnu/dts/arm/sun5i-a13-hsg-h702.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun5i-a13-hsg-h702.dts projects/release-install-debug/sys/gnu/dts/arm/sun5i-a13-olinuxino-micro.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun5i-a13-olinuxino-micro.dts projects/release-install-debug/sys/gnu/dts/arm/sun5i-a13-olinuxino.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun5i-a13-olinuxino.dts projects/release-install-debug/sys/gnu/dts/arm/sun5i-a13.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/sun5i-a13.dtsi projects/release-install-debug/sys/gnu/dts/arm/sun6i-a31-app4-evb1.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun6i-a31-app4-evb1.dts projects/release-install-debug/sys/gnu/dts/arm/sun6i-a31-colombus.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun6i-a31-colombus.dts projects/release-install-debug/sys/gnu/dts/arm/sun6i-a31-hummingbird.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun6i-a31-hummingbird.dts projects/release-install-debug/sys/gnu/dts/arm/sun6i-a31-m9.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun6i-a31-m9.dts projects/release-install-debug/sys/gnu/dts/arm/sun6i-a31.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/sun6i-a31.dtsi projects/release-install-debug/sys/gnu/dts/arm/sun6i-a31s-cs908.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun6i-a31s-cs908.dts projects/release-install-debug/sys/gnu/dts/arm/sun6i-a31s.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/sun6i-a31s.dtsi projects/release-install-debug/sys/gnu/dts/arm/sun7i-a20-bananapi.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun7i-a20-bananapi.dts projects/release-install-debug/sys/gnu/dts/arm/sun7i-a20-bananapro.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun7i-a20-bananapro.dts projects/release-install-debug/sys/gnu/dts/arm/sun7i-a20-cubieboard2.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun7i-a20-cubieboard2.dts projects/release-install-debug/sys/gnu/dts/arm/sun7i-a20-cubietruck.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun7i-a20-cubietruck.dts projects/release-install-debug/sys/gnu/dts/arm/sun7i-a20-hummingbird.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun7i-a20-hummingbird.dts projects/release-install-debug/sys/gnu/dts/arm/sun7i-a20-i12-tvbox.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun7i-a20-i12-tvbox.dts projects/release-install-debug/sys/gnu/dts/arm/sun7i-a20-m3.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun7i-a20-m3.dts projects/release-install-debug/sys/gnu/dts/arm/sun7i-a20-olinuxino-lime.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun7i-a20-olinuxino-lime.dts projects/release-install-debug/sys/gnu/dts/arm/sun7i-a20-olinuxino-lime2.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun7i-a20-olinuxino-lime2.dts projects/release-install-debug/sys/gnu/dts/arm/sun7i-a20-olinuxino-micro.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun7i-a20-olinuxino-micro.dts projects/release-install-debug/sys/gnu/dts/arm/sun7i-a20-pcduino3.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun7i-a20-pcduino3.dts projects/release-install-debug/sys/gnu/dts/arm/sun7i-a20.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/sun7i-a20.dtsi projects/release-install-debug/sys/gnu/dts/arm/sun8i-a23-ippo-q8h-v1.2.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun8i-a23-ippo-q8h-v1.2.dts projects/release-install-debug/sys/gnu/dts/arm/sun8i-a23-ippo-q8h-v5.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun8i-a23-ippo-q8h-v5.dts projects/release-install-debug/sys/gnu/dts/arm/sun8i-a23.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/sun8i-a23.dtsi projects/release-install-debug/sys/gnu/dts/arm/sun9i-a80-optimus.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/sun9i-a80-optimus.dts projects/release-install-debug/sys/gnu/dts/arm/sun9i-a80.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/sun9i-a80.dtsi projects/release-install-debug/sys/gnu/dts/arm/sunxi-common-regulators.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/sunxi-common-regulators.dtsi projects/release-install-debug/sys/gnu/dts/arm/tegra114-dalmore.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra114-dalmore.dts projects/release-install-debug/sys/gnu/dts/arm/tegra114-roth.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra114-roth.dts projects/release-install-debug/sys/gnu/dts/arm/tegra114-tn7.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra114-tn7.dts projects/release-install-debug/sys/gnu/dts/arm/tegra114.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra114.dtsi projects/release-install-debug/sys/gnu/dts/arm/tegra124-jetson-tk1.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra124-jetson-tk1.dts projects/release-install-debug/sys/gnu/dts/arm/tegra124-nyan-big.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra124-nyan-big.dts projects/release-install-debug/sys/gnu/dts/arm/tegra124-venice2.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra124-venice2.dts projects/release-install-debug/sys/gnu/dts/arm/tegra124.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra124.dtsi projects/release-install-debug/sys/gnu/dts/arm/tegra20-colibri-512.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra20-colibri-512.dtsi projects/release-install-debug/sys/gnu/dts/arm/tegra20-harmony.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra20-harmony.dts projects/release-install-debug/sys/gnu/dts/arm/tegra20-iris-512.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra20-iris-512.dts projects/release-install-debug/sys/gnu/dts/arm/tegra20-medcom-wide.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra20-medcom-wide.dts projects/release-install-debug/sys/gnu/dts/arm/tegra20-paz00.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra20-paz00.dts projects/release-install-debug/sys/gnu/dts/arm/tegra20-plutux.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra20-plutux.dts projects/release-install-debug/sys/gnu/dts/arm/tegra20-seaboard.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra20-seaboard.dts projects/release-install-debug/sys/gnu/dts/arm/tegra20-tamonten.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra20-tamonten.dtsi projects/release-install-debug/sys/gnu/dts/arm/tegra20-tec.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra20-tec.dts projects/release-install-debug/sys/gnu/dts/arm/tegra20-trimslice.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra20-trimslice.dts projects/release-install-debug/sys/gnu/dts/arm/tegra20-ventana.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra20-ventana.dts projects/release-install-debug/sys/gnu/dts/arm/tegra20-whistler.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra20-whistler.dts projects/release-install-debug/sys/gnu/dts/arm/tegra20.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra20.dtsi projects/release-install-debug/sys/gnu/dts/arm/tegra30-apalis-eval.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra30-apalis-eval.dts projects/release-install-debug/sys/gnu/dts/arm/tegra30-apalis.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra30-apalis.dtsi projects/release-install-debug/sys/gnu/dts/arm/tegra30-beaver.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra30-beaver.dts projects/release-install-debug/sys/gnu/dts/arm/tegra30-cardhu-a02.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra30-cardhu-a02.dts projects/release-install-debug/sys/gnu/dts/arm/tegra30-cardhu-a04.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra30-cardhu-a04.dts projects/release-install-debug/sys/gnu/dts/arm/tegra30-cardhu.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra30-cardhu.dtsi projects/release-install-debug/sys/gnu/dts/arm/tegra30-colibri-eval-v3.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra30-colibri-eval-v3.dts projects/release-install-debug/sys/gnu/dts/arm/tegra30-colibri.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra30-colibri.dtsi projects/release-install-debug/sys/gnu/dts/arm/tegra30.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/tegra30.dtsi projects/release-install-debug/sys/gnu/dts/arm/tps6507x.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/tps6507x.dtsi projects/release-install-debug/sys/gnu/dts/arm/tps65217.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/tps65217.dtsi projects/release-install-debug/sys/gnu/dts/arm/tps65910.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/tps65910.dtsi projects/release-install-debug/sys/gnu/dts/arm/twl4030.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/twl4030.dtsi projects/release-install-debug/sys/gnu/dts/arm/twl4030_omap3.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/twl4030_omap3.dtsi projects/release-install-debug/sys/gnu/dts/arm/twl6030.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/twl6030.dtsi projects/release-install-debug/sys/gnu/dts/arm/twl6030_omap4.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/twl6030_omap4.dtsi projects/release-install-debug/sys/gnu/dts/arm/usb_a9g20-dab-mmx.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/usb_a9g20-dab-mmx.dtsi projects/release-install-debug/sys/gnu/dts/arm/versatile-ab.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/versatile-ab.dts projects/release-install-debug/sys/gnu/dts/arm/versatile-pb.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/versatile-pb.dts projects/release-install-debug/sys/gnu/dts/arm/vexpress-v2m-rs1.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/vexpress-v2m-rs1.dtsi projects/release-install-debug/sys/gnu/dts/arm/vexpress-v2m.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/vexpress-v2m.dtsi projects/release-install-debug/sys/gnu/dts/arm/vexpress-v2p-ca15-tc1.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/vexpress-v2p-ca15-tc1.dts projects/release-install-debug/sys/gnu/dts/arm/vexpress-v2p-ca15_a7.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/vexpress-v2p-ca15_a7.dts projects/release-install-debug/sys/gnu/dts/arm/vexpress-v2p-ca5s.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/vexpress-v2p-ca5s.dts projects/release-install-debug/sys/gnu/dts/arm/vexpress-v2p-ca9.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/vexpress-v2p-ca9.dts projects/release-install-debug/sys/gnu/dts/arm/vf-colibri-eval-v3.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/vf-colibri-eval-v3.dtsi projects/release-install-debug/sys/gnu/dts/arm/vf-colibri.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/vf-colibri.dtsi projects/release-install-debug/sys/gnu/dts/arm/vf500-colibri-eval-v3.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/vf500-colibri-eval-v3.dts projects/release-install-debug/sys/gnu/dts/arm/vf500-colibri.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/vf500-colibri.dtsi projects/release-install-debug/sys/gnu/dts/arm/vf500.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/vf500.dtsi projects/release-install-debug/sys/gnu/dts/arm/vf610-colibri-eval-v3.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/vf610-colibri-eval-v3.dts projects/release-install-debug/sys/gnu/dts/arm/vf610-colibri.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/vf610-colibri.dtsi projects/release-install-debug/sys/gnu/dts/arm/vf610-cosmic.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/vf610-cosmic.dts projects/release-install-debug/sys/gnu/dts/arm/vf610-pinfunc.h - copied unchanged from r281849, head/sys/gnu/dts/arm/vf610-pinfunc.h projects/release-install-debug/sys/gnu/dts/arm/vf610-twr.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/vf610-twr.dts projects/release-install-debug/sys/gnu/dts/arm/vfxxx.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/vfxxx.dtsi projects/release-install-debug/sys/gnu/dts/arm/vt8500-bv07.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/vt8500-bv07.dts projects/release-install-debug/sys/gnu/dts/arm/vt8500.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/vt8500.dtsi projects/release-install-debug/sys/gnu/dts/arm/wm8505-ref.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/wm8505-ref.dts projects/release-install-debug/sys/gnu/dts/arm/wm8505.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/wm8505.dtsi projects/release-install-debug/sys/gnu/dts/arm/wm8650-mid.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/wm8650-mid.dts projects/release-install-debug/sys/gnu/dts/arm/wm8650.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/wm8650.dtsi projects/release-install-debug/sys/gnu/dts/arm/wm8750-apc8750.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/wm8750-apc8750.dts projects/release-install-debug/sys/gnu/dts/arm/wm8750.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/wm8750.dtsi projects/release-install-debug/sys/gnu/dts/arm/wm8850-w70v2.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/wm8850-w70v2.dts projects/release-install-debug/sys/gnu/dts/arm/wm8850.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/wm8850.dtsi projects/release-install-debug/sys/gnu/dts/arm/xenvm-4.2.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/xenvm-4.2.dts projects/release-install-debug/sys/gnu/dts/arm/zynq-7000.dtsi - copied unchanged from r281849, head/sys/gnu/dts/arm/zynq-7000.dtsi projects/release-install-debug/sys/gnu/dts/arm/zynq-parallella.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/zynq-parallella.dts projects/release-install-debug/sys/gnu/dts/arm/zynq-zc702.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/zynq-zc702.dts projects/release-install-debug/sys/gnu/dts/arm/zynq-zc706.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/zynq-zc706.dts projects/release-install-debug/sys/gnu/dts/arm/zynq-zed.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/zynq-zed.dts projects/release-install-debug/sys/gnu/dts/arm/zynq-zybo.dts - copied unchanged from r281849, head/sys/gnu/dts/arm/zynq-zybo.dts projects/release-install-debug/sys/gnu/dts/include/dt-bindings/arm/ - copied from r281849, head/sys/gnu/dts/include/dt-bindings/arm/ projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/exynos4415.h - copied unchanged from r281849, head/sys/gnu/dts/include/dt-bindings/clock/exynos4415.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/exynos7-clk.h - copied unchanged from r281849, head/sys/gnu/dts/include/dt-bindings/clock/exynos7-clk.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/pxa-clock.h - copied unchanged from r281849, head/sys/gnu/dts/include/dt-bindings/clock/pxa-clock.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/r8a7740-clock.h - copied unchanged from r281849, head/sys/gnu/dts/include/dt-bindings/clock/r8a7740-clock.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/r8a7794-clock.h - copied unchanged from r281849, head/sys/gnu/dts/include/dt-bindings/clock/r8a7794-clock.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/sh73a0-clock.h - copied unchanged from r281849, head/sys/gnu/dts/include/dt-bindings/clock/sh73a0-clock.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/stih407-clks.h - copied unchanged from r281849, head/sys/gnu/dts/include/dt-bindings/clock/stih407-clks.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/stih410-clks.h - copied unchanged from r281849, head/sys/gnu/dts/include/dt-bindings/clock/stih410-clks.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/stih418-clks.h - copied unchanged from r281849, head/sys/gnu/dts/include/dt-bindings/clock/stih418-clks.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/tegra124-car-common.h - copied unchanged from r281849, head/sys/gnu/dts/include/dt-bindings/clock/tegra124-car-common.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/dma/sun4i-a10.h - copied unchanged from r281849, head/sys/gnu/dts/include/dt-bindings/dma/sun4i-a10.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/gpio/meson8-gpio.h - copied unchanged from r281849, head/sys/gnu/dts/include/dt-bindings/gpio/meson8-gpio.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/input/ti-drv260x.h - copied unchanged from r281849, head/sys/gnu/dts/include/dt-bindings/input/ti-drv260x.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/interrupt-controller/mips-gic.h - copied unchanged from r281849, head/sys/gnu/dts/include/dt-bindings/interrupt-controller/mips-gic.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/memory/ - copied from r281849, head/sys/gnu/dts/include/dt-bindings/memory/ projects/release-install-debug/sys/gnu/dts/include/dt-bindings/mfd/qcom-rpm.h - copied unchanged from r281849, head/sys/gnu/dts/include/dt-bindings/mfd/qcom-rpm.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/phy/phy.h - copied unchanged from r281849, head/sys/gnu/dts/include/dt-bindings/phy/phy.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/pinctrl/sun4i-a10.h - copied unchanged from r281849, head/sys/gnu/dts/include/dt-bindings/pinctrl/sun4i-a10.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/reset-controller/stih407-resets.h - copied unchanged from r281849, head/sys/gnu/dts/include/dt-bindings/reset-controller/stih407-resets.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/sound/cs35l32.h - copied unchanged from r281849, head/sys/gnu/dts/include/dt-bindings/sound/cs35l32.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/sound/samsung-i2s.h - copied unchanged from r281849, head/sys/gnu/dts/include/dt-bindings/sound/samsung-i2s.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/thermal/tegra124-soctherm.h - copied unchanged from r281849, head/sys/gnu/dts/include/dt-bindings/thermal/tegra124-soctherm.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/thermal/thermal_exynos.h - copied unchanged from r281849, head/sys/gnu/dts/include/dt-bindings/thermal/thermal_exynos.h projects/release-install-debug/sys/kern/subr_dnvlist.c - copied unchanged from r281849, head/sys/kern/subr_dnvlist.c projects/release-install-debug/sys/kern/subr_nvlist.c - copied unchanged from r281849, head/sys/kern/subr_nvlist.c projects/release-install-debug/sys/kern/subr_nvpair.c - copied unchanged from r281849, head/sys/kern/subr_nvpair.c projects/release-install-debug/sys/kern/uipc_mbufhash.c - copied unchanged from r281849, head/sys/kern/uipc_mbufhash.c projects/release-install-debug/sys/libkern/asprintf.c - copied unchanged from r281849, head/sys/libkern/asprintf.c projects/release-install-debug/sys/mips/atheros/ar71xx_macaddr.c - copied unchanged from r281849, head/sys/mips/atheros/ar71xx_macaddr.c projects/release-install-debug/sys/mips/atheros/ar71xx_macaddr.h - copied unchanged from r281849, head/sys/mips/atheros/ar71xx_macaddr.h projects/release-install-debug/sys/mips/conf/AP135 - copied unchanged from r281849, head/sys/mips/conf/AP135 projects/release-install-debug/sys/mips/conf/AP135.hints - copied unchanged from r281849, head/sys/mips/conf/AP135.hints projects/release-install-debug/sys/mips/conf/DIR-655A1 - copied unchanged from r281849, head/sys/mips/conf/DIR-655A1 projects/release-install-debug/sys/mips/conf/DIR-655A1.hints - copied unchanged from r281849, head/sys/mips/conf/DIR-655A1.hints projects/release-install-debug/sys/mips/conf/QCA955X_BASE - copied unchanged from r281849, head/sys/mips/conf/QCA955X_BASE projects/release-install-debug/sys/mips/conf/QCA955X_BASE.hints - copied unchanged from r281849, head/sys/mips/conf/QCA955X_BASE.hints projects/release-install-debug/sys/mips/conf/TL-WDR4300 - copied unchanged from r281849, head/sys/mips/conf/TL-WDR4300 projects/release-install-debug/sys/mips/conf/TL-WDR4300.hints - copied unchanged from r281849, head/sys/mips/conf/TL-WDR4300.hints projects/release-install-debug/sys/mips/conf/TL-WR1043NDv2 - copied unchanged from r281849, head/sys/mips/conf/TL-WR1043NDv2 projects/release-install-debug/sys/mips/conf/TL-WR1043NDv2.hints - copied unchanged from r281849, head/sys/mips/conf/TL-WR1043NDv2.hints projects/release-install-debug/sys/mips/nlm/xlp_simplebus.c - copied unchanged from r281849, head/sys/mips/nlm/xlp_simplebus.c projects/release-install-debug/sys/modules/dtb/allwinner/ - copied from r281849, head/sys/modules/dtb/allwinner/ projects/release-install-debug/sys/modules/dtb/am335x/ - copied from r281849, head/sys/modules/dtb/am335x/ projects/release-install-debug/sys/modules/dtb/imx6/ - copied from r281849, head/sys/modules/dtb/imx6/ projects/release-install-debug/sys/modules/ix/ - copied from r281849, head/sys/modules/ix/ projects/release-install-debug/sys/modules/ixv/ - copied from r281849, head/sys/modules/ixv/ projects/release-install-debug/sys/net/altq/ - copied from r281849, head/sys/net/altq/ projects/release-install-debug/sys/netinet/ip_reass.c - copied unchanged from r281849, head/sys/netinet/ip_reass.c projects/release-install-debug/sys/pc98/pc98/genassym.c - copied unchanged from r281849, head/sys/pc98/pc98/genassym.c projects/release-install-debug/sys/powerpc/mpc85xx/mpc85xx_gpio.c - copied unchanged from r281849, head/sys/powerpc/mpc85xx/mpc85xx_gpio.c projects/release-install-debug/sys/powerpc/powerpc/trap.c - copied unchanged from r281849, head/sys/powerpc/powerpc/trap.c projects/release-install-debug/sys/sys/dnv.h - copied unchanged from r281849, head/sys/sys/dnv.h projects/release-install-debug/sys/sys/gzio.h - copied unchanged from r281849, head/sys/sys/gzio.h projects/release-install-debug/sys/sys/iov.h - copied unchanged from r281849, head/sys/sys/iov.h projects/release-install-debug/sys/sys/iov_schema.h - copied unchanged from r281849, head/sys/sys/iov_schema.h projects/release-install-debug/sys/sys/nv.h - copied unchanged from r281849, head/sys/sys/nv.h projects/release-install-debug/sys/sys/nv_impl.h - copied unchanged from r281849, head/sys/sys/nv_impl.h projects/release-install-debug/sys/sys/nvlist_impl.h - copied unchanged from r281849, head/sys/sys/nvlist_impl.h projects/release-install-debug/sys/sys/nvpair_impl.h - copied unchanged from r281849, head/sys/sys/nvpair_impl.h projects/release-install-debug/sys/x86/iommu/intel_intrmap.c - copied unchanged from r281849, head/sys/x86/iommu/intel_intrmap.c projects/release-install-debug/sys/x86/iommu/iommu_intrmap.h - copied unchanged from r281849, head/sys/x86/iommu/iommu_intrmap.h projects/release-install-debug/tools/debugscripts/netstat-anr.gdb - copied unchanged from r281849, head/tools/debugscripts/netstat-anr.gdb projects/release-install-debug/usr.bin/clang/llvm-cov/ - copied from r281849, head/usr.bin/clang/llvm-cov/ projects/release-install-debug/usr.bin/clang/llvm-profdata/ - copied from r281849, head/usr.bin/clang/llvm-profdata/ projects/release-install-debug/usr.bin/procstat/procstat_cs.c - copied unchanged from r281849, head/usr.bin/procstat/procstat_cs.c projects/release-install-debug/usr.bin/xlint/arch/aarch64/ - copied from r281849, head/usr.bin/xlint/arch/aarch64/ projects/release-install-debug/usr.sbin/bluetooth/hccontrol/le.c - copied unchanged from r281849, head/usr.sbin/bluetooth/hccontrol/le.c projects/release-install-debug/usr.sbin/iovctl/ - copied from r281849, head/usr.sbin/iovctl/ projects/release-install-debug/usr.sbin/ntp/doc/drivers/ - copied from r281849, head/usr.sbin/ntp/doc/drivers/ projects/release-install-debug/usr.sbin/ntp/doc/hints/ - copied from r281849, head/usr.sbin/ntp/doc/hints/ projects/release-install-debug/usr.sbin/ntp/doc/icons/ - copied from r281849, head/usr.sbin/ntp/doc/icons/ projects/release-install-debug/usr.sbin/ntp/doc/pic/ - copied from r281849, head/usr.sbin/ntp/doc/pic/ projects/release-install-debug/usr.sbin/ntp/doc/scripts/ - copied from r281849, head/usr.sbin/ntp/doc/scripts/ projects/release-install-debug/usr.sbin/ntp/doc/sntp.8 - copied unchanged from r281849, head/usr.sbin/ntp/doc/sntp.8 projects/release-install-debug/usr.sbin/ntp/libntpevent/ - copied from r281849, head/usr.sbin/ntp/libntpevent/ projects/release-install-debug/usr.sbin/ntp/ntpdc/nl.c - copied unchanged from r281849, head/usr.sbin/ntp/ntpdc/nl.c projects/release-install-debug/usr.sbin/pmcstudy/pmcstudy.8 - copied unchanged from r281849, head/usr.sbin/pmcstudy/pmcstudy.8 projects/release-install-debug/usr.sbin/uefisign/ - copied from r281849, head/usr.sbin/uefisign/ Deleted: projects/release-install-debug/contrib/binutils/gas/doc/as.txt projects/release-install-debug/contrib/binutils/ld/ld.txt projects/release-install-debug/contrib/bmake/unit-tests/comment projects/release-install-debug/contrib/bmake/unit-tests/cond1 projects/release-install-debug/contrib/bmake/unit-tests/doterror projects/release-install-debug/contrib/bmake/unit-tests/dotwait projects/release-install-debug/contrib/bmake/unit-tests/error projects/release-install-debug/contrib/bmake/unit-tests/export projects/release-install-debug/contrib/bmake/unit-tests/export-all projects/release-install-debug/contrib/bmake/unit-tests/export-env projects/release-install-debug/contrib/bmake/unit-tests/forloop projects/release-install-debug/contrib/bmake/unit-tests/forsubst projects/release-install-debug/contrib/bmake/unit-tests/hash projects/release-install-debug/contrib/bmake/unit-tests/misc projects/release-install-debug/contrib/bmake/unit-tests/moderrs projects/release-install-debug/contrib/bmake/unit-tests/modmatch projects/release-install-debug/contrib/bmake/unit-tests/modmisc projects/release-install-debug/contrib/bmake/unit-tests/modorder projects/release-install-debug/contrib/bmake/unit-tests/modts projects/release-install-debug/contrib/bmake/unit-tests/modword projects/release-install-debug/contrib/bmake/unit-tests/order projects/release-install-debug/contrib/bmake/unit-tests/phony-end projects/release-install-debug/contrib/bmake/unit-tests/posix projects/release-install-debug/contrib/bmake/unit-tests/qequals projects/release-install-debug/contrib/bmake/unit-tests/sunshcmd projects/release-install-debug/contrib/bmake/unit-tests/sysv projects/release-install-debug/contrib/bmake/unit-tests/ternary projects/release-install-debug/contrib/bmake/unit-tests/test.exp projects/release-install-debug/contrib/bmake/unit-tests/unexport projects/release-install-debug/contrib/bmake/unit-tests/unexport-env projects/release-install-debug/contrib/bmake/unit-tests/varcmd projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_allocator2.cc projects/release-install-debug/contrib/compiler-rt/lib/tsan/Makefile.old projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/Makefile.old projects/release-install-debug/contrib/libucl/m4/ projects/release-install-debug/contrib/llvm/include/llvm/Analysis/FindUsedTypes.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/JITCodeEmitter.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/MachineCodeEmitter.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/MachineCodeInfo.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/MachineRelocation.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/PBQP/RegAllocSolver.h projects/release-install-debug/contrib/llvm/include/llvm/ExecutionEngine/JIT.h projects/release-install-debug/contrib/llvm/include/llvm/ExecutionEngine/JITMemoryManager.h projects/release-install-debug/contrib/llvm/include/llvm/ExecutionEngine/ObjectBuffer.h projects/release-install-debug/contrib/llvm/include/llvm/ExecutionEngine/ObjectImage.h projects/release-install-debug/contrib/llvm/include/llvm/IR/LeakDetector.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCAnalysis/MCAtom.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCAnalysis/MCFunction.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCAnalysis/MCModule.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCAnalysis/MCModuleYAML.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCObjectDisassembler.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCObjectSymbolizer.h projects/release-install-debug/contrib/llvm/include/llvm/Support/IncludeFile.h projects/release-install-debug/contrib/llvm/include/llvm/Support/StreamableMemoryObject.h projects/release-install-debug/contrib/llvm/include/llvm/Support/StringRefMemoryObject.h projects/release-install-debug/contrib/llvm/include/llvm/Target/TargetJITInfo.h projects/release-install-debug/contrib/llvm/lib/Analysis/IPA/FindUsedTypes.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.h projects/release-install-debug/contrib/llvm/lib/CodeGen/AtomicExpandLoadLinkedPass.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/JITCodeEmitter.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/MachineCodeEmitter.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/Spiller.cpp projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.h projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFCompileUnit.h projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFContext.h projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFDebugAbbrev.h projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFDebugArangeSet.h projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFDebugAranges.h projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFDebugFrame.h projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.h projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFDebugLine.h projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFDebugLoc.h projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFDebugRangeList.h projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFRelocMap.h projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFTypeUnit.h projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFUnit.h projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/JIT/JIT.cpp projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/JIT/JIT.h projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/RTDyldMemoryManager.cpp projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/GDBRegistrar.cpp projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/JITRegistrar.h projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/ObjectImageCommon.h projects/release-install-debug/contrib/llvm/lib/IR/LeakDetector.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCAnalysis/MCAtom.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCAnalysis/MCFunction.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCAnalysis/MCModule.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCAnalysis/MCModuleYAML.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCAnalysis/MCObjectDisassembler.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCAnalysis/MCObjectSymbolizer.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCDisassembler.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCExternalSymbolizer.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCRelocationInfo.cpp projects/release-install-debug/contrib/llvm/lib/Support/IncludeFile.cpp projects/release-install-debug/contrib/llvm/lib/Support/StreamableMemoryObject.cpp projects/release-install-debug/contrib/llvm/lib/Support/StringRefMemoryObject.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMCodeEmitter.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMJITInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMJITInfo.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMRelocations.h projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/InstPrinter/ projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsABIInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsABIInfo.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsCodeEmitter.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsJITInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsJITInfo.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsRelocations.h projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCJITInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCJITInfo.h projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCRelocations.h projects/release-install-debug/contrib/llvm/lib/Target/Sparc/SparcCodeEmitter.cpp projects/release-install-debug/contrib/llvm/lib/Target/Sparc/SparcJITInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/Sparc/SparcJITInfo.h projects/release-install-debug/contrib/llvm/lib/Target/Sparc/SparcRelocations.h projects/release-install-debug/contrib/llvm/lib/Target/TargetJITInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/X86AtomicExpandPass.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/X86CodeEmitter.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/X86JITInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/X86JITInfo.h projects/release-install-debug/contrib/llvm/lib/Target/X86/X86Relocations.h projects/release-install-debug/contrib/llvm/lib/Transforms/Instrumentation/DebugIR.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Instrumentation/DebugIR.h projects/release-install-debug/contrib/llvm/patches/patch-01-clang-version-include.diff projects/release-install-debug/contrib/llvm/patches/patch-02-format-extensions.diff projects/release-install-debug/contrib/llvm/patches/patch-03-clang-vendor-suffix.diff projects/release-install-debug/contrib/llvm/patches/patch-04-default-target-triple.diff projects/release-install-debug/contrib/llvm/patches/patch-05-add-CC-aliases.diff projects/release-install-debug/contrib/llvm/patches/patch-06-clang-arm-target-cpu.diff projects/release-install-debug/contrib/llvm/patches/patch-07-llvm-r216989-r216990-fix-movw-armv6.diff projects/release-install-debug/contrib/llvm/patches/patch-08-clang-r217410-i386-garbage-float.diff projects/release-install-debug/contrib/llvm/patches/patch-09-llvm-r221709-debug-oom.diff projects/release-install-debug/contrib/llvm/patches/patch-10-llvm-r222562-loop-rotate.diff projects/release-install-debug/contrib/llvm/patches/patch-11-add-llvm-gvn-option.diff projects/release-install-debug/contrib/llvm/patches/patch-12-llvm-r218241-dwarf2-warning.diff projects/release-install-debug/contrib/llvm/patches/patch-13-llvm-r215352-aarch64-dyn-loader.diff projects/release-install-debug/contrib/llvm/patches/patch-14-llvm-r216571-dynamiclib-usability.diff projects/release-install-debug/contrib/llvm/patches/patch-15-clang-r221900-freebsd-aarch64.diff projects/release-install-debug/contrib/llvm/patches/patch-16-llvm-r222856-libapr-miscompile.diff projects/release-install-debug/contrib/llvm/patches/patch-17-llvm-r214802-armv6-cp10-cp11.diff projects/release-install-debug/contrib/llvm/patches/patch-18-llvm-r215811-arm-fpu-directive.diff projects/release-install-debug/contrib/llvm/patches/patch-19-enable-armv6-clrex.diff projects/release-install-debug/contrib/llvm/patches/patch-20-llvm-r223147-arm-cpu-directive.diff projects/release-install-debug/contrib/llvm/patches/patch-21-llvm-r221170-ppc-vaarg.diff projects/release-install-debug/contrib/llvm/patches/patch-22-llvm-r221791-ppc-small-pic.diff projects/release-install-debug/contrib/llvm/patches/patch-23-llvm-r224415-ppc-local.diff projects/release-install-debug/contrib/llvm/patches/patch-24-llvm-r213890-ppc-eh_frame.diff projects/release-install-debug/contrib/llvm/patches/patch-25-llvm-r224890-ppc-ctr-tls-loop.diff projects/release-install-debug/contrib/llvm/patches/patch-26-clang-r213790-type_traits-crash.diff projects/release-install-debug/contrib/llvm/patches/patch-27-llvm-r222587-arm-add-pc.diff projects/release-install-debug/contrib/llvm/patches/patch-28-llvm-r222292-aarch64-no-neon.diff projects/release-install-debug/contrib/llvm/patches/patch-29-clang-add-mips-triples.diff projects/release-install-debug/contrib/llvm/patches/patch-30-llvm-r226664-aarch64-x18.diff projects/release-install-debug/contrib/llvm/patches/patch-31-clang-r227062-fixes-x18.diff projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/MangleNumberingContext.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/SanitizerBlacklist.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/SanitizerBlacklist.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Driver/WindowsToolChain.cpp projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/ConnectionFileDescriptor.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Symbol/TypeVendor.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/ConnectionFileDescriptor.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/common/Pipe.cpp projects/release-install-debug/contrib/ntp/arlib/ projects/release-install-debug/contrib/ntp/clockstuff/clktest.c projects/release-install-debug/contrib/ntp/excludes projects/release-install-debug/contrib/ntp/html/build/ projects/release-install-debug/contrib/ntp/html/drivers/driver2.html projects/release-install-debug/contrib/ntp/html/gadget.html projects/release-install-debug/contrib/ntp/html/groups.html projects/release-install-debug/contrib/ntp/html/ldisc.html projects/release-install-debug/contrib/ntp/html/manyopt.html projects/release-install-debug/contrib/ntp/html/measure.html projects/release-install-debug/contrib/ntp/html/mx4200data.html projects/release-install-debug/contrib/ntp/html/notes.html projects/release-install-debug/contrib/ntp/html/scripts/links10.txt projects/release-install-debug/contrib/ntp/html/scripts/links11.txt projects/release-install-debug/contrib/ntp/html/scripts/links12.txt projects/release-install-debug/contrib/ntp/html/scripts/links7.txt projects/release-install-debug/contrib/ntp/html/scripts/links8.txt projects/release-install-debug/contrib/ntp/html/scripts/links9.txt projects/release-install-debug/contrib/ntp/include/autogen-version.def projects/release-install-debug/contrib/ntp/include/copyright.def projects/release-install-debug/contrib/ntp/include/debug-opt.def projects/release-install-debug/contrib/ntp/include/global.h projects/release-install-debug/contrib/ntp/include/homerc.def projects/release-install-debug/contrib/ntp/include/isc/app.h projects/release-install-debug/contrib/ntp/include/isc/assertions.h projects/release-install-debug/contrib/ntp/include/isc/boolean.h projects/release-install-debug/contrib/ntp/include/isc/buffer.h projects/release-install-debug/contrib/ntp/include/isc/error.h projects/release-install-debug/contrib/ntp/include/isc/formatcheck.h projects/release-install-debug/contrib/ntp/include/isc/int.h projects/release-install-debug/contrib/ntp/include/isc/interfaceiter.h projects/release-install-debug/contrib/ntp/include/isc/ipv6.h projects/release-install-debug/contrib/ntp/include/isc/lang.h projects/release-install-debug/contrib/ntp/include/isc/lib.h projects/release-install-debug/contrib/ntp/include/isc/list.h projects/release-install-debug/contrib/ntp/include/isc/magic.h projects/release-install-debug/contrib/ntp/include/isc/msgcat.h projects/release-install-debug/contrib/ntp/include/isc/msgs.h projects/release-install-debug/contrib/ntp/include/isc/mutex.h projects/release-install-debug/contrib/ntp/include/isc/net.h projects/release-install-debug/contrib/ntp/include/isc/netaddr.h projects/release-install-debug/contrib/ntp/include/isc/netscope.h projects/release-install-debug/contrib/ntp/include/isc/offset.h projects/release-install-debug/contrib/ntp/include/isc/once.h projects/release-install-debug/contrib/ntp/include/isc/platform.h projects/release-install-debug/contrib/ntp/include/isc/print.h projects/release-install-debug/contrib/ntp/include/isc/region.h projects/release-install-debug/contrib/ntp/include/isc/result.h projects/release-install-debug/contrib/ntp/include/isc/sockaddr.h projects/release-install-debug/contrib/ntp/include/isc/strerror.h projects/release-install-debug/contrib/ntp/include/isc/string.h projects/release-install-debug/contrib/ntp/include/isc/types.h projects/release-install-debug/contrib/ntp/include/isc/util.h projects/release-install-debug/contrib/ntp/include/ntp_sprintf.h projects/release-install-debug/contrib/ntp/include/rsa_md5.h projects/release-install-debug/contrib/ntp/include/version.def projects/release-install-debug/contrib/ntp/kernel/README projects/release-install-debug/contrib/ntp/kernel/chuinit.c projects/release-install-debug/contrib/ntp/kernel/clkinit.c projects/release-install-debug/contrib/ntp/kernel/sys/chudefs.h projects/release-install-debug/contrib/ntp/kernel/sys/clkdefs.h projects/release-install-debug/contrib/ntp/kernel/tty_chu.c projects/release-install-debug/contrib/ntp/kernel/tty_chu_STREAMS.c projects/release-install-debug/contrib/ntp/kernel/tty_clk.c projects/release-install-debug/contrib/ntp/kernel/tty_clk_STREAMS.c projects/release-install-debug/contrib/ntp/libisc/ projects/release-install-debug/contrib/ntp/libntp/fptoa.c projects/release-install-debug/contrib/ntp/libntp/fptoms.c projects/release-install-debug/contrib/ntp/libntp/inttoa.c projects/release-install-debug/contrib/ntp/libntp/lib_strbuf.h projects/release-install-debug/contrib/ntp/libntp/md5c.c projects/release-install-debug/contrib/ntp/libntp/memmove.c projects/release-install-debug/contrib/ntp/libntp/mfptoa.c projects/release-install-debug/contrib/ntp/libntp/mfptoms.c projects/release-install-debug/contrib/ntp/libntp/msutotsf.c projects/release-install-debug/contrib/ntp/libntp/strerror.c projects/release-install-debug/contrib/ntp/libntp/strstr.c projects/release-install-debug/contrib/ntp/libntp/tsftomsu.c projects/release-install-debug/contrib/ntp/libntp/tstotv.c projects/release-install-debug/contrib/ntp/libntp/tvtoa.c projects/release-install-debug/contrib/ntp/libntp/tvtots.c projects/release-install-debug/contrib/ntp/libntp/uinttoa.c projects/release-install-debug/contrib/ntp/libntp/utvtoa.c projects/release-install-debug/contrib/ntp/libopts/ projects/release-install-debug/contrib/ntp/m4/ projects/release-install-debug/contrib/ntp/ntpd/ntp_intres.c projects/release-install-debug/contrib/ntp/ntpd/ntpd-opts.menu projects/release-install-debug/contrib/ntp/ntpd/ntpd-opts.texi projects/release-install-debug/contrib/ntp/ntpd/ntpd.1 projects/release-install-debug/contrib/ntp/ntpd/ntpdsim-opts.c projects/release-install-debug/contrib/ntp/ntpd/ntpdsim-opts.def projects/release-install-debug/contrib/ntp/ntpd/ntpdsim-opts.h projects/release-install-debug/contrib/ntp/ntpd/ntpdsim-opts.menu projects/release-install-debug/contrib/ntp/ntpd/ntpdsim-opts.texi projects/release-install-debug/contrib/ntp/ntpd/ntpdsim.1 projects/release-install-debug/contrib/ntp/ntpd/refclock_trak.c projects/release-install-debug/contrib/ntp/ntpdate/ntptime_config.c projects/release-install-debug/contrib/ntp/ntpdate/ntptimeset.c projects/release-install-debug/contrib/ntp/ntpdc/ntpdc-opts.menu projects/release-install-debug/contrib/ntp/ntpdc/ntpdc-opts.texi projects/release-install-debug/contrib/ntp/ntpdc/ntpdc.1 projects/release-install-debug/contrib/ntp/ntpq/ntpq-opts.menu projects/release-install-debug/contrib/ntp/ntpq/ntpq-opts.texi projects/release-install-debug/contrib/ntp/ntpq/ntpq.1 projects/release-install-debug/contrib/ntp/scripts/VersionName projects/release-install-debug/contrib/ntp/scripts/calc_tickadj.in projects/release-install-debug/contrib/ntp/scripts/checktime.in projects/release-install-debug/contrib/ntp/scripts/fixautomakedepsmagic projects/release-install-debug/contrib/ntp/scripts/freq_adj.in projects/release-install-debug/contrib/ntp/scripts/genCommitLog projects/release-install-debug/contrib/ntp/scripts/genver projects/release-install-debug/contrib/ntp/scripts/hpadjtime.sh projects/release-install-debug/contrib/ntp/scripts/html2man.in projects/release-install-debug/contrib/ntp/scripts/mkver.in projects/release-install-debug/contrib/ntp/scripts/ntp-close projects/release-install-debug/contrib/ntp/scripts/ntp-groper projects/release-install-debug/contrib/ntp/scripts/ntp-restart projects/release-install-debug/contrib/ntp/scripts/ntp-status projects/release-install-debug/contrib/ntp/scripts/ntp-wait.in projects/release-install-debug/contrib/ntp/scripts/ntpsweep.in projects/release-install-debug/contrib/ntp/scripts/ntptrace.in projects/release-install-debug/contrib/ntp/scripts/rc1/ projects/release-install-debug/contrib/ntp/scripts/rc2/ projects/release-install-debug/contrib/ntp/sntp/README projects/release-install-debug/contrib/ntp/sntp/autogen-version.def projects/release-install-debug/contrib/ntp/sntp/header.h projects/release-install-debug/contrib/ntp/sntp/internet.c projects/release-install-debug/contrib/ntp/sntp/internet.h projects/release-install-debug/contrib/ntp/sntp/kludges.h projects/release-install-debug/contrib/ntp/sntp/libopts/COPYING.lgpl projects/release-install-debug/contrib/ntp/sntp/libopts/enumeration.c projects/release-install-debug/contrib/ntp/sntp/libopts/environment.c projects/release-install-debug/contrib/ntp/sntp/sntp-opts.menu projects/release-install-debug/contrib/ntp/sntp/sntp-opts.texi projects/release-install-debug/contrib/ntp/sntp/sntp.1 projects/release-install-debug/contrib/ntp/sntp/socket.c projects/release-install-debug/contrib/ntp/sntp/timing.c projects/release-install-debug/contrib/ntp/sntp/unix.c projects/release-install-debug/contrib/ntp/sntp/version.def projects/release-install-debug/contrib/ntp/util/ntp-keygen-opts.menu projects/release-install-debug/contrib/ntp/util/ntp-keygen-opts.texi projects/release-install-debug/contrib/ntp/util/ntp-keygen.1 projects/release-install-debug/contrib/ntp/version projects/release-install-debug/contrib/ntp/version.m4 projects/release-install-debug/contrib/nvi/catalog/spell.ok projects/release-install-debug/contrib/nvi/docs/TODO projects/release-install-debug/contrib/nvi/docs/USD.doc/ projects/release-install-debug/contrib/nvi/docs/changelog projects/release-install-debug/contrib/nvi/docs/ev projects/release-install-debug/contrib/nvi/docs/features projects/release-install-debug/contrib/nvi/docs/help projects/release-install-debug/contrib/nvi/docs/internals/ projects/release-install-debug/contrib/nvi/docs/interp/ projects/release-install-debug/contrib/nvi/docs/spell.ok projects/release-install-debug/contrib/nvi/docs/tutorial/ projects/release-install-debug/contrib/wpa/hostapd/dump_state.c projects/release-install-debug/contrib/wpa/hostapd/dump_state.h projects/release-install-debug/contrib/wpa/patches/openssl-0.9.8-tls-extensions.patch projects/release-install-debug/contrib/wpa/patches/openssl-0.9.8d-tls-extensions.patch projects/release-install-debug/contrib/wpa/patches/openssl-0.9.8e-tls-extensions.patch projects/release-install-debug/contrib/wpa/patches/openssl-0.9.8g-tls-extensions.patch projects/release-install-debug/contrib/wpa/patches/openssl-0.9.8h-tls-extensions.patch projects/release-install-debug/contrib/wpa/patches/openssl-0.9.8i-tls-extensions.patch projects/release-install-debug/contrib/wpa/patches/openssl-0.9.8x-tls-extensions.patch projects/release-install-debug/contrib/wpa/patches/openssl-0.9.9-session-ticket.patch projects/release-install-debug/contrib/wpa/src/crypto/crypto_nss.c projects/release-install-debug/contrib/wpa/src/crypto/fips_prf_cryptoapi.c projects/release-install-debug/contrib/wpa/src/crypto/fips_prf_gnutls.c projects/release-install-debug/contrib/wpa/src/crypto/fips_prf_nss.c projects/release-install-debug/contrib/wpa/src/crypto/tls_nss.c projects/release-install-debug/contrib/wpa/src/utils/eloop_none.c projects/release-install-debug/games/bcd/ projects/release-install-debug/games/ppt/ projects/release-install-debug/lib/clang/libllvmjit/ projects/release-install-debug/lib/clang/libllvmmcanalysis/ projects/release-install-debug/lib/libc/arm/sys/__vdso_gettc.c projects/release-install-debug/lib/libc/mips/sys/__vdso_gettc.c projects/release-install-debug/lib/libc/powerpc/sys/__vdso_gettc.c projects/release-install-debug/lib/libc/powerpc64/sys/__vdso_gettc.c projects/release-install-debug/lib/libc/sparc64/sys/__vdso_gettc.c projects/release-install-debug/lib/libc/sys/ftruncate.c projects/release-install-debug/lib/libc/sys/lseek.c projects/release-install-debug/lib/libc/sys/mmap.c projects/release-install-debug/lib/libc/sys/pread.c projects/release-install-debug/lib/libc/sys/pwrite.c projects/release-install-debug/lib/libc/sys/truncate.c projects/release-install-debug/lib/libnv/dnv.h projects/release-install-debug/lib/libnv/dnvlist.c projects/release-install-debug/lib/libnv/nv.h projects/release-install-debug/lib/libnv/nv_impl.h projects/release-install-debug/lib/libnv/nvlist.c projects/release-install-debug/lib/libnv/nvlist_impl.h projects/release-install-debug/lib/libnv/nvpair.c projects/release-install-debug/lib/libnv/nvpair_impl.h projects/release-install-debug/share/doc/usd/10.exref/ projects/release-install-debug/share/doc/usd/11.vitut/ projects/release-install-debug/share/doc/usd/12.vi/ projects/release-install-debug/share/doc/usd/13.viref/ projects/release-install-debug/sys/amd64/vmm/vmm_ipi.c projects/release-install-debug/sys/amd64/vmm/vmm_ipi.h projects/release-install-debug/sys/amd64/vmm/vmm_support.S projects/release-install-debug/sys/arm/arm/bootconfig.c projects/release-install-debug/sys/arm/arm/cpufunc_asm_armv5.S projects/release-install-debug/sys/arm/include/bootconfig.h projects/release-install-debug/sys/arm/mv/mv_sata.c projects/release-install-debug/sys/boot/amd64/ projects/release-install-debug/sys/boot/i386/efi/ projects/release-install-debug/sys/cddl/contrib/opensolaris/uts/common/dtrace/lockstat.c projects/release-install-debug/sys/cddl/contrib/opensolaris/uts/common/dtrace/profile.c projects/release-install-debug/sys/cddl/contrib/opensolaris/uts/common/dtrace/sdt_subr.c projects/release-install-debug/sys/cddl/contrib/opensolaris/uts/common/dtrace/systrace.c projects/release-install-debug/sys/contrib/altq/ projects/release-install-debug/sys/dev/ata/chipsets/ata-adaptec.c projects/release-install-debug/sys/dev/ata/chipsets/ata-ahci.c projects/release-install-debug/sys/dev/drm2/drm_drawable.c projects/release-install-debug/sys/dev/drm2/drm_internal.h projects/release-install-debug/sys/dev/drm2/drm_sman.c projects/release-install-debug/sys/dev/drm2/drm_sman.h projects/release-install-debug/sys/dev/drm2/radeon/radeon_atpx_handler.c projects/release-install-debug/sys/dev/ixgbe/ixgbe.c projects/release-install-debug/sys/dev/ixgbe/ixv.c projects/release-install-debug/sys/dev/ixgbe/ixv.h projects/release-install-debug/sys/fs/ext2fs/ext2_hash.c projects/release-install-debug/sys/fs/ext2fs/ext2_htree.c projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/lsi,axm5516-clks.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/qcom,gcc-apq8084.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/qcom,gcc-ipq806x.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/qcom,gcc-msm8660.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/qcom,gcc-msm8960.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/qcom,gcc-msm8974.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/qcom,mmcc-apq8084.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/qcom,mmcc-msm8960.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/qcom,mmcc-msm8974.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/samsung,s3c64xx-clock.h projects/release-install-debug/sys/gnu/dts/include/dt-bindings/reset/ projects/release-install-debug/sys/gnu/dts/include/dt-bindings/soc/ projects/release-install-debug/sys/mips/nlm/dev/cfi_pci_xlp.c projects/release-install-debug/sys/mips/nlm/dev/uart_pci_xlp.c projects/release-install-debug/sys/modules/ata/atapci/chipsets/ataadaptec/ projects/release-install-debug/sys/modules/ata/atapci/chipsets/ataahci/ projects/release-install-debug/sys/modules/ixgbe/ projects/release-install-debug/sys/netipsec/xform_ipip.c projects/release-install-debug/sys/ofed/drivers/net/mlx4/utils.c projects/release-install-debug/sys/ofed/drivers/net/mlx4/utils.h projects/release-install-debug/sys/powerpc/aim/trap.c projects/release-install-debug/sys/powerpc/booke/trap.c projects/release-install-debug/tools/build/options/WITHOUT_SYSCALL_COMPAT projects/release-install-debug/tools/regression/sockets/so_setfib/so_setfib.t projects/release-install-debug/tools/test/dtrace/ projects/release-install-debug/usr.bin/calendar/calcpp.c projects/release-install-debug/usr.sbin/crunch/crunchide/exec_aout.c projects/release-install-debug/usr.sbin/pmcstudy/pmcstudy.1 Modified: projects/release-install-debug/.arcconfig projects/release-install-debug/.arclint projects/release-install-debug/Makefile projects/release-install-debug/Makefile.inc1 projects/release-install-debug/ObsoleteFiles.inc projects/release-install-debug/README projects/release-install-debug/UPDATING projects/release-install-debug/bin/cp/utils.c projects/release-install-debug/bin/csh/config.h projects/release-install-debug/bin/csh/iconv_stub.h projects/release-install-debug/bin/ed/glbl.c projects/release-install-debug/bin/expr/Makefile projects/release-install-debug/bin/kill/kill.c projects/release-install-debug/bin/mv/mv.c projects/release-install-debug/bin/pax/ar_io.c projects/release-install-debug/bin/pax/extern.h projects/release-install-debug/bin/pax/options.c projects/release-install-debug/bin/pax/pax.1 projects/release-install-debug/bin/pax/pax.c projects/release-install-debug/bin/pkill/tests/pgrep-j_test.sh projects/release-install-debug/bin/pkill/tests/pkill-j_test.sh projects/release-install-debug/bin/ps/print.c projects/release-install-debug/bin/ps/ps.1 projects/release-install-debug/bin/rcp/Makefile projects/release-install-debug/bin/sh/arith_yacc.h projects/release-install-debug/bin/sh/arith_yylex.c projects/release-install-debug/bin/sh/bltin/bltin.h projects/release-install-debug/bin/sh/error.c projects/release-install-debug/bin/sh/eval.c projects/release-install-debug/bin/sh/eval.h projects/release-install-debug/bin/sh/expand.c projects/release-install-debug/bin/sh/histedit.c projects/release-install-debug/bin/sh/jobs.c projects/release-install-debug/bin/sh/mknodes.c projects/release-install-debug/bin/sh/mksyntax.c projects/release-install-debug/bin/sh/mktokens projects/release-install-debug/bin/sh/options.c projects/release-install-debug/bin/sh/options.h projects/release-install-debug/bin/sh/sh.1 projects/release-install-debug/bin/sh/tests/builtins/Makefile projects/release-install-debug/bin/sh/tests/expansion/Makefile projects/release-install-debug/bin/sh/trap.c projects/release-install-debug/bin/sh/var.c projects/release-install-debug/bin/sh/var.h projects/release-install-debug/cddl/contrib/dtracetoolkit/Proc/pidpersec.d projects/release-install-debug/cddl/contrib/opensolaris/cmd/dtrace/dtrace.1 projects/release-install-debug/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.system.d projects/release-install-debug/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.system.d.out projects/release-install-debug/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4localicmp.ksh projects/release-install-debug/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4localicmp.ksh.out projects/release-install-debug/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4localtcp.ksh projects/release-install-debug/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4remotetcp.ksh projects/release-install-debug/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv6localicmp.ksh projects/release-install-debug/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv6localicmp.ksh.out projects/release-install-debug/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.localtcpstate.ksh projects/release-install-debug/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.remotetcpstate.ksh projects/release-install-debug/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/tst.manypids.ksh projects/release-install-debug/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/tst.provregex2.ksh projects/release-install-debug/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/tst.provregex3.ksh projects/release-install-debug/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/tst.provregex4.ksh projects/release-install-debug/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.dlclose1.ksh projects/release-install-debug/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.dlclose2.ksh projects/release-install-debug/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.dlclose3.ksh projects/release-install-debug/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.multiprov.ksh projects/release-install-debug/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.noprobes.ksh projects/release-install-debug/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.noreap.ksh projects/release-install-debug/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.noreapring.ksh projects/release-install-debug/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.reap.ksh projects/release-install-debug/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c projects/release-install-debug/cddl/contrib/opensolaris/common/ctf/ctf_create.c projects/release-install-debug/cddl/contrib/opensolaris/lib/libdtrace/common/drti.c projects/release-install-debug/cddl/contrib/opensolaris/lib/libdtrace/common/dt_consume.c projects/release-install-debug/cddl/contrib/opensolaris/lib/libdtrace/common/dt_link.c projects/release-install-debug/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pid.c projects/release-install-debug/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c projects/release-install-debug/cddl/contrib/opensolaris/tools/ctf/cvt/output.c projects/release-install-debug/cddl/lib/libdtrace/libproc_compat.h projects/release-install-debug/cddl/usr.bin/ctfconvert/Makefile projects/release-install-debug/cddl/usr.bin/ctfmerge/Makefile projects/release-install-debug/contrib/binutils/bfd/dwarf2.c projects/release-install-debug/contrib/binutils/bfd/elf-bfd.h projects/release-install-debug/contrib/binutils/bfd/elf32-arm.c projects/release-install-debug/contrib/binutils/include/elf/arm.h projects/release-install-debug/contrib/binutils/opcodes/ppc-opc.c projects/release-install-debug/contrib/bmake/ChangeLog projects/release-install-debug/contrib/bmake/FILES projects/release-install-debug/contrib/bmake/Makefile projects/release-install-debug/contrib/bmake/PSD.doc/Makefile projects/release-install-debug/contrib/bmake/PSD.doc/tutorial.ms projects/release-install-debug/contrib/bmake/bmake.1 projects/release-install-debug/contrib/bmake/bmake.cat1 projects/release-install-debug/contrib/bmake/compat.c projects/release-install-debug/contrib/bmake/configure projects/release-install-debug/contrib/bmake/configure.in projects/release-install-debug/contrib/bmake/job.c projects/release-install-debug/contrib/bmake/lst.h projects/release-install-debug/contrib/bmake/lst.lib/lstInt.h projects/release-install-debug/contrib/bmake/lst.lib/lstRemove.c projects/release-install-debug/contrib/bmake/main.c projects/release-install-debug/contrib/bmake/make.1 projects/release-install-debug/contrib/bmake/make.c projects/release-install-debug/contrib/bmake/make.h projects/release-install-debug/contrib/bmake/meta.c projects/release-install-debug/contrib/bmake/mk/ChangeLog projects/release-install-debug/contrib/bmake/mk/FILES projects/release-install-debug/contrib/bmake/mk/auto.dep.mk projects/release-install-debug/contrib/bmake/mk/auto.obj.mk projects/release-install-debug/contrib/bmake/mk/autodep.mk projects/release-install-debug/contrib/bmake/mk/dep.mk projects/release-install-debug/contrib/bmake/mk/dirdeps.mk projects/release-install-debug/contrib/bmake/mk/gendirdeps.mk projects/release-install-debug/contrib/bmake/mk/install-mk projects/release-install-debug/contrib/bmake/mk/links.mk projects/release-install-debug/contrib/bmake/mk/meta.autodep.mk projects/release-install-debug/contrib/bmake/mk/meta.stage.mk projects/release-install-debug/contrib/bmake/mk/meta.sys.mk projects/release-install-debug/contrib/bmake/mk/meta2deps.py projects/release-install-debug/contrib/bmake/mk/meta2deps.sh projects/release-install-debug/contrib/bmake/mk/mk-files.txt projects/release-install-debug/contrib/bmake/mk/own.mk projects/release-install-debug/contrib/bmake/mk/sys.dependfile.mk projects/release-install-debug/contrib/bmake/nonints.h projects/release-install-debug/contrib/bmake/parse.c projects/release-install-debug/contrib/bmake/suff.c projects/release-install-debug/contrib/bmake/targ.c projects/release-install-debug/contrib/bmake/unit-tests/Makefile.in projects/release-install-debug/contrib/bmake/var.c projects/release-install-debug/contrib/compiler-rt/include/sanitizer/asan_interface.h projects/release-install-debug/contrib/compiler-rt/include/sanitizer/common_interface_defs.h projects/release-install-debug/contrib/compiler-rt/include/sanitizer/msan_interface.h projects/release-install-debug/contrib/compiler-rt/lib/asan/README.txt projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_activation.cc projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_activation.h projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_allocator.h projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_debugging.cc projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_fake_stack.cc projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_flags.h projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_globals.cc projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_init_version.h projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_interceptors.cc projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_interface_internal.h projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_internal.h projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_linux.cc projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_mac.cc projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_malloc_mac.cc projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_mapping.h projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_poisoning.cc projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_poisoning.h projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_report.cc projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_rtl.cc projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_stack.cc projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_stack.h projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_suppressions.cc projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_win.cc projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_win_dll_thunk.cc projects/release-install-debug/contrib/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cc projects/release-install-debug/contrib/compiler-rt/lib/asan/scripts/asan_device_setup projects/release-install-debug/contrib/compiler-rt/lib/asan/scripts/asan_symbolize.py projects/release-install-debug/contrib/compiler-rt/lib/asan/tests/asan_interface_test.cc projects/release-install-debug/contrib/compiler-rt/lib/asan/tests/asan_noinst_test.cc projects/release-install-debug/contrib/compiler-rt/lib/asan/tests/asan_test.cc projects/release-install-debug/contrib/compiler-rt/lib/builtins/atomic.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/clear_cache.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/fixdfdi.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/fixdfsi.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/fixdfti.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/fixsfdi.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/fixsfsi.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/fixsfti.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/fixunsdfdi.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/fixunsdfsi.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/fixunsdfti.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/fixunssfdi.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/fixunssfsi.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/fixunssfti.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/fixunsxfdi.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/fixunsxfsi.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/fixunsxfti.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/fixxfdi.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/fixxfti.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/gcc_personality_v0.c projects/release-install-debug/contrib/compiler-rt/lib/builtins/int_types.h projects/release-install-debug/contrib/compiler-rt/lib/dfsan/dfsan.cc projects/release-install-debug/contrib/compiler-rt/lib/dfsan/dfsan.h projects/release-install-debug/contrib/compiler-rt/lib/dfsan/dfsan_custom.cc projects/release-install-debug/contrib/compiler-rt/lib/lsan/lsan.cc projects/release-install-debug/contrib/compiler-rt/lib/lsan/lsan_allocator.cc projects/release-install-debug/contrib/compiler-rt/lib/lsan/lsan_common.cc projects/release-install-debug/contrib/compiler-rt/lib/lsan/lsan_common.h projects/release-install-debug/contrib/compiler-rt/lib/msan/msan.cc projects/release-install-debug/contrib/compiler-rt/lib/msan/msan.h projects/release-install-debug/contrib/compiler-rt/lib/msan/msan_allocator.cc projects/release-install-debug/contrib/compiler-rt/lib/msan/msan_flags.h projects/release-install-debug/contrib/compiler-rt/lib/msan/msan_interceptors.cc projects/release-install-debug/contrib/compiler-rt/lib/msan/msan_linux.cc projects/release-install-debug/contrib/compiler-rt/lib/msan/msan_report.cc projects/release-install-debug/contrib/compiler-rt/lib/msan/msan_thread.cc projects/release-install-debug/contrib/compiler-rt/lib/msan/tests/msan_test.cc projects/release-install-debug/contrib/compiler-rt/lib/profile/InstrProfilingFile.c projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator.h projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_internal.h projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common.h projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_libcdep.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_syscalls.inc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_mapping_libcdep.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector.h projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.h projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_internal_defs.h projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libc.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libc.h projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libignore.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libignore.h projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux.h projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_list.h projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mac.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mac.h projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mutex.h projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_interceptors.h projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.h projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix_libcdep.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_quarantine.h projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.h projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.h projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libbacktrace.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libbacktrace.h projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscall_generic.inc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_posix_libcdep.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/scripts/check_lint.sh projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/scripts/sancov.py projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_allocator_test.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_deadlock_detector_test.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_flags_test.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_libc_test.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_linux_test.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_printf_test.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_procmaps_test.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_suppressions_test.cc projects/release-install-debug/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_test_utils.h projects/release-install-debug/contrib/compiler-rt/lib/tsan/check_analyze.sh projects/release-install-debug/contrib/compiler-rt/lib/tsan/dd/dd_rtl.cc projects/release-install-debug/contrib/compiler-rt/lib/tsan/go/build.bat projects/release-install-debug/contrib/compiler-rt/lib/tsan/go/buildgo.sh projects/release-install-debug/contrib/compiler-rt/lib/tsan/go/tsan_go.cc projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_clock.cc projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_defs.h projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.cc projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.h projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors.cc projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_interface.cc projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_interface.h projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_atomic.cc projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_java.cc projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_java.h projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_mman.cc projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_mman.h projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_mutex.cc projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_mutex.h projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_platform.h projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_mac.cc projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_report.cc projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl.cc projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl.h projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cc projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cc projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_stat.cc projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_suppressions.cc projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_suppressions.h projects/release-install-debug/contrib/compiler-rt/lib/tsan/rtl/tsan_trace.h projects/release-install-debug/contrib/compiler-rt/lib/tsan/tests/rtl/tsan_string.cc projects/release-install-debug/contrib/compiler-rt/lib/tsan/tests/unit/tsan_clock_test.cc projects/release-install-debug/contrib/compiler-rt/lib/tsan/tests/unit/tsan_mman_test.cc projects/release-install-debug/contrib/compiler-rt/lib/tsan/tests/unit/tsan_mutex_test.cc projects/release-install-debug/contrib/compiler-rt/lib/ubsan/ubsan_diag.cc projects/release-install-debug/contrib/compiler-rt/lib/ubsan/ubsan_diag.h projects/release-install-debug/contrib/compiler-rt/lib/ubsan/ubsan_flags.cc projects/release-install-debug/contrib/compiler-rt/lib/ubsan/ubsan_flags.h projects/release-install-debug/contrib/compiler-rt/lib/ubsan/ubsan_handlers.cc projects/release-install-debug/contrib/compiler-rt/lib/ubsan/ubsan_handlers_cxx.cc projects/release-install-debug/contrib/compiler-rt/lib/ubsan/ubsan_init.cc projects/release-install-debug/contrib/compiler-rt/lib/ubsan/ubsan_type_hash.cc projects/release-install-debug/contrib/elftoolchain/addr2line/addr2line.c projects/release-install-debug/contrib/elftoolchain/common/_elftc.h projects/release-install-debug/contrib/elftoolchain/common/elfdefinitions.h projects/release-install-debug/contrib/elftoolchain/common/native-elf-format projects/release-install-debug/contrib/elftoolchain/cxxfilt/cxxfilt.c projects/release-install-debug/contrib/elftoolchain/elfcopy/archive.c projects/release-install-debug/contrib/elftoolchain/elfcopy/ascii.c projects/release-install-debug/contrib/elftoolchain/elfcopy/binary.c projects/release-install-debug/contrib/elftoolchain/elfcopy/elfcopy.1 projects/release-install-debug/contrib/elftoolchain/elfcopy/elfcopy.h projects/release-install-debug/contrib/elftoolchain/elfcopy/main.c projects/release-install-debug/contrib/elftoolchain/elfcopy/sections.c projects/release-install-debug/contrib/elftoolchain/elfcopy/segments.c projects/release-install-debug/contrib/elftoolchain/elfcopy/symbols.c projects/release-install-debug/contrib/elftoolchain/libdwarf/_libdwarf.h projects/release-install-debug/contrib/elftoolchain/libdwarf/libdwarf.h projects/release-install-debug/contrib/elftoolchain/libdwarf/libdwarf_lineno.c projects/release-install-debug/contrib/elftoolchain/libelf/_libelf.h projects/release-install-debug/contrib/elftoolchain/libelf/_libelf_config.h projects/release-install-debug/contrib/elftoolchain/libelf/elf_data.c projects/release-install-debug/contrib/elftoolchain/libelf/elf_end.c projects/release-install-debug/contrib/elftoolchain/libelf/elf_errmsg.c projects/release-install-debug/contrib/elftoolchain/libelf/elf_errno.c projects/release-install-debug/contrib/elftoolchain/libelf/elf_fill.c projects/release-install-debug/contrib/elftoolchain/libelf/elf_flag.c projects/release-install-debug/contrib/elftoolchain/libelf/elf_getarhdr.c projects/release-install-debug/contrib/elftoolchain/libelf/elf_getarsym.c projects/release-install-debug/contrib/elftoolchain/libelf/elf_getbase.c projects/release-install-debug/contrib/elftoolchain/libelf/elf_getident.c projects/release-install-debug/contrib/elftoolchain/libelf/elf_hash.c projects/release-install-debug/contrib/elftoolchain/libelf/elf_kind.c projects/release-install-debug/contrib/elftoolchain/libelf/elf_next.c projects/release-install-debug/contrib/elftoolchain/libelf/elf_phnum.c projects/release-install-debug/contrib/elftoolchain/libelf/elf_rand.c projects/release-install-debug/contrib/elftoolchain/libelf/elf_rawfile.c projects/release-install-debug/contrib/elftoolchain/libelf/elf_scn.c projects/release-install-debug/contrib/elftoolchain/libelf/elf_shnum.c projects/release-install-debug/contrib/elftoolchain/libelf/elf_shstrndx.c projects/release-install-debug/contrib/elftoolchain/libelf/elf_version.c projects/release-install-debug/contrib/elftoolchain/libelf/gelf.h projects/release-install-debug/contrib/elftoolchain/libelf/gelf_cap.c projects/release-install-debug/contrib/elftoolchain/libelf/gelf_checksum.c projects/release-install-debug/contrib/elftoolchain/libelf/gelf_dyn.c projects/release-install-debug/contrib/elftoolchain/libelf/gelf_ehdr.c projects/release-install-debug/contrib/elftoolchain/libelf/gelf_fsize.c projects/release-install-debug/contrib/elftoolchain/libelf/gelf_getclass.c projects/release-install-debug/contrib/elftoolchain/libelf/gelf_move.c projects/release-install-debug/contrib/elftoolchain/libelf/gelf_phdr.c projects/release-install-debug/contrib/elftoolchain/libelf/gelf_rel.c projects/release-install-debug/contrib/elftoolchain/libelf/gelf_rela.c projects/release-install-debug/contrib/elftoolchain/libelf/gelf_shdr.c projects/release-install-debug/contrib/elftoolchain/libelf/gelf_sym.c projects/release-install-debug/contrib/elftoolchain/libelf/gelf_syminfo.c projects/release-install-debug/contrib/elftoolchain/libelf/gelf_symshndx.c projects/release-install-debug/contrib/elftoolchain/libelf/gelf_xlate.c projects/release-install-debug/contrib/elftoolchain/libelf/libelf.h projects/release-install-debug/contrib/elftoolchain/libelf/libelf_align.c projects/release-install-debug/contrib/elftoolchain/libelf/libelf_allocate.c projects/release-install-debug/contrib/elftoolchain/libelf/libelf_ar.c projects/release-install-debug/contrib/elftoolchain/libelf/libelf_ar_util.c projects/release-install-debug/contrib/elftoolchain/libelf/libelf_checksum.c projects/release-install-debug/contrib/elftoolchain/libelf/libelf_convert.m4 projects/release-install-debug/contrib/elftoolchain/libelf/libelf_data.c projects/release-install-debug/contrib/elftoolchain/libelf/libelf_ehdr.c projects/release-install-debug/contrib/elftoolchain/libelf/libelf_extended.c projects/release-install-debug/contrib/elftoolchain/libelf/libelf_msize.m4 projects/release-install-debug/contrib/elftoolchain/libelf/libelf_phdr.c projects/release-install-debug/contrib/elftoolchain/libelf/libelf_shdr.c projects/release-install-debug/contrib/elftoolchain/libelf/libelf_xlate.c projects/release-install-debug/contrib/elftoolchain/libelftc/_libelftc.h projects/release-install-debug/contrib/elftoolchain/libelftc/elftc_bfdtarget.c projects/release-install-debug/contrib/elftoolchain/libelftc/elftc_demangle.c projects/release-install-debug/contrib/elftoolchain/libelftc/libelftc.h projects/release-install-debug/contrib/elftoolchain/libelftc/libelftc_bfdtarget.c projects/release-install-debug/contrib/elftoolchain/nm/nm.c projects/release-install-debug/contrib/elftoolchain/readelf/readelf.c projects/release-install-debug/contrib/elftoolchain/size/size.c projects/release-install-debug/contrib/elftoolchain/strings/strings.c projects/release-install-debug/contrib/gcc/unwind-dw2.c projects/release-install-debug/contrib/groff/tmac/doc-syms projects/release-install-debug/contrib/ipfilter/ipsend/44arp.c projects/release-install-debug/contrib/ipfilter/ipsend/ip.c projects/release-install-debug/contrib/ipfilter/ipsend/resend.c projects/release-install-debug/contrib/ipfilter/lib/kmem.c projects/release-install-debug/contrib/ipfilter/tools/ipfs.c projects/release-install-debug/contrib/ipfilter/tools/ipftest.c projects/release-install-debug/contrib/ipfilter/tools/ipnat.c projects/release-install-debug/contrib/ipfilter/tools/ipnat_y.y projects/release-install-debug/contrib/ipfilter/tools/ippool.c projects/release-install-debug/contrib/ipfilter/tools/ippool_y.y projects/release-install-debug/contrib/jemalloc/include/jemalloc/jemalloc_FreeBSD.h projects/release-install-debug/contrib/libarchive/libarchive/archive_read_disk_posix.c projects/release-install-debug/contrib/libc++/include/__bit_reference projects/release-install-debug/contrib/libc++/include/__tree projects/release-install-debug/contrib/libc++/include/algorithm projects/release-install-debug/contrib/libc++/include/type_traits projects/release-install-debug/contrib/libcxxrt/dwarf_eh.h projects/release-install-debug/contrib/libcxxrt/unwind-arm.h projects/release-install-debug/contrib/libucl/ChangeLog.md projects/release-install-debug/contrib/libucl/Makefile.am projects/release-install-debug/contrib/libucl/README.md projects/release-install-debug/contrib/libucl/cmake/CMakeLists.txt projects/release-install-debug/contrib/libucl/configure.ac projects/release-install-debug/contrib/libucl/doc/Makefile.am projects/release-install-debug/contrib/libucl/doc/api.md projects/release-install-debug/contrib/libucl/doc/libucl.3 projects/release-install-debug/contrib/libucl/doc/pandoc.template projects/release-install-debug/contrib/libucl/include/ucl.h projects/release-install-debug/contrib/libucl/src/Makefile.am projects/release-install-debug/contrib/libucl/src/ucl_emitter.c projects/release-install-debug/contrib/libucl/src/ucl_emitter_utils.c projects/release-install-debug/contrib/libucl/src/ucl_hash.c projects/release-install-debug/contrib/libucl/src/ucl_hash.h projects/release-install-debug/contrib/libucl/src/ucl_internal.h projects/release-install-debug/contrib/libucl/src/ucl_parser.c projects/release-install-debug/contrib/libucl/src/ucl_schema.c projects/release-install-debug/contrib/libucl/src/ucl_util.c projects/release-install-debug/contrib/libucl/tests/schema.test projects/release-install-debug/contrib/libucl/tests/test_generate.c projects/release-install-debug/contrib/libucl/tests/test_schema.c projects/release-install-debug/contrib/libucl/uthash/utstring.h projects/release-install-debug/contrib/libucl/utils/objdump.c projects/release-install-debug/contrib/libxo/libxo/xo.h projects/release-install-debug/contrib/llvm/include/llvm-c/BitReader.h projects/release-install-debug/contrib/llvm/include/llvm-c/BitWriter.h projects/release-install-debug/contrib/llvm/include/llvm-c/Core.h projects/release-install-debug/contrib/llvm/include/llvm-c/Disassembler.h projects/release-install-debug/contrib/llvm/include/llvm-c/ExecutionEngine.h projects/release-install-debug/contrib/llvm/include/llvm-c/Initialization.h projects/release-install-debug/contrib/llvm/include/llvm-c/Linker.h projects/release-install-debug/contrib/llvm/include/llvm-c/Support.h projects/release-install-debug/contrib/llvm/include/llvm-c/Transforms/Scalar.h projects/release-install-debug/contrib/llvm/include/llvm-c/lto.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/APFloat.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/APInt.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/APSInt.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/ArrayRef.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/BitVector.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/DenseMap.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/DenseSet.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/DepthFirstIterator.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/MapVector.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/Optional.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/PostOrderIterator.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/STLExtras.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/ScopedHashTable.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/SetVector.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/SmallBitVector.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/SmallPtrSet.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/SmallSet.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/SmallVector.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/SparseBitVector.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/SparseMultiSet.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/SparseSet.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/StringMap.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/StringRef.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/StringSet.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/TinyPtrVector.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/Triple.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/Twine.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/VariadicFunction.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/ilist.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/ilist_node.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/iterator.h projects/release-install-debug/contrib/llvm/include/llvm/ADT/iterator_range.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/AliasAnalysis.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/AliasSetTracker.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfoImpl.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/BranchProbabilityInfo.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/CFGPrinter.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/CGSCCPassManager.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/CallGraph.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/CodeMetrics.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/DOTGraphTraitsPass.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/DependenceAnalysis.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/DominanceFrontier.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/DominanceFrontierImpl.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/IVUsers.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/InlineCost.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/InstructionSimplify.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/IntervalIterator.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/JumpInstrTableInfo.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/LazyCallGraph.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/LazyValueInfo.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/Loads.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/LoopPass.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/PHITransAddr.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/Passes.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/PostDominators.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/RegionInfo.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/RegionInfoImpl.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/TargetTransformInfo.h projects/release-install-debug/contrib/llvm/include/llvm/Analysis/ValueTracking.h projects/release-install-debug/contrib/llvm/include/llvm/AsmParser/Parser.h projects/release-install-debug/contrib/llvm/include/llvm/Bitcode/BitCodes.h projects/release-install-debug/contrib/llvm/include/llvm/Bitcode/BitcodeWriterPass.h projects/release-install-debug/contrib/llvm/include/llvm/Bitcode/BitstreamReader.h projects/release-install-debug/contrib/llvm/include/llvm/Bitcode/BitstreamWriter.h projects/release-install-debug/contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.h projects/release-install-debug/contrib/llvm/include/llvm/Bitcode/ReaderWriter.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/Analysis.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/CalcSpillWeights.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/CallingConvLower.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/CommandFlags.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/DFAPacketizer.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/FastISel.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/GCMetadata.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/GCMetadataPrinter.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/GCStrategy.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/GCs.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/JumpInstrTables.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/LexicalScopes.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/LiveInterval.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/LiveIntervalUnion.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/LivePhysRegs.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/LiveRangeEdit.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/LiveVariables.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/MachineDominators.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/MachineFrameInfo.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/MachineFunction.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/MachineInstr.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/MachineInstrBuilder.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/MachineMemOperand.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/MachineModuleInfo.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/MachineOperand.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/MachinePostDominators.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/MachineTraceMetrics.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/MachineValueType.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/PBQP/CostAllocator.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/PBQP/Graph.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/PBQP/Math.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/PBQP/ReductionRules.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/PBQP/Solution.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/Passes.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/RegAllocPBQP.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/RegisterScavenging.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/RuntimeLibcalls.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/SelectionDAGISel.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/SelectionDAGNodes.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/StackMapLivenessAnalysis.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/StackMaps.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h projects/release-install-debug/contrib/llvm/include/llvm/CodeGen/TargetSchedule.h projects/release-install-debug/contrib/llvm/include/llvm/DebugInfo/DIContext.h projects/release-install-debug/contrib/llvm/include/llvm/DebugInfo/DWARFFormValue.h projects/release-install-debug/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h projects/release-install-debug/contrib/llvm/include/llvm/ExecutionEngine/JITEventListener.h projects/release-install-debug/contrib/llvm/include/llvm/ExecutionEngine/ObjectCache.h projects/release-install-debug/contrib/llvm/include/llvm/ExecutionEngine/RTDyldMemoryManager.h projects/release-install-debug/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h projects/release-install-debug/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyldChecker.h projects/release-install-debug/contrib/llvm/include/llvm/IR/Argument.h projects/release-install-debug/contrib/llvm/include/llvm/IR/AssemblyAnnotationWriter.h projects/release-install-debug/contrib/llvm/include/llvm/IR/BasicBlock.h projects/release-install-debug/contrib/llvm/include/llvm/IR/CFG.h projects/release-install-debug/contrib/llvm/include/llvm/IR/CallingConv.h projects/release-install-debug/contrib/llvm/include/llvm/IR/Constant.h projects/release-install-debug/contrib/llvm/include/llvm/IR/ConstantRange.h projects/release-install-debug/contrib/llvm/include/llvm/IR/Constants.h projects/release-install-debug/contrib/llvm/include/llvm/IR/DIBuilder.h projects/release-install-debug/contrib/llvm/include/llvm/IR/DataLayout.h projects/release-install-debug/contrib/llvm/include/llvm/IR/DebugInfo.h projects/release-install-debug/contrib/llvm/include/llvm/IR/DebugLoc.h projects/release-install-debug/contrib/llvm/include/llvm/IR/DerivedTypes.h projects/release-install-debug/contrib/llvm/include/llvm/IR/DiagnosticInfo.h projects/release-install-debug/contrib/llvm/include/llvm/IR/DiagnosticPrinter.h projects/release-install-debug/contrib/llvm/include/llvm/IR/Dominators.h projects/release-install-debug/contrib/llvm/include/llvm/IR/Function.h projects/release-install-debug/contrib/llvm/include/llvm/IR/GVMaterializer.h projects/release-install-debug/contrib/llvm/include/llvm/IR/GlobalObject.h projects/release-install-debug/contrib/llvm/include/llvm/IR/GlobalValue.h projects/release-install-debug/contrib/llvm/include/llvm/IR/IRBuilder.h projects/release-install-debug/contrib/llvm/include/llvm/IR/IRPrintingPasses.h projects/release-install-debug/contrib/llvm/include/llvm/IR/InlineAsm.h projects/release-install-debug/contrib/llvm/include/llvm/IR/InstrTypes.h projects/release-install-debug/contrib/llvm/include/llvm/IR/Instruction.h projects/release-install-debug/contrib/llvm/include/llvm/IR/Instructions.h projects/release-install-debug/contrib/llvm/include/llvm/IR/IntrinsicInst.h projects/release-install-debug/contrib/llvm/include/llvm/IR/Intrinsics.h projects/release-install-debug/contrib/llvm/include/llvm/IR/Intrinsics.td projects/release-install-debug/contrib/llvm/include/llvm/IR/IntrinsicsARM.td projects/release-install-debug/contrib/llvm/include/llvm/IR/IntrinsicsNVVM.td projects/release-install-debug/contrib/llvm/include/llvm/IR/IntrinsicsPowerPC.td projects/release-install-debug/contrib/llvm/include/llvm/IR/IntrinsicsR600.td projects/release-install-debug/contrib/llvm/include/llvm/IR/IntrinsicsX86.td projects/release-install-debug/contrib/llvm/include/llvm/IR/LLVMContext.h projects/release-install-debug/contrib/llvm/include/llvm/IR/LegacyPassManager.h projects/release-install-debug/contrib/llvm/include/llvm/IR/LegacyPassManagers.h projects/release-install-debug/contrib/llvm/include/llvm/IR/MDBuilder.h projects/release-install-debug/contrib/llvm/include/llvm/IR/Mangler.h projects/release-install-debug/contrib/llvm/include/llvm/IR/Metadata.h projects/release-install-debug/contrib/llvm/include/llvm/IR/Module.h projects/release-install-debug/contrib/llvm/include/llvm/IR/Operator.h projects/release-install-debug/contrib/llvm/include/llvm/IR/PassManager.h projects/release-install-debug/contrib/llvm/include/llvm/IR/PatternMatch.h projects/release-install-debug/contrib/llvm/include/llvm/IR/PredIteratorCache.h projects/release-install-debug/contrib/llvm/include/llvm/IR/Type.h projects/release-install-debug/contrib/llvm/include/llvm/IR/TypeFinder.h projects/release-install-debug/contrib/llvm/include/llvm/IR/User.h projects/release-install-debug/contrib/llvm/include/llvm/IR/Value.h projects/release-install-debug/contrib/llvm/include/llvm/IR/ValueHandle.h projects/release-install-debug/contrib/llvm/include/llvm/IR/ValueMap.h projects/release-install-debug/contrib/llvm/include/llvm/IR/Verifier.h projects/release-install-debug/contrib/llvm/include/llvm/IRReader/IRReader.h projects/release-install-debug/contrib/llvm/include/llvm/InitializePasses.h projects/release-install-debug/contrib/llvm/include/llvm/LTO/LTOCodeGenerator.h projects/release-install-debug/contrib/llvm/include/llvm/LTO/LTOModule.h projects/release-install-debug/contrib/llvm/include/llvm/LinkAllPasses.h projects/release-install-debug/contrib/llvm/include/llvm/Linker/Linker.h projects/release-install-debug/contrib/llvm/include/llvm/MC/ConstantPools.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCAsmBackend.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCAsmInfo.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCAsmInfoDarwin.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCAsmInfoELF.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCAssembler.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCContext.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCDisassembler.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCDwarf.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCELFStreamer.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCExpr.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCInst.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCInstPrinter.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCInstrDesc.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCInstrItineraries.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCLinkerOptimizationHint.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCMachObjectWriter.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCObjectFileInfo.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCObjectStreamer.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCParser/AsmLexer.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserExtension.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCRegisterInfo.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCSchedule.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCStreamer.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCSubtargetInfo.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCSymbol.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCTargetAsmParser.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCTargetOptions.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCTargetOptionsCommandFlags.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCWin64EH.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCWinCOFFStreamer.h projects/release-install-debug/contrib/llvm/include/llvm/MC/MCWinEH.h projects/release-install-debug/contrib/llvm/include/llvm/MC/StringTableBuilder.h projects/release-install-debug/contrib/llvm/include/llvm/MC/SubtargetFeature.h projects/release-install-debug/contrib/llvm/include/llvm/Object/Archive.h projects/release-install-debug/contrib/llvm/include/llvm/Object/Binary.h projects/release-install-debug/contrib/llvm/include/llvm/Object/COFF.h projects/release-install-debug/contrib/llvm/include/llvm/Object/COFFYAML.h projects/release-install-debug/contrib/llvm/include/llvm/Object/ELF.h projects/release-install-debug/contrib/llvm/include/llvm/Object/ELFObjectFile.h projects/release-install-debug/contrib/llvm/include/llvm/Object/ELFTypes.h projects/release-install-debug/contrib/llvm/include/llvm/Object/ELFYAML.h projects/release-install-debug/contrib/llvm/include/llvm/Object/Error.h projects/release-install-debug/contrib/llvm/include/llvm/Object/IRObjectFile.h projects/release-install-debug/contrib/llvm/include/llvm/Object/MachO.h projects/release-install-debug/contrib/llvm/include/llvm/Object/MachOUniversal.h projects/release-install-debug/contrib/llvm/include/llvm/Object/ObjectFile.h projects/release-install-debug/contrib/llvm/include/llvm/Object/RelocVisitor.h projects/release-install-debug/contrib/llvm/include/llvm/Object/SymbolicFile.h projects/release-install-debug/contrib/llvm/include/llvm/Option/ArgList.h projects/release-install-debug/contrib/llvm/include/llvm/PassRegistry.h projects/release-install-debug/contrib/llvm/include/llvm/PassSupport.h projects/release-install-debug/contrib/llvm/include/llvm/ProfileData/InstrProfReader.h projects/release-install-debug/contrib/llvm/include/llvm/ProfileData/InstrProfWriter.h projects/release-install-debug/contrib/llvm/include/llvm/Support/ARMBuildAttributes.h projects/release-install-debug/contrib/llvm/include/llvm/Support/ARMEHABI.h projects/release-install-debug/contrib/llvm/include/llvm/Support/ARMWinEH.h projects/release-install-debug/contrib/llvm/include/llvm/Support/Allocator.h projects/release-install-debug/contrib/llvm/include/llvm/Support/CBindingWrapping.h projects/release-install-debug/contrib/llvm/include/llvm/Support/COFF.h projects/release-install-debug/contrib/llvm/include/llvm/Support/Casting.h projects/release-install-debug/contrib/llvm/include/llvm/Support/CommandLine.h projects/release-install-debug/contrib/llvm/include/llvm/Support/Compiler.h projects/release-install-debug/contrib/llvm/include/llvm/Support/Compression.h projects/release-install-debug/contrib/llvm/include/llvm/Support/CrashRecoveryContext.h projects/release-install-debug/contrib/llvm/include/llvm/Support/DataExtractor.h projects/release-install-debug/contrib/llvm/include/llvm/Support/DataTypes.h.in projects/release-install-debug/contrib/llvm/include/llvm/Support/Dwarf.h projects/release-install-debug/contrib/llvm/include/llvm/Support/DynamicLibrary.h projects/release-install-debug/contrib/llvm/include/llvm/Support/ELF.h projects/release-install-debug/contrib/llvm/include/llvm/Support/Endian.h projects/release-install-debug/contrib/llvm/include/llvm/Support/EndianStream.h projects/release-install-debug/contrib/llvm/include/llvm/Support/ErrorOr.h projects/release-install-debug/contrib/llvm/include/llvm/Support/FileOutputBuffer.h projects/release-install-debug/contrib/llvm/include/llvm/Support/FileSystem.h projects/release-install-debug/contrib/llvm/include/llvm/Support/Format.h projects/release-install-debug/contrib/llvm/include/llvm/Support/GCOV.h projects/release-install-debug/contrib/llvm/include/llvm/Support/GenericDomTree.h projects/release-install-debug/contrib/llvm/include/llvm/Support/GenericDomTreeConstruction.h projects/release-install-debug/contrib/llvm/include/llvm/Support/LEB128.h projects/release-install-debug/contrib/llvm/include/llvm/Support/LineIterator.h projects/release-install-debug/contrib/llvm/include/llvm/Support/MD5.h projects/release-install-debug/contrib/llvm/include/llvm/Support/MachO.h projects/release-install-debug/contrib/llvm/include/llvm/Support/ManagedStatic.h projects/release-install-debug/contrib/llvm/include/llvm/Support/MathExtras.h projects/release-install-debug/contrib/llvm/include/llvm/Support/MemoryBuffer.h projects/release-install-debug/contrib/llvm/include/llvm/Support/MemoryObject.h projects/release-install-debug/contrib/llvm/include/llvm/Support/Mutex.h projects/release-install-debug/contrib/llvm/include/llvm/Support/MutexGuard.h projects/release-install-debug/contrib/llvm/include/llvm/Support/OnDiskHashTable.h projects/release-install-debug/contrib/llvm/include/llvm/Support/Path.h projects/release-install-debug/contrib/llvm/include/llvm/Support/Process.h projects/release-install-debug/contrib/llvm/include/llvm/Support/Program.h projects/release-install-debug/contrib/llvm/include/llvm/Support/RWMutex.h projects/release-install-debug/contrib/llvm/include/llvm/Support/RandomNumberGenerator.h projects/release-install-debug/contrib/llvm/include/llvm/Support/Registry.h projects/release-install-debug/contrib/llvm/include/llvm/Support/ScaledNumber.h projects/release-install-debug/contrib/llvm/include/llvm/Support/SourceMgr.h projects/release-install-debug/contrib/llvm/include/llvm/Support/SpecialCaseList.h projects/release-install-debug/contrib/llvm/include/llvm/Support/StringPool.h projects/release-install-debug/contrib/llvm/include/llvm/Support/SwapByteOrder.h projects/release-install-debug/contrib/llvm/include/llvm/Support/TargetRegistry.h projects/release-install-debug/contrib/llvm/include/llvm/Support/ThreadLocal.h projects/release-install-debug/contrib/llvm/include/llvm/Support/Threading.h projects/release-install-debug/contrib/llvm/include/llvm/Support/TimeValue.h projects/release-install-debug/contrib/llvm/include/llvm/Support/ToolOutputFile.h projects/release-install-debug/contrib/llvm/include/llvm/Support/Win64EH.h projects/release-install-debug/contrib/llvm/include/llvm/Support/WindowsError.h projects/release-install-debug/contrib/llvm/include/llvm/Support/YAMLParser.h projects/release-install-debug/contrib/llvm/include/llvm/Support/YAMLTraits.h projects/release-install-debug/contrib/llvm/include/llvm/Support/raw_ostream.h projects/release-install-debug/contrib/llvm/include/llvm/TableGen/Record.h projects/release-install-debug/contrib/llvm/include/llvm/TableGen/SetTheory.h projects/release-install-debug/contrib/llvm/include/llvm/TableGen/StringToOffsetTable.h projects/release-install-debug/contrib/llvm/include/llvm/Target/Target.td projects/release-install-debug/contrib/llvm/include/llvm/Target/TargetFrameLowering.h projects/release-install-debug/contrib/llvm/include/llvm/Target/TargetInstrInfo.h projects/release-install-debug/contrib/llvm/include/llvm/Target/TargetIntrinsicInfo.h projects/release-install-debug/contrib/llvm/include/llvm/Target/TargetLibraryInfo.h projects/release-install-debug/contrib/llvm/include/llvm/Target/TargetLowering.h projects/release-install-debug/contrib/llvm/include/llvm/Target/TargetLoweringObjectFile.h projects/release-install-debug/contrib/llvm/include/llvm/Target/TargetMachine.h projects/release-install-debug/contrib/llvm/include/llvm/Target/TargetOpcodes.h projects/release-install-debug/contrib/llvm/include/llvm/Target/TargetOptions.h projects/release-install-debug/contrib/llvm/include/llvm/Target/TargetRegisterInfo.h projects/release-install-debug/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td projects/release-install-debug/contrib/llvm/include/llvm/Target/TargetSelectionDAGInfo.h projects/release-install-debug/contrib/llvm/include/llvm/Target/TargetSubtargetInfo.h projects/release-install-debug/contrib/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h projects/release-install-debug/contrib/llvm/include/llvm/Transforms/Instrumentation.h projects/release-install-debug/contrib/llvm/include/llvm/Transforms/Scalar.h projects/release-install-debug/contrib/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h projects/release-install-debug/contrib/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h projects/release-install-debug/contrib/llvm/include/llvm/Transforms/Utils/Cloning.h projects/release-install-debug/contrib/llvm/include/llvm/Transforms/Utils/CodeExtractor.h projects/release-install-debug/contrib/llvm/include/llvm/Transforms/Utils/CtorUtils.h projects/release-install-debug/contrib/llvm/include/llvm/Transforms/Utils/Local.h projects/release-install-debug/contrib/llvm/include/llvm/Transforms/Utils/LoopUtils.h projects/release-install-debug/contrib/llvm/include/llvm/Transforms/Utils/ModuleUtils.h projects/release-install-debug/contrib/llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h projects/release-install-debug/contrib/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h projects/release-install-debug/contrib/llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h projects/release-install-debug/contrib/llvm/include/llvm/Transforms/Utils/UnrollLoop.h projects/release-install-debug/contrib/llvm/include/llvm/Transforms/Utils/ValueMapper.h projects/release-install-debug/contrib/llvm/include/llvm/Transforms/Utils/VectorUtils.h projects/release-install-debug/contrib/llvm/include/llvm/module.modulemap projects/release-install-debug/contrib/llvm/lib/Analysis/AliasAnalysis.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/AliasSetTracker.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/Analysis.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/BlockFrequencyInfoImpl.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/CFG.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/CFGPrinter.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/CGSCCPassManager.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/CaptureTracking.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/CodeMetrics.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/ConstantFolding.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/DependenceAnalysis.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/IPA/CallGraph.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/IPA/IPA.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/IPA/InlineCost.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/IVUsers.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/InstructionSimplify.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/JumpInstrTableInfo.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/LazyCallGraph.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/LazyValueInfo.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/LibCallSemantics.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/Lint.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/Loads.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/LoopInfo.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/LoopPass.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/MemDepPrinter.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/MemoryBuiltins.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/NoAliasAnalysis.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/PHITransAddr.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/PtrUseVisitor.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/RegionInfo.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/RegionPass.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/ScalarEvolution.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/ScalarEvolutionAliasAnalysis.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/ScalarEvolutionExpander.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/ScalarEvolutionNormalization.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/TargetTransformInfo.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp projects/release-install-debug/contrib/llvm/lib/Analysis/ValueTracking.cpp projects/release-install-debug/contrib/llvm/lib/AsmParser/LLLexer.cpp projects/release-install-debug/contrib/llvm/lib/AsmParser/LLLexer.h projects/release-install-debug/contrib/llvm/lib/AsmParser/LLParser.cpp projects/release-install-debug/contrib/llvm/lib/AsmParser/LLParser.h projects/release-install-debug/contrib/llvm/lib/AsmParser/LLToken.h projects/release-install-debug/contrib/llvm/lib/AsmParser/Parser.cpp projects/release-install-debug/contrib/llvm/lib/Bitcode/Reader/BitReader.cpp projects/release-install-debug/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp projects/release-install-debug/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.h projects/release-install-debug/contrib/llvm/lib/Bitcode/Reader/BitstreamReader.cpp projects/release-install-debug/contrib/llvm/lib/Bitcode/Writer/BitWriter.cpp projects/release-install-debug/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp projects/release-install-debug/contrib/llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp projects/release-install-debug/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp projects/release-install-debug/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.h projects/release-install-debug/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.h projects/release-install-debug/contrib/llvm/lib/CodeGen/AllocationOrder.h projects/release-install-debug/contrib/llvm/lib/CodeGen/Analysis.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/AntiDepBreaker.h projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/AddressPool.h projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterHandler.h projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/ByteStreamer.h projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/DIEHash.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/DIEHash.h projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.h projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocEntry.h projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocList.h projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.h projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.h projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfFile.h projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.h projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/EHStreamer.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/EHStreamer.h projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/ErlangGCPrinter.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.h projects/release-install-debug/contrib/llvm/lib/CodeGen/BasicTargetTransformInfo.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/BranchFolding.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/BranchFolding.h projects/release-install-debug/contrib/llvm/lib/CodeGen/CalcSpillWeights.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/CallingConvLower.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/CodeGen.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/CodeGenPrepare.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.h projects/release-install-debug/contrib/llvm/lib/CodeGen/DFAPacketizer.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/DwarfEHPrepare.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/EarlyIfConversion.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/ErlangGC.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/ExpandISelPseudos.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/GCMetadata.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/GCMetadataPrinter.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/GCStrategy.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/GlobalMerge.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/IfConversion.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/InlineSpiller.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/InterferenceCache.h projects/release-install-debug/contrib/llvm/lib/CodeGen/IntrinsicLowering.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/JumpInstrTables.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/LLVMTargetMachine.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/LexicalScopes.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/LiveDebugVariables.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/LiveDebugVariables.h projects/release-install-debug/contrib/llvm/lib/CodeGen/LiveInterval.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/LiveIntervalUnion.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/LiveRangeCalc.h projects/release-install-debug/contrib/llvm/lib/CodeGen/LiveRangeEdit.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/LiveRegMatrix.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/LiveStackAnalysis.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/LiveVariables.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/MachineCSE.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/MachineCopyPropagation.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/MachineDominanceFrontier.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/MachineDominators.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/MachineFunction.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/MachineFunctionAnalysis.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/MachineFunctionPass.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/MachineFunctionPrinterPass.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/MachineInstr.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/MachineInstrBundle.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/MachineLICM.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/MachineModuleInfo.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/MachineRegionInfo.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/MachineSSAUpdater.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/MachineScheduler.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/MachineSink.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/MachineTraceMetrics.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/MachineVerifier.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/OptimizePHIs.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/PHIElimination.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/PHIEliminationUtils.h projects/release-install-debug/contrib/llvm/lib/CodeGen/Passes.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/PeepholeOptimizer.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/PostRASchedulerList.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/ProcessImplicitDefs.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/PrologEpilogInserter.h projects/release-install-debug/contrib/llvm/lib/CodeGen/PseudoSourceValue.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/RegAllocBase.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/RegAllocBase.h projects/release-install-debug/contrib/llvm/lib/CodeGen/RegAllocBasic.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/RegAllocFast.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/RegAllocPBQP.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/RegisterClassInfo.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/RegisterCoalescer.h projects/release-install-debug/contrib/llvm/lib/CodeGen/RegisterPressure.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/RegisterScavenging.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/ScheduleDAG.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/ScheduleDAGPrinter.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/ScoreboardHazardRecognizer.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/ShadowStackGC.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SjLjEHPrepare.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SpillPlacement.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SpillPlacement.h projects/release-install-debug/contrib/llvm/lib/CodeGen/Spiller.h projects/release-install-debug/contrib/llvm/lib/CodeGen/SplitKit.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/SplitKit.h projects/release-install-debug/contrib/llvm/lib/CodeGen/StackColoring.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/StackMaps.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/StackProtector.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/StackSlotColoring.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/TailDuplication.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/TargetInstrInfo.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/TargetLoweringBase.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/TargetOptionsImpl.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/TargetRegisterInfo.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/TargetSchedule.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/UnreachableBlockElim.cpp projects/release-install-debug/contrib/llvm/lib/CodeGen/VirtRegMap.cpp projects/release-install-debug/contrib/llvm/lib/DebugInfo/DIContext.cpp projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFCompileUnit.cpp projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFContext.cpp projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFDebugArangeSet.cpp projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFDebugAranges.cpp projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFDebugFrame.cpp projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFDebugLine.cpp projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFDebugLoc.cpp projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFDebugRangeList.cpp projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFFormValue.cpp projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFTypeUnit.cpp projects/release-install-debug/contrib/llvm/lib/DebugInfo/DWARFUnit.cpp projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/EventListenerCommon.h projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/ExecutionEngine.cpp projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.h projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOI386.h projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOX86_64.h projects/release-install-debug/contrib/llvm/lib/ExecutionEngine/TargetSelect.cpp projects/release-install-debug/contrib/llvm/lib/IR/AsmWriter.cpp projects/release-install-debug/contrib/llvm/lib/IR/AsmWriter.h projects/release-install-debug/contrib/llvm/lib/IR/AttributeImpl.h projects/release-install-debug/contrib/llvm/lib/IR/AutoUpgrade.cpp projects/release-install-debug/contrib/llvm/lib/IR/BasicBlock.cpp projects/release-install-debug/contrib/llvm/lib/IR/ConstantFold.cpp projects/release-install-debug/contrib/llvm/lib/IR/ConstantFold.h projects/release-install-debug/contrib/llvm/lib/IR/Constants.cpp projects/release-install-debug/contrib/llvm/lib/IR/ConstantsContext.h projects/release-install-debug/contrib/llvm/lib/IR/Core.cpp projects/release-install-debug/contrib/llvm/lib/IR/DIBuilder.cpp projects/release-install-debug/contrib/llvm/lib/IR/DataLayout.cpp projects/release-install-debug/contrib/llvm/lib/IR/DebugInfo.cpp projects/release-install-debug/contrib/llvm/lib/IR/DebugLoc.cpp projects/release-install-debug/contrib/llvm/lib/IR/DiagnosticInfo.cpp projects/release-install-debug/contrib/llvm/lib/IR/DiagnosticPrinter.cpp projects/release-install-debug/contrib/llvm/lib/IR/Dominators.cpp projects/release-install-debug/contrib/llvm/lib/IR/Function.cpp projects/release-install-debug/contrib/llvm/lib/IR/GCOV.cpp projects/release-install-debug/contrib/llvm/lib/IR/Globals.cpp projects/release-install-debug/contrib/llvm/lib/IR/IRBuilder.cpp projects/release-install-debug/contrib/llvm/lib/IR/IRPrintingPasses.cpp projects/release-install-debug/contrib/llvm/lib/IR/InlineAsm.cpp projects/release-install-debug/contrib/llvm/lib/IR/Instruction.cpp projects/release-install-debug/contrib/llvm/lib/IR/Instructions.cpp projects/release-install-debug/contrib/llvm/lib/IR/IntrinsicInst.cpp projects/release-install-debug/contrib/llvm/lib/IR/LLVMContext.cpp projects/release-install-debug/contrib/llvm/lib/IR/LLVMContextImpl.cpp projects/release-install-debug/contrib/llvm/lib/IR/LLVMContextImpl.h projects/release-install-debug/contrib/llvm/lib/IR/LeaksContext.h projects/release-install-debug/contrib/llvm/lib/IR/LegacyPassManager.cpp projects/release-install-debug/contrib/llvm/lib/IR/MDBuilder.cpp projects/release-install-debug/contrib/llvm/lib/IR/Mangler.cpp projects/release-install-debug/contrib/llvm/lib/IR/Metadata.cpp projects/release-install-debug/contrib/llvm/lib/IR/Module.cpp projects/release-install-debug/contrib/llvm/lib/IR/PassManager.cpp projects/release-install-debug/contrib/llvm/lib/IR/PassRegistry.cpp projects/release-install-debug/contrib/llvm/lib/IR/SymbolTableListTraitsImpl.h projects/release-install-debug/contrib/llvm/lib/IR/Type.cpp projects/release-install-debug/contrib/llvm/lib/IR/TypeFinder.cpp projects/release-install-debug/contrib/llvm/lib/IR/Use.cpp projects/release-install-debug/contrib/llvm/lib/IR/User.cpp projects/release-install-debug/contrib/llvm/lib/IR/Value.cpp projects/release-install-debug/contrib/llvm/lib/IR/ValueSymbolTable.cpp projects/release-install-debug/contrib/llvm/lib/IR/Verifier.cpp projects/release-install-debug/contrib/llvm/lib/IRReader/IRReader.cpp projects/release-install-debug/contrib/llvm/lib/LTO/LTOCodeGenerator.cpp projects/release-install-debug/contrib/llvm/lib/LTO/LTOModule.cpp projects/release-install-debug/contrib/llvm/lib/Linker/LinkModules.cpp projects/release-install-debug/contrib/llvm/lib/MC/ConstantPools.cpp projects/release-install-debug/contrib/llvm/lib/MC/ELFObjectWriter.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCAsmInfo.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCAsmInfoDarwin.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCAsmInfoELF.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCAsmStreamer.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCAssembler.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCContext.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCDisassembler/Disassembler.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCDisassembler/Disassembler.h projects/release-install-debug/contrib/llvm/lib/MC/MCDwarf.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCELFStreamer.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCExpr.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCLinkerOptimizationHint.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCMachOStreamer.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCNullStreamer.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCObjectFileInfo.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCObjectStreamer.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCParser/AsmLexer.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCParser/AsmParser.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCParser/COFFAsmParser.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCParser/DarwinAsmParser.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCParser/MCAsmLexer.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCParser/MCAsmParser.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCSectionCOFF.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCSectionELF.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCStreamer.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCSubtargetInfo.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCTargetOptions.cpp projects/release-install-debug/contrib/llvm/lib/MC/MCWin64EH.cpp projects/release-install-debug/contrib/llvm/lib/MC/MachObjectWriter.cpp projects/release-install-debug/contrib/llvm/lib/MC/StringTableBuilder.cpp projects/release-install-debug/contrib/llvm/lib/MC/SubtargetFeature.cpp projects/release-install-debug/contrib/llvm/lib/MC/WinCOFFObjectWriter.cpp projects/release-install-debug/contrib/llvm/lib/MC/WinCOFFStreamer.cpp projects/release-install-debug/contrib/llvm/lib/Object/Archive.cpp projects/release-install-debug/contrib/llvm/lib/Object/Binary.cpp projects/release-install-debug/contrib/llvm/lib/Object/COFFObjectFile.cpp projects/release-install-debug/contrib/llvm/lib/Object/COFFYAML.cpp projects/release-install-debug/contrib/llvm/lib/Object/ELF.cpp projects/release-install-debug/contrib/llvm/lib/Object/ELFObjectFile.cpp projects/release-install-debug/contrib/llvm/lib/Object/ELFYAML.cpp projects/release-install-debug/contrib/llvm/lib/Object/Error.cpp projects/release-install-debug/contrib/llvm/lib/Object/IRObjectFile.cpp projects/release-install-debug/contrib/llvm/lib/Object/MachOObjectFile.cpp projects/release-install-debug/contrib/llvm/lib/Object/MachOUniversal.cpp projects/release-install-debug/contrib/llvm/lib/Object/Object.cpp projects/release-install-debug/contrib/llvm/lib/Object/ObjectFile.cpp projects/release-install-debug/contrib/llvm/lib/Object/RecordStreamer.h projects/release-install-debug/contrib/llvm/lib/Object/SymbolicFile.cpp projects/release-install-debug/contrib/llvm/lib/Option/ArgList.cpp projects/release-install-debug/contrib/llvm/lib/Option/OptTable.cpp projects/release-install-debug/contrib/llvm/lib/Option/Option.cpp projects/release-install-debug/contrib/llvm/lib/ProfileData/InstrProf.cpp projects/release-install-debug/contrib/llvm/lib/ProfileData/InstrProfIndexed.h projects/release-install-debug/contrib/llvm/lib/ProfileData/InstrProfReader.cpp projects/release-install-debug/contrib/llvm/lib/ProfileData/InstrProfWriter.cpp projects/release-install-debug/contrib/llvm/lib/Support/APFloat.cpp projects/release-install-debug/contrib/llvm/lib/Support/APInt.cpp projects/release-install-debug/contrib/llvm/lib/Support/CommandLine.cpp projects/release-install-debug/contrib/llvm/lib/Support/Compression.cpp projects/release-install-debug/contrib/llvm/lib/Support/DataStream.cpp projects/release-install-debug/contrib/llvm/lib/Support/Debug.cpp projects/release-install-debug/contrib/llvm/lib/Support/Dwarf.cpp projects/release-install-debug/contrib/llvm/lib/Support/Errno.cpp projects/release-install-debug/contrib/llvm/lib/Support/ErrorHandling.cpp projects/release-install-debug/contrib/llvm/lib/Support/FileOutputBuffer.cpp projects/release-install-debug/contrib/llvm/lib/Support/FileUtilities.cpp projects/release-install-debug/contrib/llvm/lib/Support/GraphWriter.cpp projects/release-install-debug/contrib/llvm/lib/Support/Host.cpp projects/release-install-debug/contrib/llvm/lib/Support/LineIterator.cpp projects/release-install-debug/contrib/llvm/lib/Support/LockFileManager.cpp projects/release-install-debug/contrib/llvm/lib/Support/MD5.cpp projects/release-install-debug/contrib/llvm/lib/Support/MemoryBuffer.cpp projects/release-install-debug/contrib/llvm/lib/Support/MemoryObject.cpp projects/release-install-debug/contrib/llvm/lib/Support/Path.cpp projects/release-install-debug/contrib/llvm/lib/Support/Process.cpp projects/release-install-debug/contrib/llvm/lib/Support/RandomNumberGenerator.cpp projects/release-install-debug/contrib/llvm/lib/Support/ScaledNumber.cpp projects/release-install-debug/contrib/llvm/lib/Support/SmallPtrSet.cpp projects/release-install-debug/contrib/llvm/lib/Support/SourceMgr.cpp projects/release-install-debug/contrib/llvm/lib/Support/SpecialCaseList.cpp projects/release-install-debug/contrib/llvm/lib/Support/StringRef.cpp projects/release-install-debug/contrib/llvm/lib/Support/ThreadLocal.cpp projects/release-install-debug/contrib/llvm/lib/Support/TimeValue.cpp projects/release-install-debug/contrib/llvm/lib/Support/Timer.cpp projects/release-install-debug/contrib/llvm/lib/Support/ToolOutputFile.cpp projects/release-install-debug/contrib/llvm/lib/Support/Triple.cpp projects/release-install-debug/contrib/llvm/lib/Support/Unix/Host.inc projects/release-install-debug/contrib/llvm/lib/Support/Unix/Memory.inc projects/release-install-debug/contrib/llvm/lib/Support/Unix/Path.inc projects/release-install-debug/contrib/llvm/lib/Support/Unix/Process.inc projects/release-install-debug/contrib/llvm/lib/Support/Unix/Program.inc projects/release-install-debug/contrib/llvm/lib/Support/Unix/RWMutex.inc projects/release-install-debug/contrib/llvm/lib/Support/Unix/Signals.inc projects/release-install-debug/contrib/llvm/lib/Support/Unix/ThreadLocal.inc projects/release-install-debug/contrib/llvm/lib/Support/Unix/TimeValue.inc projects/release-install-debug/contrib/llvm/lib/Support/Unix/Unix.h projects/release-install-debug/contrib/llvm/lib/Support/Windows/DynamicLibrary.inc projects/release-install-debug/contrib/llvm/lib/Support/Windows/Host.inc projects/release-install-debug/contrib/llvm/lib/Support/Windows/Path.inc projects/release-install-debug/contrib/llvm/lib/Support/Windows/Process.inc projects/release-install-debug/contrib/llvm/lib/Support/Windows/Program.inc projects/release-install-debug/contrib/llvm/lib/Support/Windows/RWMutex.inc projects/release-install-debug/contrib/llvm/lib/Support/Windows/ThreadLocal.inc projects/release-install-debug/contrib/llvm/lib/Support/Windows/WindowsSupport.h projects/release-install-debug/contrib/llvm/lib/Support/Windows/explicit_symbols.inc projects/release-install-debug/contrib/llvm/lib/Support/YAMLParser.cpp projects/release-install-debug/contrib/llvm/lib/Support/YAMLTraits.cpp projects/release-install-debug/contrib/llvm/lib/Support/raw_ostream.cpp projects/release-install-debug/contrib/llvm/lib/Support/regcomp.c projects/release-install-debug/contrib/llvm/lib/TableGen/Main.cpp projects/release-install-debug/contrib/llvm/lib/TableGen/Record.cpp projects/release-install-debug/contrib/llvm/lib/TableGen/TGLexer.cpp projects/release-install-debug/contrib/llvm/lib/TableGen/TGLexer.h projects/release-install-debug/contrib/llvm/lib/TableGen/TGParser.cpp projects/release-install-debug/contrib/llvm/lib/TableGen/TGParser.h projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64.h projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64AddressTypePromotion.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64AdvSIMDScalarPass.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64BranchRelaxation.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64CallingConvention.td projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64CollectLOH.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64ConditionalCompares.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64FastISel.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64FrameLowering.h projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.h projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64InstrAtomics.td projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64InstrFormats.td projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.h projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.td projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64MCInstLower.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64MCInstLower.h projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64MachineFunctionInfo.h projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64PerfectShuffle.h projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64PromoteConstant.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.h projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.td projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64SchedA57.td projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64SchedA57WriteRes.td projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.h projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64StorePairSuppress.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64Subtarget.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64Subtarget.h projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64TargetMachine.h projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.h projects/release-install-debug/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.h projects/release-install-debug/contrib/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h projects/release-install-debug/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AddressingModes.h projects/release-install-debug/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.h projects/release-install-debug/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64FixupKinds.h projects/release-install-debug/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.h projects/release-install-debug/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.h projects/release-install-debug/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.h projects/release-install-debug/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/A15SDOptimizer.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARM.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARM.td projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMCallingConv.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMCallingConv.td projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMFPUName.def projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMFPUName.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMFeatures.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMFrameLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMFrameLowering.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMHazardRecognizer.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMHazardRecognizer.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMISelLowering.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMInstrFormats.td projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMInstrInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMInstrInfo.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMInstrNEON.td projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMInstrThumb.td projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMInstrThumb2.td projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMInstrVFP.td projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMMCInstLower.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMOptimizeBarriersPass.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMPerfectShuffle.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMSubtarget.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMSubtarget.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMTargetMachine.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMTargetMachine.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMArchName.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMFixupKinds.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/MLxExpansionPass.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/ARM/Thumb2RegisterInfo.h projects/release-install-debug/contrib/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp projects/release-install-debug/contrib/llvm/lib/Target/CppBackend/CPPTargetMachine.h projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/Hexagon.h projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/Hexagon.td projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.h projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonCFGOptimizer.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonCallingConvLower.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonCallingConvLower.h projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonCopyToCombine.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonExpandPredSpillCode.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonFixupHwLoops.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.h projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.h projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormats.td projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV4.td projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.h projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.td projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV3.td projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV4.td projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV5.td projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsics.td projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsDerived.td projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV4.td projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.h projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.h projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonOperands.td projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonPeephole.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.h projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.td projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonRemoveSZExtArgs.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.h projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonSplitTFRCondSets.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.h projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.h projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.h projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/HexagonVarargsCallingConvention.h projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.h projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInst.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInst.h projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp projects/release-install-debug/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.h projects/release-install-debug/contrib/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.h projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.h projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.h projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MSP430.h projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MSP430BranchSelector.cpp projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MSP430CallingConv.td projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.h projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.h projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.h projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.td projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MSP430MCInstLower.cpp projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MSP430MCInstLower.h projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.h projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.h projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.td projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MSP430SelectionDAGInfo.h projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MSP430Subtarget.cpp projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MSP430Subtarget.h projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp projects/release-install-debug/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCNaCl.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MicroMipsInstrFPU.td projects/release-install-debug/contrib/llvm/lib/Target/Mips/MicroMipsInstrFormats.td projects/release-install-debug/contrib/llvm/lib/Target/Mips/MicroMipsInstrInfo.td projects/release-install-debug/contrib/llvm/lib/Target/Mips/Mips.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/Mips16HardFloat.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/Mips16HardFloat.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/Mips16HardFloatInfo.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/Mips16ISelLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/Mips16ISelLowering.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/Mips16InstrFormats.td projects/release-install-debug/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.td projects/release-install-debug/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/Mips32r6InstrFormats.td projects/release-install-debug/contrib/llvm/lib/Target/Mips/Mips32r6InstrInfo.td projects/release-install-debug/contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsAnalyzeImmediate.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsAnalyzeImmediate.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsCCState.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsCallingConv.td projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsCondMov.td projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsFastISel.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsFrameLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsFrameLowering.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsISelLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsISelLowering.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsInstrFPU.td projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsInstrFormats.td projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsInstrInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsInstrInfo.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsLongBranch.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsMCInstLower.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsMSAInstrInfo.td projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsMachineFunction.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsOptimizePICCall.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsOptionRecord.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsOs16.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.td projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsSelectionDAGInfo.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsSubtarget.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsSubtarget.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsTargetMachine.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsTargetMachine.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.cpp projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.h projects/release-install-debug/contrib/llvm/lib/Target/Mips/MipsTargetStreamer.h projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/InstPrinter/NVPTXInstPrinter.h projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXBaseInfo.h projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.h projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.h projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/ManagedStringPool.h projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTX.h projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.h projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXFrameLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXFrameLowering.h projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXGenericToNVVM.cpp projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.h projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.h projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXImageOptimizer.cpp projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.h projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.td projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.h projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXMCExpr.h projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXMachineFunctionInfo.h projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXPrologEpilogPass.cpp projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.h projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXReplaceImageHandles.cpp projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXSection.h projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.cpp projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.h projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.h projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXTargetObjectFile.h projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXUtilities.cpp projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXUtilities.h projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXVector.td projects/release-install-debug/contrib/llvm/lib/Target/NVPTX/NVPTXutil.h projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCFixupKinds.h projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.h projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.h projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.h projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPC.h projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPC.td projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.td projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCFastISel.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.h projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCHazardRecognizers.h projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCInstr64Bit.td projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCInstrAltivec.td projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCInstrBuilder.h projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCInstrFormats.td projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.h projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCInstrVSX.td projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCPerfectShuffle.h projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.td projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCSchedule.td projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCScheduleP7.td projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCSelectionDAGInfo.h projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.h projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.h projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCTargetObjectFile.h projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCTargetStreamer.h projects/release-install-debug/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPU.h projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPU.td projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPUAsmPrinter.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPUAsmPrinter.h projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPUCallingConv.td projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPUFrameLowering.h projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPUISelDAGToDAG.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPUISelLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPUISelLowering.h projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPUInstrInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPUInstrInfo.h projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPUInstrInfo.td projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPUInstructions.td projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPUIntrinsicInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPUIntrinsicInfo.h projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPUMCInstLower.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPUMCInstLower.h projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPUMachineFunction.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPUMachineFunction.h projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPUPromoteAlloca.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPURegisterInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPURegisterInfo.h projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPUSubtarget.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPUSubtarget.h projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPUTargetMachine.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPUTargetMachine.h projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDGPUTargetTransformInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/AMDILCFGStructurizer.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/CaymanInstructions.td projects/release-install-debug/contrib/llvm/lib/Target/R600/EvergreenInstructions.td projects/release-install-debug/contrib/llvm/lib/Target/R600/InstPrinter/AMDGPUInstPrinter.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/InstPrinter/AMDGPUInstPrinter.h projects/release-install-debug/contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUAsmBackend.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUFixupKinds.h projects/release-install-debug/contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCAsmInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCAsmInfo.h projects/release-install-debug/contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCCodeEmitter.h projects/release-install-debug/contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCTargetDesc.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCTargetDesc.h projects/release-install-debug/contrib/llvm/lib/Target/R600/MCTargetDesc/SIMCCodeEmitter.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/Processors.td projects/release-install-debug/contrib/llvm/lib/Target/R600/R600ClauseMergePass.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/R600ControlFlowFinalizer.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/R600Defines.h projects/release-install-debug/contrib/llvm/lib/Target/R600/R600EmitClauseMarkers.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/R600ExpandSpecialInstrs.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/R600ISelLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/R600ISelLowering.h projects/release-install-debug/contrib/llvm/lib/Target/R600/R600InstrFormats.td projects/release-install-debug/contrib/llvm/lib/Target/R600/R600InstrInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/R600InstrInfo.h projects/release-install-debug/contrib/llvm/lib/Target/R600/R600Instructions.td projects/release-install-debug/contrib/llvm/lib/Target/R600/R600MachineFunctionInfo.h projects/release-install-debug/contrib/llvm/lib/Target/R600/R600MachineScheduler.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/R600MachineScheduler.h projects/release-install-debug/contrib/llvm/lib/Target/R600/R600OptimizeVectorRegisters.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/R600Packetizer.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/R600RegisterInfo.h projects/release-install-debug/contrib/llvm/lib/Target/R600/SIAnnotateControlFlow.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/SIDefines.h projects/release-install-debug/contrib/llvm/lib/Target/R600/SIFixSGPRCopies.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/SIFixSGPRLiveRanges.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/SIISelLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/SIISelLowering.h projects/release-install-debug/contrib/llvm/lib/Target/R600/SIInsertWaits.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/SIInstrFormats.td projects/release-install-debug/contrib/llvm/lib/Target/R600/SIInstrInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/SIInstrInfo.h projects/release-install-debug/contrib/llvm/lib/Target/R600/SIInstrInfo.td projects/release-install-debug/contrib/llvm/lib/Target/R600/SIInstructions.td projects/release-install-debug/contrib/llvm/lib/Target/R600/SILowerControlFlow.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/SILowerI1Copies.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/SIMachineFunctionInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/SIMachineFunctionInfo.h projects/release-install-debug/contrib/llvm/lib/Target/R600/SIRegisterInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/SIRegisterInfo.h projects/release-install-debug/contrib/llvm/lib/Target/R600/SIRegisterInfo.td projects/release-install-debug/contrib/llvm/lib/Target/R600/SISchedule.td projects/release-install-debug/contrib/llvm/lib/Target/R600/SIShrinkInstructions.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/SITypeRewriter.cpp projects/release-install-debug/contrib/llvm/lib/Target/R600/TargetInfo/AMDGPUTargetInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/Sparc/AsmParser/SparcAsmParser.cpp (contents, props changed) projects/release-install-debug/contrib/llvm/lib/Target/Sparc/DelaySlotFiller.cpp projects/release-install-debug/contrib/llvm/lib/Target/Sparc/Disassembler/SparcDisassembler.cpp (contents, props changed) projects/release-install-debug/contrib/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.h (contents, props changed) projects/release-install-debug/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcFixupKinds.h projects/release-install-debug/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.h projects/release-install-debug/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.cpp projects/release-install-debug/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.h projects/release-install-debug/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp projects/release-install-debug/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.h projects/release-install-debug/contrib/llvm/lib/Target/Sparc/Sparc.h projects/release-install-debug/contrib/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp projects/release-install-debug/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.h projects/release-install-debug/contrib/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp projects/release-install-debug/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/Sparc/SparcISelLowering.h projects/release-install-debug/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.h projects/release-install-debug/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.td projects/release-install-debug/contrib/llvm/lib/Target/Sparc/SparcInstrVIS.td projects/release-install-debug/contrib/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.h projects/release-install-debug/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.h projects/release-install-debug/contrib/llvm/lib/Target/Sparc/SparcSelectionDAGInfo.h projects/release-install-debug/contrib/llvm/lib/Target/Sparc/SparcSubtarget.h projects/release-install-debug/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.cpp projects/release-install-debug/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.h projects/release-install-debug/contrib/llvm/lib/Target/Sparc/SparcTargetObjectFile.h projects/release-install-debug/contrib/llvm/lib/Target/Sparc/SparcTargetStreamer.h projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.h projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.h projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCFixups.h projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.h projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZ.h projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.h projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZCallingConv.h projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.h projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZFrameLowering.h projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.h projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZInstrBuilder.h projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZInstrFP.td projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.h projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.td projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZLongBranch.cpp projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZMCInstLower.h projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.h projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.h projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZShortenInst.cpp projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.h projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp projects/release-install-debug/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.h projects/release-install-debug/contrib/llvm/lib/Target/Target.cpp projects/release-install-debug/contrib/llvm/lib/Target/TargetLibraryInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/TargetLoweringObjectFile.cpp projects/release-install-debug/contrib/llvm/lib/Target/TargetMachine.cpp projects/release-install-debug/contrib/llvm/lib/Target/TargetMachineC.cpp projects/release-install-debug/contrib/llvm/lib/Target/TargetSubtargetInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/AsmParser/X86AsmInstrumentation.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/AsmParser/X86AsmInstrumentation.h projects/release-install-debug/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParserCommon.h projects/release-install-debug/contrib/llvm/lib/Target/X86/AsmParser/X86Operand.h projects/release-install-debug/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.h projects/release-install-debug/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h projects/release-install-debug/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoderCommon.h projects/release-install-debug/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.h projects/release-install-debug/contrib/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/InstPrinter/X86InstComments.h projects/release-install-debug/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h projects/release-install-debug/contrib/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h projects/release-install-debug/contrib/llvm/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/MCTargetDesc/X86FixupKinds.h projects/release-install-debug/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.h projects/release-install-debug/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h projects/release-install-debug/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h projects/release-install-debug/contrib/llvm/lib/Target/X86/X86.h projects/release-install-debug/contrib/llvm/lib/Target/X86/X86.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86AsmPrinter.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/X86AsmPrinter.h projects/release-install-debug/contrib/llvm/lib/Target/X86/X86CallingConv.h projects/release-install-debug/contrib/llvm/lib/Target/X86/X86CallingConv.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86FastISel.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/X86FixupLEAs.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/X86FloatingPoint.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/X86FrameLowering.h projects/release-install-debug/contrib/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/X86ISelLowering.h projects/release-install-debug/contrib/llvm/lib/Target/X86/X86InstrAVX512.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86InstrArithmetic.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86InstrBuilder.h projects/release-install-debug/contrib/llvm/lib/Target/X86/X86InstrCompiler.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86InstrControl.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86InstrExtension.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86InstrFMA.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86InstrFPStack.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86InstrFormats.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86InstrInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/X86InstrInfo.h projects/release-install-debug/contrib/llvm/lib/Target/X86/X86InstrInfo.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86InstrMMX.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86InstrSSE.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86InstrShiftRotate.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86InstrSystem.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86InstrTSX.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86MCInstLower.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/X86MachineFunctionInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/X86MachineFunctionInfo.h projects/release-install-debug/contrib/llvm/lib/Target/X86/X86PadShortFunction.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/X86RegisterInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/X86RegisterInfo.h projects/release-install-debug/contrib/llvm/lib/Target/X86/X86RegisterInfo.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86SchedHaswell.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86SchedSandyBridge.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86Schedule.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86ScheduleAtom.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86ScheduleSLM.td projects/release-install-debug/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.h projects/release-install-debug/contrib/llvm/lib/Target/X86/X86Subtarget.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/X86Subtarget.h projects/release-install-debug/contrib/llvm/lib/Target/X86/X86TargetMachine.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/X86TargetMachine.h projects/release-install-debug/contrib/llvm/lib/Target/X86/X86TargetObjectFile.h projects/release-install-debug/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/X86/X86VZeroUpper.cpp projects/release-install-debug/contrib/llvm/lib/Target/XCore/Disassembler/XCoreDisassembler.cpp projects/release-install-debug/contrib/llvm/lib/Target/XCore/InstPrinter/XCoreInstPrinter.h projects/release-install-debug/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.h projects/release-install-debug/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp projects/release-install-debug/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.h projects/release-install-debug/contrib/llvm/lib/Target/XCore/XCore.h projects/release-install-debug/contrib/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp projects/release-install-debug/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.h projects/release-install-debug/contrib/llvm/lib/Target/XCore/XCoreFrameToArgsOffsetElim.cpp projects/release-install-debug/contrib/llvm/lib/Target/XCore/XCoreISelLowering.cpp projects/release-install-debug/contrib/llvm/lib/Target/XCore/XCoreISelLowering.h projects/release-install-debug/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.h projects/release-install-debug/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.td projects/release-install-debug/contrib/llvm/lib/Target/XCore/XCoreMCInstLower.h projects/release-install-debug/contrib/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.h projects/release-install-debug/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.h projects/release-install-debug/contrib/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.cpp projects/release-install-debug/contrib/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.h projects/release-install-debug/contrib/llvm/lib/Target/XCore/XCoreSubtarget.h projects/release-install-debug/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp projects/release-install-debug/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.h projects/release-install-debug/contrib/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp projects/release-install-debug/contrib/llvm/lib/Target/XCore/XCoreTargetObjectFile.h projects/release-install-debug/contrib/llvm/lib/Target/XCore/XCoreTargetStreamer.h projects/release-install-debug/contrib/llvm/lib/Target/XCore/XCoreTargetTransformInfo.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/IPO/ConstantMerge.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/IPO/ExtractGV.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/IPO/FunctionAttrs.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/IPO/GlobalDCE.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/IPO/GlobalOpt.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/IPO/InlineAlways.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/IPO/InlineSimple.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/IPO/Inliner.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/IPO/Internalize.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/IPO/MergeFunctions.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/IPO/PruneEH.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/IPO/StripSymbols.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/InstCombine/InstCombine.h projects/release-install-debug/contrib/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/InstCombine/InstCombineWorklist.h projects/release-install-debug/contrib/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/ObjCARC/ARCRuntimeEntryPoints.h projects/release-install-debug/contrib/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.h projects/release-install-debug/contrib/llvm/lib/Transforms/ObjCARC/ObjCARC.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/ObjCARC/ObjCARC.h projects/release-install-debug/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCAliasAnalysis.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCAliasAnalysis.h projects/release-install-debug/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCOpts.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.h projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/ADCE.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/EarlyCSE.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/GVN.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/JumpThreading.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/LICM.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/LoadCombine.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/LoopDeletion.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/LoopRerollPass.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/LoopRotation.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/MergedLoadStoreMotion.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/PartiallyInlineLibCalls.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/Reassociate.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/Reg2Mem.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/SCCP.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/SROA.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/SampleProfile.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/Scalar.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/Scalarizer.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/SeparateConstOffsetFromGEP.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/Sink.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/AddDiscriminators.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/BuildLibCalls.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/CloneFunction.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/CloneModule.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/CtorUtils.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/FlattenCFG.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/GlobalStatus.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/IntegerDivision.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/LCSSA.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/Local.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/LoopSimplify.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/LoopUnroll.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/LowerSwitch.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/Mem2Reg.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/ModuleUtils.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/SimplifyCFG.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Utils/ValueMapper.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Vectorize/BBVectorize.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp projects/release-install-debug/contrib/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp projects/release-install-debug/contrib/llvm/patches/README.TXT projects/release-install-debug/contrib/llvm/tools/bugpoint/BugDriver.cpp projects/release-install-debug/contrib/llvm/tools/bugpoint/BugDriver.h projects/release-install-debug/contrib/llvm/tools/bugpoint/CrashDebugger.cpp projects/release-install-debug/contrib/llvm/tools/bugpoint/ExtractFunction.cpp projects/release-install-debug/contrib/llvm/tools/bugpoint/ListReducer.h projects/release-install-debug/contrib/llvm/tools/bugpoint/Miscompilation.cpp projects/release-install-debug/contrib/llvm/tools/bugpoint/OptimizerDriver.cpp projects/release-install-debug/contrib/llvm/tools/bugpoint/ToolRunner.cpp projects/release-install-debug/contrib/llvm/tools/bugpoint/ToolRunner.h projects/release-install-debug/contrib/llvm/tools/bugpoint/bugpoint.cpp projects/release-install-debug/contrib/llvm/tools/clang/include/clang-c/BuildSystem.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang-c/CXCompilationDatabase.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang-c/CXErrorCode.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang-c/CXString.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang-c/Documentation.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang-c/Index.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang-c/Platform.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMTActions.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/ARCMigrate/FileRemapper.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/ASTDiagnostic.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/ASTFwd.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/ASTLambda.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/ASTMutationListener.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/ASTTypeTraits.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/ASTVector.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/Attr.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/CanonicalType.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/Comment.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/CommentBriefParser.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/CommentCommandTraits.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/CommentDiagnostic.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/CommentLexer.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/CommentParser.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/CommentSema.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/DataRecursiveASTVisitor.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/Decl.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/DeclBase.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/DeclCXX.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/DeclLookups.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/DeclObjC.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/DeclOpenMP.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/DeclTemplate.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/DeclarationName.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/DependentDiagnostic.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/EvaluatedExprVisitor.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/Expr.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/ExprCXX.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/ExprObjC.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/ExternalASTSource.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/LambdaCapture.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/Mangle.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/MangleNumberingContext.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/NSAPI.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/OpenMPClause.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/OperationKinds.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/ParentMap.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/PrettyPrinter.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/RawCommentList.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/RecordLayout.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/Stmt.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/StmtGraphTraits.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/StmtIterator.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/StmtOpenMP.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/TemplateBase.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/Type.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/TypeLoc.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/TypeOrdering.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/AST/UnresolvedSet.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchFinder.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchers.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersInternal.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersMacros.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Diagnostics.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Parser.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Registry.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/VariantValue.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/CFGReachabilityAnalysis.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/Consumed.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/Dominators.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/LiveVariables.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/PostOrderCFGView.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/PseudoConstantAnalysis.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ReachableCode.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafety.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyCommon.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyLogical.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyOps.def projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTIL.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTraverse.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyUtil.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/UninitializedValues.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisContext.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisDiagnostic.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/CFG.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/CFGStmtMap.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/CallGraph.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/DomainSpecific/CocoaConventions.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/DomainSpecific/ObjCNoReturn.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Analysis/Support/BumpVector.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/ABI.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/AddressSpaces.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/AllDiagnostics.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/Attr.td projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/AttrDocs.td projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/AttrKinds.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/Attributes.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/Builtins.def projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/Builtins.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAArch64.def projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsARM.def projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNVPTX.def projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsPPC.def projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsR600.def projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/CharInfo.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/CommentOptions.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.def projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/ExceptionSpecificationType.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/ExpressionTraits.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/FileManager.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/FileSystemStatCache.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/LLVM.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/Lambda.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.def projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/Module.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.def projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/OperatorKinds.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/OperatorPrecedence.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/PartialDiagnostic.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/PlistSupport.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/PrettyStackTrace.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.def projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/SourceLocation.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/SourceManager.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/SourceManagerInternals.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/TargetCXXABI.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/TargetInfo.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/TargetOptions.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/TemplateKinds.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/TypeTraits.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/VersionTuple.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/VirtualFileSystem.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td projects/release-install-debug/contrib/llvm/tools/clang/include/clang/CodeGen/BackendUtil.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/CodeGen/CGFunctionInfo.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/CodeGen/CodeGenABITypes.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/CodeGen/CodeGenAction.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/CodeGen/ModuleBuilder.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Driver/Action.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Driver/CLCompatOptions.td projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Driver/Compilation.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Driver/Driver.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Driver/DriverDiagnostic.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Driver/Job.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Driver/Multilib.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Driver/Options.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Driver/Options.td projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Driver/Phases.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Driver/SanitizerArgs.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Driver/Tool.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Driver/Types.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Driver/Util.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Format/Format.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/ASTConsumers.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/ChainedDiagnosticConsumer.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.def projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/FrontendAction.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/FrontendActions.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/FrontendDiagnostic.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/FrontendPluginRegistry.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/LangStandard.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/LangStandards.def projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/LogDiagnosticPrinter.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/MigratorOptions.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/MultiplexConsumer.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticPrinter.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticBuffer.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/Utils.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Lex/ExternalPreprocessorSource.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Lex/HeaderMap.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearch.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearchOptions.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Lex/LexDiagnostic.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Lex/Lexer.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Lex/LiteralSupport.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Lex/MacroArgs.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Lex/MacroInfo.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Lex/ModuleLoader.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Lex/MultipleIncludeOpt.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Lex/PPCallbacks.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Lex/PTHLexer.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Lex/PTHManager.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Lex/Pragma.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Lex/Preprocessor.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorLexer.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Lex/ScratchBuffer.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Lex/Token.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Lex/TokenConcatenation.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Lex/TokenLexer.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Parse/ParseDiagnostic.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Parse/Parser.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Rewrite/Core/DeltaTree.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Rewrite/Core/HTMLRewrite.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Rewrite/Core/RewriteRope.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Rewrite/Core/Rewriter.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Rewrite/Core/TokenRewriter.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/ASTConsumers.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/FixItRewriter.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/FrontendActions.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/Rewriters.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Sema/AnalysisBasedWarnings.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Sema/AttributeList.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Sema/IdentifierResolver.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Sema/Lookup.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Sema/LoopHint.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Sema/MultiplexExternalSemaSource.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Sema/ObjCMethodList.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Sema/Overload.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Sema/PrettyDeclStackTrace.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Sema/Scope.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Sema/ScopeInfo.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Sema/Sema.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Sema/SemaDiagnostic.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Sema/SemaFixItUtils.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Sema/SemaInternal.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Sema/SemaLambda.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Sema/TypoCorrection.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Serialization/ASTDeserializationListener.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Serialization/ASTReader.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Serialization/ASTWriter.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Serialization/ContinuousRangeMap.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Serialization/GlobalModuleIndex.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Serialization/Module.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Serialization/ModuleManager.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Serialization/SerializationDiagnostic.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/LocalCheckers.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ObjCRetainCount.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugType.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/CommonBugCategories.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BlockCounter.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerHelpers.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Environment.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/FunctionSummary.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState_Fwd.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintManager.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintTag.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/WorkList.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/AnalysisConsumer.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistration.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/FrontendActions.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Tooling/ArgumentsAdjusters.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Tooling/CommonOptionsParser.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabasePluginRegistry.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Tooling/FileMatchTrie.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Tooling/JSONCompilationDatabase.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Tooling/RefactoringCallbacks.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Tooling/ReplacementsYaml.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/Tooling/Tooling.h projects/release-install-debug/contrib/llvm/tools/clang/include/clang/module.modulemap projects/release-install-debug/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMT.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/ARCMigrate/Internals.h projects/release-install-debug/contrib/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/ARCMigrate/PlistReporter.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/ARCMigrate/TransformActions.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/APValue.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/ASTDumper.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/ASTImporter.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/ASTTypeTraits.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/CXXABI.h projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/Comment.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/CommentCommandTraits.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/CommentLexer.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/Decl.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/DeclBase.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/DeclCXX.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/DeclObjC.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/DeclPrinter.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/Expr.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/ExprCXX.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/ExprClassification.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/ItaniumCXXABI.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/Mangle.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/NSAPI.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/Stmt.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/StmtProfile.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/TemplateBase.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/Type.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/TypeLoc.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/TypePrinter.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/VTTBuilder.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/AST/VTableBuilder.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchFinder.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchersInternal.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Marshallers.h projects/release-install-debug/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Parser.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/VariantValue.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Analysis/BodyFarm.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Analysis/BodyFarm.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Analysis/CFG.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Analysis/CallGraph.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Analysis/FormatString.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Analysis/FormatStringParsing.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Analysis/LiveVariables.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Analysis/ReachableCode.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Analysis/ScanfFormatString.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Analysis/ThreadSafetyCommon.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Analysis/ThreadSafetyTIL.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Basic/Attributes.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Basic/Diagnostic.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Basic/FileSystemStatCache.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Basic/LangOptions.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Basic/Module.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Basic/OpenMPKinds.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Basic/SourceLocation.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Basic/SourceManager.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Basic/TargetInfo.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Basic/Targets.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Basic/Version.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Basic/VersionTuple.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Basic/VirtualFileSystem.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/ABIInfo.h projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGAtomic.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.h projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGBuilder.h projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.h projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGCXX.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.h projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGCall.h projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGClass.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.h projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGDecl.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGException.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGExpr.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGLoopInfo.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGLoopInfo.h projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.h projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.h projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.h projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayout.h projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGStmtOpenMP.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.h projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CGValue.h projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CodeGenABITypes.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CodeGenAction.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.h projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CodeGenPGO.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CodeGenPGO.h projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.h projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/EHScopeStack.h projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Driver/Action.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Driver/Driver.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Driver/InputInfo.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Driver/Job.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Driver/Multilib.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Driver/Phases.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Driver/SanitizerArgs.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Driver/Tool.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Driver/ToolChains.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Driver/Tools.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Driver/Tools.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Driver/Types.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Edit/EditedSource.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Format/BreakableToken.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Format/BreakableToken.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Format/ContinuationIndenter.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Format/ContinuationIndenter.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Format/Encoding.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Format/Format.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Format/FormatToken.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Format/FormatToken.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Format/TokenAnnotator.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Format/TokenAnnotator.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/ASTMerge.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/CacheTokens.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/DependencyFile.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/DependencyGraph.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/FrontendAction.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/FrontendActions.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/HeaderIncludeGen.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/LogDiagnosticPrinter.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/ModuleDependencyCollector.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/MultiplexConsumer.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/Rewrite/FixItRewriter.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/Rewrite/FrontendActions.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/Rewrite/HTMLPrint.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/Rewrite/InclusionRewriter.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/Rewrite/RewriteObjC.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Headers/Intrin.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Headers/altivec.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Headers/arm_acle.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Headers/bmiintrin.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Headers/cpuid.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Headers/emmintrin.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Headers/float.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Headers/immintrin.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Headers/lzcntintrin.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Headers/module.modulemap projects/release-install-debug/contrib/llvm/tools/clang/lib/Headers/shaintrin.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Headers/stddef.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Headers/unwind.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Index/CommentToXML.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Index/SimpleFormatContext.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Index/USRGeneration.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Lex/HeaderMap.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Lex/HeaderSearch.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Lex/Lexer.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Lex/LiteralSupport.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Lex/MacroArgs.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Lex/ModuleMap.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Lex/PPExpressions.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Lex/PPLexerChange.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Lex/PTHLexer.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Lex/Pragma.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Lex/ScratchBuffer.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Lex/TokenConcatenation.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Lex/UnicodeCharSets.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Parse/ParseAST.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Parse/ParseDecl.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Parse/ParseExpr.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Parse/ParseInit.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Parse/ParseObjc.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Parse/ParseOpenMP.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Parse/ParsePragma.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Parse/ParseStmtAsm.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Parse/ParseTemplate.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Parse/ParseTentative.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Parse/Parser.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Parse/RAIIObjectsForParser.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Rewrite/RewriteRope.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Rewrite/Rewriter.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/AttributeList.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/IdentifierResolver.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/MultiplexExternalSemaSource.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/Scope.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/ScopeInfo.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/Sema.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaAttr.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaCast.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaChecking.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaExprMember.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaLambda.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaLookup.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaOpenMP.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaOverload.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaStmt.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaStmtAsm.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaStmtAttr.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaTemplate.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/SemaType.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/TreeTransform.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Sema/TypeLocBuilder.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Serialization/ASTReader.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Serialization/ASTReaderInternals.h projects/release-install-debug/contrib/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Serialization/ASTWriter.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Serialization/GlobalModuleIndex.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Serialization/Module.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Serialization/ModuleManager.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.h projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Checkers.td projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckers.h projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdenticalExprChecker.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InterCheckerAPI.h projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SelectorExtras.h projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TestAfterDivZeroChecker.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PrettyStackTraceLocationContext.h projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/FrontendActions.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Tooling/ArgumentsAdjusters.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Tooling/CommonOptionsParser.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Tooling/Refactoring.cpp projects/release-install-debug/contrib/llvm/tools/clang/lib/Tooling/Tooling.cpp projects/release-install-debug/contrib/llvm/tools/clang/tools/driver/cc1_main.cpp projects/release-install-debug/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp projects/release-install-debug/contrib/llvm/tools/clang/tools/driver/driver.cpp projects/release-install-debug/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp projects/release-install-debug/contrib/llvm/tools/clang/utils/TableGen/NeonEmitter.cpp projects/release-install-debug/contrib/llvm/tools/clang/utils/TableGen/TableGenBackends.h projects/release-install-debug/contrib/llvm/tools/llc/llc.cpp projects/release-install-debug/contrib/llvm/tools/lldb/docs/lldb.1 projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/LLDB.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/SBAddress.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/SBBreakpoint.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/SBCommandInterpreter.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/SBCompileUnit.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/SBData.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/SBDebugger.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/SBDefines.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/SBEvent.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/SBFileSpec.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/SBFrame.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/SBFunction.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/SBListener.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/SBProcess.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/SBSection.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/SBStream.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/SBTarget.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/SBThread.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/SBType.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/SBTypeSummary.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/SBValue.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/API/SBValueList.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Breakpoint.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointID.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointIDList.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointList.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocation.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocationCollection.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocationList.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolver.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverAddress.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileLine.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileRegex.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverName.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSite.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/Address.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/ArchSpec.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/Communication.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/Connection.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/DataBuffer.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/DataExtractor.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/Debugger.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/Disassembler.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/FileSpecList.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/IOHandler.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/Mangled.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/ModuleList.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/PluginManager.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/RegularExpression.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/SearchFilter.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/Section.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/StreamString.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeSTLMap.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/ValueObject.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectChild.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResult.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultImpl.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/DataFormatters/CXXFormatterFunctions.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/DataFormatters/DataVisualization.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatCache.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatManager.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormattersContainer.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeCategory.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeCategoryMap.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSummary.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSynthetic.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/DataFormatters/ValueObjectPrinter.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Expression/ClangExpressionParser.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Expression/ClangExpressionVariable.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Expression/ClangFunction.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Expression/ClangUserExpression.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Expression/IRExecutionUnit.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/Config.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/Editline.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/FileSpec.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/Host.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/HostInfoBase.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/HostProcess.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/Pipe.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/Predicate.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/Socket.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/TimeValue.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/freebsd/HostInfoFreeBSD.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostInfoPosix.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostProcessPosix.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Interpreter/Args.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandInterpreter.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObject.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupValueObjectDisplay.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValue.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueProperties.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValues.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Interpreter/Property.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Interpreter/ScriptInterpreter.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Interpreter/ScriptInterpreterPython.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTContext.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTType.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangExternalASTSourceCommon.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Symbol/DWARFCallFrameInfo.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Symbol/FuncUnwinders.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolContext.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Symbol/Type.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindPlan.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindTable.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Target/ABI.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Target/CPPLanguageRuntime.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Target/FileAction.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Target/ObjCLanguageRuntime.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Target/Platform.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Target/Process.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Target/ProcessLaunchInfo.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Target/StackFrame.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Target/StopInfo.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Target/Target.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Target/TargetList.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Target/Thread.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Target/ThreadList.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlan.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOverBreakpoint.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepRange.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Target/Unwind.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Utility/CleanUp.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Utility/Iterable.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/Utility/StringLexer.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/lldb-defines.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/lldb-enumerations.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/lldb-forward.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/lldb-private-enumerations.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/lldb-private-interfaces.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/lldb-private-types.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/lldb-private.h projects/release-install-debug/contrib/llvm/tools/lldb/include/lldb/lldb-types.h projects/release-install-debug/contrib/llvm/tools/lldb/source/API/SBAddress.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/API/SBBreakpoint.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/API/SBCommandInterpreter.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/API/SBCommunication.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/API/SBCompileUnit.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/API/SBDebugger.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/API/SBEvent.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/API/SBFunction.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/API/SBHostOS.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/API/SBInstruction.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/API/SBInstructionList.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/API/SBListener.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/API/SBPlatform.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/API/SBProcess.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/API/SBSection.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/API/SBTarget.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/API/SBThread.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/API/SBType.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/API/SBTypeSummary.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/API/SBValue.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/API/SBValueList.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Breakpoint/Breakpoint.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointID.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointIDList.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocation.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocationCollection.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocationList.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointOptions.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverAddress.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverName.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointSite.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Commands/CommandCompletions.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpoint.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpoint.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Commands/CommandObjectExpression.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Commands/CommandObjectMemory.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlatform.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Commands/CommandObjectProcess.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Commands/CommandObjectSource.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Commands/CommandObjectSyntax.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Commands/CommandObjectTarget.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Commands/CommandObjectThread.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Commands/CommandObjectType.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/Address.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/AddressRange.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/AddressResolverFileLine.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/ArchSpec.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/Communication.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/Connection.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/ConnectionSharedMemory.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/ConstString.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/DataExtractor.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/Debugger.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/Disassembler.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/FastDemangle.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/FileSpecList.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/IOHandler.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/Log.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/Mangled.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/Module.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/ModuleList.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/PluginManager.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/RegularExpression.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/SearchFilter.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/Section.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/StreamString.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/ValueObject.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/ValueObjectCast.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/ValueObjectChild.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResult.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultImpl.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/ValueObjectDynamicValue.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/ValueObjectMemory.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/ValueObjectSyntheticFilter.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Core/ValueObjectVariable.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/CF.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/CXXFormatterFunctions.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/Cocoa.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/DataVisualization.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/FormatCache.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/FormatManager.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/LibCxx.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/LibCxxList.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/LibCxxMap.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/LibCxxUnorderedMap.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/LibStdcpp.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/NSArray.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/NSDictionary.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/NSSet.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategory.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategoryMap.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/TypeFormat.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/TypeSummary.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/TypeSynthetic.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/DataFormatters/ValueObjectPrinter.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Expression/ClangASTSource.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Expression/ClangExpressionDeclMap.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Expression/ClangExpressionParser.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Expression/ClangExpressionVariable.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Expression/ClangFunction.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Expression/ClangUserExpression.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Expression/DWARFExpression.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Expression/IRExecutionUnit.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Expression/IRForTarget.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/common/Editline.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/common/File.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/common/FileSpec.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/common/Host.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/common/HostInfoBase.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/common/NativeProcessProtocol.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/common/NativeProcessProtocol.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/common/NativeThreadProtocol.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/common/Socket.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/common/SocketAddress.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/common/SoftwareBreakpoint.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/freebsd/Host.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/posix/HostInfoPosix.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Host/posix/HostProcessPosix.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/Args.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/CommandInterpreter.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/CommandObject.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectRegexCommand.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupPlatform.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/OptionValue.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArch.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArray.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/OptionValueBoolean.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/OptionValueDictionary.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/OptionValueEnumeration.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpec.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpecLIst.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormat.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/OptionValuePathMappings.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/OptionValueProperties.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/OptionValueRegex.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/OptionValueSInt64.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/OptionValueString.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/OptionValueUInt64.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/OptionValueUUID.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/Property.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/ScriptInterpreter.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/ScriptInterpreterPython.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Interpreter/embedded_interpreter.py projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/ObjectContainerBSDArchive.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextPOSIXProcessMonitor_arm64.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextPOSIXProcessMonitor_mips64.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextPOSIXProcessMonitor_x86.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ARMDefines.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryUnwind.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryUnwind.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/InstructionUtils.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_x86.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_x86.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextThreadMemory.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_i386.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_x86_64.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-x86-register-enums.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_mips64.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_x86_64.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ThreadElfCore.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDataExtractor.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugPubnames.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Symbol/ClangASTContext.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Symbol/ClangASTImporter.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Symbol/ClangASTType.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Symbol/ClangExternalASTSourceCommon.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Symbol/CompileUnit.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Symbol/DWARFCallFrameInfo.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Symbol/Declaration.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Symbol/FuncUnwinders.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Symbol/LineTable.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Symbol/ObjectFile.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Symbol/Symbol.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Symbol/SymbolContext.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Symbol/Type.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Symbol/UnwindPlan.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Symbol/UnwindTable.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Symbol/Variable.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/CPPLanguageRuntime.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/FileAction.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/LanguageRuntime.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/Memory.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/ObjCLanguageRuntime.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/Platform.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/Process.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/ProcessLaunchInfo.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/StackFrame.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/StackFrameList.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/StopInfo.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/Target.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/TargetList.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/Thread.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/ThreadList.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInRange.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInstruction.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOut.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverRange.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepRange.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepThrough.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Target/ThreadPlanTracer.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Utility/PseudoTerminal.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Utility/StringExtractor.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Utility/StringExtractor.h projects/release-install-debug/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/Utility/StringLexer.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/lldb-log.cpp projects/release-install-debug/contrib/llvm/tools/lldb/source/lldb.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/driver/Driver.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/driver/Driver.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/driver/Platform.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/Driver.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/Driver.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgContext.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgContext.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgSet.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgSet.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValConsume.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValConsume.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValFile.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValFile.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListBase.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListBase.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListOfN.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListOfN.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValNumber.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValNumber.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionShort.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionShort.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdBase.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdBase.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmd.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmd.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdEnviro.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdEnviro.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdExec.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdExec.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdFile.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdFile.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbThread.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbThread.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdMiscellanous.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdMiscellanous.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdStack.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdStack.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportInfo.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportInfo.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportList.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportList.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTarget.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTarget.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTrace.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTrace.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCommands.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCommands.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdData.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdData.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInterpreter.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInterpreter.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInvoker.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInvoker.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgr.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgr.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnConfig.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugger.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugger.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLog.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLog.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLogMediumFile.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLogMediumFile.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIResultRecord.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIResultRecord.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValue.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValue.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueConst.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueConst.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueList.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueList.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueResult.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueResult.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueTuple.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueTuple.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnResources.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnResources.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStderr.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStderr.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdin.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdin.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdinLinux.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdinLinux.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdinWindows.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdinWindows.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdout.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdout.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnThreadMgrStd.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnThreadMgrStd.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIDataTypes.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriver.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriver.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverBase.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverBase.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMain.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDateTimeStd.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDateTimeStd.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilMapIdToVariant.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilMapIdToVariant.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSingletonBase.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSingletonHelper.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilString.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilString.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSystemLinux.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSystemLinux.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSystemOsx.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSystemOsx.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSystemWindows.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSystemWindows.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilTermios.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilTermios.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilThreadBaseStd.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilThreadBaseStd.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilVariant.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilVariant.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/Platform.cpp projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-mi/Platform.h projects/release-install-debug/contrib/llvm/tools/lldb/tools/lldb-platform/lldb-platform.cpp projects/release-install-debug/contrib/llvm/tools/lli/ChildTarget/ChildTarget.cpp projects/release-install-debug/contrib/llvm/tools/lli/RPCChannel.h projects/release-install-debug/contrib/llvm/tools/lli/RemoteMemoryManager.cpp projects/release-install-debug/contrib/llvm/tools/lli/RemoteMemoryManager.h projects/release-install-debug/contrib/llvm/tools/lli/RemoteTarget.h projects/release-install-debug/contrib/llvm/tools/lli/RemoteTargetExternal.h projects/release-install-debug/contrib/llvm/tools/lli/RemoteTargetMessage.h projects/release-install-debug/contrib/llvm/tools/lli/lli.cpp projects/release-install-debug/contrib/llvm/tools/llvm-ar/llvm-ar.cpp projects/release-install-debug/contrib/llvm/tools/llvm-as/llvm-as.cpp projects/release-install-debug/contrib/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp projects/release-install-debug/contrib/llvm/tools/llvm-diff/DiffConsumer.h projects/release-install-debug/contrib/llvm/tools/llvm-diff/DiffLog.h projects/release-install-debug/contrib/llvm/tools/llvm-diff/DifferenceEngine.h projects/release-install-debug/contrib/llvm/tools/llvm-diff/llvm-diff.cpp projects/release-install-debug/contrib/llvm/tools/llvm-dis/llvm-dis.cpp projects/release-install-debug/contrib/llvm/tools/llvm-extract/llvm-extract.cpp projects/release-install-debug/contrib/llvm/tools/llvm-link/llvm-link.cpp projects/release-install-debug/contrib/llvm/tools/llvm-mc/Disassembler.cpp projects/release-install-debug/contrib/llvm/tools/llvm-mc/Disassembler.h projects/release-install-debug/contrib/llvm/tools/llvm-mc/llvm-mc.cpp projects/release-install-debug/contrib/llvm/tools/llvm-nm/llvm-nm.cpp projects/release-install-debug/contrib/llvm/tools/llvm-objdump/COFFDump.cpp projects/release-install-debug/contrib/llvm/tools/llvm-objdump/MachODump.cpp projects/release-install-debug/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp projects/release-install-debug/contrib/llvm/tools/llvm-objdump/llvm-objdump.h projects/release-install-debug/contrib/llvm/tools/llvm-readobj/ARMAttributeParser.cpp projects/release-install-debug/contrib/llvm/tools/llvm-readobj/ARMAttributeParser.h projects/release-install-debug/contrib/llvm/tools/llvm-readobj/ARMEHABIPrinter.h projects/release-install-debug/contrib/llvm/tools/llvm-readobj/ARMWinEHPrinter.cpp projects/release-install-debug/contrib/llvm/tools/llvm-readobj/ARMWinEHPrinter.h projects/release-install-debug/contrib/llvm/tools/llvm-readobj/COFFDumper.cpp projects/release-install-debug/contrib/llvm/tools/llvm-readobj/ELFDumper.cpp projects/release-install-debug/contrib/llvm/tools/llvm-readobj/Error.cpp projects/release-install-debug/contrib/llvm/tools/llvm-readobj/Error.h projects/release-install-debug/contrib/llvm/tools/llvm-readobj/MachODumper.cpp projects/release-install-debug/contrib/llvm/tools/llvm-readobj/ObjDumper.h projects/release-install-debug/contrib/llvm/tools/llvm-readobj/StreamWriter.h projects/release-install-debug/contrib/llvm/tools/llvm-readobj/Win64EHDumper.h projects/release-install-debug/contrib/llvm/tools/llvm-readobj/llvm-readobj.cpp projects/release-install-debug/contrib/llvm/tools/llvm-readobj/llvm-readobj.h projects/release-install-debug/contrib/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp projects/release-install-debug/contrib/llvm/tools/llvm-stress/llvm-stress.cpp projects/release-install-debug/contrib/llvm/tools/llvm-symbolizer/LLVMSymbolize.cpp projects/release-install-debug/contrib/llvm/tools/llvm-symbolizer/LLVMSymbolize.h projects/release-install-debug/contrib/llvm/tools/llvm-symbolizer/llvm-symbolizer.cpp projects/release-install-debug/contrib/llvm/tools/macho-dump/macho-dump.cpp projects/release-install-debug/contrib/llvm/tools/opt/BreakpointPrinter.cpp projects/release-install-debug/contrib/llvm/tools/opt/NewPMDriver.cpp projects/release-install-debug/contrib/llvm/tools/opt/NewPMDriver.h projects/release-install-debug/contrib/llvm/tools/opt/PassRegistry.def projects/release-install-debug/contrib/llvm/tools/opt/Passes.cpp projects/release-install-debug/contrib/llvm/tools/opt/Passes.h projects/release-install-debug/contrib/llvm/tools/opt/opt.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/AsmMatcherEmitter.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/AsmWriterEmitter.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/AsmWriterInst.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/AsmWriterInst.h projects/release-install-debug/contrib/llvm/utils/TableGen/CTagsEmitter.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/CallingConvEmitter.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/CodeEmitterGen.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.h projects/release-install-debug/contrib/llvm/utils/TableGen/CodeGenInstruction.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/CodeGenInstruction.h projects/release-install-debug/contrib/llvm/utils/TableGen/CodeGenIntrinsics.h projects/release-install-debug/contrib/llvm/utils/TableGen/CodeGenRegisters.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/CodeGenRegisters.h projects/release-install-debug/contrib/llvm/utils/TableGen/CodeGenSchedule.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/CodeGenSchedule.h projects/release-install-debug/contrib/llvm/utils/TableGen/CodeGenTarget.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/CodeGenTarget.h projects/release-install-debug/contrib/llvm/utils/TableGen/DAGISelEmitter.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/DAGISelMatcher.h projects/release-install-debug/contrib/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/DAGISelMatcherGen.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/DAGISelMatcherOpt.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/FastISelEmitter.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/InstrInfoEmitter.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/IntrinsicEmitter.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/SequenceToOffsetTable.h projects/release-install-debug/contrib/llvm/utils/TableGen/SubtargetEmitter.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/TableGen.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/TableGenBackends.h projects/release-install-debug/contrib/llvm/utils/TableGen/X86DisassemblerShared.h projects/release-install-debug/contrib/llvm/utils/TableGen/X86DisassemblerTables.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/X86DisassemblerTables.h projects/release-install-debug/contrib/llvm/utils/TableGen/X86ModRMFilters.h projects/release-install-debug/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp projects/release-install-debug/contrib/llvm/utils/TableGen/X86RecognizableInstr.h projects/release-install-debug/contrib/mdocml/INSTALL projects/release-install-debug/contrib/mdocml/LICENSE projects/release-install-debug/contrib/mdocml/Makefile projects/release-install-debug/contrib/mdocml/Makefile.depend projects/release-install-debug/contrib/mdocml/NEWS projects/release-install-debug/contrib/mdocml/TODO projects/release-install-debug/contrib/mdocml/apropos.1 projects/release-install-debug/contrib/mdocml/cgi.c projects/release-install-debug/contrib/mdocml/chars.c projects/release-install-debug/contrib/mdocml/chars.in projects/release-install-debug/contrib/mdocml/compat_fts.c projects/release-install-debug/contrib/mdocml/config.h projects/release-install-debug/contrib/mdocml/configure projects/release-install-debug/contrib/mdocml/configure.local.example projects/release-install-debug/contrib/mdocml/demandoc.c projects/release-install-debug/contrib/mdocml/eqn.7 projects/release-install-debug/contrib/mdocml/eqn.c projects/release-install-debug/contrib/mdocml/eqn_term.c projects/release-install-debug/contrib/mdocml/example.style.css projects/release-install-debug/contrib/mdocml/gmdiff projects/release-install-debug/contrib/mdocml/html.c projects/release-install-debug/contrib/mdocml/libman.h projects/release-install-debug/contrib/mdocml/libmandoc.h projects/release-install-debug/contrib/mdocml/libmdoc.h projects/release-install-debug/contrib/mdocml/libroff.h projects/release-install-debug/contrib/mdocml/main.c projects/release-install-debug/contrib/mdocml/main.h projects/release-install-debug/contrib/mdocml/man-cgi.css projects/release-install-debug/contrib/mdocml/man.1 projects/release-install-debug/contrib/mdocml/man.7 projects/release-install-debug/contrib/mdocml/man.c projects/release-install-debug/contrib/mdocml/man.h projects/release-install-debug/contrib/mdocml/man_html.c projects/release-install-debug/contrib/mdocml/man_macro.c projects/release-install-debug/contrib/mdocml/man_term.c projects/release-install-debug/contrib/mdocml/man_validate.c projects/release-install-debug/contrib/mdocml/mandoc.1 projects/release-install-debug/contrib/mdocml/mandoc.3 projects/release-install-debug/contrib/mdocml/mandoc.c projects/release-install-debug/contrib/mdocml/mandoc.db.5 projects/release-install-debug/contrib/mdocml/mandoc.h projects/release-install-debug/contrib/mdocml/mandoc_char.7 projects/release-install-debug/contrib/mdocml/mandoc_escape.3 projects/release-install-debug/contrib/mdocml/mandoc_headers.3 projects/release-install-debug/contrib/mdocml/mandocdb.c projects/release-install-debug/contrib/mdocml/manpage.c projects/release-install-debug/contrib/mdocml/mansearch.c projects/release-install-debug/contrib/mdocml/mdoc.7 projects/release-install-debug/contrib/mdocml/mdoc.c projects/release-install-debug/contrib/mdocml/mdoc.h projects/release-install-debug/contrib/mdocml/mdoc_argv.c projects/release-install-debug/contrib/mdocml/mdoc_html.c projects/release-install-debug/contrib/mdocml/mdoc_macro.c projects/release-install-debug/contrib/mdocml/mdoc_man.c projects/release-install-debug/contrib/mdocml/mdoc_term.c projects/release-install-debug/contrib/mdocml/mdoc_validate.c projects/release-install-debug/contrib/mdocml/msec.c projects/release-install-debug/contrib/mdocml/out.c projects/release-install-debug/contrib/mdocml/preconv.c projects/release-install-debug/contrib/mdocml/read.c projects/release-install-debug/contrib/mdocml/roff.7 projects/release-install-debug/contrib/mdocml/roff.c projects/release-install-debug/contrib/mdocml/st.in projects/release-install-debug/contrib/mdocml/style.css projects/release-install-debug/contrib/mdocml/tbl.3 projects/release-install-debug/contrib/mdocml/tbl.7 projects/release-install-debug/contrib/mdocml/tbl.c projects/release-install-debug/contrib/mdocml/tbl_data.c projects/release-install-debug/contrib/mdocml/tbl_html.c projects/release-install-debug/contrib/mdocml/tbl_layout.c projects/release-install-debug/contrib/mdocml/tbl_opts.c projects/release-install-debug/contrib/mdocml/tbl_term.c projects/release-install-debug/contrib/mdocml/term.c projects/release-install-debug/contrib/mdocml/term.h projects/release-install-debug/contrib/mdocml/term_ascii.c projects/release-install-debug/contrib/mdocml/term_ps.c projects/release-install-debug/contrib/mdocml/tree.c projects/release-install-debug/contrib/netbsd-tests/lib/libc/gen/t_nice.c projects/release-install-debug/contrib/ntp/COPYRIGHT (contents, props changed) projects/release-install-debug/contrib/ntp/ChangeLog (contents, props changed) projects/release-install-debug/contrib/ntp/CommitLog projects/release-install-debug/contrib/ntp/Makefile.am (contents, props changed) projects/release-install-debug/contrib/ntp/Makefile.in (contents, props changed) projects/release-install-debug/contrib/ntp/NEWS (contents, props changed) projects/release-install-debug/contrib/ntp/README.hackers (contents, props changed) projects/release-install-debug/contrib/ntp/WHERE-TO-START (contents, props changed) projects/release-install-debug/contrib/ntp/aclocal.m4 (contents, props changed) projects/release-install-debug/contrib/ntp/adjtimed/Makefile.am (contents, props changed) projects/release-install-debug/contrib/ntp/adjtimed/Makefile.in (contents, props changed) projects/release-install-debug/contrib/ntp/bincheck.mf projects/release-install-debug/contrib/ntp/bootstrap projects/release-install-debug/contrib/ntp/build (contents, props changed) projects/release-install-debug/contrib/ntp/clockstuff/Makefile.am (contents, props changed) projects/release-install-debug/contrib/ntp/clockstuff/Makefile.in (contents, props changed) projects/release-install-debug/contrib/ntp/clockstuff/README (contents, props changed) projects/release-install-debug/contrib/ntp/clockstuff/chutest.c (contents, props changed) projects/release-install-debug/contrib/ntp/clockstuff/propdelay.c (contents, props changed) projects/release-install-debug/contrib/ntp/conf/beauregard.conf (contents, props changed) projects/release-install-debug/contrib/ntp/config.guess (contents, props changed) projects/release-install-debug/contrib/ntp/config.h.in (contents, props changed) projects/release-install-debug/contrib/ntp/config.sub (contents, props changed) projects/release-install-debug/contrib/ntp/configure (contents, props changed) projects/release-install-debug/contrib/ntp/configure.ac projects/release-install-debug/contrib/ntp/dot.emacs (contents, props changed) projects/release-install-debug/contrib/ntp/flock-build (contents, props changed) projects/release-install-debug/contrib/ntp/html/accopt.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/assoc.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/audio.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/authopt.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/clockopt.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/confopt.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/copyright.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/debug.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver1.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver10.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver11.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver12.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver16.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver18.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver19.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver20.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver22.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver26.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver27.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver28.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver29.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver3.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver30.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver31.html projects/release-install-debug/contrib/ntp/html/drivers/driver32.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver33.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver34.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver35.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver36.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver37.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver38.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver39.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver4.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver40.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver42.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver43.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver44.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver5.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver6.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver7.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver8.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/driver9.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/oncore-shmem.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/drivers/scripts/footer.txt projects/release-install-debug/contrib/ntp/html/drivers/scripts/style.css projects/release-install-debug/contrib/ntp/html/drivers/tf582_4.html projects/release-install-debug/contrib/ntp/html/extern.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/howto.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/index.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/kern.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/keygen.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/miscopt.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/monopt.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/msyslog.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/ntp_conf.html projects/release-install-debug/contrib/ntp/html/ntpd.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/ntpdate.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/ntpdc.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/ntpdsim.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/ntpdsim_new.html projects/release-install-debug/contrib/ntp/html/ntpq.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/ntptime.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/ntptrace.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/parsedata.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/parsenew.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/pps.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/prefer.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/rdebug.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/refclock.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/release.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/scripts/footer.txt (contents, props changed) projects/release-install-debug/contrib/ntp/html/scripts/style.css (contents, props changed) projects/release-install-debug/contrib/ntp/html/sntp.html (contents, props changed) projects/release-install-debug/contrib/ntp/html/tickadj.html (contents, props changed) projects/release-install-debug/contrib/ntp/include/Makefile.am (contents, props changed) projects/release-install-debug/contrib/ntp/include/Makefile.in (contents, props changed) projects/release-install-debug/contrib/ntp/include/audio.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/binio.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/icom.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ieee754io.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/iosignal.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/isc/Makefile.am (contents, props changed) projects/release-install-debug/contrib/ntp/include/isc/Makefile.in (contents, props changed) projects/release-install-debug/contrib/ntp/include/isc/mem.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/l_stdlib.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/mbg_gps166.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntp.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntp_calendar.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntp_cmdargs.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntp_config.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntp_control.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntp_crypto.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntp_debug.h projects/release-install-debug/contrib/ntp/include/ntp_filegen.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntp_fp.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntp_io.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntp_machine.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntp_malloc.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntp_md5.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntp_proto.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntp_random.h projects/release-install-debug/contrib/ntp/include/ntp_refclock.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntp_request.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntp_rfc2553.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntp_select.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntp_stdlib.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntp_string.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntp_syscall.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntp_syslog.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntp_tty.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntp_types.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntp_unixtime.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntpd.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/ntpsim.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/parse.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/recvbuff.h (contents, props changed) projects/release-install-debug/contrib/ntp/include/timepps-SCO.h projects/release-install-debug/contrib/ntp/include/timepps-Solaris.h projects/release-install-debug/contrib/ntp/include/timepps-SunOS.h projects/release-install-debug/contrib/ntp/include/trimble.h (contents, props changed) projects/release-install-debug/contrib/ntp/kernel/Makefile.am (contents, props changed) projects/release-install-debug/contrib/ntp/kernel/Makefile.in (contents, props changed) projects/release-install-debug/contrib/ntp/kernel/sys/Makefile.am (contents, props changed) projects/release-install-debug/contrib/ntp/kernel/sys/Makefile.in (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/Makefile.am (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/Makefile.in (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/a_md5encrypt.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/atoint.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/atolfp.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/atouint.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/audio.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/authkeys.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/authreadkeys.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/authusekey.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/buftvtots.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/caljulian.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/caltontp.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/calyearstart.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/clocktime.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/clocktypes.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/decodenetnum.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/dofptoa.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/dolfptoa.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/emalloc.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/findconfig.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/getopt.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/hextoint.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/hextolfp.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/humandate.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/icom.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/iosignal.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/lib_strbuf.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/machines.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/mktime.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/modetoa.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/mstolfp.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/msyslog.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/netof.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/ntp_random.c projects/release-install-debug/contrib/ntp/libntp/ntp_rfc2553.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/numtoa.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/numtohost.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/octtoint.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/prettydate.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/recvbuff.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/refnumtoa.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/snprintf.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/socktoa.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/socktohost.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/statestr.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/strdup.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/syssignal.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/systime.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/uglydate.c (contents, props changed) projects/release-install-debug/contrib/ntp/libntp/ymd2yd.c (contents, props changed) projects/release-install-debug/contrib/ntp/libparse/Makefile.am (contents, props changed) projects/release-install-debug/contrib/ntp/libparse/Makefile.in (contents, props changed) projects/release-install-debug/contrib/ntp/libparse/binio.c projects/release-install-debug/contrib/ntp/libparse/clk_computime.c (contents, props changed) projects/release-install-debug/contrib/ntp/libparse/clk_dcf7000.c (contents, props changed) projects/release-install-debug/contrib/ntp/libparse/clk_hopf6021.c (contents, props changed) projects/release-install-debug/contrib/ntp/libparse/clk_meinberg.c (contents, props changed) projects/release-install-debug/contrib/ntp/libparse/clk_rawdcf.c (contents, props changed) projects/release-install-debug/contrib/ntp/libparse/clk_rcc8000.c (contents, props changed) projects/release-install-debug/contrib/ntp/libparse/clk_schmid.c (contents, props changed) projects/release-install-debug/contrib/ntp/libparse/clk_trimtaip.c (contents, props changed) projects/release-install-debug/contrib/ntp/libparse/clk_trimtsip.c (contents, props changed) projects/release-install-debug/contrib/ntp/libparse/clk_varitext.c (contents, props changed) projects/release-install-debug/contrib/ntp/libparse/clk_wharton.c (contents, props changed) projects/release-install-debug/contrib/ntp/libparse/data_mbg.c (contents, props changed) projects/release-install-debug/contrib/ntp/libparse/gpstolfp.c projects/release-install-debug/contrib/ntp/libparse/ieee754io.c projects/release-install-debug/contrib/ntp/libparse/info_trimble.c (contents, props changed) projects/release-install-debug/contrib/ntp/libparse/mfp_mul.c projects/release-install-debug/contrib/ntp/libparse/mkinfo_rcmd.sed (contents, props changed) projects/release-install-debug/contrib/ntp/libparse/mkinfo_scmd.sed (contents, props changed) projects/release-install-debug/contrib/ntp/libparse/parse.c (contents, props changed) projects/release-install-debug/contrib/ntp/libparse/parse_conf.c (contents, props changed) projects/release-install-debug/contrib/ntp/libparse/parsesolaris.c (contents, props changed) projects/release-install-debug/contrib/ntp/libparse/parsestreams.c (contents, props changed) projects/release-install-debug/contrib/ntp/libparse/trim_info.c (contents, props changed) projects/release-install-debug/contrib/ntp/ltmain.sh projects/release-install-debug/contrib/ntp/ntpd/Makefile.am (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/Makefile.in (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/check_y2k.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/cmd_args.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/ntp_config.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/ntp_control.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/ntp_crypto.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/ntp_filegen.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/ntp_io.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/ntp_loopfilter.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/ntp_monitor.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/ntp_peer.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/ntp_proto.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/ntp_refclock.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/ntp_request.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/ntp_restrict.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/ntp_timer.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/ntp_util.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/ntpd-opts.c projects/release-install-debug/contrib/ntp/ntpd/ntpd-opts.def projects/release-install-debug/contrib/ntp/ntpd/ntpd-opts.h projects/release-install-debug/contrib/ntp/ntpd/ntpd.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/ntpdbase-opts.def projects/release-install-debug/contrib/ntp/ntpd/ntpsim.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_acts.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_arbiter.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_arc.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_as2201.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_atom.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_bancomm.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_chronolog.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_chu.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_conf.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_datum.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_dumbclock.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_fg.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_gpsvme.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_heath.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_hopfpci.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_hopfser.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_hpgps.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_irig.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_jjy.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_jupiter.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_leitch.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_local.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_msfees.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_mx4200.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_neoclock4x.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_nmea.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_oncore.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_palisade.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_palisade.h (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_parse.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_pcf.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_pst.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_ripencc.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_shm.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_tpro.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_true.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_tt560.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_ulink.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_wwv.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_wwvb.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpd/refclock_zyfer.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpdate/Makefile.am (contents, props changed) projects/release-install-debug/contrib/ntp/ntpdate/Makefile.in (contents, props changed) projects/release-install-debug/contrib/ntp/ntpdate/ntpdate.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpdate/ntpdate.h (contents, props changed) projects/release-install-debug/contrib/ntp/ntpdc/Makefile.am (contents, props changed) projects/release-install-debug/contrib/ntp/ntpdc/Makefile.in (contents, props changed) projects/release-install-debug/contrib/ntp/ntpdc/layout.std (contents, props changed) projects/release-install-debug/contrib/ntp/ntpdc/nl.pl (contents, props changed) projects/release-install-debug/contrib/ntp/ntpdc/nl.pl.in (contents, props changed) projects/release-install-debug/contrib/ntp/ntpdc/ntpdc-layout.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpdc/ntpdc-opts.c projects/release-install-debug/contrib/ntp/ntpdc/ntpdc-opts.def projects/release-install-debug/contrib/ntp/ntpdc/ntpdc-opts.h projects/release-install-debug/contrib/ntp/ntpdc/ntpdc.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpdc/ntpdc.h (contents, props changed) projects/release-install-debug/contrib/ntp/ntpdc/ntpdc_ops.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpq/Makefile.am (contents, props changed) projects/release-install-debug/contrib/ntp/ntpq/Makefile.in (contents, props changed) projects/release-install-debug/contrib/ntp/ntpq/ntpq-opts.c projects/release-install-debug/contrib/ntp/ntpq/ntpq-opts.def projects/release-install-debug/contrib/ntp/ntpq/ntpq-opts.h projects/release-install-debug/contrib/ntp/ntpq/ntpq-subs.c projects/release-install-debug/contrib/ntp/ntpq/ntpq.c (contents, props changed) projects/release-install-debug/contrib/ntp/ntpq/ntpq.h (contents, props changed) projects/release-install-debug/contrib/ntp/packageinfo.sh projects/release-install-debug/contrib/ntp/parseutil/Makefile.am (contents, props changed) projects/release-install-debug/contrib/ntp/parseutil/Makefile.in (contents, props changed) projects/release-install-debug/contrib/ntp/parseutil/dcfd.c (contents, props changed) projects/release-install-debug/contrib/ntp/parseutil/testdcf.c (contents, props changed) projects/release-install-debug/contrib/ntp/readme.y2kfixes (contents, props changed) projects/release-install-debug/contrib/ntp/scripts/Makefile.am (contents, props changed) projects/release-install-debug/contrib/ntp/scripts/Makefile.in (contents, props changed) projects/release-install-debug/contrib/ntp/scripts/README (contents, props changed) projects/release-install-debug/contrib/ntp/scripts/monitoring/ntp.pl (contents, props changed) projects/release-install-debug/contrib/ntp/scripts/monitoring/ntptrap (contents, props changed) projects/release-install-debug/contrib/ntp/scripts/ntpver.in (contents, props changed) projects/release-install-debug/contrib/ntp/scripts/plot_summary.in (contents, props changed) projects/release-install-debug/contrib/ntp/scripts/summary.in (contents, props changed) projects/release-install-debug/contrib/ntp/sntp/COPYRIGHT projects/release-install-debug/contrib/ntp/sntp/Makefile.am (contents, props changed) projects/release-install-debug/contrib/ntp/sntp/Makefile.in (contents, props changed) projects/release-install-debug/contrib/ntp/sntp/aclocal.m4 (contents, props changed) projects/release-install-debug/contrib/ntp/sntp/bincheck.mf projects/release-install-debug/contrib/ntp/sntp/config.guess (contents, props changed) projects/release-install-debug/contrib/ntp/sntp/config.h.in projects/release-install-debug/contrib/ntp/sntp/config.sub (contents, props changed) projects/release-install-debug/contrib/ntp/sntp/configure (contents, props changed) projects/release-install-debug/contrib/ntp/sntp/configure.ac (contents, props changed) projects/release-install-debug/contrib/ntp/sntp/libopts/Makefile.am projects/release-install-debug/contrib/ntp/sntp/libopts/Makefile.in projects/release-install-debug/contrib/ntp/sntp/libopts/README projects/release-install-debug/contrib/ntp/sntp/libopts/autoopts.c projects/release-install-debug/contrib/ntp/sntp/libopts/autoopts.h projects/release-install-debug/contrib/ntp/sntp/libopts/autoopts/options.h projects/release-install-debug/contrib/ntp/sntp/libopts/autoopts/usage-txt.h projects/release-install-debug/contrib/ntp/sntp/libopts/boolean.c projects/release-install-debug/contrib/ntp/sntp/libopts/compat/compat.h projects/release-install-debug/contrib/ntp/sntp/libopts/compat/pathfind.c projects/release-install-debug/contrib/ntp/sntp/libopts/compat/snprintf.c projects/release-install-debug/contrib/ntp/sntp/libopts/compat/strchr.c projects/release-install-debug/contrib/ntp/sntp/libopts/compat/strdup.c projects/release-install-debug/contrib/ntp/sntp/libopts/compat/windows-config.h projects/release-install-debug/contrib/ntp/sntp/libopts/configfile.c projects/release-install-debug/contrib/ntp/sntp/libopts/cook.c projects/release-install-debug/contrib/ntp/sntp/libopts/genshell.c projects/release-install-debug/contrib/ntp/sntp/libopts/genshell.h projects/release-install-debug/contrib/ntp/sntp/libopts/libopts.c projects/release-install-debug/contrib/ntp/sntp/libopts/load.c projects/release-install-debug/contrib/ntp/sntp/libopts/m4/libopts.m4 projects/release-install-debug/contrib/ntp/sntp/libopts/m4/liboptschk.m4 projects/release-install-debug/contrib/ntp/sntp/libopts/makeshell.c projects/release-install-debug/contrib/ntp/sntp/libopts/nested.c projects/release-install-debug/contrib/ntp/sntp/libopts/numeric.c projects/release-install-debug/contrib/ntp/sntp/libopts/pgusage.c projects/release-install-debug/contrib/ntp/sntp/libopts/proto.h projects/release-install-debug/contrib/ntp/sntp/libopts/putshell.c projects/release-install-debug/contrib/ntp/sntp/libopts/restore.c projects/release-install-debug/contrib/ntp/sntp/libopts/save.c projects/release-install-debug/contrib/ntp/sntp/libopts/sort.c projects/release-install-debug/contrib/ntp/sntp/libopts/stack.c projects/release-install-debug/contrib/ntp/sntp/libopts/streqvcmp.c projects/release-install-debug/contrib/ntp/sntp/libopts/text_mmap.c projects/release-install-debug/contrib/ntp/sntp/libopts/tokenize.c projects/release-install-debug/contrib/ntp/sntp/libopts/usage.c projects/release-install-debug/contrib/ntp/sntp/libopts/version.c projects/release-install-debug/contrib/ntp/sntp/ltmain.sh projects/release-install-debug/contrib/ntp/sntp/main.c (contents, props changed) projects/release-install-debug/contrib/ntp/sntp/sntp-opts.c projects/release-install-debug/contrib/ntp/sntp/sntp-opts.def projects/release-install-debug/contrib/ntp/sntp/sntp-opts.h projects/release-install-debug/contrib/ntp/util/Makefile.am (contents, props changed) projects/release-install-debug/contrib/ntp/util/Makefile.in (contents, props changed) projects/release-install-debug/contrib/ntp/util/README (contents, props changed) projects/release-install-debug/contrib/ntp/util/audio-pcm.c (contents, props changed) projects/release-install-debug/contrib/ntp/util/hist.c (contents, props changed) projects/release-install-debug/contrib/ntp/util/jitter.c (contents, props changed) projects/release-install-debug/contrib/ntp/util/jitter.h projects/release-install-debug/contrib/ntp/util/ntp-keygen-opts.c projects/release-install-debug/contrib/ntp/util/ntp-keygen-opts.def projects/release-install-debug/contrib/ntp/util/ntp-keygen-opts.h projects/release-install-debug/contrib/ntp/util/ntp-keygen.c (contents, props changed) projects/release-install-debug/contrib/ntp/util/ntptime.c (contents, props changed) projects/release-install-debug/contrib/ntp/util/sht.c (contents, props changed) projects/release-install-debug/contrib/ntp/util/tg.c projects/release-install-debug/contrib/ntp/util/tickadj.c (contents, props changed) projects/release-install-debug/contrib/nvi/README projects/release-install-debug/contrib/nvi/catalog/dump.c projects/release-install-debug/contrib/nvi/cl/cl.h projects/release-install-debug/contrib/nvi/cl/cl_funcs.c projects/release-install-debug/contrib/nvi/cl/cl_main.c projects/release-install-debug/contrib/nvi/cl/cl_read.c projects/release-install-debug/contrib/nvi/cl/cl_screen.c projects/release-install-debug/contrib/nvi/cl/cl_term.c projects/release-install-debug/contrib/nvi/cl/extern.h projects/release-install-debug/contrib/nvi/common/common.h projects/release-install-debug/contrib/nvi/common/conv.c projects/release-install-debug/contrib/nvi/common/cut.c projects/release-install-debug/contrib/nvi/common/delete.c projects/release-install-debug/contrib/nvi/common/encoding.c projects/release-install-debug/contrib/nvi/common/exf.c projects/release-install-debug/contrib/nvi/common/extern.h projects/release-install-debug/contrib/nvi/common/gs.h projects/release-install-debug/contrib/nvi/common/key.c projects/release-install-debug/contrib/nvi/common/line.c projects/release-install-debug/contrib/nvi/common/log.c projects/release-install-debug/contrib/nvi/common/main.c projects/release-install-debug/contrib/nvi/common/mark.c projects/release-install-debug/contrib/nvi/common/msg.c projects/release-install-debug/contrib/nvi/common/options.c projects/release-install-debug/contrib/nvi/common/options.h projects/release-install-debug/contrib/nvi/common/options_f.c projects/release-install-debug/contrib/nvi/common/put.c projects/release-install-debug/contrib/nvi/common/recover.c projects/release-install-debug/contrib/nvi/common/screen.c projects/release-install-debug/contrib/nvi/common/search.c projects/release-install-debug/contrib/nvi/common/seq.c projects/release-install-debug/contrib/nvi/common/util.c projects/release-install-debug/contrib/nvi/ex/ex.c projects/release-install-debug/contrib/nvi/ex/ex.h projects/release-install-debug/contrib/nvi/ex/ex_abbrev.c projects/release-install-debug/contrib/nvi/ex/ex_append.c projects/release-install-debug/contrib/nvi/ex/ex_args.c projects/release-install-debug/contrib/nvi/ex/ex_argv.c projects/release-install-debug/contrib/nvi/ex/ex_at.c projects/release-install-debug/contrib/nvi/ex/ex_bang.c projects/release-install-debug/contrib/nvi/ex/ex_cd.c projects/release-install-debug/contrib/nvi/ex/ex_cscope.c projects/release-install-debug/contrib/nvi/ex/ex_delete.c projects/release-install-debug/contrib/nvi/ex/ex_display.c projects/release-install-debug/contrib/nvi/ex/ex_edit.c projects/release-install-debug/contrib/nvi/ex/ex_equal.c projects/release-install-debug/contrib/nvi/ex/ex_file.c projects/release-install-debug/contrib/nvi/ex/ex_filter.c projects/release-install-debug/contrib/nvi/ex/ex_global.c projects/release-install-debug/contrib/nvi/ex/ex_init.c projects/release-install-debug/contrib/nvi/ex/ex_join.c projects/release-install-debug/contrib/nvi/ex/ex_map.c projects/release-install-debug/contrib/nvi/ex/ex_mark.c projects/release-install-debug/contrib/nvi/ex/ex_mkexrc.c projects/release-install-debug/contrib/nvi/ex/ex_move.c projects/release-install-debug/contrib/nvi/ex/ex_open.c projects/release-install-debug/contrib/nvi/ex/ex_preserve.c projects/release-install-debug/contrib/nvi/ex/ex_print.c projects/release-install-debug/contrib/nvi/ex/ex_put.c projects/release-install-debug/contrib/nvi/ex/ex_quit.c projects/release-install-debug/contrib/nvi/ex/ex_read.c projects/release-install-debug/contrib/nvi/ex/ex_screen.c projects/release-install-debug/contrib/nvi/ex/ex_script.c projects/release-install-debug/contrib/nvi/ex/ex_set.c projects/release-install-debug/contrib/nvi/ex/ex_shell.c projects/release-install-debug/contrib/nvi/ex/ex_shift.c projects/release-install-debug/contrib/nvi/ex/ex_source.c projects/release-install-debug/contrib/nvi/ex/ex_stop.c projects/release-install-debug/contrib/nvi/ex/ex_subst.c projects/release-install-debug/contrib/nvi/ex/ex_tag.c projects/release-install-debug/contrib/nvi/ex/ex_txt.c projects/release-install-debug/contrib/nvi/ex/ex_undo.c projects/release-install-debug/contrib/nvi/ex/ex_usage.c projects/release-install-debug/contrib/nvi/ex/ex_util.c projects/release-install-debug/contrib/nvi/ex/ex_version.c projects/release-install-debug/contrib/nvi/ex/ex_visual.c projects/release-install-debug/contrib/nvi/ex/ex_write.c projects/release-install-debug/contrib/nvi/ex/ex_yank.c projects/release-install-debug/contrib/nvi/ex/ex_z.c projects/release-install-debug/contrib/nvi/ex/extern.h projects/release-install-debug/contrib/nvi/ex/version.h projects/release-install-debug/contrib/nvi/regex/COPYRIGHT projects/release-install-debug/contrib/nvi/regex/cclass.h projects/release-install-debug/contrib/nvi/regex/cname.h projects/release-install-debug/contrib/nvi/regex/engine.c projects/release-install-debug/contrib/nvi/regex/re_format.7 projects/release-install-debug/contrib/nvi/regex/regcomp.c projects/release-install-debug/contrib/nvi/regex/regerror.c projects/release-install-debug/contrib/nvi/regex/regex.3 projects/release-install-debug/contrib/nvi/regex/regex.h projects/release-install-debug/contrib/nvi/regex/regex2.h projects/release-install-debug/contrib/nvi/regex/regexec.c projects/release-install-debug/contrib/nvi/regex/regfree.c projects/release-install-debug/contrib/nvi/regex/utils.h projects/release-install-debug/contrib/nvi/vi/extern.h projects/release-install-debug/contrib/nvi/vi/getc.c projects/release-install-debug/contrib/nvi/vi/v_at.c projects/release-install-debug/contrib/nvi/vi/v_ch.c projects/release-install-debug/contrib/nvi/vi/v_delete.c projects/release-install-debug/contrib/nvi/vi/v_ex.c projects/release-install-debug/contrib/nvi/vi/v_increment.c projects/release-install-debug/contrib/nvi/vi/v_init.c projects/release-install-debug/contrib/nvi/vi/v_itxt.c projects/release-install-debug/contrib/nvi/vi/v_left.c projects/release-install-debug/contrib/nvi/vi/v_mark.c projects/release-install-debug/contrib/nvi/vi/v_match.c projects/release-install-debug/contrib/nvi/vi/v_paragraph.c projects/release-install-debug/contrib/nvi/vi/v_put.c projects/release-install-debug/contrib/nvi/vi/v_redraw.c projects/release-install-debug/contrib/nvi/vi/v_replace.c projects/release-install-debug/contrib/nvi/vi/v_right.c projects/release-install-debug/contrib/nvi/vi/v_screen.c projects/release-install-debug/contrib/nvi/vi/v_scroll.c projects/release-install-debug/contrib/nvi/vi/v_search.c projects/release-install-debug/contrib/nvi/vi/v_section.c projects/release-install-debug/contrib/nvi/vi/v_sentence.c projects/release-install-debug/contrib/nvi/vi/v_status.c projects/release-install-debug/contrib/nvi/vi/v_txt.c projects/release-install-debug/contrib/nvi/vi/v_ulcase.c projects/release-install-debug/contrib/nvi/vi/v_undo.c projects/release-install-debug/contrib/nvi/vi/v_util.c projects/release-install-debug/contrib/nvi/vi/v_word.c projects/release-install-debug/contrib/nvi/vi/v_xchar.c projects/release-install-debug/contrib/nvi/vi/v_yank.c projects/release-install-debug/contrib/nvi/vi/v_z.c projects/release-install-debug/contrib/nvi/vi/v_zexit.c projects/release-install-debug/contrib/nvi/vi/vi.c projects/release-install-debug/contrib/nvi/vi/vi.h projects/release-install-debug/contrib/nvi/vi/vs_line.c projects/release-install-debug/contrib/nvi/vi/vs_msg.c projects/release-install-debug/contrib/nvi/vi/vs_refresh.c projects/release-install-debug/contrib/nvi/vi/vs_relative.c projects/release-install-debug/contrib/nvi/vi/vs_smap.c projects/release-install-debug/contrib/nvi/vi/vs_split.c projects/release-install-debug/contrib/ofed/libibverbs/examples/build/Makefile.inc projects/release-install-debug/contrib/ofed/librdmacm/examples/build/Makefile.inc projects/release-install-debug/contrib/openpam/CREDITS projects/release-install-debug/contrib/openpam/configure.ac projects/release-install-debug/contrib/openpam/lib/libpam/openpam_dispatch.c projects/release-install-debug/contrib/openpam/modules/pam_unix/pam_unix.c projects/release-install-debug/contrib/pjdfstest/tests/open/20.t projects/release-install-debug/contrib/pjdfstest/tests/truncate/11.t projects/release-install-debug/contrib/sendmail/src/readcf.c projects/release-install-debug/contrib/smbfs/include/netsmb/smb_lib.h projects/release-install-debug/contrib/smbfs/lib/smb/nls.c projects/release-install-debug/contrib/smbfs/lib/smb/print.c projects/release-install-debug/contrib/smbfs/lib/smb/rq.c projects/release-install-debug/contrib/tzdata/antarctica projects/release-install-debug/contrib/tzdata/asia projects/release-install-debug/contrib/tzdata/australasia projects/release-install-debug/contrib/tzdata/backward projects/release-install-debug/contrib/tzdata/europe projects/release-install-debug/contrib/tzdata/leap-seconds.list projects/release-install-debug/contrib/tzdata/northamerica projects/release-install-debug/contrib/tzdata/southamerica projects/release-install-debug/contrib/tzdata/zone.tab projects/release-install-debug/contrib/tzdata/zone1970.tab projects/release-install-debug/contrib/wpa/COPYING projects/release-install-debug/contrib/wpa/README projects/release-install-debug/contrib/wpa/hostapd/ChangeLog projects/release-install-debug/contrib/wpa/hostapd/README projects/release-install-debug/contrib/wpa/hostapd/README-WPS projects/release-install-debug/contrib/wpa/hostapd/config_file.c projects/release-install-debug/contrib/wpa/hostapd/ctrl_iface.c projects/release-install-debug/contrib/wpa/hostapd/defconfig projects/release-install-debug/contrib/wpa/hostapd/eap_register.c projects/release-install-debug/contrib/wpa/hostapd/hlr_auc_gw.c projects/release-install-debug/contrib/wpa/hostapd/hostapd.8 projects/release-install-debug/contrib/wpa/hostapd/hostapd.conf projects/release-install-debug/contrib/wpa/hostapd/hostapd.eap_user projects/release-install-debug/contrib/wpa/hostapd/hostapd.eap_user_sqlite projects/release-install-debug/contrib/wpa/hostapd/hostapd_cli.c projects/release-install-debug/contrib/wpa/hostapd/main.c projects/release-install-debug/contrib/wpa/src/ap/accounting.c projects/release-install-debug/contrib/wpa/src/ap/ap_config.c projects/release-install-debug/contrib/wpa/src/ap/ap_config.h projects/release-install-debug/contrib/wpa/src/ap/ap_drv_ops.c projects/release-install-debug/contrib/wpa/src/ap/ap_drv_ops.h projects/release-install-debug/contrib/wpa/src/ap/ap_list.c projects/release-install-debug/contrib/wpa/src/ap/ap_list.h projects/release-install-debug/contrib/wpa/src/ap/ap_mlme.c projects/release-install-debug/contrib/wpa/src/ap/authsrv.c projects/release-install-debug/contrib/wpa/src/ap/beacon.c projects/release-install-debug/contrib/wpa/src/ap/beacon.h projects/release-install-debug/contrib/wpa/src/ap/ctrl_iface_ap.c projects/release-install-debug/contrib/wpa/src/ap/ctrl_iface_ap.h projects/release-install-debug/contrib/wpa/src/ap/drv_callbacks.c projects/release-install-debug/contrib/wpa/src/ap/eap_user_db.c projects/release-install-debug/contrib/wpa/src/ap/gas_serv.c projects/release-install-debug/contrib/wpa/src/ap/gas_serv.h projects/release-install-debug/contrib/wpa/src/ap/hostapd.c projects/release-install-debug/contrib/wpa/src/ap/hostapd.h projects/release-install-debug/contrib/wpa/src/ap/hs20.c projects/release-install-debug/contrib/wpa/src/ap/hs20.h projects/release-install-debug/contrib/wpa/src/ap/hw_features.c projects/release-install-debug/contrib/wpa/src/ap/hw_features.h projects/release-install-debug/contrib/wpa/src/ap/iapp.c projects/release-install-debug/contrib/wpa/src/ap/ieee802_11.c projects/release-install-debug/contrib/wpa/src/ap/ieee802_11.h projects/release-install-debug/contrib/wpa/src/ap/ieee802_11_auth.c projects/release-install-debug/contrib/wpa/src/ap/ieee802_11_ht.c projects/release-install-debug/contrib/wpa/src/ap/ieee802_11_shared.c projects/release-install-debug/contrib/wpa/src/ap/ieee802_11_vht.c projects/release-install-debug/contrib/wpa/src/ap/ieee802_1x.c projects/release-install-debug/contrib/wpa/src/ap/ieee802_1x.h projects/release-install-debug/contrib/wpa/src/ap/p2p_hostapd.c projects/release-install-debug/contrib/wpa/src/ap/peerkey_auth.c projects/release-install-debug/contrib/wpa/src/ap/pmksa_cache_auth.c projects/release-install-debug/contrib/wpa/src/ap/pmksa_cache_auth.h projects/release-install-debug/contrib/wpa/src/ap/sta_info.c projects/release-install-debug/contrib/wpa/src/ap/sta_info.h projects/release-install-debug/contrib/wpa/src/ap/tkip_countermeasures.c projects/release-install-debug/contrib/wpa/src/ap/vlan_init.c projects/release-install-debug/contrib/wpa/src/ap/vlan_init.h projects/release-install-debug/contrib/wpa/src/ap/wmm.c projects/release-install-debug/contrib/wpa/src/ap/wmm.h projects/release-install-debug/contrib/wpa/src/ap/wnm_ap.c projects/release-install-debug/contrib/wpa/src/ap/wnm_ap.h projects/release-install-debug/contrib/wpa/src/ap/wpa_auth.c projects/release-install-debug/contrib/wpa/src/ap/wpa_auth.h projects/release-install-debug/contrib/wpa/src/ap/wpa_auth_ft.c projects/release-install-debug/contrib/wpa/src/ap/wpa_auth_glue.c projects/release-install-debug/contrib/wpa/src/ap/wpa_auth_i.h projects/release-install-debug/contrib/wpa/src/ap/wpa_auth_ie.c projects/release-install-debug/contrib/wpa/src/ap/wpa_auth_ie.h projects/release-install-debug/contrib/wpa/src/ap/wps_hostapd.c projects/release-install-debug/contrib/wpa/src/ap/wps_hostapd.h projects/release-install-debug/contrib/wpa/src/common/defs.h projects/release-install-debug/contrib/wpa/src/common/eapol_common.h projects/release-install-debug/contrib/wpa/src/common/ieee802_11_common.c projects/release-install-debug/contrib/wpa/src/common/ieee802_11_common.h projects/release-install-debug/contrib/wpa/src/common/ieee802_11_defs.h projects/release-install-debug/contrib/wpa/src/common/privsep_commands.h projects/release-install-debug/contrib/wpa/src/common/version.h projects/release-install-debug/contrib/wpa/src/common/wpa_common.c projects/release-install-debug/contrib/wpa/src/common/wpa_common.h projects/release-install-debug/contrib/wpa/src/common/wpa_ctrl.c projects/release-install-debug/contrib/wpa/src/common/wpa_ctrl.h projects/release-install-debug/contrib/wpa/src/crypto/aes-ccm.c projects/release-install-debug/contrib/wpa/src/crypto/aes-eax.c projects/release-install-debug/contrib/wpa/src/crypto/aes-gcm.c projects/release-install-debug/contrib/wpa/src/crypto/aes-omac1.c projects/release-install-debug/contrib/wpa/src/crypto/aes-unwrap.c projects/release-install-debug/contrib/wpa/src/crypto/aes-wrap.c projects/release-install-debug/contrib/wpa/src/crypto/aes_wrap.h projects/release-install-debug/contrib/wpa/src/crypto/crypto.h projects/release-install-debug/contrib/wpa/src/crypto/crypto_internal-rsa.c projects/release-install-debug/contrib/wpa/src/crypto/crypto_openssl.c projects/release-install-debug/contrib/wpa/src/crypto/dh_groups.c projects/release-install-debug/contrib/wpa/src/crypto/dh_groups.h projects/release-install-debug/contrib/wpa/src/crypto/md5.c projects/release-install-debug/contrib/wpa/src/crypto/milenage.c projects/release-install-debug/contrib/wpa/src/crypto/ms_funcs.c projects/release-install-debug/contrib/wpa/src/crypto/random.c projects/release-install-debug/contrib/wpa/src/crypto/sha1-internal.c projects/release-install-debug/contrib/wpa/src/crypto/sha1-prf.c projects/release-install-debug/contrib/wpa/src/crypto/sha1.c projects/release-install-debug/contrib/wpa/src/crypto/sha256-prf.c projects/release-install-debug/contrib/wpa/src/crypto/sha256.h projects/release-install-debug/contrib/wpa/src/crypto/tls.h projects/release-install-debug/contrib/wpa/src/crypto/tls_gnutls.c projects/release-install-debug/contrib/wpa/src/crypto/tls_internal.c projects/release-install-debug/contrib/wpa/src/crypto/tls_none.c projects/release-install-debug/contrib/wpa/src/crypto/tls_openssl.c projects/release-install-debug/contrib/wpa/src/crypto/tls_schannel.c projects/release-install-debug/contrib/wpa/src/drivers/driver.h projects/release-install-debug/contrib/wpa/src/drivers/driver_bsd.c projects/release-install-debug/contrib/wpa/src/drivers/driver_common.c projects/release-install-debug/contrib/wpa/src/drivers/driver_ndis.c projects/release-install-debug/contrib/wpa/src/drivers/driver_privsep.c projects/release-install-debug/contrib/wpa/src/drivers/driver_wired.c projects/release-install-debug/contrib/wpa/src/drivers/drivers.c projects/release-install-debug/contrib/wpa/src/eap_common/eap_common.c projects/release-install-debug/contrib/wpa/src/eap_common/eap_common.h projects/release-install-debug/contrib/wpa/src/eap_common/eap_defs.h projects/release-install-debug/contrib/wpa/src/eap_common/eap_fast_common.c projects/release-install-debug/contrib/wpa/src/eap_common/eap_fast_common.h projects/release-install-debug/contrib/wpa/src/eap_common/eap_gpsk_common.c projects/release-install-debug/contrib/wpa/src/eap_common/eap_gpsk_common.h projects/release-install-debug/contrib/wpa/src/eap_common/eap_ikev2_common.c projects/release-install-debug/contrib/wpa/src/eap_common/eap_ikev2_common.h projects/release-install-debug/contrib/wpa/src/eap_common/eap_pax_common.c projects/release-install-debug/contrib/wpa/src/eap_common/eap_pax_common.h projects/release-install-debug/contrib/wpa/src/eap_common/eap_pwd_common.c projects/release-install-debug/contrib/wpa/src/eap_common/eap_pwd_common.h projects/release-install-debug/contrib/wpa/src/eap_common/eap_sim_common.c projects/release-install-debug/contrib/wpa/src/eap_common/eap_sim_common.h projects/release-install-debug/contrib/wpa/src/eap_common/ikev2_common.c projects/release-install-debug/contrib/wpa/src/eap_common/ikev2_common.h projects/release-install-debug/contrib/wpa/src/eap_peer/eap.c projects/release-install-debug/contrib/wpa/src/eap_peer/eap.h projects/release-install-debug/contrib/wpa/src/eap_peer/eap_aka.c projects/release-install-debug/contrib/wpa/src/eap_peer/eap_config.h projects/release-install-debug/contrib/wpa/src/eap_peer/eap_fast.c projects/release-install-debug/contrib/wpa/src/eap_peer/eap_fast_pac.c projects/release-install-debug/contrib/wpa/src/eap_peer/eap_gpsk.c projects/release-install-debug/contrib/wpa/src/eap_peer/eap_i.h projects/release-install-debug/contrib/wpa/src/eap_peer/eap_ikev2.c projects/release-install-debug/contrib/wpa/src/eap_peer/eap_leap.c projects/release-install-debug/contrib/wpa/src/eap_peer/eap_methods.c projects/release-install-debug/contrib/wpa/src/eap_peer/eap_methods.h projects/release-install-debug/contrib/wpa/src/eap_peer/eap_mschapv2.c projects/release-install-debug/contrib/wpa/src/eap_peer/eap_pax.c projects/release-install-debug/contrib/wpa/src/eap_peer/eap_peap.c projects/release-install-debug/contrib/wpa/src/eap_peer/eap_psk.c projects/release-install-debug/contrib/wpa/src/eap_peer/eap_pwd.c projects/release-install-debug/contrib/wpa/src/eap_peer/eap_sake.c projects/release-install-debug/contrib/wpa/src/eap_peer/eap_sim.c projects/release-install-debug/contrib/wpa/src/eap_peer/eap_tls.c projects/release-install-debug/contrib/wpa/src/eap_peer/eap_tls_common.c projects/release-install-debug/contrib/wpa/src/eap_peer/eap_tls_common.h projects/release-install-debug/contrib/wpa/src/eap_peer/eap_tnc.c projects/release-install-debug/contrib/wpa/src/eap_peer/eap_ttls.c projects/release-install-debug/contrib/wpa/src/eap_peer/eap_vendor_test.c projects/release-install-debug/contrib/wpa/src/eap_peer/eap_wsc.c projects/release-install-debug/contrib/wpa/src/eap_peer/ikev2.c projects/release-install-debug/contrib/wpa/src/eap_peer/mschapv2.c projects/release-install-debug/contrib/wpa/src/eap_peer/tncc.c projects/release-install-debug/contrib/wpa/src/eap_server/eap.h projects/release-install-debug/contrib/wpa/src/eap_server/eap_i.h projects/release-install-debug/contrib/wpa/src/eap_server/eap_methods.h projects/release-install-debug/contrib/wpa/src/eap_server/eap_server.c projects/release-install-debug/contrib/wpa/src/eap_server/eap_server_aka.c projects/release-install-debug/contrib/wpa/src/eap_server/eap_server_fast.c projects/release-install-debug/contrib/wpa/src/eap_server/eap_server_gpsk.c projects/release-install-debug/contrib/wpa/src/eap_server/eap_server_gtc.c projects/release-install-debug/contrib/wpa/src/eap_server/eap_server_identity.c projects/release-install-debug/contrib/wpa/src/eap_server/eap_server_ikev2.c projects/release-install-debug/contrib/wpa/src/eap_server/eap_server_md5.c projects/release-install-debug/contrib/wpa/src/eap_server/eap_server_methods.c projects/release-install-debug/contrib/wpa/src/eap_server/eap_server_mschapv2.c projects/release-install-debug/contrib/wpa/src/eap_server/eap_server_pax.c projects/release-install-debug/contrib/wpa/src/eap_server/eap_server_peap.c projects/release-install-debug/contrib/wpa/src/eap_server/eap_server_psk.c projects/release-install-debug/contrib/wpa/src/eap_server/eap_server_pwd.c projects/release-install-debug/contrib/wpa/src/eap_server/eap_server_sake.c projects/release-install-debug/contrib/wpa/src/eap_server/eap_server_sim.c projects/release-install-debug/contrib/wpa/src/eap_server/eap_server_tls.c projects/release-install-debug/contrib/wpa/src/eap_server/eap_server_tls_common.c projects/release-install-debug/contrib/wpa/src/eap_server/eap_server_tnc.c projects/release-install-debug/contrib/wpa/src/eap_server/eap_server_ttls.c projects/release-install-debug/contrib/wpa/src/eap_server/eap_server_wsc.c projects/release-install-debug/contrib/wpa/src/eap_server/eap_sim_db.c projects/release-install-debug/contrib/wpa/src/eap_server/eap_tls_common.h projects/release-install-debug/contrib/wpa/src/eap_server/ikev2.c projects/release-install-debug/contrib/wpa/src/eap_server/tncs.c projects/release-install-debug/contrib/wpa/src/eapol_auth/eapol_auth_dump.c projects/release-install-debug/contrib/wpa/src/eapol_auth/eapol_auth_sm.c projects/release-install-debug/contrib/wpa/src/eapol_auth/eapol_auth_sm.h projects/release-install-debug/contrib/wpa/src/eapol_auth/eapol_auth_sm_i.h projects/release-install-debug/contrib/wpa/src/eapol_supp/eapol_supp_sm.c projects/release-install-debug/contrib/wpa/src/eapol_supp/eapol_supp_sm.h projects/release-install-debug/contrib/wpa/src/l2_packet/l2_packet.h projects/release-install-debug/contrib/wpa/src/l2_packet/l2_packet_freebsd.c projects/release-install-debug/contrib/wpa/src/l2_packet/l2_packet_ndis.c projects/release-install-debug/contrib/wpa/src/l2_packet/l2_packet_none.c projects/release-install-debug/contrib/wpa/src/l2_packet/l2_packet_privsep.c projects/release-install-debug/contrib/wpa/src/p2p/p2p.c projects/release-install-debug/contrib/wpa/src/p2p/p2p.h projects/release-install-debug/contrib/wpa/src/p2p/p2p_build.c projects/release-install-debug/contrib/wpa/src/p2p/p2p_dev_disc.c projects/release-install-debug/contrib/wpa/src/p2p/p2p_go_neg.c projects/release-install-debug/contrib/wpa/src/p2p/p2p_group.c projects/release-install-debug/contrib/wpa/src/p2p/p2p_i.h projects/release-install-debug/contrib/wpa/src/p2p/p2p_invitation.c projects/release-install-debug/contrib/wpa/src/p2p/p2p_parse.c projects/release-install-debug/contrib/wpa/src/p2p/p2p_pd.c projects/release-install-debug/contrib/wpa/src/p2p/p2p_sd.c projects/release-install-debug/contrib/wpa/src/p2p/p2p_utils.c projects/release-install-debug/contrib/wpa/src/radius/radius.c projects/release-install-debug/contrib/wpa/src/radius/radius.h projects/release-install-debug/contrib/wpa/src/radius/radius_client.c projects/release-install-debug/contrib/wpa/src/radius/radius_das.c projects/release-install-debug/contrib/wpa/src/radius/radius_das.h projects/release-install-debug/contrib/wpa/src/radius/radius_server.c projects/release-install-debug/contrib/wpa/src/radius/radius_server.h projects/release-install-debug/contrib/wpa/src/rsn_supp/peerkey.c projects/release-install-debug/contrib/wpa/src/rsn_supp/peerkey.h projects/release-install-debug/contrib/wpa/src/rsn_supp/pmksa_cache.c projects/release-install-debug/contrib/wpa/src/rsn_supp/pmksa_cache.h projects/release-install-debug/contrib/wpa/src/rsn_supp/preauth.c projects/release-install-debug/contrib/wpa/src/rsn_supp/preauth.h projects/release-install-debug/contrib/wpa/src/rsn_supp/tdls.c projects/release-install-debug/contrib/wpa/src/rsn_supp/wpa.c projects/release-install-debug/contrib/wpa/src/rsn_supp/wpa.h projects/release-install-debug/contrib/wpa/src/rsn_supp/wpa_ft.c projects/release-install-debug/contrib/wpa/src/rsn_supp/wpa_i.h projects/release-install-debug/contrib/wpa/src/rsn_supp/wpa_ie.c projects/release-install-debug/contrib/wpa/src/rsn_supp/wpa_ie.h projects/release-install-debug/contrib/wpa/src/tls/asn1.c projects/release-install-debug/contrib/wpa/src/tls/asn1.h projects/release-install-debug/contrib/wpa/src/tls/libtommath.c projects/release-install-debug/contrib/wpa/src/tls/pkcs1.c projects/release-install-debug/contrib/wpa/src/tls/pkcs1.h projects/release-install-debug/contrib/wpa/src/tls/rsa.c projects/release-install-debug/contrib/wpa/src/tls/rsa.h projects/release-install-debug/contrib/wpa/src/tls/tlsv1_client.c projects/release-install-debug/contrib/wpa/src/tls/tlsv1_client_read.c projects/release-install-debug/contrib/wpa/src/tls/tlsv1_client_write.c projects/release-install-debug/contrib/wpa/src/tls/tlsv1_common.c projects/release-install-debug/contrib/wpa/src/tls/tlsv1_common.h projects/release-install-debug/contrib/wpa/src/tls/tlsv1_record.c projects/release-install-debug/contrib/wpa/src/tls/tlsv1_server.c projects/release-install-debug/contrib/wpa/src/tls/tlsv1_server.h projects/release-install-debug/contrib/wpa/src/tls/tlsv1_server_i.h projects/release-install-debug/contrib/wpa/src/tls/tlsv1_server_read.c projects/release-install-debug/contrib/wpa/src/tls/tlsv1_server_write.c projects/release-install-debug/contrib/wpa/src/tls/x509v3.c projects/release-install-debug/contrib/wpa/src/utils/base64.c projects/release-install-debug/contrib/wpa/src/utils/build_config.h projects/release-install-debug/contrib/wpa/src/utils/common.c projects/release-install-debug/contrib/wpa/src/utils/common.h projects/release-install-debug/contrib/wpa/src/utils/edit.c projects/release-install-debug/contrib/wpa/src/utils/edit_readline.c projects/release-install-debug/contrib/wpa/src/utils/edit_simple.c projects/release-install-debug/contrib/wpa/src/utils/eloop.c projects/release-install-debug/contrib/wpa/src/utils/eloop.h projects/release-install-debug/contrib/wpa/src/utils/eloop_win.c projects/release-install-debug/contrib/wpa/src/utils/ext_password_test.c projects/release-install-debug/contrib/wpa/src/utils/ip_addr.c projects/release-install-debug/contrib/wpa/src/utils/ip_addr.h projects/release-install-debug/contrib/wpa/src/utils/list.h projects/release-install-debug/contrib/wpa/src/utils/os.h projects/release-install-debug/contrib/wpa/src/utils/os_internal.c projects/release-install-debug/contrib/wpa/src/utils/os_none.c projects/release-install-debug/contrib/wpa/src/utils/os_unix.c projects/release-install-debug/contrib/wpa/src/utils/os_win32.c projects/release-install-debug/contrib/wpa/src/utils/pcsc_funcs.c projects/release-install-debug/contrib/wpa/src/utils/pcsc_funcs.h projects/release-install-debug/contrib/wpa/src/utils/radiotap.c projects/release-install-debug/contrib/wpa/src/utils/radiotap.h projects/release-install-debug/contrib/wpa/src/utils/radiotap_iter.h projects/release-install-debug/contrib/wpa/src/utils/trace.c projects/release-install-debug/contrib/wpa/src/utils/trace.h projects/release-install-debug/contrib/wpa/src/utils/uuid.c projects/release-install-debug/contrib/wpa/src/utils/wpa_debug.c projects/release-install-debug/contrib/wpa/src/utils/wpa_debug.h projects/release-install-debug/contrib/wpa/src/utils/wpabuf.c projects/release-install-debug/contrib/wpa/src/utils/wpabuf.h projects/release-install-debug/contrib/wpa/src/wps/http_client.c projects/release-install-debug/contrib/wpa/src/wps/http_server.c projects/release-install-debug/contrib/wpa/src/wps/httpread.c projects/release-install-debug/contrib/wpa/src/wps/ndef.c projects/release-install-debug/contrib/wpa/src/wps/wps.c projects/release-install-debug/contrib/wpa/src/wps/wps.h projects/release-install-debug/contrib/wpa/src/wps/wps_attr_build.c projects/release-install-debug/contrib/wpa/src/wps/wps_attr_parse.c projects/release-install-debug/contrib/wpa/src/wps/wps_attr_parse.h projects/release-install-debug/contrib/wpa/src/wps/wps_attr_process.c projects/release-install-debug/contrib/wpa/src/wps/wps_common.c projects/release-install-debug/contrib/wpa/src/wps/wps_defs.h projects/release-install-debug/contrib/wpa/src/wps/wps_dev_attr.c projects/release-install-debug/contrib/wpa/src/wps/wps_dev_attr.h projects/release-install-debug/contrib/wpa/src/wps/wps_enrollee.c projects/release-install-debug/contrib/wpa/src/wps/wps_er.c projects/release-install-debug/contrib/wpa/src/wps/wps_er.h projects/release-install-debug/contrib/wpa/src/wps/wps_er_ssdp.c projects/release-install-debug/contrib/wpa/src/wps/wps_i.h projects/release-install-debug/contrib/wpa/src/wps/wps_registrar.c projects/release-install-debug/contrib/wpa/src/wps/wps_upnp.c projects/release-install-debug/contrib/wpa/src/wps/wps_upnp_ap.c projects/release-install-debug/contrib/wpa/src/wps/wps_upnp_i.h projects/release-install-debug/contrib/wpa/src/wps/wps_upnp_ssdp.c projects/release-install-debug/contrib/wpa/src/wps/wps_upnp_web.c projects/release-install-debug/contrib/wpa/src/wps/wps_validate.c projects/release-install-debug/contrib/wpa/wpa_supplicant/ChangeLog projects/release-install-debug/contrib/wpa/wpa_supplicant/README projects/release-install-debug/contrib/wpa/wpa_supplicant/README-HS20 projects/release-install-debug/contrib/wpa/wpa_supplicant/README-P2P projects/release-install-debug/contrib/wpa/wpa_supplicant/README-WPS projects/release-install-debug/contrib/wpa/wpa_supplicant/ap.c projects/release-install-debug/contrib/wpa/wpa_supplicant/ap.h projects/release-install-debug/contrib/wpa/wpa_supplicant/bgscan.c projects/release-install-debug/contrib/wpa/wpa_supplicant/bgscan.h projects/release-install-debug/contrib/wpa/wpa_supplicant/bgscan_learn.c projects/release-install-debug/contrib/wpa/wpa_supplicant/bgscan_simple.c projects/release-install-debug/contrib/wpa/wpa_supplicant/bss.c projects/release-install-debug/contrib/wpa/wpa_supplicant/bss.h projects/release-install-debug/contrib/wpa/wpa_supplicant/config.c projects/release-install-debug/contrib/wpa/wpa_supplicant/config.h projects/release-install-debug/contrib/wpa/wpa_supplicant/config_file.c projects/release-install-debug/contrib/wpa/wpa_supplicant/config_none.c projects/release-install-debug/contrib/wpa/wpa_supplicant/config_ssid.h projects/release-install-debug/contrib/wpa/wpa_supplicant/ctrl_iface.c projects/release-install-debug/contrib/wpa/wpa_supplicant/ctrl_iface.h projects/release-install-debug/contrib/wpa/wpa_supplicant/ctrl_iface_named_pipe.c projects/release-install-debug/contrib/wpa/wpa_supplicant/ctrl_iface_udp.c projects/release-install-debug/contrib/wpa/wpa_supplicant/ctrl_iface_unix.c projects/release-install-debug/contrib/wpa/wpa_supplicant/dbus/Makefile projects/release-install-debug/contrib/wpa/wpa_supplicant/dbus/dbus_common.c projects/release-install-debug/contrib/wpa/wpa_supplicant/dbus/dbus_dict_helpers.c projects/release-install-debug/contrib/wpa/wpa_supplicant/dbus/dbus_dict_helpers.h projects/release-install-debug/contrib/wpa/wpa_supplicant/dbus/dbus_new.c projects/release-install-debug/contrib/wpa/wpa_supplicant/dbus/dbus_new.h projects/release-install-debug/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers.c projects/release-install-debug/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers.h projects/release-install-debug/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_p2p.c projects/release-install-debug/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_p2p.h projects/release-install-debug/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_wps.c projects/release-install-debug/contrib/wpa/wpa_supplicant/dbus/dbus_new_helpers.c projects/release-install-debug/contrib/wpa/wpa_supplicant/dbus/dbus_new_helpers.h projects/release-install-debug/contrib/wpa/wpa_supplicant/dbus/dbus_new_introspect.c projects/release-install-debug/contrib/wpa/wpa_supplicant/dbus/dbus_old.c projects/release-install-debug/contrib/wpa/wpa_supplicant/dbus/dbus_old.h projects/release-install-debug/contrib/wpa/wpa_supplicant/dbus/dbus_old_handlers.c projects/release-install-debug/contrib/wpa/wpa_supplicant/dbus/dbus_old_handlers.h projects/release-install-debug/contrib/wpa/wpa_supplicant/dbus/dbus_old_handlers_wps.c projects/release-install-debug/contrib/wpa/wpa_supplicant/defconfig projects/release-install-debug/contrib/wpa/wpa_supplicant/driver_i.h projects/release-install-debug/contrib/wpa/wpa_supplicant/eap_register.c projects/release-install-debug/contrib/wpa/wpa_supplicant/eapol_test.c projects/release-install-debug/contrib/wpa/wpa_supplicant/events.c projects/release-install-debug/contrib/wpa/wpa_supplicant/examples/p2p-action.sh projects/release-install-debug/contrib/wpa/wpa_supplicant/examples/wps-ap-cli projects/release-install-debug/contrib/wpa/wpa_supplicant/examples/wps-nfc.py projects/release-install-debug/contrib/wpa/wpa_supplicant/gas_query.c projects/release-install-debug/contrib/wpa/wpa_supplicant/gas_query.h projects/release-install-debug/contrib/wpa/wpa_supplicant/hs20_supplicant.c projects/release-install-debug/contrib/wpa/wpa_supplicant/hs20_supplicant.h projects/release-install-debug/contrib/wpa/wpa_supplicant/ibss_rsn.c projects/release-install-debug/contrib/wpa/wpa_supplicant/ibss_rsn.h projects/release-install-debug/contrib/wpa/wpa_supplicant/interworking.c projects/release-install-debug/contrib/wpa/wpa_supplicant/interworking.h projects/release-install-debug/contrib/wpa/wpa_supplicant/main.c projects/release-install-debug/contrib/wpa/wpa_supplicant/main_none.c projects/release-install-debug/contrib/wpa/wpa_supplicant/notify.c projects/release-install-debug/contrib/wpa/wpa_supplicant/notify.h projects/release-install-debug/contrib/wpa/wpa_supplicant/offchannel.c projects/release-install-debug/contrib/wpa/wpa_supplicant/p2p_supplicant.c projects/release-install-debug/contrib/wpa/wpa_supplicant/p2p_supplicant.h projects/release-install-debug/contrib/wpa/wpa_supplicant/preauth_test.c projects/release-install-debug/contrib/wpa/wpa_supplicant/scan.c projects/release-install-debug/contrib/wpa/wpa_supplicant/scan.h projects/release-install-debug/contrib/wpa/wpa_supplicant/sme.c projects/release-install-debug/contrib/wpa/wpa_supplicant/sme.h projects/release-install-debug/contrib/wpa/wpa_supplicant/tests/test_wpa.c projects/release-install-debug/contrib/wpa/wpa_supplicant/todo.txt projects/release-install-debug/contrib/wpa/wpa_supplicant/wifi_display.c projects/release-install-debug/contrib/wpa/wpa_supplicant/wifi_display.h projects/release-install-debug/contrib/wpa/wpa_supplicant/wnm_sta.c projects/release-install-debug/contrib/wpa/wpa_supplicant/wnm_sta.h projects/release-install-debug/contrib/wpa/wpa_supplicant/wpa_cli.c projects/release-install-debug/contrib/wpa/wpa_supplicant/wpa_priv.c projects/release-install-debug/contrib/wpa/wpa_supplicant/wpa_supplicant.c projects/release-install-debug/contrib/wpa/wpa_supplicant/wpa_supplicant.conf projects/release-install-debug/contrib/wpa/wpa_supplicant/wpa_supplicant_i.h projects/release-install-debug/contrib/wpa/wpa_supplicant/wpa_supplicant_template.conf projects/release-install-debug/contrib/wpa/wpa_supplicant/wpas_glue.c projects/release-install-debug/contrib/wpa/wpa_supplicant/wps_supplicant.c projects/release-install-debug/contrib/wpa/wpa_supplicant/wps_supplicant.h projects/release-install-debug/contrib/xz/ChangeLog projects/release-install-debug/contrib/xz/THANKS projects/release-install-debug/contrib/xz/src/common/tuklib_cpucores.c projects/release-install-debug/contrib/xz/src/common/tuklib_integer.h projects/release-install-debug/contrib/xz/src/liblzma/api/lzma/version.h projects/release-install-debug/contrib/xz/src/liblzma/common/memcmplen.h projects/release-install-debug/contrib/xz/src/liblzma/lz/lz_encoder.c projects/release-install-debug/contrib/xz/src/liblzma/lzma/lzma_encoder_optimum_fast.c projects/release-install-debug/contrib/xz/src/xz/file_io.c projects/release-install-debug/crypto/openssh/clientloop.c projects/release-install-debug/crypto/openssh/ssh_config.5 projects/release-install-debug/crypto/openssh/sshd_config.5 projects/release-install-debug/crypto/openssl/CHANGES projects/release-install-debug/crypto/openssl/Configure projects/release-install-debug/crypto/openssl/Makefile projects/release-install-debug/crypto/openssl/NEWS projects/release-install-debug/crypto/openssl/README projects/release-install-debug/crypto/openssl/apps/app_rand.c projects/release-install-debug/crypto/openssl/apps/apps.c projects/release-install-debug/crypto/openssl/apps/apps.h projects/release-install-debug/crypto/openssl/apps/asn1pars.c projects/release-install-debug/crypto/openssl/apps/ca.c projects/release-install-debug/crypto/openssl/apps/ciphers.c projects/release-install-debug/crypto/openssl/apps/cms.c projects/release-install-debug/crypto/openssl/apps/crl.c projects/release-install-debug/crypto/openssl/apps/crl2p7.c projects/release-install-debug/crypto/openssl/apps/dgst.c projects/release-install-debug/crypto/openssl/apps/dh.c projects/release-install-debug/crypto/openssl/apps/dhparam.c projects/release-install-debug/crypto/openssl/apps/dsa.c projects/release-install-debug/crypto/openssl/apps/dsaparam.c projects/release-install-debug/crypto/openssl/apps/ec.c projects/release-install-debug/crypto/openssl/apps/ecparam.c projects/release-install-debug/crypto/openssl/apps/enc.c projects/release-install-debug/crypto/openssl/apps/engine.c projects/release-install-debug/crypto/openssl/apps/errstr.c projects/release-install-debug/crypto/openssl/apps/gendh.c projects/release-install-debug/crypto/openssl/apps/gendsa.c projects/release-install-debug/crypto/openssl/apps/genpkey.c projects/release-install-debug/crypto/openssl/apps/genrsa.c projects/release-install-debug/crypto/openssl/apps/nseq.c projects/release-install-debug/crypto/openssl/apps/ocsp.c projects/release-install-debug/crypto/openssl/apps/openssl.c projects/release-install-debug/crypto/openssl/apps/passwd.c projects/release-install-debug/crypto/openssl/apps/pkcs12.c projects/release-install-debug/crypto/openssl/apps/pkcs7.c projects/release-install-debug/crypto/openssl/apps/pkcs8.c projects/release-install-debug/crypto/openssl/apps/pkey.c projects/release-install-debug/crypto/openssl/apps/pkeyparam.c projects/release-install-debug/crypto/openssl/apps/pkeyutl.c projects/release-install-debug/crypto/openssl/apps/prime.c projects/release-install-debug/crypto/openssl/apps/progs.h projects/release-install-debug/crypto/openssl/apps/rand.c projects/release-install-debug/crypto/openssl/apps/req.c projects/release-install-debug/crypto/openssl/apps/rsa.c projects/release-install-debug/crypto/openssl/apps/rsautl.c projects/release-install-debug/crypto/openssl/apps/s_apps.h projects/release-install-debug/crypto/openssl/apps/s_cb.c projects/release-install-debug/crypto/openssl/apps/s_client.c projects/release-install-debug/crypto/openssl/apps/s_server.c projects/release-install-debug/crypto/openssl/apps/s_socket.c projects/release-install-debug/crypto/openssl/apps/s_time.c projects/release-install-debug/crypto/openssl/apps/sess_id.c projects/release-install-debug/crypto/openssl/apps/smime.c projects/release-install-debug/crypto/openssl/apps/speed.c projects/release-install-debug/crypto/openssl/apps/spkac.c projects/release-install-debug/crypto/openssl/apps/srp.c projects/release-install-debug/crypto/openssl/apps/testdsa.h projects/release-install-debug/crypto/openssl/apps/testrsa.h projects/release-install-debug/crypto/openssl/apps/timeouts.h projects/release-install-debug/crypto/openssl/apps/ts.c projects/release-install-debug/crypto/openssl/apps/verify.c projects/release-install-debug/crypto/openssl/apps/version.c projects/release-install-debug/crypto/openssl/apps/x509.c projects/release-install-debug/crypto/openssl/crypto/LPdir_unix.c projects/release-install-debug/crypto/openssl/crypto/aes/aes.h projects/release-install-debug/crypto/openssl/crypto/aes/aes_cbc.c projects/release-install-debug/crypto/openssl/crypto/aes/aes_cfb.c projects/release-install-debug/crypto/openssl/crypto/aes/aes_core.c projects/release-install-debug/crypto/openssl/crypto/aes/aes_ctr.c projects/release-install-debug/crypto/openssl/crypto/aes/aes_ecb.c projects/release-install-debug/crypto/openssl/crypto/aes/aes_ige.c projects/release-install-debug/crypto/openssl/crypto/aes/aes_locl.h projects/release-install-debug/crypto/openssl/crypto/aes/aes_misc.c projects/release-install-debug/crypto/openssl/crypto/aes/aes_ofb.c projects/release-install-debug/crypto/openssl/crypto/aes/aes_wrap.c projects/release-install-debug/crypto/openssl/crypto/aes/aes_x86core.c projects/release-install-debug/crypto/openssl/crypto/arm_arch.h projects/release-install-debug/crypto/openssl/crypto/armcap.c projects/release-install-debug/crypto/openssl/crypto/asn1/a_bitstr.c projects/release-install-debug/crypto/openssl/crypto/asn1/a_bool.c projects/release-install-debug/crypto/openssl/crypto/asn1/a_bytes.c projects/release-install-debug/crypto/openssl/crypto/asn1/a_d2i_fp.c projects/release-install-debug/crypto/openssl/crypto/asn1/a_digest.c projects/release-install-debug/crypto/openssl/crypto/asn1/a_dup.c projects/release-install-debug/crypto/openssl/crypto/asn1/a_enum.c projects/release-install-debug/crypto/openssl/crypto/asn1/a_gentm.c projects/release-install-debug/crypto/openssl/crypto/asn1/a_i2d_fp.c projects/release-install-debug/crypto/openssl/crypto/asn1/a_int.c projects/release-install-debug/crypto/openssl/crypto/asn1/a_mbstr.c projects/release-install-debug/crypto/openssl/crypto/asn1/a_object.c projects/release-install-debug/crypto/openssl/crypto/asn1/a_octet.c projects/release-install-debug/crypto/openssl/crypto/asn1/a_print.c projects/release-install-debug/crypto/openssl/crypto/asn1/a_set.c projects/release-install-debug/crypto/openssl/crypto/asn1/a_sign.c projects/release-install-debug/crypto/openssl/crypto/asn1/a_strex.c projects/release-install-debug/crypto/openssl/crypto/asn1/a_strnid.c projects/release-install-debug/crypto/openssl/crypto/asn1/a_time.c projects/release-install-debug/crypto/openssl/crypto/asn1/a_type.c projects/release-install-debug/crypto/openssl/crypto/asn1/a_utctm.c projects/release-install-debug/crypto/openssl/crypto/asn1/a_utf8.c projects/release-install-debug/crypto/openssl/crypto/asn1/a_verify.c projects/release-install-debug/crypto/openssl/crypto/asn1/ameth_lib.c projects/release-install-debug/crypto/openssl/crypto/asn1/asn1.h projects/release-install-debug/crypto/openssl/crypto/asn1/asn1_err.c projects/release-install-debug/crypto/openssl/crypto/asn1/asn1_gen.c projects/release-install-debug/crypto/openssl/crypto/asn1/asn1_lib.c projects/release-install-debug/crypto/openssl/crypto/asn1/asn1_locl.h projects/release-install-debug/crypto/openssl/crypto/asn1/asn1_mac.h projects/release-install-debug/crypto/openssl/crypto/asn1/asn1_par.c projects/release-install-debug/crypto/openssl/crypto/asn1/asn1t.h projects/release-install-debug/crypto/openssl/crypto/asn1/asn_mime.c projects/release-install-debug/crypto/openssl/crypto/asn1/asn_moid.c projects/release-install-debug/crypto/openssl/crypto/asn1/asn_pack.c projects/release-install-debug/crypto/openssl/crypto/asn1/bio_asn1.c projects/release-install-debug/crypto/openssl/crypto/asn1/bio_ndef.c projects/release-install-debug/crypto/openssl/crypto/asn1/charmap.h projects/release-install-debug/crypto/openssl/crypto/asn1/d2i_pr.c projects/release-install-debug/crypto/openssl/crypto/asn1/d2i_pu.c projects/release-install-debug/crypto/openssl/crypto/asn1/evp_asn1.c projects/release-install-debug/crypto/openssl/crypto/asn1/f_enum.c projects/release-install-debug/crypto/openssl/crypto/asn1/f_int.c projects/release-install-debug/crypto/openssl/crypto/asn1/f_string.c projects/release-install-debug/crypto/openssl/crypto/asn1/i2d_pr.c projects/release-install-debug/crypto/openssl/crypto/asn1/i2d_pu.c projects/release-install-debug/crypto/openssl/crypto/asn1/n_pkey.c projects/release-install-debug/crypto/openssl/crypto/asn1/nsseq.c projects/release-install-debug/crypto/openssl/crypto/asn1/p5_pbe.c projects/release-install-debug/crypto/openssl/crypto/asn1/p5_pbev2.c projects/release-install-debug/crypto/openssl/crypto/asn1/p8_pkey.c projects/release-install-debug/crypto/openssl/crypto/asn1/t_bitst.c projects/release-install-debug/crypto/openssl/crypto/asn1/t_crl.c projects/release-install-debug/crypto/openssl/crypto/asn1/t_pkey.c projects/release-install-debug/crypto/openssl/crypto/asn1/t_req.c projects/release-install-debug/crypto/openssl/crypto/asn1/t_spki.c projects/release-install-debug/crypto/openssl/crypto/asn1/t_x509.c projects/release-install-debug/crypto/openssl/crypto/asn1/t_x509a.c projects/release-install-debug/crypto/openssl/crypto/asn1/tasn_dec.c projects/release-install-debug/crypto/openssl/crypto/asn1/tasn_enc.c projects/release-install-debug/crypto/openssl/crypto/asn1/tasn_fre.c projects/release-install-debug/crypto/openssl/crypto/asn1/tasn_new.c projects/release-install-debug/crypto/openssl/crypto/asn1/tasn_prn.c projects/release-install-debug/crypto/openssl/crypto/asn1/tasn_typ.c projects/release-install-debug/crypto/openssl/crypto/asn1/tasn_utl.c projects/release-install-debug/crypto/openssl/crypto/asn1/x_algor.c projects/release-install-debug/crypto/openssl/crypto/asn1/x_attrib.c projects/release-install-debug/crypto/openssl/crypto/asn1/x_bignum.c projects/release-install-debug/crypto/openssl/crypto/asn1/x_crl.c projects/release-install-debug/crypto/openssl/crypto/asn1/x_exten.c projects/release-install-debug/crypto/openssl/crypto/asn1/x_info.c projects/release-install-debug/crypto/openssl/crypto/asn1/x_long.c projects/release-install-debug/crypto/openssl/crypto/asn1/x_name.c projects/release-install-debug/crypto/openssl/crypto/asn1/x_nx509.c projects/release-install-debug/crypto/openssl/crypto/asn1/x_pkey.c projects/release-install-debug/crypto/openssl/crypto/asn1/x_pubkey.c projects/release-install-debug/crypto/openssl/crypto/asn1/x_req.c projects/release-install-debug/crypto/openssl/crypto/asn1/x_sig.c projects/release-install-debug/crypto/openssl/crypto/asn1/x_spki.c projects/release-install-debug/crypto/openssl/crypto/asn1/x_val.c projects/release-install-debug/crypto/openssl/crypto/asn1/x_x509.c projects/release-install-debug/crypto/openssl/crypto/asn1/x_x509a.c projects/release-install-debug/crypto/openssl/crypto/bf/bf_cbc.c projects/release-install-debug/crypto/openssl/crypto/bf/bf_cfb64.c projects/release-install-debug/crypto/openssl/crypto/bf/bf_ecb.c projects/release-install-debug/crypto/openssl/crypto/bf/bf_enc.c projects/release-install-debug/crypto/openssl/crypto/bf/bf_locl.h projects/release-install-debug/crypto/openssl/crypto/bf/bf_ofb64.c projects/release-install-debug/crypto/openssl/crypto/bf/bf_opts.c projects/release-install-debug/crypto/openssl/crypto/bf/bf_pi.h projects/release-install-debug/crypto/openssl/crypto/bf/bf_skey.c projects/release-install-debug/crypto/openssl/crypto/bf/bfspeed.c projects/release-install-debug/crypto/openssl/crypto/bf/bftest.c projects/release-install-debug/crypto/openssl/crypto/bf/blowfish.h projects/release-install-debug/crypto/openssl/crypto/bio/b_dump.c projects/release-install-debug/crypto/openssl/crypto/bio/b_print.c projects/release-install-debug/crypto/openssl/crypto/bio/b_sock.c projects/release-install-debug/crypto/openssl/crypto/bio/bf_buff.c projects/release-install-debug/crypto/openssl/crypto/bio/bf_lbuf.c projects/release-install-debug/crypto/openssl/crypto/bio/bf_nbio.c projects/release-install-debug/crypto/openssl/crypto/bio/bf_null.c projects/release-install-debug/crypto/openssl/crypto/bio/bio.h projects/release-install-debug/crypto/openssl/crypto/bio/bio_cb.c projects/release-install-debug/crypto/openssl/crypto/bio/bio_err.c projects/release-install-debug/crypto/openssl/crypto/bio/bio_lcl.h projects/release-install-debug/crypto/openssl/crypto/bio/bio_lib.c projects/release-install-debug/crypto/openssl/crypto/bio/bss_acpt.c projects/release-install-debug/crypto/openssl/crypto/bio/bss_bio.c projects/release-install-debug/crypto/openssl/crypto/bio/bss_conn.c projects/release-install-debug/crypto/openssl/crypto/bio/bss_dgram.c projects/release-install-debug/crypto/openssl/crypto/bio/bss_fd.c projects/release-install-debug/crypto/openssl/crypto/bio/bss_file.c projects/release-install-debug/crypto/openssl/crypto/bio/bss_log.c projects/release-install-debug/crypto/openssl/crypto/bio/bss_mem.c projects/release-install-debug/crypto/openssl/crypto/bio/bss_null.c projects/release-install-debug/crypto/openssl/crypto/bio/bss_rtcp.c projects/release-install-debug/crypto/openssl/crypto/bio/bss_sock.c projects/release-install-debug/crypto/openssl/crypto/bn/asm/x86_64-gcc.c projects/release-install-debug/crypto/openssl/crypto/bn/bn.h projects/release-install-debug/crypto/openssl/crypto/bn/bn_add.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_asm.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_blind.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_const.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_ctx.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_depr.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_div.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_err.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_exp.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_exp2.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_gcd.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_gf2m.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_kron.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_lcl.h projects/release-install-debug/crypto/openssl/crypto/bn/bn_lib.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_mod.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_mont.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_mpi.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_mul.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_nist.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_prime.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_prime.h projects/release-install-debug/crypto/openssl/crypto/bn/bn_print.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_rand.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_recp.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_shift.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_sqr.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_sqrt.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_word.c projects/release-install-debug/crypto/openssl/crypto/bn/bn_x931p.c projects/release-install-debug/crypto/openssl/crypto/bn/bnspeed.c projects/release-install-debug/crypto/openssl/crypto/bn/bntest.c projects/release-install-debug/crypto/openssl/crypto/bn/divtest.c projects/release-install-debug/crypto/openssl/crypto/bn/exp.c projects/release-install-debug/crypto/openssl/crypto/bn/expspeed.c projects/release-install-debug/crypto/openssl/crypto/bn/exptest.c projects/release-install-debug/crypto/openssl/crypto/buffer/buf_err.c projects/release-install-debug/crypto/openssl/crypto/buffer/buf_str.c projects/release-install-debug/crypto/openssl/crypto/buffer/buffer.c projects/release-install-debug/crypto/openssl/crypto/buffer/buffer.h projects/release-install-debug/crypto/openssl/crypto/camellia/camellia.c projects/release-install-debug/crypto/openssl/crypto/camellia/camellia.h projects/release-install-debug/crypto/openssl/crypto/camellia/cmll_cbc.c projects/release-install-debug/crypto/openssl/crypto/camellia/cmll_cfb.c projects/release-install-debug/crypto/openssl/crypto/camellia/cmll_ctr.c projects/release-install-debug/crypto/openssl/crypto/camellia/cmll_ecb.c projects/release-install-debug/crypto/openssl/crypto/camellia/cmll_locl.h projects/release-install-debug/crypto/openssl/crypto/camellia/cmll_misc.c projects/release-install-debug/crypto/openssl/crypto/camellia/cmll_ofb.c projects/release-install-debug/crypto/openssl/crypto/camellia/cmll_utl.c projects/release-install-debug/crypto/openssl/crypto/cast/c_cfb64.c projects/release-install-debug/crypto/openssl/crypto/cast/c_ecb.c projects/release-install-debug/crypto/openssl/crypto/cast/c_enc.c projects/release-install-debug/crypto/openssl/crypto/cast/c_ofb64.c projects/release-install-debug/crypto/openssl/crypto/cast/c_skey.c projects/release-install-debug/crypto/openssl/crypto/cast/cast.h projects/release-install-debug/crypto/openssl/crypto/cast/cast_lcl.h projects/release-install-debug/crypto/openssl/crypto/cast/cast_s.h projects/release-install-debug/crypto/openssl/crypto/cast/cast_spd.c projects/release-install-debug/crypto/openssl/crypto/cast/castopts.c projects/release-install-debug/crypto/openssl/crypto/cast/casttest.c projects/release-install-debug/crypto/openssl/crypto/cmac/cm_ameth.c projects/release-install-debug/crypto/openssl/crypto/cmac/cm_pmeth.c projects/release-install-debug/crypto/openssl/crypto/cmac/cmac.c projects/release-install-debug/crypto/openssl/crypto/cmac/cmac.h projects/release-install-debug/crypto/openssl/crypto/cms/cms.h projects/release-install-debug/crypto/openssl/crypto/cms/cms_asn1.c projects/release-install-debug/crypto/openssl/crypto/cms/cms_att.c projects/release-install-debug/crypto/openssl/crypto/cms/cms_cd.c projects/release-install-debug/crypto/openssl/crypto/cms/cms_dd.c projects/release-install-debug/crypto/openssl/crypto/cms/cms_enc.c projects/release-install-debug/crypto/openssl/crypto/cms/cms_env.c projects/release-install-debug/crypto/openssl/crypto/cms/cms_err.c projects/release-install-debug/crypto/openssl/crypto/cms/cms_ess.c projects/release-install-debug/crypto/openssl/crypto/cms/cms_io.c projects/release-install-debug/crypto/openssl/crypto/cms/cms_lcl.h projects/release-install-debug/crypto/openssl/crypto/cms/cms_lib.c projects/release-install-debug/crypto/openssl/crypto/cms/cms_pwri.c projects/release-install-debug/crypto/openssl/crypto/cms/cms_sd.c projects/release-install-debug/crypto/openssl/crypto/cms/cms_smime.c projects/release-install-debug/crypto/openssl/crypto/comp/c_rle.c projects/release-install-debug/crypto/openssl/crypto/comp/c_zlib.c projects/release-install-debug/crypto/openssl/crypto/comp/comp.h projects/release-install-debug/crypto/openssl/crypto/comp/comp_err.c projects/release-install-debug/crypto/openssl/crypto/comp/comp_lib.c projects/release-install-debug/crypto/openssl/crypto/conf/cnf_save.c projects/release-install-debug/crypto/openssl/crypto/conf/conf.h projects/release-install-debug/crypto/openssl/crypto/conf/conf_api.c projects/release-install-debug/crypto/openssl/crypto/conf/conf_api.h projects/release-install-debug/crypto/openssl/crypto/conf/conf_def.c projects/release-install-debug/crypto/openssl/crypto/conf/conf_def.h projects/release-install-debug/crypto/openssl/crypto/conf/conf_err.c projects/release-install-debug/crypto/openssl/crypto/conf/conf_lib.c projects/release-install-debug/crypto/openssl/crypto/conf/conf_mall.c projects/release-install-debug/crypto/openssl/crypto/conf/conf_mod.c projects/release-install-debug/crypto/openssl/crypto/conf/conf_sap.c projects/release-install-debug/crypto/openssl/crypto/conf/test.c projects/release-install-debug/crypto/openssl/crypto/constant_time_locl.h projects/release-install-debug/crypto/openssl/crypto/constant_time_test.c projects/release-install-debug/crypto/openssl/crypto/cpt_err.c projects/release-install-debug/crypto/openssl/crypto/cryptlib.c projects/release-install-debug/crypto/openssl/crypto/cryptlib.h projects/release-install-debug/crypto/openssl/crypto/crypto.h projects/release-install-debug/crypto/openssl/crypto/cversion.c projects/release-install-debug/crypto/openssl/crypto/des/cbc3_enc.c projects/release-install-debug/crypto/openssl/crypto/des/cbc_cksm.c projects/release-install-debug/crypto/openssl/crypto/des/cbc_enc.c projects/release-install-debug/crypto/openssl/crypto/des/cfb64ede.c projects/release-install-debug/crypto/openssl/crypto/des/cfb64enc.c projects/release-install-debug/crypto/openssl/crypto/des/cfb_enc.c projects/release-install-debug/crypto/openssl/crypto/des/des.c projects/release-install-debug/crypto/openssl/crypto/des/des.h projects/release-install-debug/crypto/openssl/crypto/des/des_enc.c projects/release-install-debug/crypto/openssl/crypto/des/des_locl.h projects/release-install-debug/crypto/openssl/crypto/des/des_old.c projects/release-install-debug/crypto/openssl/crypto/des/des_old.h projects/release-install-debug/crypto/openssl/crypto/des/des_old2.c projects/release-install-debug/crypto/openssl/crypto/des/des_opts.c projects/release-install-debug/crypto/openssl/crypto/des/des_ver.h projects/release-install-debug/crypto/openssl/crypto/des/destest.c projects/release-install-debug/crypto/openssl/crypto/des/ecb3_enc.c projects/release-install-debug/crypto/openssl/crypto/des/ecb_enc.c projects/release-install-debug/crypto/openssl/crypto/des/ede_cbcm_enc.c projects/release-install-debug/crypto/openssl/crypto/des/enc_read.c projects/release-install-debug/crypto/openssl/crypto/des/enc_writ.c projects/release-install-debug/crypto/openssl/crypto/des/fcrypt.c projects/release-install-debug/crypto/openssl/crypto/des/fcrypt_b.c projects/release-install-debug/crypto/openssl/crypto/des/ncbc_enc.c projects/release-install-debug/crypto/openssl/crypto/des/ofb64ede.c projects/release-install-debug/crypto/openssl/crypto/des/ofb64enc.c projects/release-install-debug/crypto/openssl/crypto/des/ofb_enc.c projects/release-install-debug/crypto/openssl/crypto/des/pcbc_enc.c projects/release-install-debug/crypto/openssl/crypto/des/qud_cksm.c projects/release-install-debug/crypto/openssl/crypto/des/rand_key.c projects/release-install-debug/crypto/openssl/crypto/des/read2pwd.c projects/release-install-debug/crypto/openssl/crypto/des/read_pwd.c projects/release-install-debug/crypto/openssl/crypto/des/rpc_des.h projects/release-install-debug/crypto/openssl/crypto/des/rpc_enc.c projects/release-install-debug/crypto/openssl/crypto/des/rpw.c projects/release-install-debug/crypto/openssl/crypto/des/set_key.c projects/release-install-debug/crypto/openssl/crypto/des/speed.c projects/release-install-debug/crypto/openssl/crypto/des/spr.h projects/release-install-debug/crypto/openssl/crypto/des/str2key.c projects/release-install-debug/crypto/openssl/crypto/des/xcbc_enc.c projects/release-install-debug/crypto/openssl/crypto/dh/dh.h projects/release-install-debug/crypto/openssl/crypto/dh/dh_ameth.c projects/release-install-debug/crypto/openssl/crypto/dh/dh_asn1.c projects/release-install-debug/crypto/openssl/crypto/dh/dh_check.c projects/release-install-debug/crypto/openssl/crypto/dh/dh_depr.c projects/release-install-debug/crypto/openssl/crypto/dh/dh_err.c projects/release-install-debug/crypto/openssl/crypto/dh/dh_gen.c projects/release-install-debug/crypto/openssl/crypto/dh/dh_key.c projects/release-install-debug/crypto/openssl/crypto/dh/dh_lib.c projects/release-install-debug/crypto/openssl/crypto/dh/dh_pmeth.c projects/release-install-debug/crypto/openssl/crypto/dh/dh_prn.c projects/release-install-debug/crypto/openssl/crypto/dh/dhtest.c projects/release-install-debug/crypto/openssl/crypto/dh/p1024.c projects/release-install-debug/crypto/openssl/crypto/dh/p192.c projects/release-install-debug/crypto/openssl/crypto/dh/p512.c projects/release-install-debug/crypto/openssl/crypto/dsa/dsa.h projects/release-install-debug/crypto/openssl/crypto/dsa/dsa_ameth.c projects/release-install-debug/crypto/openssl/crypto/dsa/dsa_asn1.c projects/release-install-debug/crypto/openssl/crypto/dsa/dsa_depr.c projects/release-install-debug/crypto/openssl/crypto/dsa/dsa_err.c projects/release-install-debug/crypto/openssl/crypto/dsa/dsa_gen.c projects/release-install-debug/crypto/openssl/crypto/dsa/dsa_key.c projects/release-install-debug/crypto/openssl/crypto/dsa/dsa_lib.c projects/release-install-debug/crypto/openssl/crypto/dsa/dsa_locl.h projects/release-install-debug/crypto/openssl/crypto/dsa/dsa_ossl.c projects/release-install-debug/crypto/openssl/crypto/dsa/dsa_pmeth.c projects/release-install-debug/crypto/openssl/crypto/dsa/dsa_prn.c projects/release-install-debug/crypto/openssl/crypto/dsa/dsa_sign.c projects/release-install-debug/crypto/openssl/crypto/dsa/dsa_vrf.c projects/release-install-debug/crypto/openssl/crypto/dsa/dsagen.c projects/release-install-debug/crypto/openssl/crypto/dsa/dsatest.c projects/release-install-debug/crypto/openssl/crypto/dso/dso.h projects/release-install-debug/crypto/openssl/crypto/dso/dso_beos.c projects/release-install-debug/crypto/openssl/crypto/dso/dso_dl.c projects/release-install-debug/crypto/openssl/crypto/dso/dso_dlfcn.c projects/release-install-debug/crypto/openssl/crypto/dso/dso_err.c projects/release-install-debug/crypto/openssl/crypto/dso/dso_lib.c projects/release-install-debug/crypto/openssl/crypto/dso/dso_null.c projects/release-install-debug/crypto/openssl/crypto/dso/dso_openssl.c projects/release-install-debug/crypto/openssl/crypto/ebcdic.c projects/release-install-debug/crypto/openssl/crypto/ebcdic.h projects/release-install-debug/crypto/openssl/crypto/ec/ec.h projects/release-install-debug/crypto/openssl/crypto/ec/ec2_mult.c projects/release-install-debug/crypto/openssl/crypto/ec/ec2_oct.c projects/release-install-debug/crypto/openssl/crypto/ec/ec2_smpl.c projects/release-install-debug/crypto/openssl/crypto/ec/ec_ameth.c projects/release-install-debug/crypto/openssl/crypto/ec/ec_asn1.c projects/release-install-debug/crypto/openssl/crypto/ec/ec_check.c projects/release-install-debug/crypto/openssl/crypto/ec/ec_curve.c projects/release-install-debug/crypto/openssl/crypto/ec/ec_cvt.c projects/release-install-debug/crypto/openssl/crypto/ec/ec_err.c projects/release-install-debug/crypto/openssl/crypto/ec/ec_key.c projects/release-install-debug/crypto/openssl/crypto/ec/ec_lcl.h projects/release-install-debug/crypto/openssl/crypto/ec/ec_lib.c projects/release-install-debug/crypto/openssl/crypto/ec/ec_mult.c projects/release-install-debug/crypto/openssl/crypto/ec/ec_oct.c projects/release-install-debug/crypto/openssl/crypto/ec/ec_pmeth.c projects/release-install-debug/crypto/openssl/crypto/ec/ec_print.c projects/release-install-debug/crypto/openssl/crypto/ec/eck_prn.c projects/release-install-debug/crypto/openssl/crypto/ec/ecp_mont.c projects/release-install-debug/crypto/openssl/crypto/ec/ecp_nist.c projects/release-install-debug/crypto/openssl/crypto/ec/ecp_nistp224.c projects/release-install-debug/crypto/openssl/crypto/ec/ecp_nistp256.c projects/release-install-debug/crypto/openssl/crypto/ec/ecp_nistp521.c projects/release-install-debug/crypto/openssl/crypto/ec/ecp_nistputil.c projects/release-install-debug/crypto/openssl/crypto/ec/ecp_oct.c projects/release-install-debug/crypto/openssl/crypto/ec/ecp_smpl.c projects/release-install-debug/crypto/openssl/crypto/ec/ectest.c projects/release-install-debug/crypto/openssl/crypto/ecdh/ecdh.h projects/release-install-debug/crypto/openssl/crypto/ecdh/ecdhtest.c projects/release-install-debug/crypto/openssl/crypto/ecdh/ech_err.c projects/release-install-debug/crypto/openssl/crypto/ecdh/ech_key.c projects/release-install-debug/crypto/openssl/crypto/ecdh/ech_lib.c projects/release-install-debug/crypto/openssl/crypto/ecdh/ech_locl.h projects/release-install-debug/crypto/openssl/crypto/ecdh/ech_ossl.c projects/release-install-debug/crypto/openssl/crypto/ecdsa/ecdsa.h projects/release-install-debug/crypto/openssl/crypto/ecdsa/ecdsatest.c projects/release-install-debug/crypto/openssl/crypto/ecdsa/ecs_asn1.c projects/release-install-debug/crypto/openssl/crypto/ecdsa/ecs_err.c projects/release-install-debug/crypto/openssl/crypto/ecdsa/ecs_lib.c projects/release-install-debug/crypto/openssl/crypto/ecdsa/ecs_locl.h projects/release-install-debug/crypto/openssl/crypto/ecdsa/ecs_ossl.c projects/release-install-debug/crypto/openssl/crypto/ecdsa/ecs_sign.c projects/release-install-debug/crypto/openssl/crypto/ecdsa/ecs_vrf.c projects/release-install-debug/crypto/openssl/crypto/engine/eng_all.c projects/release-install-debug/crypto/openssl/crypto/engine/eng_cnf.c projects/release-install-debug/crypto/openssl/crypto/engine/eng_cryptodev.c projects/release-install-debug/crypto/openssl/crypto/engine/eng_ctrl.c projects/release-install-debug/crypto/openssl/crypto/engine/eng_dyn.c projects/release-install-debug/crypto/openssl/crypto/engine/eng_err.c projects/release-install-debug/crypto/openssl/crypto/engine/eng_fat.c projects/release-install-debug/crypto/openssl/crypto/engine/eng_init.c projects/release-install-debug/crypto/openssl/crypto/engine/eng_int.h projects/release-install-debug/crypto/openssl/crypto/engine/eng_lib.c projects/release-install-debug/crypto/openssl/crypto/engine/eng_list.c projects/release-install-debug/crypto/openssl/crypto/engine/eng_openssl.c projects/release-install-debug/crypto/openssl/crypto/engine/eng_pkey.c projects/release-install-debug/crypto/openssl/crypto/engine/eng_rdrand.c projects/release-install-debug/crypto/openssl/crypto/engine/eng_rsax.c projects/release-install-debug/crypto/openssl/crypto/engine/eng_table.c projects/release-install-debug/crypto/openssl/crypto/engine/engine.h projects/release-install-debug/crypto/openssl/crypto/engine/enginetest.c projects/release-install-debug/crypto/openssl/crypto/engine/tb_asnmth.c projects/release-install-debug/crypto/openssl/crypto/engine/tb_cipher.c projects/release-install-debug/crypto/openssl/crypto/engine/tb_dh.c projects/release-install-debug/crypto/openssl/crypto/engine/tb_digest.c projects/release-install-debug/crypto/openssl/crypto/engine/tb_dsa.c projects/release-install-debug/crypto/openssl/crypto/engine/tb_ecdh.c projects/release-install-debug/crypto/openssl/crypto/engine/tb_ecdsa.c projects/release-install-debug/crypto/openssl/crypto/engine/tb_pkmeth.c projects/release-install-debug/crypto/openssl/crypto/engine/tb_rand.c projects/release-install-debug/crypto/openssl/crypto/engine/tb_rsa.c projects/release-install-debug/crypto/openssl/crypto/engine/tb_store.c projects/release-install-debug/crypto/openssl/crypto/err/err.c projects/release-install-debug/crypto/openssl/crypto/err/err.h projects/release-install-debug/crypto/openssl/crypto/err/err_all.c projects/release-install-debug/crypto/openssl/crypto/err/err_prn.c projects/release-install-debug/crypto/openssl/crypto/evp/Makefile projects/release-install-debug/crypto/openssl/crypto/evp/bio_b64.c projects/release-install-debug/crypto/openssl/crypto/evp/bio_enc.c projects/release-install-debug/crypto/openssl/crypto/evp/bio_md.c projects/release-install-debug/crypto/openssl/crypto/evp/bio_ok.c projects/release-install-debug/crypto/openssl/crypto/evp/c_all.c projects/release-install-debug/crypto/openssl/crypto/evp/c_allc.c projects/release-install-debug/crypto/openssl/crypto/evp/c_alld.c projects/release-install-debug/crypto/openssl/crypto/evp/digest.c projects/release-install-debug/crypto/openssl/crypto/evp/e_aes.c projects/release-install-debug/crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c projects/release-install-debug/crypto/openssl/crypto/evp/e_bf.c projects/release-install-debug/crypto/openssl/crypto/evp/e_camellia.c projects/release-install-debug/crypto/openssl/crypto/evp/e_cast.c projects/release-install-debug/crypto/openssl/crypto/evp/e_des.c projects/release-install-debug/crypto/openssl/crypto/evp/e_des3.c projects/release-install-debug/crypto/openssl/crypto/evp/e_dsa.c projects/release-install-debug/crypto/openssl/crypto/evp/e_idea.c projects/release-install-debug/crypto/openssl/crypto/evp/e_null.c projects/release-install-debug/crypto/openssl/crypto/evp/e_old.c projects/release-install-debug/crypto/openssl/crypto/evp/e_rc2.c projects/release-install-debug/crypto/openssl/crypto/evp/e_rc4.c projects/release-install-debug/crypto/openssl/crypto/evp/e_rc4_hmac_md5.c projects/release-install-debug/crypto/openssl/crypto/evp/e_rc5.c projects/release-install-debug/crypto/openssl/crypto/evp/e_seed.c projects/release-install-debug/crypto/openssl/crypto/evp/e_xcbc_d.c projects/release-install-debug/crypto/openssl/crypto/evp/encode.c projects/release-install-debug/crypto/openssl/crypto/evp/evp.h projects/release-install-debug/crypto/openssl/crypto/evp/evp_acnf.c projects/release-install-debug/crypto/openssl/crypto/evp/evp_cnf.c projects/release-install-debug/crypto/openssl/crypto/evp/evp_enc.c projects/release-install-debug/crypto/openssl/crypto/evp/evp_err.c projects/release-install-debug/crypto/openssl/crypto/evp/evp_fips.c projects/release-install-debug/crypto/openssl/crypto/evp/evp_key.c projects/release-install-debug/crypto/openssl/crypto/evp/evp_lib.c projects/release-install-debug/crypto/openssl/crypto/evp/evp_locl.h projects/release-install-debug/crypto/openssl/crypto/evp/evp_pbe.c projects/release-install-debug/crypto/openssl/crypto/evp/evp_pkey.c projects/release-install-debug/crypto/openssl/crypto/evp/evp_test.c projects/release-install-debug/crypto/openssl/crypto/evp/m_dss.c projects/release-install-debug/crypto/openssl/crypto/evp/m_dss1.c projects/release-install-debug/crypto/openssl/crypto/evp/m_ecdsa.c projects/release-install-debug/crypto/openssl/crypto/evp/m_md2.c projects/release-install-debug/crypto/openssl/crypto/evp/m_md4.c projects/release-install-debug/crypto/openssl/crypto/evp/m_md5.c projects/release-install-debug/crypto/openssl/crypto/evp/m_mdc2.c projects/release-install-debug/crypto/openssl/crypto/evp/m_null.c projects/release-install-debug/crypto/openssl/crypto/evp/m_ripemd.c projects/release-install-debug/crypto/openssl/crypto/evp/m_sha.c projects/release-install-debug/crypto/openssl/crypto/evp/m_sha1.c projects/release-install-debug/crypto/openssl/crypto/evp/m_sigver.c projects/release-install-debug/crypto/openssl/crypto/evp/m_wp.c projects/release-install-debug/crypto/openssl/crypto/evp/names.c projects/release-install-debug/crypto/openssl/crypto/evp/openbsd_hw.c projects/release-install-debug/crypto/openssl/crypto/evp/p5_crpt.c projects/release-install-debug/crypto/openssl/crypto/evp/p5_crpt2.c projects/release-install-debug/crypto/openssl/crypto/evp/p_dec.c projects/release-install-debug/crypto/openssl/crypto/evp/p_enc.c projects/release-install-debug/crypto/openssl/crypto/evp/p_lib.c projects/release-install-debug/crypto/openssl/crypto/evp/p_open.c projects/release-install-debug/crypto/openssl/crypto/evp/p_seal.c projects/release-install-debug/crypto/openssl/crypto/evp/p_sign.c projects/release-install-debug/crypto/openssl/crypto/evp/p_verify.c projects/release-install-debug/crypto/openssl/crypto/evp/pmeth_fn.c projects/release-install-debug/crypto/openssl/crypto/evp/pmeth_gn.c projects/release-install-debug/crypto/openssl/crypto/evp/pmeth_lib.c projects/release-install-debug/crypto/openssl/crypto/ex_data.c projects/release-install-debug/crypto/openssl/crypto/fips_err.h projects/release-install-debug/crypto/openssl/crypto/fips_ers.c projects/release-install-debug/crypto/openssl/crypto/hmac/hm_ameth.c projects/release-install-debug/crypto/openssl/crypto/hmac/hm_pmeth.c projects/release-install-debug/crypto/openssl/crypto/hmac/hmac.c projects/release-install-debug/crypto/openssl/crypto/hmac/hmac.h projects/release-install-debug/crypto/openssl/crypto/hmac/hmactest.c projects/release-install-debug/crypto/openssl/crypto/idea/i_cbc.c projects/release-install-debug/crypto/openssl/crypto/idea/i_cfb64.c projects/release-install-debug/crypto/openssl/crypto/idea/i_ecb.c projects/release-install-debug/crypto/openssl/crypto/idea/i_ofb64.c projects/release-install-debug/crypto/openssl/crypto/idea/i_skey.c projects/release-install-debug/crypto/openssl/crypto/idea/idea.h projects/release-install-debug/crypto/openssl/crypto/idea/idea_lcl.h projects/release-install-debug/crypto/openssl/crypto/idea/idea_spd.c projects/release-install-debug/crypto/openssl/crypto/idea/ideatest.c projects/release-install-debug/crypto/openssl/crypto/jpake/jpake.c projects/release-install-debug/crypto/openssl/crypto/jpake/jpake.h projects/release-install-debug/crypto/openssl/crypto/jpake/jpake_err.c projects/release-install-debug/crypto/openssl/crypto/jpake/jpaketest.c projects/release-install-debug/crypto/openssl/crypto/krb5/krb5_asn.c projects/release-install-debug/crypto/openssl/crypto/krb5/krb5_asn.h projects/release-install-debug/crypto/openssl/crypto/lhash/lh_stats.c projects/release-install-debug/crypto/openssl/crypto/lhash/lh_test.c projects/release-install-debug/crypto/openssl/crypto/lhash/lhash.c projects/release-install-debug/crypto/openssl/crypto/lhash/lhash.h projects/release-install-debug/crypto/openssl/crypto/md2/md2.c projects/release-install-debug/crypto/openssl/crypto/md2/md2.h projects/release-install-debug/crypto/openssl/crypto/md2/md2_dgst.c projects/release-install-debug/crypto/openssl/crypto/md2/md2_one.c projects/release-install-debug/crypto/openssl/crypto/md2/md2test.c projects/release-install-debug/crypto/openssl/crypto/md32_common.h projects/release-install-debug/crypto/openssl/crypto/md4/md4.c projects/release-install-debug/crypto/openssl/crypto/md4/md4.h projects/release-install-debug/crypto/openssl/crypto/md4/md4_dgst.c projects/release-install-debug/crypto/openssl/crypto/md4/md4_locl.h projects/release-install-debug/crypto/openssl/crypto/md4/md4_one.c projects/release-install-debug/crypto/openssl/crypto/md4/md4test.c projects/release-install-debug/crypto/openssl/crypto/md5/md5.c projects/release-install-debug/crypto/openssl/crypto/md5/md5.h projects/release-install-debug/crypto/openssl/crypto/md5/md5_dgst.c projects/release-install-debug/crypto/openssl/crypto/md5/md5_locl.h projects/release-install-debug/crypto/openssl/crypto/md5/md5_one.c projects/release-install-debug/crypto/openssl/crypto/md5/md5test.c projects/release-install-debug/crypto/openssl/crypto/mdc2/mdc2.h projects/release-install-debug/crypto/openssl/crypto/mdc2/mdc2_one.c projects/release-install-debug/crypto/openssl/crypto/mdc2/mdc2dgst.c projects/release-install-debug/crypto/openssl/crypto/mdc2/mdc2test.c projects/release-install-debug/crypto/openssl/crypto/mem.c projects/release-install-debug/crypto/openssl/crypto/mem_clr.c projects/release-install-debug/crypto/openssl/crypto/mem_dbg.c projects/release-install-debug/crypto/openssl/crypto/modes/cbc128.c projects/release-install-debug/crypto/openssl/crypto/modes/ccm128.c projects/release-install-debug/crypto/openssl/crypto/modes/cfb128.c projects/release-install-debug/crypto/openssl/crypto/modes/ctr128.c projects/release-install-debug/crypto/openssl/crypto/modes/cts128.c projects/release-install-debug/crypto/openssl/crypto/modes/gcm128.c projects/release-install-debug/crypto/openssl/crypto/modes/modes.h projects/release-install-debug/crypto/openssl/crypto/modes/modes_lcl.h projects/release-install-debug/crypto/openssl/crypto/modes/ofb128.c projects/release-install-debug/crypto/openssl/crypto/modes/xts128.c projects/release-install-debug/crypto/openssl/crypto/o_dir.c projects/release-install-debug/crypto/openssl/crypto/o_dir.h projects/release-install-debug/crypto/openssl/crypto/o_dir_test.c projects/release-install-debug/crypto/openssl/crypto/o_fips.c projects/release-install-debug/crypto/openssl/crypto/o_init.c projects/release-install-debug/crypto/openssl/crypto/o_str.c projects/release-install-debug/crypto/openssl/crypto/o_str.h projects/release-install-debug/crypto/openssl/crypto/o_time.c projects/release-install-debug/crypto/openssl/crypto/o_time.h projects/release-install-debug/crypto/openssl/crypto/objects/o_names.c projects/release-install-debug/crypto/openssl/crypto/objects/obj_dat.c projects/release-install-debug/crypto/openssl/crypto/objects/obj_err.c projects/release-install-debug/crypto/openssl/crypto/objects/obj_lib.c projects/release-install-debug/crypto/openssl/crypto/objects/obj_mac.h projects/release-install-debug/crypto/openssl/crypto/objects/obj_xref.c projects/release-install-debug/crypto/openssl/crypto/objects/obj_xref.h projects/release-install-debug/crypto/openssl/crypto/objects/objects.h projects/release-install-debug/crypto/openssl/crypto/objects/objects.pl projects/release-install-debug/crypto/openssl/crypto/objects/objxref.pl projects/release-install-debug/crypto/openssl/crypto/ocsp/ocsp.h projects/release-install-debug/crypto/openssl/crypto/ocsp/ocsp_asn.c projects/release-install-debug/crypto/openssl/crypto/ocsp/ocsp_cl.c projects/release-install-debug/crypto/openssl/crypto/ocsp/ocsp_err.c projects/release-install-debug/crypto/openssl/crypto/ocsp/ocsp_ext.c projects/release-install-debug/crypto/openssl/crypto/ocsp/ocsp_ht.c projects/release-install-debug/crypto/openssl/crypto/ocsp/ocsp_lib.c projects/release-install-debug/crypto/openssl/crypto/ocsp/ocsp_prn.c projects/release-install-debug/crypto/openssl/crypto/ocsp/ocsp_srv.c projects/release-install-debug/crypto/openssl/crypto/ocsp/ocsp_vfy.c projects/release-install-debug/crypto/openssl/crypto/opensslv.h projects/release-install-debug/crypto/openssl/crypto/ossl_typ.h projects/release-install-debug/crypto/openssl/crypto/pem/pem.h projects/release-install-debug/crypto/openssl/crypto/pem/pem2.h projects/release-install-debug/crypto/openssl/crypto/pem/pem_all.c projects/release-install-debug/crypto/openssl/crypto/pem/pem_err.c projects/release-install-debug/crypto/openssl/crypto/pem/pem_info.c projects/release-install-debug/crypto/openssl/crypto/pem/pem_lib.c projects/release-install-debug/crypto/openssl/crypto/pem/pem_oth.c projects/release-install-debug/crypto/openssl/crypto/pem/pem_pk8.c projects/release-install-debug/crypto/openssl/crypto/pem/pem_pkey.c projects/release-install-debug/crypto/openssl/crypto/pem/pem_seal.c projects/release-install-debug/crypto/openssl/crypto/pem/pem_sign.c projects/release-install-debug/crypto/openssl/crypto/pem/pem_x509.c projects/release-install-debug/crypto/openssl/crypto/pem/pem_xaux.c projects/release-install-debug/crypto/openssl/crypto/pem/pvkfmt.c projects/release-install-debug/crypto/openssl/crypto/pkcs12/p12_add.c projects/release-install-debug/crypto/openssl/crypto/pkcs12/p12_asn.c projects/release-install-debug/crypto/openssl/crypto/pkcs12/p12_attr.c projects/release-install-debug/crypto/openssl/crypto/pkcs12/p12_crpt.c projects/release-install-debug/crypto/openssl/crypto/pkcs12/p12_crt.c projects/release-install-debug/crypto/openssl/crypto/pkcs12/p12_decr.c projects/release-install-debug/crypto/openssl/crypto/pkcs12/p12_init.c projects/release-install-debug/crypto/openssl/crypto/pkcs12/p12_key.c projects/release-install-debug/crypto/openssl/crypto/pkcs12/p12_kiss.c projects/release-install-debug/crypto/openssl/crypto/pkcs12/p12_mutl.c projects/release-install-debug/crypto/openssl/crypto/pkcs12/p12_npas.c projects/release-install-debug/crypto/openssl/crypto/pkcs12/p12_p8d.c projects/release-install-debug/crypto/openssl/crypto/pkcs12/p12_p8e.c projects/release-install-debug/crypto/openssl/crypto/pkcs12/p12_utl.c projects/release-install-debug/crypto/openssl/crypto/pkcs12/pk12err.c projects/release-install-debug/crypto/openssl/crypto/pkcs12/pkcs12.h projects/release-install-debug/crypto/openssl/crypto/pkcs7/bio_pk7.c projects/release-install-debug/crypto/openssl/crypto/pkcs7/pk7_asn1.c projects/release-install-debug/crypto/openssl/crypto/pkcs7/pk7_attr.c projects/release-install-debug/crypto/openssl/crypto/pkcs7/pk7_dgst.c projects/release-install-debug/crypto/openssl/crypto/pkcs7/pk7_doit.c projects/release-install-debug/crypto/openssl/crypto/pkcs7/pk7_enc.c projects/release-install-debug/crypto/openssl/crypto/pkcs7/pk7_lib.c projects/release-install-debug/crypto/openssl/crypto/pkcs7/pk7_mime.c projects/release-install-debug/crypto/openssl/crypto/pkcs7/pk7_smime.c projects/release-install-debug/crypto/openssl/crypto/pkcs7/pkcs7.h projects/release-install-debug/crypto/openssl/crypto/pkcs7/pkcs7err.c projects/release-install-debug/crypto/openssl/crypto/ppccap.c projects/release-install-debug/crypto/openssl/crypto/pqueue/pq_test.c projects/release-install-debug/crypto/openssl/crypto/pqueue/pqueue.c projects/release-install-debug/crypto/openssl/crypto/pqueue/pqueue.h projects/release-install-debug/crypto/openssl/crypto/rand/md_rand.c projects/release-install-debug/crypto/openssl/crypto/rand/rand.h projects/release-install-debug/crypto/openssl/crypto/rand/rand_egd.c projects/release-install-debug/crypto/openssl/crypto/rand/rand_err.c projects/release-install-debug/crypto/openssl/crypto/rand/rand_lcl.h projects/release-install-debug/crypto/openssl/crypto/rand/rand_lib.c projects/release-install-debug/crypto/openssl/crypto/rand/rand_unix.c projects/release-install-debug/crypto/openssl/crypto/rand/randfile.c projects/release-install-debug/crypto/openssl/crypto/rand/randtest.c projects/release-install-debug/crypto/openssl/crypto/rc2/rc2.h projects/release-install-debug/crypto/openssl/crypto/rc2/rc2_cbc.c projects/release-install-debug/crypto/openssl/crypto/rc2/rc2_ecb.c projects/release-install-debug/crypto/openssl/crypto/rc2/rc2_locl.h projects/release-install-debug/crypto/openssl/crypto/rc2/rc2_skey.c projects/release-install-debug/crypto/openssl/crypto/rc2/rc2cfb64.c projects/release-install-debug/crypto/openssl/crypto/rc2/rc2ofb64.c projects/release-install-debug/crypto/openssl/crypto/rc2/rc2speed.c projects/release-install-debug/crypto/openssl/crypto/rc2/rc2test.c projects/release-install-debug/crypto/openssl/crypto/rc2/tab.c projects/release-install-debug/crypto/openssl/crypto/rc4/rc4.c projects/release-install-debug/crypto/openssl/crypto/rc4/rc4.h projects/release-install-debug/crypto/openssl/crypto/rc4/rc4_enc.c projects/release-install-debug/crypto/openssl/crypto/rc4/rc4_locl.h projects/release-install-debug/crypto/openssl/crypto/rc4/rc4_skey.c projects/release-install-debug/crypto/openssl/crypto/rc4/rc4_utl.c projects/release-install-debug/crypto/openssl/crypto/rc4/rc4speed.c projects/release-install-debug/crypto/openssl/crypto/rc4/rc4test.c projects/release-install-debug/crypto/openssl/crypto/rc5/rc5.h projects/release-install-debug/crypto/openssl/crypto/rc5/rc5_ecb.c projects/release-install-debug/crypto/openssl/crypto/rc5/rc5_enc.c projects/release-install-debug/crypto/openssl/crypto/rc5/rc5_locl.h projects/release-install-debug/crypto/openssl/crypto/rc5/rc5_skey.c projects/release-install-debug/crypto/openssl/crypto/rc5/rc5cfb64.c projects/release-install-debug/crypto/openssl/crypto/rc5/rc5ofb64.c projects/release-install-debug/crypto/openssl/crypto/rc5/rc5speed.c projects/release-install-debug/crypto/openssl/crypto/rc5/rc5test.c projects/release-install-debug/crypto/openssl/crypto/ripemd/ripemd.h projects/release-install-debug/crypto/openssl/crypto/ripemd/rmd160.c projects/release-install-debug/crypto/openssl/crypto/ripemd/rmd_dgst.c projects/release-install-debug/crypto/openssl/crypto/ripemd/rmd_locl.h projects/release-install-debug/crypto/openssl/crypto/ripemd/rmd_one.c projects/release-install-debug/crypto/openssl/crypto/ripemd/rmdconst.h projects/release-install-debug/crypto/openssl/crypto/ripemd/rmdtest.c projects/release-install-debug/crypto/openssl/crypto/rsa/rsa.h projects/release-install-debug/crypto/openssl/crypto/rsa/rsa_ameth.c projects/release-install-debug/crypto/openssl/crypto/rsa/rsa_asn1.c projects/release-install-debug/crypto/openssl/crypto/rsa/rsa_chk.c projects/release-install-debug/crypto/openssl/crypto/rsa/rsa_crpt.c projects/release-install-debug/crypto/openssl/crypto/rsa/rsa_depr.c projects/release-install-debug/crypto/openssl/crypto/rsa/rsa_eay.c projects/release-install-debug/crypto/openssl/crypto/rsa/rsa_err.c projects/release-install-debug/crypto/openssl/crypto/rsa/rsa_gen.c projects/release-install-debug/crypto/openssl/crypto/rsa/rsa_lib.c projects/release-install-debug/crypto/openssl/crypto/rsa/rsa_locl.h projects/release-install-debug/crypto/openssl/crypto/rsa/rsa_none.c projects/release-install-debug/crypto/openssl/crypto/rsa/rsa_null.c projects/release-install-debug/crypto/openssl/crypto/rsa/rsa_oaep.c projects/release-install-debug/crypto/openssl/crypto/rsa/rsa_pk1.c projects/release-install-debug/crypto/openssl/crypto/rsa/rsa_pmeth.c projects/release-install-debug/crypto/openssl/crypto/rsa/rsa_prn.c projects/release-install-debug/crypto/openssl/crypto/rsa/rsa_pss.c projects/release-install-debug/crypto/openssl/crypto/rsa/rsa_saos.c projects/release-install-debug/crypto/openssl/crypto/rsa/rsa_sign.c projects/release-install-debug/crypto/openssl/crypto/rsa/rsa_ssl.c projects/release-install-debug/crypto/openssl/crypto/rsa/rsa_test.c projects/release-install-debug/crypto/openssl/crypto/rsa/rsa_x931.c projects/release-install-debug/crypto/openssl/crypto/s390xcap.c projects/release-install-debug/crypto/openssl/crypto/seed/seed.c projects/release-install-debug/crypto/openssl/crypto/seed/seed.h projects/release-install-debug/crypto/openssl/crypto/seed/seed_cbc.c projects/release-install-debug/crypto/openssl/crypto/seed/seed_cfb.c projects/release-install-debug/crypto/openssl/crypto/seed/seed_ecb.c projects/release-install-debug/crypto/openssl/crypto/seed/seed_locl.h projects/release-install-debug/crypto/openssl/crypto/seed/seed_ofb.c projects/release-install-debug/crypto/openssl/crypto/sha/sha.c projects/release-install-debug/crypto/openssl/crypto/sha/sha.h projects/release-install-debug/crypto/openssl/crypto/sha/sha1.c projects/release-install-debug/crypto/openssl/crypto/sha/sha1_one.c projects/release-install-debug/crypto/openssl/crypto/sha/sha1dgst.c projects/release-install-debug/crypto/openssl/crypto/sha/sha1test.c projects/release-install-debug/crypto/openssl/crypto/sha/sha256.c projects/release-install-debug/crypto/openssl/crypto/sha/sha256t.c projects/release-install-debug/crypto/openssl/crypto/sha/sha512.c projects/release-install-debug/crypto/openssl/crypto/sha/sha512t.c projects/release-install-debug/crypto/openssl/crypto/sha/sha_dgst.c projects/release-install-debug/crypto/openssl/crypto/sha/sha_locl.h projects/release-install-debug/crypto/openssl/crypto/sha/sha_one.c projects/release-install-debug/crypto/openssl/crypto/sha/shatest.c projects/release-install-debug/crypto/openssl/crypto/sparcv9cap.c projects/release-install-debug/crypto/openssl/crypto/srp/srp.h projects/release-install-debug/crypto/openssl/crypto/srp/srp_grps.h projects/release-install-debug/crypto/openssl/crypto/srp/srp_lcl.h projects/release-install-debug/crypto/openssl/crypto/srp/srp_lib.c projects/release-install-debug/crypto/openssl/crypto/srp/srp_vfy.c projects/release-install-debug/crypto/openssl/crypto/srp/srptest.c projects/release-install-debug/crypto/openssl/crypto/stack/safestack.h projects/release-install-debug/crypto/openssl/crypto/stack/stack.c projects/release-install-debug/crypto/openssl/crypto/stack/stack.h projects/release-install-debug/crypto/openssl/crypto/store/store.h projects/release-install-debug/crypto/openssl/crypto/store/str_err.c projects/release-install-debug/crypto/openssl/crypto/store/str_lib.c projects/release-install-debug/crypto/openssl/crypto/store/str_locl.h projects/release-install-debug/crypto/openssl/crypto/store/str_mem.c projects/release-install-debug/crypto/openssl/crypto/store/str_meth.c projects/release-install-debug/crypto/openssl/crypto/symhacks.h projects/release-install-debug/crypto/openssl/crypto/threads/mttest.c projects/release-install-debug/crypto/openssl/crypto/threads/th-lock.c projects/release-install-debug/crypto/openssl/crypto/ts/ts.h projects/release-install-debug/crypto/openssl/crypto/ts/ts_asn1.c projects/release-install-debug/crypto/openssl/crypto/ts/ts_conf.c projects/release-install-debug/crypto/openssl/crypto/ts/ts_err.c projects/release-install-debug/crypto/openssl/crypto/ts/ts_lib.c projects/release-install-debug/crypto/openssl/crypto/ts/ts_req_print.c projects/release-install-debug/crypto/openssl/crypto/ts/ts_req_utils.c projects/release-install-debug/crypto/openssl/crypto/ts/ts_rsp_print.c projects/release-install-debug/crypto/openssl/crypto/ts/ts_rsp_sign.c projects/release-install-debug/crypto/openssl/crypto/ts/ts_rsp_utils.c projects/release-install-debug/crypto/openssl/crypto/ts/ts_rsp_verify.c projects/release-install-debug/crypto/openssl/crypto/ts/ts_verify_ctx.c projects/release-install-debug/crypto/openssl/crypto/txt_db/txt_db.c projects/release-install-debug/crypto/openssl/crypto/txt_db/txt_db.h projects/release-install-debug/crypto/openssl/crypto/ui/ui.h projects/release-install-debug/crypto/openssl/crypto/ui/ui_compat.c projects/release-install-debug/crypto/openssl/crypto/ui/ui_compat.h projects/release-install-debug/crypto/openssl/crypto/ui/ui_err.c projects/release-install-debug/crypto/openssl/crypto/ui/ui_lib.c projects/release-install-debug/crypto/openssl/crypto/ui/ui_locl.h projects/release-install-debug/crypto/openssl/crypto/ui/ui_openssl.c projects/release-install-debug/crypto/openssl/crypto/ui/ui_util.c projects/release-install-debug/crypto/openssl/crypto/uid.c projects/release-install-debug/crypto/openssl/crypto/vms_rms.h projects/release-install-debug/crypto/openssl/crypto/whrlpool/whrlpool.h projects/release-install-debug/crypto/openssl/crypto/whrlpool/wp_block.c projects/release-install-debug/crypto/openssl/crypto/whrlpool/wp_dgst.c projects/release-install-debug/crypto/openssl/crypto/whrlpool/wp_locl.h projects/release-install-debug/crypto/openssl/crypto/whrlpool/wp_test.c projects/release-install-debug/crypto/openssl/crypto/x509/by_dir.c projects/release-install-debug/crypto/openssl/crypto/x509/by_file.c projects/release-install-debug/crypto/openssl/crypto/x509/x509.h projects/release-install-debug/crypto/openssl/crypto/x509/x509_att.c projects/release-install-debug/crypto/openssl/crypto/x509/x509_cmp.c projects/release-install-debug/crypto/openssl/crypto/x509/x509_d2.c projects/release-install-debug/crypto/openssl/crypto/x509/x509_def.c projects/release-install-debug/crypto/openssl/crypto/x509/x509_err.c projects/release-install-debug/crypto/openssl/crypto/x509/x509_ext.c projects/release-install-debug/crypto/openssl/crypto/x509/x509_lu.c projects/release-install-debug/crypto/openssl/crypto/x509/x509_obj.c projects/release-install-debug/crypto/openssl/crypto/x509/x509_r2x.c projects/release-install-debug/crypto/openssl/crypto/x509/x509_req.c projects/release-install-debug/crypto/openssl/crypto/x509/x509_set.c projects/release-install-debug/crypto/openssl/crypto/x509/x509_trs.c projects/release-install-debug/crypto/openssl/crypto/x509/x509_txt.c projects/release-install-debug/crypto/openssl/crypto/x509/x509_v3.c projects/release-install-debug/crypto/openssl/crypto/x509/x509_vfy.c projects/release-install-debug/crypto/openssl/crypto/x509/x509_vfy.h projects/release-install-debug/crypto/openssl/crypto/x509/x509_vpm.c projects/release-install-debug/crypto/openssl/crypto/x509/x509cset.c projects/release-install-debug/crypto/openssl/crypto/x509/x509name.c projects/release-install-debug/crypto/openssl/crypto/x509/x509rset.c projects/release-install-debug/crypto/openssl/crypto/x509/x509spki.c projects/release-install-debug/crypto/openssl/crypto/x509/x509type.c projects/release-install-debug/crypto/openssl/crypto/x509/x_all.c projects/release-install-debug/crypto/openssl/crypto/x509v3/ext_dat.h projects/release-install-debug/crypto/openssl/crypto/x509v3/pcy_cache.c projects/release-install-debug/crypto/openssl/crypto/x509v3/pcy_data.c projects/release-install-debug/crypto/openssl/crypto/x509v3/pcy_int.h projects/release-install-debug/crypto/openssl/crypto/x509v3/pcy_lib.c projects/release-install-debug/crypto/openssl/crypto/x509v3/pcy_map.c projects/release-install-debug/crypto/openssl/crypto/x509v3/pcy_node.c projects/release-install-debug/crypto/openssl/crypto/x509v3/pcy_tree.c projects/release-install-debug/crypto/openssl/crypto/x509v3/tabtest.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_addr.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_akey.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_akeya.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_alt.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_asid.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_bcons.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_bitst.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_conf.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_cpols.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_crld.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_enum.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_extku.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_genn.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_ia5.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_info.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_int.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_lib.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_ncons.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_ocsp.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_pci.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_pcia.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_pcons.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_pku.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_pmaps.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_prn.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_purp.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_skey.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_sxnet.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3_utl.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3conf.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3err.c projects/release-install-debug/crypto/openssl/crypto/x509v3/v3prin.c projects/release-install-debug/crypto/openssl/crypto/x509v3/x509v3.h projects/release-install-debug/crypto/openssl/doc/apps/ciphers.pod projects/release-install-debug/crypto/openssl/doc/apps/config.pod projects/release-install-debug/crypto/openssl/doc/apps/ocsp.pod projects/release-install-debug/crypto/openssl/doc/crypto/CMS_get0_type.pod projects/release-install-debug/crypto/openssl/doc/crypto/CONF_modules_load_file.pod projects/release-install-debug/crypto/openssl/doc/crypto/OPENSSL_config.pod projects/release-install-debug/crypto/openssl/doc/crypto/d2i_X509.pod projects/release-install-debug/crypto/openssl/doc/ssl/SSL_pending.pod projects/release-install-debug/crypto/openssl/doc/ssl/ssl.pod projects/release-install-debug/crypto/openssl/e_os.h projects/release-install-debug/crypto/openssl/e_os2.h projects/release-install-debug/crypto/openssl/engines/ccgost/e_gost_err.c projects/release-install-debug/crypto/openssl/engines/ccgost/e_gost_err.h projects/release-install-debug/crypto/openssl/engines/ccgost/gost2001.c projects/release-install-debug/crypto/openssl/engines/ccgost/gost2001_keyx.c projects/release-install-debug/crypto/openssl/engines/ccgost/gost2001_keyx.h projects/release-install-debug/crypto/openssl/engines/ccgost/gost89.c projects/release-install-debug/crypto/openssl/engines/ccgost/gost89.h projects/release-install-debug/crypto/openssl/engines/ccgost/gost94_keyx.c projects/release-install-debug/crypto/openssl/engines/ccgost/gost_ameth.c projects/release-install-debug/crypto/openssl/engines/ccgost/gost_asn1.c projects/release-install-debug/crypto/openssl/engines/ccgost/gost_crypt.c projects/release-install-debug/crypto/openssl/engines/ccgost/gost_ctl.c projects/release-install-debug/crypto/openssl/engines/ccgost/gost_eng.c projects/release-install-debug/crypto/openssl/engines/ccgost/gost_keywrap.c projects/release-install-debug/crypto/openssl/engines/ccgost/gost_keywrap.h projects/release-install-debug/crypto/openssl/engines/ccgost/gost_lcl.h projects/release-install-debug/crypto/openssl/engines/ccgost/gost_md.c projects/release-install-debug/crypto/openssl/engines/ccgost/gost_params.c projects/release-install-debug/crypto/openssl/engines/ccgost/gost_params.h projects/release-install-debug/crypto/openssl/engines/ccgost/gost_pmeth.c projects/release-install-debug/crypto/openssl/engines/ccgost/gost_sign.c projects/release-install-debug/crypto/openssl/engines/ccgost/gosthash.c projects/release-install-debug/crypto/openssl/engines/ccgost/gosthash.h projects/release-install-debug/crypto/openssl/engines/ccgost/gostsum.c projects/release-install-debug/crypto/openssl/engines/e_4758cca.c projects/release-install-debug/crypto/openssl/engines/e_4758cca_err.c projects/release-install-debug/crypto/openssl/engines/e_4758cca_err.h projects/release-install-debug/crypto/openssl/engines/e_aep.c projects/release-install-debug/crypto/openssl/engines/e_aep_err.c projects/release-install-debug/crypto/openssl/engines/e_aep_err.h projects/release-install-debug/crypto/openssl/engines/e_atalla.c projects/release-install-debug/crypto/openssl/engines/e_atalla_err.c projects/release-install-debug/crypto/openssl/engines/e_atalla_err.h projects/release-install-debug/crypto/openssl/engines/e_capi.c projects/release-install-debug/crypto/openssl/engines/e_capi_err.c projects/release-install-debug/crypto/openssl/engines/e_capi_err.h projects/release-install-debug/crypto/openssl/engines/e_chil.c projects/release-install-debug/crypto/openssl/engines/e_chil_err.c projects/release-install-debug/crypto/openssl/engines/e_chil_err.h projects/release-install-debug/crypto/openssl/engines/e_cswift.c projects/release-install-debug/crypto/openssl/engines/e_cswift_err.c projects/release-install-debug/crypto/openssl/engines/e_cswift_err.h projects/release-install-debug/crypto/openssl/engines/e_gmp.c projects/release-install-debug/crypto/openssl/engines/e_gmp_err.c projects/release-install-debug/crypto/openssl/engines/e_gmp_err.h projects/release-install-debug/crypto/openssl/engines/e_nuron.c projects/release-install-debug/crypto/openssl/engines/e_nuron_err.c projects/release-install-debug/crypto/openssl/engines/e_nuron_err.h projects/release-install-debug/crypto/openssl/engines/e_padlock.c projects/release-install-debug/crypto/openssl/engines/e_sureware.c projects/release-install-debug/crypto/openssl/engines/e_sureware_err.c projects/release-install-debug/crypto/openssl/engines/e_sureware_err.h projects/release-install-debug/crypto/openssl/engines/e_ubsec.c projects/release-install-debug/crypto/openssl/engines/e_ubsec_err.c projects/release-install-debug/crypto/openssl/engines/e_ubsec_err.h projects/release-install-debug/crypto/openssl/engines/vendor_defns/aep.h projects/release-install-debug/crypto/openssl/engines/vendor_defns/atalla.h projects/release-install-debug/crypto/openssl/engines/vendor_defns/cswift.h projects/release-install-debug/crypto/openssl/engines/vendor_defns/hw_4758_cca.h projects/release-install-debug/crypto/openssl/engines/vendor_defns/hw_ubsec.h projects/release-install-debug/crypto/openssl/engines/vendor_defns/hwcryptohook.h projects/release-install-debug/crypto/openssl/engines/vendor_defns/sureware.h projects/release-install-debug/crypto/openssl/ssl/bio_ssl.c projects/release-install-debug/crypto/openssl/ssl/d1_both.c projects/release-install-debug/crypto/openssl/ssl/d1_clnt.c projects/release-install-debug/crypto/openssl/ssl/d1_enc.c projects/release-install-debug/crypto/openssl/ssl/d1_lib.c projects/release-install-debug/crypto/openssl/ssl/d1_meth.c projects/release-install-debug/crypto/openssl/ssl/d1_pkt.c projects/release-install-debug/crypto/openssl/ssl/d1_srtp.c projects/release-install-debug/crypto/openssl/ssl/d1_srvr.c projects/release-install-debug/crypto/openssl/ssl/dtls1.h projects/release-install-debug/crypto/openssl/ssl/heartbeat_test.c projects/release-install-debug/crypto/openssl/ssl/kssl.c projects/release-install-debug/crypto/openssl/ssl/kssl.h projects/release-install-debug/crypto/openssl/ssl/kssl_lcl.h projects/release-install-debug/crypto/openssl/ssl/s23_clnt.c projects/release-install-debug/crypto/openssl/ssl/s23_lib.c projects/release-install-debug/crypto/openssl/ssl/s23_meth.c projects/release-install-debug/crypto/openssl/ssl/s23_pkt.c projects/release-install-debug/crypto/openssl/ssl/s23_srvr.c projects/release-install-debug/crypto/openssl/ssl/s2_clnt.c projects/release-install-debug/crypto/openssl/ssl/s2_enc.c projects/release-install-debug/crypto/openssl/ssl/s2_lib.c projects/release-install-debug/crypto/openssl/ssl/s2_meth.c projects/release-install-debug/crypto/openssl/ssl/s2_pkt.c projects/release-install-debug/crypto/openssl/ssl/s2_srvr.c projects/release-install-debug/crypto/openssl/ssl/s3_both.c projects/release-install-debug/crypto/openssl/ssl/s3_cbc.c projects/release-install-debug/crypto/openssl/ssl/s3_clnt.c projects/release-install-debug/crypto/openssl/ssl/s3_enc.c projects/release-install-debug/crypto/openssl/ssl/s3_lib.c projects/release-install-debug/crypto/openssl/ssl/s3_meth.c projects/release-install-debug/crypto/openssl/ssl/s3_pkt.c projects/release-install-debug/crypto/openssl/ssl/s3_srvr.c projects/release-install-debug/crypto/openssl/ssl/srtp.h projects/release-install-debug/crypto/openssl/ssl/ssl.h projects/release-install-debug/crypto/openssl/ssl/ssl2.h projects/release-install-debug/crypto/openssl/ssl/ssl23.h projects/release-install-debug/crypto/openssl/ssl/ssl3.h projects/release-install-debug/crypto/openssl/ssl/ssl_algs.c projects/release-install-debug/crypto/openssl/ssl/ssl_asn1.c projects/release-install-debug/crypto/openssl/ssl/ssl_cert.c projects/release-install-debug/crypto/openssl/ssl/ssl_ciph.c projects/release-install-debug/crypto/openssl/ssl/ssl_err.c projects/release-install-debug/crypto/openssl/ssl/ssl_err2.c projects/release-install-debug/crypto/openssl/ssl/ssl_lib.c projects/release-install-debug/crypto/openssl/ssl/ssl_locl.h projects/release-install-debug/crypto/openssl/ssl/ssl_rsa.c projects/release-install-debug/crypto/openssl/ssl/ssl_sess.c projects/release-install-debug/crypto/openssl/ssl/ssl_stat.c projects/release-install-debug/crypto/openssl/ssl/ssl_task.c projects/release-install-debug/crypto/openssl/ssl/ssl_txt.c projects/release-install-debug/crypto/openssl/ssl/ssl_utst.c projects/release-install-debug/crypto/openssl/ssl/ssltest.c projects/release-install-debug/crypto/openssl/ssl/t1_clnt.c projects/release-install-debug/crypto/openssl/ssl/t1_enc.c projects/release-install-debug/crypto/openssl/ssl/t1_lib.c projects/release-install-debug/crypto/openssl/ssl/t1_meth.c projects/release-install-debug/crypto/openssl/ssl/t1_reneg.c projects/release-install-debug/crypto/openssl/ssl/t1_srvr.c projects/release-install-debug/crypto/openssl/ssl/tls1.h projects/release-install-debug/crypto/openssl/ssl/tls_srp.c projects/release-install-debug/crypto/openssl/util/ck_errf.pl projects/release-install-debug/crypto/openssl/util/libeay.num projects/release-install-debug/crypto/openssl/util/mkerr.pl projects/release-install-debug/etc/Makefile projects/release-install-debug/etc/auto_master projects/release-install-debug/etc/autofs/Makefile projects/release-install-debug/etc/autofs/include_ldap projects/release-install-debug/etc/defaults/periodic.conf projects/release-install-debug/etc/defaults/rc.conf projects/release-install-debug/etc/login.conf projects/release-install-debug/etc/mtree/BSD.debug.dist projects/release-install-debug/etc/mtree/BSD.include.dist projects/release-install-debug/etc/mtree/BSD.tests.dist projects/release-install-debug/etc/mtree/BSD.usr.dist projects/release-install-debug/etc/netstart projects/release-install-debug/etc/ntp.conf projects/release-install-debug/etc/periodic/daily/420.status-network projects/release-install-debug/etc/rc.d/Makefile projects/release-install-debug/etc/rc.d/hostid_save projects/release-install-debug/etc/rc.d/mountd projects/release-install-debug/etc/rc.d/netif projects/release-install-debug/etc/rc.d/nfsd projects/release-install-debug/etc/rc.d/pflog projects/release-install-debug/games/Makefile projects/release-install-debug/games/fortune/tools/do_uniq.py projects/release-install-debug/gnu/lib/libgcc/Makefile projects/release-install-debug/gnu/usr.bin/binutils/Makefile projects/release-install-debug/gnu/usr.bin/binutils/doc/Makefile projects/release-install-debug/gnu/usr.bin/diff/Makefile projects/release-install-debug/gnu/usr.bin/gperf/Makefile projects/release-install-debug/include/Makefile projects/release-install-debug/include/iconv.h projects/release-install-debug/include/pthread.h projects/release-install-debug/include/signal.h projects/release-install-debug/include/stdlib.h projects/release-install-debug/lib/Makefile projects/release-install-debug/lib/atf/libatf-c++/Makefile projects/release-install-debug/lib/clang/Makefile projects/release-install-debug/lib/clang/clang.build.mk projects/release-install-debug/lib/clang/include/Makefile projects/release-install-debug/lib/clang/include/clang/Basic/Version.inc projects/release-install-debug/lib/clang/include/clang/Config/config.h projects/release-install-debug/lib/clang/include/llvm/Config/config.h projects/release-install-debug/lib/clang/include/llvm/Config/llvm-config.h projects/release-install-debug/lib/clang/include/llvm/Support/DataTypes.h projects/release-install-debug/lib/clang/libclanganalysis/Makefile projects/release-install-debug/lib/clang/libclangast/Makefile projects/release-install-debug/lib/clang/libclangbasic/Makefile projects/release-install-debug/lib/clang/libclangcodegen/Makefile projects/release-install-debug/lib/clang/libclangdriver/Makefile projects/release-install-debug/lib/clang/libclangfrontend/Makefile projects/release-install-debug/lib/clang/libclangfrontendtool/Makefile projects/release-install-debug/lib/clang/libclangsema/Makefile projects/release-install-debug/lib/clang/libclangstaticanalyzerfrontend/Makefile projects/release-install-debug/lib/clang/liblldbAPI/Makefile projects/release-install-debug/lib/clang/liblldbCore/Makefile projects/release-install-debug/lib/clang/liblldbDataFormatters/Makefile projects/release-install-debug/lib/clang/liblldbExpression/Makefile projects/release-install-debug/lib/clang/liblldbHostCommon/Makefile projects/release-install-debug/lib/clang/liblldbHostFreeBSD/Makefile projects/release-install-debug/lib/clang/liblldbHostPOSIX/Makefile projects/release-install-debug/lib/clang/liblldbInterpreter/Makefile projects/release-install-debug/lib/clang/liblldbPluginProcessElfCore/Makefile projects/release-install-debug/lib/clang/liblldbPluginProcessPOSIX/Makefile projects/release-install-debug/lib/clang/liblldbPluginProcessUtility/Makefile projects/release-install-debug/lib/clang/liblldbSymbol/Makefile projects/release-install-debug/lib/clang/liblldbTarget/Makefile projects/release-install-debug/lib/clang/liblldbUtility/Makefile projects/release-install-debug/lib/clang/libllvmaarch64codegen/Makefile projects/release-install-debug/lib/clang/libllvmanalysis/Makefile projects/release-install-debug/lib/clang/libllvmarmcodegen/Makefile projects/release-install-debug/lib/clang/libllvmasmprinter/Makefile projects/release-install-debug/lib/clang/libllvmcodegen/Makefile projects/release-install-debug/lib/clang/libllvmcore/Makefile projects/release-install-debug/lib/clang/libllvmdebuginfo/Makefile projects/release-install-debug/lib/clang/libllvmexecutionengine/Makefile projects/release-install-debug/lib/clang/libllvminstrumentation/Makefile projects/release-install-debug/lib/clang/libllvmipa/Makefile projects/release-install-debug/lib/clang/libllvmmc/Makefile projects/release-install-debug/lib/clang/libllvmmcdisassembler/Makefile projects/release-install-debug/lib/clang/libllvmmipscodegen/Makefile projects/release-install-debug/lib/clang/libllvmmipsdesc/Makefile projects/release-install-debug/lib/clang/libllvmobjcarcopts/Makefile projects/release-install-debug/lib/clang/libllvmpowerpccodegen/Makefile projects/release-install-debug/lib/clang/libllvmprofiledata/Makefile projects/release-install-debug/lib/clang/libllvmruntimedyld/Makefile projects/release-install-debug/lib/clang/libllvmscalaropts/Makefile projects/release-install-debug/lib/clang/libllvmselectiondag/Makefile projects/release-install-debug/lib/clang/libllvmsparccodegen/Makefile projects/release-install-debug/lib/clang/libllvmsupport/Makefile projects/release-install-debug/lib/clang/libllvmtarget/Makefile projects/release-install-debug/lib/clang/libllvmtransformutils/Makefile projects/release-install-debug/lib/clang/libllvmx86codegen/Makefile projects/release-install-debug/lib/csu/i386-elf/Makefile projects/release-install-debug/lib/libarchive/Makefile projects/release-install-debug/lib/libbluetooth/bluetooth.c projects/release-install-debug/lib/libbluetooth/dev.c projects/release-install-debug/lib/libbluetooth/hci.c projects/release-install-debug/lib/libc/Makefile projects/release-install-debug/lib/libc/amd64/sys/Makefile.inc projects/release-install-debug/lib/libc/arm/sys/Makefile.inc projects/release-install-debug/lib/libc/gen/_spinlock_stub.c projects/release-install-debug/lib/libc/gen/fts.c projects/release-install-debug/lib/libc/gen/getpwent.c projects/release-install-debug/lib/libc/gen/nice.3 projects/release-install-debug/lib/libc/gen/nice.c projects/release-install-debug/lib/libc/gen/nlist.c projects/release-install-debug/lib/libc/gen/setmode.3 projects/release-install-debug/lib/libc/gen/setmode.c projects/release-install-debug/lib/libc/gen/setproctitle.c projects/release-install-debug/lib/libc/gen/tls.c projects/release-install-debug/lib/libc/gen/waitid.c projects/release-install-debug/lib/libc/gen/wordexp.c projects/release-install-debug/lib/libc/i386/sys/Makefile.inc projects/release-install-debug/lib/libc/iconv/__iconv.c projects/release-install-debug/lib/libc/iconv/bsd_iconv.c projects/release-install-debug/lib/libc/iconv/citrus_iconv.c projects/release-install-debug/lib/libc/iconv/citrus_iconv.h projects/release-install-debug/lib/libc/iconv/citrus_iconv_local.h projects/release-install-debug/lib/libc/iconv/citrus_none.c projects/release-install-debug/lib/libc/iconv/citrus_prop.c projects/release-install-debug/lib/libc/iconv/citrus_stdenc.h projects/release-install-debug/lib/libc/iconv/citrus_stdenc_local.h projects/release-install-debug/lib/libc/iconv/citrus_stdenc_template.h projects/release-install-debug/lib/libc/iconv/iconv-internal.h projects/release-install-debug/lib/libc/iconv/iconv.3 projects/release-install-debug/lib/libc/iconv/iconv.c projects/release-install-debug/lib/libc/iconv/iconv_compat.c projects/release-install-debug/lib/libc/include/compat.h projects/release-install-debug/lib/libc/include/libc_private.h projects/release-install-debug/lib/libc/locale/cXXrtomb_iconv.h projects/release-install-debug/lib/libc/locale/mbrtocXX_iconv.h projects/release-install-debug/lib/libc/mips/sys/Makefile.inc projects/release-install-debug/lib/libc/net/Symbol.map projects/release-install-debug/lib/libc/net/eui64.c projects/release-install-debug/lib/libc/net/getaddrinfo.c projects/release-install-debug/lib/libc/net/ip6opt.c projects/release-install-debug/lib/libc/net/name6.c projects/release-install-debug/lib/libc/net/sctp_sys_calls.c projects/release-install-debug/lib/libc/posix1e/acl_calc_mask.c projects/release-install-debug/lib/libc/posix1e/acl_strip.c projects/release-install-debug/lib/libc/powerpc/Makefile.inc projects/release-install-debug/lib/libc/powerpc/gen/_setjmp.S projects/release-install-debug/lib/libc/powerpc/gen/setjmp.S projects/release-install-debug/lib/libc/powerpc/gen/sigsetjmp.S projects/release-install-debug/lib/libc/powerpc/sys/Makefile.inc projects/release-install-debug/lib/libc/powerpc64/Makefile.inc projects/release-install-debug/lib/libc/powerpc64/gen/_setjmp.S projects/release-install-debug/lib/libc/powerpc64/gen/setjmp.S projects/release-install-debug/lib/libc/powerpc64/gen/sigsetjmp.S projects/release-install-debug/lib/libc/powerpc64/sys/Makefile.inc projects/release-install-debug/lib/libc/regex/engine.c projects/release-install-debug/lib/libc/regex/regcomp.c projects/release-install-debug/lib/libc/sparc64/Makefile.inc projects/release-install-debug/lib/libc/sparc64/sys/Makefile.inc projects/release-install-debug/lib/libc/stdio/flags.c projects/release-install-debug/lib/libc/stdlib/qsort.c projects/release-install-debug/lib/libc/stdlib/random.3 projects/release-install-debug/lib/libc/string/strlcat.c projects/release-install-debug/lib/libc/string/strlcpy.c projects/release-install-debug/lib/libc/sys/Makefile.inc projects/release-install-debug/lib/libc/sys/cap_ioctls_limit.2 projects/release-install-debug/lib/libc/sys/fcntl.c projects/release-install-debug/lib/libc/sys/interposing_table.c projects/release-install-debug/lib/libc/sys/kqueue.2 projects/release-install-debug/lib/libc/sys/mount.2 projects/release-install-debug/lib/libc/sys/open.2 projects/release-install-debug/lib/libc/sys/vfork.2 projects/release-install-debug/lib/libc/xdr/xdr_float.c projects/release-install-debug/lib/libclang_rt/Makefile.inc projects/release-install-debug/lib/libclang_rt/asan/Makefile projects/release-install-debug/lib/libclang_rt/san/Makefile projects/release-install-debug/lib/libcompiler_rt/Makefile projects/release-install-debug/lib/libdevstat/devstat.c projects/release-install-debug/lib/libelftc/elftc_version.c projects/release-install-debug/lib/libfetch/common.c projects/release-install-debug/lib/libfetch/fetch.3 projects/release-install-debug/lib/libgeom/geom_xml2tree.c projects/release-install-debug/lib/libgpio/Makefile projects/release-install-debug/lib/libgpio/gpio.3 projects/release-install-debug/lib/libgpio/gpio.c projects/release-install-debug/lib/libgpio/libgpio.h projects/release-install-debug/lib/libiconv_modules/BIG5/citrus_big5.c projects/release-install-debug/lib/libiconv_modules/DECHanyu/citrus_dechanyu.c projects/release-install-debug/lib/libiconv_modules/EUC/citrus_euc.c projects/release-install-debug/lib/libiconv_modules/EUCTW/citrus_euctw.c projects/release-install-debug/lib/libiconv_modules/GBK2K/citrus_gbk2k.c projects/release-install-debug/lib/libiconv_modules/HZ/citrus_hz.c projects/release-install-debug/lib/libiconv_modules/ISO2022/citrus_iso2022.c projects/release-install-debug/lib/libiconv_modules/JOHAB/citrus_johab.c projects/release-install-debug/lib/libiconv_modules/MSKanji/citrus_mskanji.c projects/release-install-debug/lib/libiconv_modules/UES/citrus_ues.c projects/release-install-debug/lib/libiconv_modules/UTF1632/citrus_utf1632.c projects/release-install-debug/lib/libiconv_modules/UTF7/citrus_utf7.c projects/release-install-debug/lib/libiconv_modules/UTF8/citrus_utf8.c projects/release-install-debug/lib/libiconv_modules/VIQR/citrus_viqr.c projects/release-install-debug/lib/libiconv_modules/ZW/citrus_zw.c projects/release-install-debug/lib/libiconv_modules/iconv_none/citrus_iconv_none.c projects/release-install-debug/lib/libiconv_modules/iconv_std/citrus_iconv_std.c projects/release-install-debug/lib/libkiconv/xlat16_iconv.c projects/release-install-debug/lib/liblzma/Symbol.map projects/release-install-debug/lib/liblzma/config.h projects/release-install-debug/lib/libnv/Makefile projects/release-install-debug/lib/libnv/nv.3 projects/release-install-debug/lib/libnv/tests/Makefile projects/release-install-debug/lib/libnv/tests/nvlist_send_recv_test.c projects/release-install-debug/lib/libpmc/libpmc.c projects/release-install-debug/lib/libpmc/pmc.3 projects/release-install-debug/lib/libpmc/pmc.haswell.3 projects/release-install-debug/lib/libpmc/pmc.ivybridge.3 projects/release-install-debug/lib/libpmc/pmc.ivybridgexeon.3 projects/release-install-debug/lib/libpmc/pmc.sandybridge.3 projects/release-install-debug/lib/libpmc/pmc.sandybridgexeon.3 projects/release-install-debug/lib/libproc/proc_sym.c projects/release-install-debug/lib/libsdp/search.c projects/release-install-debug/lib/libsdp/service.c projects/release-install-debug/lib/libsdp/session.c projects/release-install-debug/lib/libsdp/util.c projects/release-install-debug/lib/libstand/Makefile projects/release-install-debug/lib/libstand/dosfs.c projects/release-install-debug/lib/libstand/powerpc/_setjmp.S projects/release-install-debug/lib/libstdthreads/mtx.c projects/release-install-debug/lib/libstdthreads/thrd.c projects/release-install-debug/lib/libthr/Makefile projects/release-install-debug/lib/libthr/thread/thr_mutex.c projects/release-install-debug/lib/libthr/thread/thr_private.h projects/release-install-debug/lib/libthr/thread/thr_syscalls.c projects/release-install-debug/lib/libucl/Makefile projects/release-install-debug/lib/libvmmapi/Makefile projects/release-install-debug/lib/libvmmapi/vmmapi.c projects/release-install-debug/lib/libvmmapi/vmmapi.h projects/release-install-debug/lib/msun/man/j0.3 projects/release-install-debug/lib/msun/src/e_j0.c projects/release-install-debug/lib/msun/src/e_j0f.c projects/release-install-debug/lib/msun/src/e_j1.c projects/release-install-debug/lib/msun/src/e_j1f.c projects/release-install-debug/lib/msun/src/e_jn.c projects/release-install-debug/lib/msun/src/e_jnf.c projects/release-install-debug/libexec/rtld-elf/Makefile projects/release-install-debug/libexec/rtld-elf/amd64/reloc.c projects/release-install-debug/libexec/rtld-elf/amd64/rtld_machdep.h projects/release-install-debug/libexec/rtld-elf/amd64/rtld_start.S projects/release-install-debug/libexec/rtld-elf/i386/reloc.c projects/release-install-debug/libexec/rtld-elf/i386/rtld_machdep.h projects/release-install-debug/libexec/rtld-elf/i386/rtld_start.S projects/release-install-debug/libexec/rtld-elf/mips/reloc.c projects/release-install-debug/libexec/rtld-elf/rtld.c projects/release-install-debug/libexec/rtld-elf/rtld.h projects/release-install-debug/libexec/rtld-elf/rtld_lock.c projects/release-install-debug/libexec/rtld-elf/rtld_lock.h projects/release-install-debug/libexec/rtld-elf/rtld_tls.h projects/release-install-debug/release/Makefile projects/release-install-debug/release/Makefile.vm projects/release-install-debug/release/arm/BEAGLEBONE.conf projects/release-install-debug/release/arm/PANDABOARD.conf projects/release-install-debug/release/arm/RPI-B.conf projects/release-install-debug/release/arm/WANDBOARD-QUAD.conf projects/release-install-debug/release/arm/ZEDBOARD.conf projects/release-install-debug/release/arm/release.sh projects/release-install-debug/release/doc/en_US.ISO8859-1/relnotes/article.xml projects/release-install-debug/release/doc/share/xml/sponsor.ent projects/release-install-debug/release/release.conf.sample projects/release-install-debug/release/release.sh projects/release-install-debug/release/scripts/mk-vmimage.sh projects/release-install-debug/release/tools/arm/crochet-BEAGLEBONE.conf projects/release-install-debug/release/tools/arm/crochet-PANDABOARD.conf projects/release-install-debug/release/tools/arm/crochet-RPI-B.conf projects/release-install-debug/release/tools/arm/crochet-WANDBOARD-QUAD.conf projects/release-install-debug/release/tools/arm/crochet-ZEDBOARD.conf projects/release-install-debug/release/tools/gce.conf projects/release-install-debug/release/tools/vmimage.subr projects/release-install-debug/rescue/rescue/Makefile projects/release-install-debug/sbin/camcontrol/camcontrol.8 projects/release-install-debug/sbin/camcontrol/camcontrol.c projects/release-install-debug/sbin/dmesg/dmesg.c projects/release-install-debug/sbin/geom/class/part/geom_part.c projects/release-install-debug/sbin/geom/class/part/gpart.8 projects/release-install-debug/sbin/ggate/ggatec/ggatec.8 projects/release-install-debug/sbin/ggate/ggatel/ggatel.8 projects/release-install-debug/sbin/ifconfig/af_inet.c projects/release-install-debug/sbin/ifconfig/af_inet6.c projects/release-install-debug/sbin/ifconfig/af_nd6.c projects/release-install-debug/sbin/ifconfig/carp.c projects/release-install-debug/sbin/ifconfig/ifconfig.8 projects/release-install-debug/sbin/ifconfig/ifconfig.c projects/release-install-debug/sbin/ifconfig/ifmedia.c projects/release-install-debug/sbin/ifconfig/ifvlan.c projects/release-install-debug/sbin/ifconfig/ifvxlan.c projects/release-install-debug/sbin/ipfw/ipfw.8 projects/release-install-debug/sbin/ipfw/ipfw2.c projects/release-install-debug/sbin/ipfw/nat.c projects/release-install-debug/sbin/ipfw/tables.c projects/release-install-debug/sbin/md5/Makefile projects/release-install-debug/sbin/md5/md5.c projects/release-install-debug/sbin/mount/mount.8 projects/release-install-debug/sbin/mount/mount.c projects/release-install-debug/sbin/mount_fusefs/mount_fusefs.c projects/release-install-debug/sbin/mount_nfs/Makefile projects/release-install-debug/sbin/mount_nfs/mount_nfs.8 projects/release-install-debug/sbin/newfs_msdos/newfs_msdos.8 projects/release-install-debug/sbin/pfctl/parse.y projects/release-install-debug/sbin/pfctl/pfctl.c projects/release-install-debug/sbin/pfctl/pfctl_altq.c projects/release-install-debug/sbin/pfctl/pfctl_qstats.c projects/release-install-debug/sbin/reboot/nextboot.8 projects/release-install-debug/sbin/restore/dirs.c projects/release-install-debug/sbin/restore/tape.c projects/release-install-debug/sbin/savecore/Makefile projects/release-install-debug/sbin/savecore/savecore.c projects/release-install-debug/secure/lib/libcrypto/Makefile.inc projects/release-install-debug/secure/lib/libcrypto/Makefile.man projects/release-install-debug/secure/lib/libcrypto/man/ASN1_OBJECT_new.3 projects/release-install-debug/secure/lib/libcrypto/man/ASN1_STRING_length.3 projects/release-install-debug/secure/lib/libcrypto/man/ASN1_STRING_new.3 projects/release-install-debug/secure/lib/libcrypto/man/ASN1_STRING_print_ex.3 projects/release-install-debug/secure/lib/libcrypto/man/ASN1_generate_nconf.3 projects/release-install-debug/secure/lib/libcrypto/man/BIO_ctrl.3 projects/release-install-debug/secure/lib/libcrypto/man/BIO_f_base64.3 projects/release-install-debug/secure/lib/libcrypto/man/BIO_f_buffer.3 projects/release-install-debug/secure/lib/libcrypto/man/BIO_f_cipher.3 projects/release-install-debug/secure/lib/libcrypto/man/BIO_f_md.3 projects/release-install-debug/secure/lib/libcrypto/man/BIO_f_null.3 projects/release-install-debug/secure/lib/libcrypto/man/BIO_f_ssl.3 projects/release-install-debug/secure/lib/libcrypto/man/BIO_find_type.3 projects/release-install-debug/secure/lib/libcrypto/man/BIO_new.3 projects/release-install-debug/secure/lib/libcrypto/man/BIO_new_CMS.3 projects/release-install-debug/secure/lib/libcrypto/man/BIO_push.3 projects/release-install-debug/secure/lib/libcrypto/man/BIO_read.3 projects/release-install-debug/secure/lib/libcrypto/man/BIO_s_accept.3 projects/release-install-debug/secure/lib/libcrypto/man/BIO_s_bio.3 projects/release-install-debug/secure/lib/libcrypto/man/BIO_s_connect.3 projects/release-install-debug/secure/lib/libcrypto/man/BIO_s_fd.3 projects/release-install-debug/secure/lib/libcrypto/man/BIO_s_file.3 projects/release-install-debug/secure/lib/libcrypto/man/BIO_s_mem.3 projects/release-install-debug/secure/lib/libcrypto/man/BIO_s_null.3 projects/release-install-debug/secure/lib/libcrypto/man/BIO_s_socket.3 projects/release-install-debug/secure/lib/libcrypto/man/BIO_set_callback.3 projects/release-install-debug/secure/lib/libcrypto/man/BIO_should_retry.3 projects/release-install-debug/secure/lib/libcrypto/man/BN_BLINDING_new.3 projects/release-install-debug/secure/lib/libcrypto/man/BN_CTX_new.3 projects/release-install-debug/secure/lib/libcrypto/man/BN_CTX_start.3 projects/release-install-debug/secure/lib/libcrypto/man/BN_add.3 projects/release-install-debug/secure/lib/libcrypto/man/BN_add_word.3 projects/release-install-debug/secure/lib/libcrypto/man/BN_bn2bin.3 projects/release-install-debug/secure/lib/libcrypto/man/BN_cmp.3 projects/release-install-debug/secure/lib/libcrypto/man/BN_copy.3 projects/release-install-debug/secure/lib/libcrypto/man/BN_generate_prime.3 projects/release-install-debug/secure/lib/libcrypto/man/BN_mod_inverse.3 projects/release-install-debug/secure/lib/libcrypto/man/BN_mod_mul_montgomery.3 projects/release-install-debug/secure/lib/libcrypto/man/BN_mod_mul_reciprocal.3 projects/release-install-debug/secure/lib/libcrypto/man/BN_new.3 projects/release-install-debug/secure/lib/libcrypto/man/BN_num_bytes.3 projects/release-install-debug/secure/lib/libcrypto/man/BN_rand.3 projects/release-install-debug/secure/lib/libcrypto/man/BN_set_bit.3 projects/release-install-debug/secure/lib/libcrypto/man/BN_swap.3 projects/release-install-debug/secure/lib/libcrypto/man/BN_zero.3 projects/release-install-debug/secure/lib/libcrypto/man/CMS_add0_cert.3 projects/release-install-debug/secure/lib/libcrypto/man/CMS_add1_recipient_cert.3 projects/release-install-debug/secure/lib/libcrypto/man/CMS_add1_signer.3 projects/release-install-debug/secure/lib/libcrypto/man/CMS_compress.3 projects/release-install-debug/secure/lib/libcrypto/man/CMS_decrypt.3 projects/release-install-debug/secure/lib/libcrypto/man/CMS_encrypt.3 projects/release-install-debug/secure/lib/libcrypto/man/CMS_final.3 projects/release-install-debug/secure/lib/libcrypto/man/CMS_get0_RecipientInfos.3 projects/release-install-debug/secure/lib/libcrypto/man/CMS_get0_SignerInfos.3 projects/release-install-debug/secure/lib/libcrypto/man/CMS_get0_type.3 projects/release-install-debug/secure/lib/libcrypto/man/CMS_get1_ReceiptRequest.3 projects/release-install-debug/secure/lib/libcrypto/man/CMS_sign.3 projects/release-install-debug/secure/lib/libcrypto/man/CMS_sign_receipt.3 projects/release-install-debug/secure/lib/libcrypto/man/CMS_uncompress.3 projects/release-install-debug/secure/lib/libcrypto/man/CMS_verify.3 projects/release-install-debug/secure/lib/libcrypto/man/CMS_verify_receipt.3 projects/release-install-debug/secure/lib/libcrypto/man/CONF_modules_free.3 projects/release-install-debug/secure/lib/libcrypto/man/CONF_modules_load_file.3 projects/release-install-debug/secure/lib/libcrypto/man/CRYPTO_set_ex_data.3 projects/release-install-debug/secure/lib/libcrypto/man/DH_generate_key.3 projects/release-install-debug/secure/lib/libcrypto/man/DH_generate_parameters.3 projects/release-install-debug/secure/lib/libcrypto/man/DH_get_ex_new_index.3 projects/release-install-debug/secure/lib/libcrypto/man/DH_new.3 projects/release-install-debug/secure/lib/libcrypto/man/DH_set_method.3 projects/release-install-debug/secure/lib/libcrypto/man/DH_size.3 projects/release-install-debug/secure/lib/libcrypto/man/DSA_SIG_new.3 projects/release-install-debug/secure/lib/libcrypto/man/DSA_do_sign.3 projects/release-install-debug/secure/lib/libcrypto/man/DSA_dup_DH.3 projects/release-install-debug/secure/lib/libcrypto/man/DSA_generate_key.3 projects/release-install-debug/secure/lib/libcrypto/man/DSA_generate_parameters.3 projects/release-install-debug/secure/lib/libcrypto/man/DSA_get_ex_new_index.3 projects/release-install-debug/secure/lib/libcrypto/man/DSA_new.3 projects/release-install-debug/secure/lib/libcrypto/man/DSA_set_method.3 projects/release-install-debug/secure/lib/libcrypto/man/DSA_sign.3 projects/release-install-debug/secure/lib/libcrypto/man/DSA_size.3 projects/release-install-debug/secure/lib/libcrypto/man/ERR_GET_LIB.3 projects/release-install-debug/secure/lib/libcrypto/man/ERR_clear_error.3 projects/release-install-debug/secure/lib/libcrypto/man/ERR_error_string.3 projects/release-install-debug/secure/lib/libcrypto/man/ERR_get_error.3 projects/release-install-debug/secure/lib/libcrypto/man/ERR_load_crypto_strings.3 projects/release-install-debug/secure/lib/libcrypto/man/ERR_load_strings.3 projects/release-install-debug/secure/lib/libcrypto/man/ERR_print_errors.3 projects/release-install-debug/secure/lib/libcrypto/man/ERR_put_error.3 projects/release-install-debug/secure/lib/libcrypto/man/ERR_remove_state.3 projects/release-install-debug/secure/lib/libcrypto/man/ERR_set_mark.3 projects/release-install-debug/secure/lib/libcrypto/man/EVP_BytesToKey.3 projects/release-install-debug/secure/lib/libcrypto/man/EVP_DigestInit.3 projects/release-install-debug/secure/lib/libcrypto/man/EVP_DigestSignInit.3 projects/release-install-debug/secure/lib/libcrypto/man/EVP_DigestVerifyInit.3 projects/release-install-debug/secure/lib/libcrypto/man/EVP_EncryptInit.3 projects/release-install-debug/secure/lib/libcrypto/man/EVP_OpenInit.3 projects/release-install-debug/secure/lib/libcrypto/man/EVP_PKEY_CTX_ctrl.3 projects/release-install-debug/secure/lib/libcrypto/man/EVP_PKEY_CTX_new.3 projects/release-install-debug/secure/lib/libcrypto/man/EVP_PKEY_cmp.3 projects/release-install-debug/secure/lib/libcrypto/man/EVP_PKEY_decrypt.3 projects/release-install-debug/secure/lib/libcrypto/man/EVP_PKEY_derive.3 projects/release-install-debug/secure/lib/libcrypto/man/EVP_PKEY_encrypt.3 projects/release-install-debug/secure/lib/libcrypto/man/EVP_PKEY_get_default_digest.3 projects/release-install-debug/secure/lib/libcrypto/man/EVP_PKEY_keygen.3 projects/release-install-debug/secure/lib/libcrypto/man/EVP_PKEY_new.3 projects/release-install-debug/secure/lib/libcrypto/man/EVP_PKEY_print_private.3 projects/release-install-debug/secure/lib/libcrypto/man/EVP_PKEY_set1_RSA.3 projects/release-install-debug/secure/lib/libcrypto/man/EVP_PKEY_sign.3 projects/release-install-debug/secure/lib/libcrypto/man/EVP_PKEY_verify.3 projects/release-install-debug/secure/lib/libcrypto/man/EVP_PKEY_verify_recover.3 projects/release-install-debug/secure/lib/libcrypto/man/EVP_SealInit.3 projects/release-install-debug/secure/lib/libcrypto/man/EVP_SignInit.3 projects/release-install-debug/secure/lib/libcrypto/man/EVP_VerifyInit.3 projects/release-install-debug/secure/lib/libcrypto/man/OBJ_nid2obj.3 projects/release-install-debug/secure/lib/libcrypto/man/OPENSSL_Applink.3 projects/release-install-debug/secure/lib/libcrypto/man/OPENSSL_VERSION_NUMBER.3 projects/release-install-debug/secure/lib/libcrypto/man/OPENSSL_config.3 projects/release-install-debug/secure/lib/libcrypto/man/OPENSSL_ia32cap.3 projects/release-install-debug/secure/lib/libcrypto/man/OPENSSL_load_builtin_modules.3 projects/release-install-debug/secure/lib/libcrypto/man/OpenSSL_add_all_algorithms.3 projects/release-install-debug/secure/lib/libcrypto/man/PEM_write_bio_CMS_stream.3 projects/release-install-debug/secure/lib/libcrypto/man/PEM_write_bio_PKCS7_stream.3 projects/release-install-debug/secure/lib/libcrypto/man/PKCS12_create.3 projects/release-install-debug/secure/lib/libcrypto/man/PKCS12_parse.3 projects/release-install-debug/secure/lib/libcrypto/man/PKCS7_decrypt.3 projects/release-install-debug/secure/lib/libcrypto/man/PKCS7_encrypt.3 projects/release-install-debug/secure/lib/libcrypto/man/PKCS7_sign.3 projects/release-install-debug/secure/lib/libcrypto/man/PKCS7_sign_add_signer.3 projects/release-install-debug/secure/lib/libcrypto/man/PKCS7_verify.3 projects/release-install-debug/secure/lib/libcrypto/man/RAND_add.3 projects/release-install-debug/secure/lib/libcrypto/man/RAND_bytes.3 projects/release-install-debug/secure/lib/libcrypto/man/RAND_cleanup.3 projects/release-install-debug/secure/lib/libcrypto/man/RAND_egd.3 projects/release-install-debug/secure/lib/libcrypto/man/RAND_load_file.3 projects/release-install-debug/secure/lib/libcrypto/man/RAND_set_rand_method.3 projects/release-install-debug/secure/lib/libcrypto/man/RSA_blinding_on.3 projects/release-install-debug/secure/lib/libcrypto/man/RSA_check_key.3 projects/release-install-debug/secure/lib/libcrypto/man/RSA_generate_key.3 projects/release-install-debug/secure/lib/libcrypto/man/RSA_get_ex_new_index.3 projects/release-install-debug/secure/lib/libcrypto/man/RSA_new.3 projects/release-install-debug/secure/lib/libcrypto/man/RSA_padding_add_PKCS1_type_1.3 projects/release-install-debug/secure/lib/libcrypto/man/RSA_print.3 projects/release-install-debug/secure/lib/libcrypto/man/RSA_private_encrypt.3 projects/release-install-debug/secure/lib/libcrypto/man/RSA_public_encrypt.3 projects/release-install-debug/secure/lib/libcrypto/man/RSA_set_method.3 projects/release-install-debug/secure/lib/libcrypto/man/RSA_sign.3 projects/release-install-debug/secure/lib/libcrypto/man/RSA_sign_ASN1_OCTET_STRING.3 projects/release-install-debug/secure/lib/libcrypto/man/RSA_size.3 projects/release-install-debug/secure/lib/libcrypto/man/SMIME_read_CMS.3 projects/release-install-debug/secure/lib/libcrypto/man/SMIME_read_PKCS7.3 projects/release-install-debug/secure/lib/libcrypto/man/SMIME_write_CMS.3 projects/release-install-debug/secure/lib/libcrypto/man/SMIME_write_PKCS7.3 projects/release-install-debug/secure/lib/libcrypto/man/X509_NAME_ENTRY_get_object.3 projects/release-install-debug/secure/lib/libcrypto/man/X509_NAME_add_entry_by_txt.3 projects/release-install-debug/secure/lib/libcrypto/man/X509_NAME_get_index_by_NID.3 projects/release-install-debug/secure/lib/libcrypto/man/X509_NAME_print_ex.3 projects/release-install-debug/secure/lib/libcrypto/man/X509_STORE_CTX_get_error.3 projects/release-install-debug/secure/lib/libcrypto/man/X509_STORE_CTX_get_ex_new_index.3 projects/release-install-debug/secure/lib/libcrypto/man/X509_STORE_CTX_new.3 projects/release-install-debug/secure/lib/libcrypto/man/X509_STORE_CTX_set_verify_cb.3 projects/release-install-debug/secure/lib/libcrypto/man/X509_STORE_set_verify_cb_func.3 projects/release-install-debug/secure/lib/libcrypto/man/X509_VERIFY_PARAM_set_flags.3 projects/release-install-debug/secure/lib/libcrypto/man/X509_new.3 projects/release-install-debug/secure/lib/libcrypto/man/X509_verify_cert.3 projects/release-install-debug/secure/lib/libcrypto/man/bio.3 projects/release-install-debug/secure/lib/libcrypto/man/blowfish.3 projects/release-install-debug/secure/lib/libcrypto/man/bn.3 projects/release-install-debug/secure/lib/libcrypto/man/bn_internal.3 projects/release-install-debug/secure/lib/libcrypto/man/buffer.3 projects/release-install-debug/secure/lib/libcrypto/man/crypto.3 projects/release-install-debug/secure/lib/libcrypto/man/d2i_ASN1_OBJECT.3 projects/release-install-debug/secure/lib/libcrypto/man/d2i_DHparams.3 projects/release-install-debug/secure/lib/libcrypto/man/d2i_DSAPublicKey.3 projects/release-install-debug/secure/lib/libcrypto/man/d2i_PKCS8PrivateKey.3 projects/release-install-debug/secure/lib/libcrypto/man/d2i_RSAPublicKey.3 projects/release-install-debug/secure/lib/libcrypto/man/d2i_X509.3 projects/release-install-debug/secure/lib/libcrypto/man/d2i_X509_ALGOR.3 projects/release-install-debug/secure/lib/libcrypto/man/d2i_X509_CRL.3 projects/release-install-debug/secure/lib/libcrypto/man/d2i_X509_NAME.3 projects/release-install-debug/secure/lib/libcrypto/man/d2i_X509_REQ.3 projects/release-install-debug/secure/lib/libcrypto/man/d2i_X509_SIG.3 projects/release-install-debug/secure/lib/libcrypto/man/des.3 projects/release-install-debug/secure/lib/libcrypto/man/dh.3 projects/release-install-debug/secure/lib/libcrypto/man/dsa.3 projects/release-install-debug/secure/lib/libcrypto/man/ecdsa.3 projects/release-install-debug/secure/lib/libcrypto/man/engine.3 projects/release-install-debug/secure/lib/libcrypto/man/err.3 projects/release-install-debug/secure/lib/libcrypto/man/evp.3 projects/release-install-debug/secure/lib/libcrypto/man/hmac.3 projects/release-install-debug/secure/lib/libcrypto/man/i2d_CMS_bio_stream.3 projects/release-install-debug/secure/lib/libcrypto/man/i2d_PKCS7_bio_stream.3 projects/release-install-debug/secure/lib/libcrypto/man/lh_stats.3 projects/release-install-debug/secure/lib/libcrypto/man/lhash.3 projects/release-install-debug/secure/lib/libcrypto/man/md5.3 projects/release-install-debug/secure/lib/libcrypto/man/mdc2.3 projects/release-install-debug/secure/lib/libcrypto/man/pem.3 projects/release-install-debug/secure/lib/libcrypto/man/rand.3 projects/release-install-debug/secure/lib/libcrypto/man/rc4.3 projects/release-install-debug/secure/lib/libcrypto/man/ripemd.3 projects/release-install-debug/secure/lib/libcrypto/man/rsa.3 projects/release-install-debug/secure/lib/libcrypto/man/sha.3 projects/release-install-debug/secure/lib/libcrypto/man/threads.3 projects/release-install-debug/secure/lib/libcrypto/man/ui.3 projects/release-install-debug/secure/lib/libcrypto/man/ui_compat.3 projects/release-install-debug/secure/lib/libcrypto/man/x509.3 projects/release-install-debug/secure/lib/libcrypto/opensslconf-arm.h projects/release-install-debug/secure/lib/libcrypto/opensslconf-mips.h projects/release-install-debug/secure/lib/libcrypto/opensslconf-powerpc.h projects/release-install-debug/secure/lib/libcrypto/opensslconf-sparc64.h projects/release-install-debug/secure/lib/libcrypto/opensslconf-x86.h projects/release-install-debug/secure/lib/libssl/Makefile projects/release-install-debug/secure/lib/libssl/Makefile.man projects/release-install-debug/secure/lib/libssl/man/SSL_CIPHER_get_name.3 projects/release-install-debug/secure/lib/libssl/man/SSL_COMP_add_compression_method.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_add_extra_chain_cert.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_add_session.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_ctrl.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_flush_sessions.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_free.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_get_ex_new_index.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_get_verify_mode.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_load_verify_locations.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_new.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_sess_number.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_sess_set_cache_size.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_sess_set_get_cb.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_sessions.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_set_cert_store.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_set_cert_verify_callback.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_set_cipher_list.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_set_client_CA_list.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_set_client_cert_cb.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_set_default_passwd_cb.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_set_generate_session_id.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_set_info_callback.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_set_max_cert_list.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_set_mode.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_set_msg_callback.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_set_options.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_set_psk_client_callback.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_set_quiet_shutdown.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_set_session_cache_mode.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_set_session_id_context.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_set_ssl_version.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_set_timeout.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_set_tlsext_ticket_key_cb.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_set_tmp_dh_callback.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_set_tmp_rsa_callback.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_set_verify.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_use_certificate.3 projects/release-install-debug/secure/lib/libssl/man/SSL_CTX_use_psk_identity_hint.3 projects/release-install-debug/secure/lib/libssl/man/SSL_SESSION_free.3 projects/release-install-debug/secure/lib/libssl/man/SSL_SESSION_get_ex_new_index.3 projects/release-install-debug/secure/lib/libssl/man/SSL_SESSION_get_time.3 projects/release-install-debug/secure/lib/libssl/man/SSL_accept.3 projects/release-install-debug/secure/lib/libssl/man/SSL_alert_type_string.3 projects/release-install-debug/secure/lib/libssl/man/SSL_clear.3 projects/release-install-debug/secure/lib/libssl/man/SSL_connect.3 projects/release-install-debug/secure/lib/libssl/man/SSL_do_handshake.3 projects/release-install-debug/secure/lib/libssl/man/SSL_free.3 projects/release-install-debug/secure/lib/libssl/man/SSL_get_SSL_CTX.3 projects/release-install-debug/secure/lib/libssl/man/SSL_get_ciphers.3 projects/release-install-debug/secure/lib/libssl/man/SSL_get_client_CA_list.3 projects/release-install-debug/secure/lib/libssl/man/SSL_get_current_cipher.3 projects/release-install-debug/secure/lib/libssl/man/SSL_get_default_timeout.3 projects/release-install-debug/secure/lib/libssl/man/SSL_get_error.3 projects/release-install-debug/secure/lib/libssl/man/SSL_get_ex_data_X509_STORE_CTX_idx.3 projects/release-install-debug/secure/lib/libssl/man/SSL_get_ex_new_index.3 projects/release-install-debug/secure/lib/libssl/man/SSL_get_fd.3 projects/release-install-debug/secure/lib/libssl/man/SSL_get_peer_cert_chain.3 projects/release-install-debug/secure/lib/libssl/man/SSL_get_peer_certificate.3 projects/release-install-debug/secure/lib/libssl/man/SSL_get_psk_identity.3 projects/release-install-debug/secure/lib/libssl/man/SSL_get_rbio.3 projects/release-install-debug/secure/lib/libssl/man/SSL_get_session.3 projects/release-install-debug/secure/lib/libssl/man/SSL_get_verify_result.3 projects/release-install-debug/secure/lib/libssl/man/SSL_get_version.3 projects/release-install-debug/secure/lib/libssl/man/SSL_library_init.3 projects/release-install-debug/secure/lib/libssl/man/SSL_load_client_CA_file.3 projects/release-install-debug/secure/lib/libssl/man/SSL_new.3 projects/release-install-debug/secure/lib/libssl/man/SSL_pending.3 projects/release-install-debug/secure/lib/libssl/man/SSL_read.3 projects/release-install-debug/secure/lib/libssl/man/SSL_rstate_string.3 projects/release-install-debug/secure/lib/libssl/man/SSL_session_reused.3 projects/release-install-debug/secure/lib/libssl/man/SSL_set_bio.3 projects/release-install-debug/secure/lib/libssl/man/SSL_set_connect_state.3 projects/release-install-debug/secure/lib/libssl/man/SSL_set_fd.3 projects/release-install-debug/secure/lib/libssl/man/SSL_set_session.3 projects/release-install-debug/secure/lib/libssl/man/SSL_set_shutdown.3 projects/release-install-debug/secure/lib/libssl/man/SSL_set_verify_result.3 projects/release-install-debug/secure/lib/libssl/man/SSL_shutdown.3 projects/release-install-debug/secure/lib/libssl/man/SSL_state_string.3 projects/release-install-debug/secure/lib/libssl/man/SSL_want.3 projects/release-install-debug/secure/lib/libssl/man/SSL_write.3 projects/release-install-debug/secure/lib/libssl/man/d2i_SSL_SESSION.3 projects/release-install-debug/secure/lib/libssl/man/ssl.3 projects/release-install-debug/secure/usr.bin/openssl/man/CA.pl.1 projects/release-install-debug/secure/usr.bin/openssl/man/asn1parse.1 projects/release-install-debug/secure/usr.bin/openssl/man/c_rehash.1 projects/release-install-debug/secure/usr.bin/openssl/man/ca.1 projects/release-install-debug/secure/usr.bin/openssl/man/ciphers.1 projects/release-install-debug/secure/usr.bin/openssl/man/cms.1 projects/release-install-debug/secure/usr.bin/openssl/man/crl.1 projects/release-install-debug/secure/usr.bin/openssl/man/crl2pkcs7.1 projects/release-install-debug/secure/usr.bin/openssl/man/dgst.1 projects/release-install-debug/secure/usr.bin/openssl/man/dhparam.1 projects/release-install-debug/secure/usr.bin/openssl/man/dsa.1 projects/release-install-debug/secure/usr.bin/openssl/man/dsaparam.1 projects/release-install-debug/secure/usr.bin/openssl/man/ec.1 projects/release-install-debug/secure/usr.bin/openssl/man/ecparam.1 projects/release-install-debug/secure/usr.bin/openssl/man/enc.1 projects/release-install-debug/secure/usr.bin/openssl/man/errstr.1 projects/release-install-debug/secure/usr.bin/openssl/man/gendsa.1 projects/release-install-debug/secure/usr.bin/openssl/man/genpkey.1 projects/release-install-debug/secure/usr.bin/openssl/man/genrsa.1 projects/release-install-debug/secure/usr.bin/openssl/man/nseq.1 projects/release-install-debug/secure/usr.bin/openssl/man/ocsp.1 projects/release-install-debug/secure/usr.bin/openssl/man/openssl.1 projects/release-install-debug/secure/usr.bin/openssl/man/passwd.1 projects/release-install-debug/secure/usr.bin/openssl/man/pkcs12.1 projects/release-install-debug/secure/usr.bin/openssl/man/pkcs7.1 projects/release-install-debug/secure/usr.bin/openssl/man/pkcs8.1 projects/release-install-debug/secure/usr.bin/openssl/man/pkey.1 projects/release-install-debug/secure/usr.bin/openssl/man/pkeyparam.1 projects/release-install-debug/secure/usr.bin/openssl/man/pkeyutl.1 projects/release-install-debug/secure/usr.bin/openssl/man/rand.1 projects/release-install-debug/secure/usr.bin/openssl/man/req.1 projects/release-install-debug/secure/usr.bin/openssl/man/rsa.1 projects/release-install-debug/secure/usr.bin/openssl/man/rsautl.1 projects/release-install-debug/secure/usr.bin/openssl/man/s_client.1 projects/release-install-debug/secure/usr.bin/openssl/man/s_server.1 projects/release-install-debug/secure/usr.bin/openssl/man/s_time.1 projects/release-install-debug/secure/usr.bin/openssl/man/sess_id.1 projects/release-install-debug/secure/usr.bin/openssl/man/smime.1 projects/release-install-debug/secure/usr.bin/openssl/man/speed.1 projects/release-install-debug/secure/usr.bin/openssl/man/spkac.1 projects/release-install-debug/secure/usr.bin/openssl/man/ts.1 projects/release-install-debug/secure/usr.bin/openssl/man/tsget.1 projects/release-install-debug/secure/usr.bin/openssl/man/verify.1 projects/release-install-debug/secure/usr.bin/openssl/man/version.1 projects/release-install-debug/secure/usr.bin/openssl/man/x509.1 projects/release-install-debug/secure/usr.bin/openssl/man/x509v3_config.1 projects/release-install-debug/share/doc/psd/title/Title projects/release-install-debug/share/doc/smm/title/Title projects/release-install-debug/share/doc/usd/Makefile projects/release-install-debug/share/doc/usd/title/Title projects/release-install-debug/share/dtrace/Makefile projects/release-install-debug/share/examples/Makefile projects/release-install-debug/share/examples/bhyve/vmrun.sh projects/release-install-debug/share/examples/etc/make.conf projects/release-install-debug/share/man/man3/pthread_testcancel.3 projects/release-install-debug/share/man/man3/queue.3 projects/release-install-debug/share/man/man4/Makefile projects/release-install-debug/share/man/man4/ahci.4 projects/release-install-debug/share/man/man4/amdtemp.4 projects/release-install-debug/share/man/man4/ata.4 projects/release-install-debug/share/man/man4/ctl.4 projects/release-install-debug/share/man/man4/ddb.4 projects/release-install-debug/share/man/man4/epair.4 projects/release-install-debug/share/man/man4/icmp.4 projects/release-install-debug/share/man/man4/inet.4 projects/release-install-debug/share/man/man4/ixl.4 projects/release-install-debug/share/man/man4/ixlv.4 projects/release-install-debug/share/man/man4/mtio.4 projects/release-install-debug/share/man/man4/mvs.4 projects/release-install-debug/share/man/man4/run.4 projects/release-install-debug/share/man/man4/sa.4 projects/release-install-debug/share/man/man4/sfxge.4 projects/release-install-debug/share/man/man4/siftr.4 projects/release-install-debug/share/man/man4/siis.4 projects/release-install-debug/share/man/man4/snd_uaudio.4 projects/release-install-debug/share/man/man4/tap.4 projects/release-install-debug/share/man/man4/ucom.4 projects/release-install-debug/share/man/man4/witness.4 projects/release-install-debug/share/man/man5/core.5 projects/release-install-debug/share/man/man5/periodic.conf.5 projects/release-install-debug/share/man/man5/rc.conf.5 projects/release-install-debug/share/man/man5/src.conf.5 projects/release-install-debug/share/man/man8/uefi.8 projects/release-install-debug/share/man/man9/Makefile projects/release-install-debug/share/man/man9/SDT.9 projects/release-install-debug/share/man/man9/VOP_VPTOCNP.9 projects/release-install-debug/share/man/man9/mbuf.9 projects/release-install-debug/share/man/man9/microuptime.9 projects/release-install-debug/share/man/man9/pci.9 projects/release-install-debug/share/man/man9/printf.9 projects/release-install-debug/share/man/man9/sbuf.9 projects/release-install-debug/share/misc/committers-src.dot projects/release-install-debug/share/misc/organization.dot projects/release-install-debug/share/mk/bsd.README projects/release-install-debug/share/mk/bsd.cpu.mk projects/release-install-debug/share/mk/bsd.dep.mk projects/release-install-debug/share/mk/bsd.endian.mk projects/release-install-debug/share/mk/bsd.lib.mk projects/release-install-debug/share/mk/bsd.libnames.mk projects/release-install-debug/share/mk/bsd.links.mk projects/release-install-debug/share/mk/bsd.mkopt.mk projects/release-install-debug/share/mk/bsd.obj.mk projects/release-install-debug/share/mk/bsd.sys.mk projects/release-install-debug/share/mk/src.libnames.mk projects/release-install-debug/share/mk/src.opts.mk projects/release-install-debug/share/mk/src.sys.mk projects/release-install-debug/share/mk/sys.mk projects/release-install-debug/sys/amd64/amd64/apic_vector.S projects/release-install-debug/sys/amd64/amd64/machdep.c projects/release-install-debug/sys/amd64/amd64/mp_machdep.c projects/release-install-debug/sys/amd64/amd64/pmap.c projects/release-install-debug/sys/amd64/amd64/trap.c projects/release-install-debug/sys/amd64/amd64/uma_machdep.c projects/release-install-debug/sys/amd64/conf/GENERIC projects/release-install-debug/sys/amd64/include/intr_machdep.h projects/release-install-debug/sys/amd64/include/metadata.h projects/release-install-debug/sys/amd64/include/smp.h projects/release-install-debug/sys/amd64/include/vmm.h (contents, props changed) projects/release-install-debug/sys/amd64/include/vmm_instruction_emul.h (contents, props changed) projects/release-install-debug/sys/amd64/vmm/amd/svm.c projects/release-install-debug/sys/amd64/vmm/amd/svm_support.S projects/release-install-debug/sys/amd64/vmm/intel/ept.c projects/release-install-debug/sys/amd64/vmm/intel/vmcs.c projects/release-install-debug/sys/amd64/vmm/intel/vmx.c projects/release-install-debug/sys/amd64/vmm/intel/vmx.h projects/release-install-debug/sys/amd64/vmm/intel/vmx_msr.c projects/release-install-debug/sys/amd64/vmm/io/ppt.c projects/release-install-debug/sys/amd64/vmm/io/vatpic.c projects/release-install-debug/sys/amd64/vmm/io/vlapic.c projects/release-install-debug/sys/amd64/vmm/io/vrtc.c projects/release-install-debug/sys/amd64/vmm/vmm.c projects/release-install-debug/sys/amd64/vmm/vmm_dev.c projects/release-install-debug/sys/amd64/vmm/vmm_instruction_emul.c projects/release-install-debug/sys/amd64/vmm/vmm_lapic.c projects/release-install-debug/sys/amd64/vmm/x86.c projects/release-install-debug/sys/arm/allwinner/a10_clk.c projects/release-install-debug/sys/arm/allwinner/a10_clk.h projects/release-install-debug/sys/arm/allwinner/a10_common.c projects/release-install-debug/sys/arm/allwinner/a10_gpio.c projects/release-install-debug/sys/arm/allwinner/a10_sramc.c projects/release-install-debug/sys/arm/allwinner/a10_wdog.c projects/release-install-debug/sys/arm/allwinner/a20/a20_cpu_cfg.c projects/release-install-debug/sys/arm/allwinner/a20/a20_mp.c projects/release-install-debug/sys/arm/allwinner/a20/files.a20 projects/release-install-debug/sys/arm/allwinner/a20/std.a20 projects/release-install-debug/sys/arm/allwinner/files.a10 projects/release-install-debug/sys/arm/allwinner/if_emac.c projects/release-install-debug/sys/arm/allwinner/if_emacreg.h projects/release-install-debug/sys/arm/allwinner/std.a10 projects/release-install-debug/sys/arm/allwinner/timer.c projects/release-install-debug/sys/arm/altera/socfpga/files.socfpga projects/release-install-debug/sys/arm/altera/socfpga/socfpga_gpio.c projects/release-install-debug/sys/arm/altera/socfpga/socfpga_manager.c projects/release-install-debug/sys/arm/altera/socfpga/socfpga_mp.c projects/release-install-debug/sys/arm/arm/cpufunc.c projects/release-install-debug/sys/arm/arm/cpufunc_asm_arm10.S projects/release-install-debug/sys/arm/arm/cpufunc_asm_arm11.S projects/release-install-debug/sys/arm/arm/cpufunc_asm_armv6.S projects/release-install-debug/sys/arm/arm/cpufunc_asm_armv7.S projects/release-install-debug/sys/arm/arm/cpuinfo.c projects/release-install-debug/sys/arm/arm/db_trace.c projects/release-install-debug/sys/arm/arm/devmap.c projects/release-install-debug/sys/arm/arm/disassem.c projects/release-install-debug/sys/arm/arm/elf_trampoline.c projects/release-install-debug/sys/arm/arm/exception.S projects/release-install-debug/sys/arm/arm/genassym.c projects/release-install-debug/sys/arm/arm/generic_timer.c projects/release-install-debug/sys/arm/arm/gic.c projects/release-install-debug/sys/arm/arm/intr.c projects/release-install-debug/sys/arm/arm/machdep.c projects/release-install-debug/sys/arm/arm/mem.c projects/release-install-debug/sys/arm/arm/minidump_machdep.c projects/release-install-debug/sys/arm/arm/mp_machdep.c projects/release-install-debug/sys/arm/arm/mpcore_timer.c projects/release-install-debug/sys/arm/arm/physmem.c projects/release-install-debug/sys/arm/arm/pl310.c projects/release-install-debug/sys/arm/arm/pmap-v6.c projects/release-install-debug/sys/arm/arm/pmap.c projects/release-install-debug/sys/arm/arm/pmu.c projects/release-install-debug/sys/arm/arm/swtch.S projects/release-install-debug/sys/arm/arm/sys_machdep.c projects/release-install-debug/sys/arm/arm/trap-v6.c projects/release-install-debug/sys/arm/arm/undefined.c projects/release-install-debug/sys/arm/arm/vm_machdep.c projects/release-install-debug/sys/arm/at91/at91_common.c projects/release-install-debug/sys/arm/at91/at91_machdep.c projects/release-install-debug/sys/arm/at91/files.at91 projects/release-install-debug/sys/arm/at91/uart_bus_at91usart.c projects/release-install-debug/sys/arm/at91/uart_cpu_at91usart.c projects/release-install-debug/sys/arm/at91/uart_dev_at91usart.c projects/release-install-debug/sys/arm/broadcom/bcm2835/bcm2835_common.c projects/release-install-debug/sys/arm/broadcom/bcm2835/bcm2835_fb.c projects/release-install-debug/sys/arm/broadcom/bcm2835/bcm2835_fbd.c projects/release-install-debug/sys/arm/broadcom/bcm2835/bcm2835_intr.c projects/release-install-debug/sys/arm/broadcom/bcm2835/bcm2835_machdep.c projects/release-install-debug/sys/arm/broadcom/bcm2835/bcm2835_mbox.c projects/release-install-debug/sys/arm/broadcom/bcm2835/bcm2835_mbox_prop.h projects/release-install-debug/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c projects/release-install-debug/sys/arm/broadcom/bcm2835/bcm2835_spi.c projects/release-install-debug/sys/arm/broadcom/bcm2835/bcm2835_systimer.c projects/release-install-debug/sys/arm/broadcom/bcm2835/bcm2835_wdog.c projects/release-install-debug/sys/arm/broadcom/bcm2835/files.bcm2835 projects/release-install-debug/sys/arm/broadcom/bcm2835/std.bcm2835 projects/release-install-debug/sys/arm/broadcom/bcm2835/std.rpi projects/release-install-debug/sys/arm/cavium/cns11xx/econa_machdep.c projects/release-install-debug/sys/arm/cavium/cns11xx/files.econa projects/release-install-debug/sys/arm/conf/ARMADAXP projects/release-install-debug/sys/arm/conf/BEAGLEBONE projects/release-install-debug/sys/arm/conf/CUBIEBOARD projects/release-install-debug/sys/arm/conf/CUBIEBOARD2 projects/release-install-debug/sys/arm/conf/DB-78XXX projects/release-install-debug/sys/arm/conf/DB-88F5XXX projects/release-install-debug/sys/arm/conf/DB-88F6XXX projects/release-install-debug/sys/arm/conf/DOCKSTAR projects/release-install-debug/sys/arm/conf/DREAMPLUG-1001 projects/release-install-debug/sys/arm/conf/EXYNOS5.common projects/release-install-debug/sys/arm/conf/IMX6 projects/release-install-debug/sys/arm/conf/PANDABOARD projects/release-install-debug/sys/arm/conf/RPI-B projects/release-install-debug/sys/arm/conf/SHEEVAPLUG projects/release-install-debug/sys/arm/conf/SOCKIT projects/release-install-debug/sys/arm/conf/SOCKIT-BERI projects/release-install-debug/sys/arm/conf/TS7800 projects/release-install-debug/sys/arm/conf/VYBRID projects/release-install-debug/sys/arm/conf/WANDBOARD-SOLO projects/release-install-debug/sys/arm/conf/ZEDBOARD projects/release-install-debug/sys/arm/freescale/imx/files.imx51 projects/release-install-debug/sys/arm/freescale/imx/files.imx53 projects/release-install-debug/sys/arm/freescale/imx/files.imx6 projects/release-install-debug/sys/arm/freescale/imx/imx51_ccm.c projects/release-install-debug/sys/arm/freescale/imx/imx51_ipuv3.c projects/release-install-debug/sys/arm/freescale/imx/imx51_ipuv3_fbd.c projects/release-install-debug/sys/arm/freescale/imx/imx6_anatop.c projects/release-install-debug/sys/arm/freescale/imx/imx6_audmux.c projects/release-install-debug/sys/arm/freescale/imx/imx6_mp.c projects/release-install-debug/sys/arm/freescale/imx/imx6_sdma.c projects/release-install-debug/sys/arm/freescale/imx/imx6_ssi.c projects/release-install-debug/sys/arm/freescale/imx/imx_common.c projects/release-install-debug/sys/arm/freescale/imx/imx_gpt.c projects/release-install-debug/sys/arm/freescale/imx/imx_iomux.c projects/release-install-debug/sys/arm/freescale/imx/imx_wdog.c projects/release-install-debug/sys/arm/freescale/vybrid/files.vybrid projects/release-install-debug/sys/arm/freescale/vybrid/vf_adc.c projects/release-install-debug/sys/arm/freescale/vybrid/vf_anadig.c projects/release-install-debug/sys/arm/freescale/vybrid/vf_ccm.c projects/release-install-debug/sys/arm/freescale/vybrid/vf_dcu4.c projects/release-install-debug/sys/arm/freescale/vybrid/vf_dmamux.c projects/release-install-debug/sys/arm/freescale/vybrid/vf_edma.c projects/release-install-debug/sys/arm/freescale/vybrid/vf_gpio.c projects/release-install-debug/sys/arm/freescale/vybrid/vf_i2c.c projects/release-install-debug/sys/arm/freescale/vybrid/vf_iomuxc.c projects/release-install-debug/sys/arm/freescale/vybrid/vf_mscm.c projects/release-install-debug/sys/arm/freescale/vybrid/vf_nfc.c projects/release-install-debug/sys/arm/freescale/vybrid/vf_port.c projects/release-install-debug/sys/arm/freescale/vybrid/vf_sai.c projects/release-install-debug/sys/arm/freescale/vybrid/vf_spi.c projects/release-install-debug/sys/arm/freescale/vybrid/vf_src.c projects/release-install-debug/sys/arm/freescale/vybrid/vf_tcon.c projects/release-install-debug/sys/arm/freescale/vybrid/vf_uart.c projects/release-install-debug/sys/arm/include/atomic.h projects/release-install-debug/sys/arm/include/cpu-v6.h projects/release-install-debug/sys/arm/include/cpuconf.h projects/release-install-debug/sys/arm/include/cpufunc.h projects/release-install-debug/sys/arm/include/cpuinfo.h projects/release-install-debug/sys/arm/include/fdt.h projects/release-install-debug/sys/arm/include/in_cksum.h projects/release-install-debug/sys/arm/include/intr.h projects/release-install-debug/sys/arm/include/machdep.h projects/release-install-debug/sys/arm/include/metadata.h projects/release-install-debug/sys/arm/include/pcb.h projects/release-install-debug/sys/arm/include/pmap.h projects/release-install-debug/sys/arm/include/pmc_mdep.h projects/release-install-debug/sys/arm/include/pte.h projects/release-install-debug/sys/arm/include/sf_buf.h projects/release-install-debug/sys/arm/include/smp.h projects/release-install-debug/sys/arm/include/sysreg.h projects/release-install-debug/sys/arm/include/vm.h projects/release-install-debug/sys/arm/include/vmparam.h projects/release-install-debug/sys/arm/lpc/files.lpc projects/release-install-debug/sys/arm/mv/armadaxp/armadaxp_mp.c projects/release-install-debug/sys/arm/mv/files.mv projects/release-install-debug/sys/arm/mv/gpio.c projects/release-install-debug/sys/arm/mv/mv_localbus.c projects/release-install-debug/sys/arm/mv/mv_ts.c projects/release-install-debug/sys/arm/mv/mvvar.h projects/release-install-debug/sys/arm/rockchip/files.rk30xx projects/release-install-debug/sys/arm/rockchip/rk30xx_common.c projects/release-install-debug/sys/arm/rockchip/rk30xx_gpio.c projects/release-install-debug/sys/arm/rockchip/rk30xx_grf.c projects/release-install-debug/sys/arm/rockchip/rk30xx_mp.c projects/release-install-debug/sys/arm/rockchip/rk30xx_pmu.c projects/release-install-debug/sys/arm/samsung/exynos/exynos5_mp.c projects/release-install-debug/sys/arm/samsung/exynos/exynos5_xhci.c projects/release-install-debug/sys/arm/samsung/exynos/exynos_uart.c projects/release-install-debug/sys/arm/samsung/exynos/files.exynos5 projects/release-install-debug/sys/arm/samsung/s3c2xx0/files.s3c2xx0 projects/release-install-debug/sys/arm/samsung/s3c2xx0/s3c24x0_machdep.c projects/release-install-debug/sys/arm/samsung/s3c2xx0/uart_bus_s3c2410.c projects/release-install-debug/sys/arm/samsung/s3c2xx0/uart_cpu_s3c2410.c projects/release-install-debug/sys/arm/samsung/s3c2xx0/uart_dev_s3c2410.c projects/release-install-debug/sys/arm/ti/aintc.c projects/release-install-debug/sys/arm/ti/am335x/am335x_dmtimer.c projects/release-install-debug/sys/arm/ti/am335x/am335x_prcm.c projects/release-install-debug/sys/arm/ti/am335x/am335x_rtc.c projects/release-install-debug/sys/arm/ti/am335x/am335x_scm_padconf.c projects/release-install-debug/sys/arm/ti/files.ti projects/release-install-debug/sys/arm/ti/omap4/omap4_mp.c projects/release-install-debug/sys/arm/ti/omap4/omap4_prcm_clks.c projects/release-install-debug/sys/arm/ti/omap4/omap4_scm_padconf.c projects/release-install-debug/sys/arm/ti/ti_common.c projects/release-install-debug/sys/arm/ti/ti_mbox.c projects/release-install-debug/sys/arm/ti/ti_pruss.c projects/release-install-debug/sys/arm/ti/ti_scm.h projects/release-install-debug/sys/arm/ti/ti_wdt.c projects/release-install-debug/sys/arm/versatile/files.versatile projects/release-install-debug/sys/arm/versatile/pl050.c projects/release-install-debug/sys/arm/versatile/sp804.c projects/release-install-debug/sys/arm/versatile/versatile_clcd.c projects/release-install-debug/sys/arm/versatile/versatile_common.c projects/release-install-debug/sys/arm/versatile/versatile_pci.c projects/release-install-debug/sys/arm/versatile/versatile_timer.c projects/release-install-debug/sys/arm/xilinx/files.zynq7 projects/release-install-debug/sys/arm/xilinx/uart_dev_cdnc.c projects/release-install-debug/sys/arm/xilinx/zy7_devcfg.c projects/release-install-debug/sys/arm/xilinx/zy7_mp.c projects/release-install-debug/sys/arm/xilinx/zy7_slcr.c projects/release-install-debug/sys/arm/xilinx/zy7_slcr.h projects/release-install-debug/sys/arm/xscale/i80321/ep80219_machdep.c projects/release-install-debug/sys/arm/xscale/i80321/files.i80219 projects/release-install-debug/sys/arm/xscale/i80321/files.i80321 projects/release-install-debug/sys/arm/xscale/i80321/iq31244_machdep.c projects/release-install-debug/sys/arm/xscale/i8134x/crb_machdep.c projects/release-install-debug/sys/arm/xscale/i8134x/files.i81342 projects/release-install-debug/sys/arm/xscale/ixp425/avila_machdep.c projects/release-install-debug/sys/arm/xscale/ixp425/files.ixp425 projects/release-install-debug/sys/arm/xscale/pxa/files.pxa projects/release-install-debug/sys/arm/xscale/pxa/pxa_machdep.c projects/release-install-debug/sys/boot/Makefile projects/release-install-debug/sys/boot/Makefile.amd64 projects/release-install-debug/sys/boot/Makefile.arm projects/release-install-debug/sys/boot/arm/uboot/Makefile projects/release-install-debug/sys/boot/common/Makefile.inc projects/release-install-debug/sys/boot/efi/Makefile projects/release-install-debug/sys/boot/efi/Makefile.inc projects/release-install-debug/sys/boot/efi/libefi/Makefile projects/release-install-debug/sys/boot/efi/libefi/libefi.c projects/release-install-debug/sys/boot/fdt/dts/mips/xlp-basic.dts projects/release-install-debug/sys/boot/fdt/fdt_loader_cmd.c projects/release-install-debug/sys/boot/ficl/Makefile projects/release-install-debug/sys/boot/forth/beastie.4th projects/release-install-debug/sys/boot/forth/brand.4th projects/release-install-debug/sys/boot/forth/check-password.4th projects/release-install-debug/sys/boot/forth/check-password.4th.8 projects/release-install-debug/sys/boot/forth/delay.4th projects/release-install-debug/sys/boot/forth/frames.4th projects/release-install-debug/sys/boot/forth/loader.4th projects/release-install-debug/sys/boot/forth/loader.conf projects/release-install-debug/sys/boot/forth/menu-commands.4th projects/release-install-debug/sys/boot/forth/menu.4th projects/release-install-debug/sys/boot/forth/menu.rc projects/release-install-debug/sys/boot/forth/menusets.4th projects/release-install-debug/sys/boot/forth/pcibios.4th projects/release-install-debug/sys/boot/forth/pnp.4th projects/release-install-debug/sys/boot/forth/screen.4th projects/release-install-debug/sys/boot/forth/support.4th projects/release-install-debug/sys/boot/forth/version.4th projects/release-install-debug/sys/boot/i386/boot2/Makefile projects/release-install-debug/sys/boot/i386/gptboot/Makefile projects/release-install-debug/sys/boot/i386/gptzfsboot/Makefile projects/release-install-debug/sys/boot/i386/libi386/Makefile projects/release-install-debug/sys/boot/i386/libi386/biosmem.c projects/release-install-debug/sys/boot/i386/libi386/libi386.h projects/release-install-debug/sys/boot/i386/libi386/multiboot.c projects/release-install-debug/sys/boot/i386/libi386/smbios.c projects/release-install-debug/sys/boot/i386/loader/Makefile projects/release-install-debug/sys/boot/i386/loader/main.c projects/release-install-debug/sys/boot/i386/zfsboot/Makefile projects/release-install-debug/sys/boot/libstand32/Makefile projects/release-install-debug/sys/boot/mips/beri/boot2/Makefile projects/release-install-debug/sys/boot/mips/beri/loader/Makefile projects/release-install-debug/sys/boot/ofw/common/main.c projects/release-install-debug/sys/boot/ofw/libofw/elf_freebsd.c projects/release-install-debug/sys/boot/ofw/libofw/openfirm.c projects/release-install-debug/sys/boot/ofw/libofw/openfirm.h projects/release-install-debug/sys/boot/ofw/libofw/ppc64_elf_freebsd.c projects/release-install-debug/sys/boot/pc98/boot0.5/Makefile projects/release-install-debug/sys/boot/pc98/boot0/Makefile projects/release-install-debug/sys/boot/pc98/boot2/Makefile projects/release-install-debug/sys/boot/pc98/libpc98/Makefile projects/release-install-debug/sys/boot/pc98/loader/Makefile projects/release-install-debug/sys/boot/powerpc/kboot/Makefile projects/release-install-debug/sys/boot/powerpc/ofw/Makefile projects/release-install-debug/sys/boot/powerpc/ofw/metadata.c projects/release-install-debug/sys/boot/powerpc/ps3/Makefile projects/release-install-debug/sys/boot/sparc64/loader/Makefile projects/release-install-debug/sys/boot/sparc64/loader/metadata.c projects/release-install-debug/sys/boot/uboot/fdt/uboot_fdt.c projects/release-install-debug/sys/boot/uboot/lib/glue.h projects/release-install-debug/sys/boot/userboot/libstand/Makefile projects/release-install-debug/sys/cam/ata/ata_all.c projects/release-install-debug/sys/cam/ata/ata_da.c projects/release-install-debug/sys/cam/cam_periph.c projects/release-install-debug/sys/cam/cam_xpt.c projects/release-install-debug/sys/cam/ctl/ctl.c projects/release-install-debug/sys/cam/scsi/scsi_all.c projects/release-install-debug/sys/cam/scsi/scsi_all.h projects/release-install-debug/sys/cam/scsi/scsi_da.c projects/release-install-debug/sys/cam/scsi/scsi_sa.c projects/release-install-debug/sys/cam/scsi/scsi_sa.h projects/release-install-debug/sys/cddl/compat/opensolaris/sys/atomic.h projects/release-install-debug/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c projects/release-install-debug/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c projects/release-install-debug/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c projects/release-install-debug/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c projects/release-install-debug/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h projects/release-install-debug/sys/cddl/contrib/opensolaris/uts/common/sys/isa_defs.h projects/release-install-debug/sys/cddl/dev/dtrace/amd64/dtrace_isa.c projects/release-install-debug/sys/cddl/dev/dtrace/arm/dtrace_asm.S projects/release-install-debug/sys/cddl/dev/dtrace/arm/dtrace_isa.c projects/release-install-debug/sys/cddl/dev/dtrace/arm/dtrace_subr.c projects/release-install-debug/sys/cddl/dev/dtrace/dtrace_ioctl.c projects/release-install-debug/sys/cddl/dev/dtrace/i386/dtrace_isa.c projects/release-install-debug/sys/cddl/dev/dtrace/powerpc/dtrace_subr.c projects/release-install-debug/sys/cddl/dev/fbt/arm/fbt_isa.c projects/release-install-debug/sys/cddl/dev/profile/profile.c projects/release-install-debug/sys/compat/freebsd32/freebsd32.h projects/release-install-debug/sys/compat/freebsd32/freebsd32_misc.c projects/release-install-debug/sys/compat/linprocfs/linprocfs.c projects/release-install-debug/sys/compat/linux/linux_file.c projects/release-install-debug/sys/compat/linux/linux_getcwd.c projects/release-install-debug/sys/compat/linux/linux_misc.c projects/release-install-debug/sys/compat/linux/linux_misc.h projects/release-install-debug/sys/compat/linux/linux_uid16.c projects/release-install-debug/sys/compat/svr4/svr4_stream.c projects/release-install-debug/sys/conf/Makefile.pc98 projects/release-install-debug/sys/conf/Makefile.powerpc projects/release-install-debug/sys/conf/NOTES projects/release-install-debug/sys/conf/files projects/release-install-debug/sys/conf/files.amd64 projects/release-install-debug/sys/conf/files.arm projects/release-install-debug/sys/conf/files.i386 projects/release-install-debug/sys/conf/files.mips projects/release-install-debug/sys/conf/files.powerpc projects/release-install-debug/sys/conf/kern.mk projects/release-install-debug/sys/conf/kern.opts.mk projects/release-install-debug/sys/conf/kern.pre.mk projects/release-install-debug/sys/conf/kmod.mk projects/release-install-debug/sys/conf/newvers.sh projects/release-install-debug/sys/conf/options projects/release-install-debug/sys/conf/options.arm projects/release-install-debug/sys/conf/options.i386 projects/release-install-debug/sys/contrib/dev/acpica/acpica_prep.sh projects/release-install-debug/sys/contrib/dev/acpica/changes.txt projects/release-install-debug/sys/contrib/dev/acpica/common/adfile.c projects/release-install-debug/sys/contrib/dev/acpica/common/adisasm.c projects/release-install-debug/sys/contrib/dev/acpica/common/dmtable.c projects/release-install-debug/sys/contrib/dev/acpica/common/dmtbdump.c projects/release-install-debug/sys/contrib/dev/acpica/common/dmtbinfo.c projects/release-install-debug/sys/contrib/dev/acpica/compiler/aslcodegen.c projects/release-install-debug/sys/contrib/dev/acpica/compiler/aslcompile.c projects/release-install-debug/sys/contrib/dev/acpica/compiler/aslcompiler.h projects/release-install-debug/sys/contrib/dev/acpica/compiler/asldefine.h projects/release-install-debug/sys/contrib/dev/acpica/compiler/aslfold.c projects/release-install-debug/sys/contrib/dev/acpica/compiler/asllisting.c projects/release-install-debug/sys/contrib/dev/acpica/compiler/aslmain.c projects/release-install-debug/sys/contrib/dev/acpica/compiler/aslmap.c projects/release-install-debug/sys/contrib/dev/acpica/compiler/aslmapenter.c projects/release-install-debug/sys/contrib/dev/acpica/compiler/asloptions.c projects/release-install-debug/sys/contrib/dev/acpica/compiler/aslrules.y projects/release-install-debug/sys/contrib/dev/acpica/compiler/aslstartup.c projects/release-install-debug/sys/contrib/dev/acpica/compiler/asltree.c projects/release-install-debug/sys/contrib/dev/acpica/compiler/asltypes.y projects/release-install-debug/sys/contrib/dev/acpica/compiler/aslutils.c projects/release-install-debug/sys/contrib/dev/acpica/compiler/aslwalks.c projects/release-install-debug/sys/contrib/dev/acpica/compiler/dtcompile.c projects/release-install-debug/sys/contrib/dev/acpica/compiler/dtcompiler.h projects/release-install-debug/sys/contrib/dev/acpica/compiler/dtio.c projects/release-install-debug/sys/contrib/dev/acpica/compiler/dttable.c projects/release-install-debug/sys/contrib/dev/acpica/compiler/dttemplate.h projects/release-install-debug/sys/contrib/dev/acpica/compiler/dtutils.c projects/release-install-debug/sys/contrib/dev/acpica/components/debugger/dbmethod.c projects/release-install-debug/sys/contrib/dev/acpica/components/debugger/dbxface.c projects/release-install-debug/sys/contrib/dev/acpica/components/disassembler/dmopcode.c projects/release-install-debug/sys/contrib/dev/acpica/components/disassembler/dmwalk.c projects/release-install-debug/sys/contrib/dev/acpica/components/dispatcher/dsopcode.c projects/release-install-debug/sys/contrib/dev/acpica/components/dispatcher/dsutils.c projects/release-install-debug/sys/contrib/dev/acpica/components/events/evregion.c projects/release-install-debug/sys/contrib/dev/acpica/components/events/evxfevnt.c projects/release-install-debug/sys/contrib/dev/acpica/components/executer/exdump.c projects/release-install-debug/sys/contrib/dev/acpica/components/executer/exfldio.c projects/release-install-debug/sys/contrib/dev/acpica/components/executer/exoparg3.c projects/release-install-debug/sys/contrib/dev/acpica/components/executer/exregion.c projects/release-install-debug/sys/contrib/dev/acpica/components/hardware/hwgpe.c projects/release-install-debug/sys/contrib/dev/acpica/components/hardware/hwvalid.c projects/release-install-debug/sys/contrib/dev/acpica/components/namespace/nsdump.c projects/release-install-debug/sys/contrib/dev/acpica/components/parser/psopcode.c projects/release-install-debug/sys/contrib/dev/acpica/components/parser/psopinfo.c projects/release-install-debug/sys/contrib/dev/acpica/components/resources/rsaddr.c projects/release-install-debug/sys/contrib/dev/acpica/components/resources/rsdump.c projects/release-install-debug/sys/contrib/dev/acpica/components/resources/rsdumpinfo.c projects/release-install-debug/sys/contrib/dev/acpica/components/resources/rsxface.c projects/release-install-debug/sys/contrib/dev/acpica/components/tables/tbdata.c projects/release-install-debug/sys/contrib/dev/acpica/components/tables/tbinstal.c projects/release-install-debug/sys/contrib/dev/acpica/components/tables/tbprint.c projects/release-install-debug/sys/contrib/dev/acpica/components/tables/tbxfroot.c projects/release-install-debug/sys/contrib/dev/acpica/components/utilities/utaddress.c projects/release-install-debug/sys/contrib/dev/acpica/components/utilities/utbuffer.c projects/release-install-debug/sys/contrib/dev/acpica/components/utilities/utglobal.c projects/release-install-debug/sys/contrib/dev/acpica/components/utilities/utmisc.c projects/release-install-debug/sys/contrib/dev/acpica/components/utilities/utosi.c projects/release-install-debug/sys/contrib/dev/acpica/components/utilities/utprint.c projects/release-install-debug/sys/contrib/dev/acpica/components/utilities/utstate.c projects/release-install-debug/sys/contrib/dev/acpica/components/utilities/utuuid.c projects/release-install-debug/sys/contrib/dev/acpica/include/acdebug.h projects/release-install-debug/sys/contrib/dev/acpica/include/acdisasm.h projects/release-install-debug/sys/contrib/dev/acpica/include/acglobal.h projects/release-install-debug/sys/contrib/dev/acpica/include/aclocal.h projects/release-install-debug/sys/contrib/dev/acpica/include/acmacros.h projects/release-install-debug/sys/contrib/dev/acpica/include/acopcode.h projects/release-install-debug/sys/contrib/dev/acpica/include/acpixf.h projects/release-install-debug/sys/contrib/dev/acpica/include/acresrc.h projects/release-install-debug/sys/contrib/dev/acpica/include/acrestyp.h projects/release-install-debug/sys/contrib/dev/acpica/include/acstruct.h projects/release-install-debug/sys/contrib/dev/acpica/include/actables.h projects/release-install-debug/sys/contrib/dev/acpica/include/actbl2.h projects/release-install-debug/sys/contrib/dev/acpica/include/actypes.h projects/release-install-debug/sys/contrib/dev/acpica/include/acutils.h projects/release-install-debug/sys/contrib/dev/acpica/include/amlcode.h projects/release-install-debug/sys/contrib/dev/acpica/include/platform/acenv.h projects/release-install-debug/sys/contrib/dev/ath/ath_hal/ar9300/ar9300.h projects/release-install-debug/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_ani.c projects/release-install-debug/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c projects/release-install-debug/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_misc.c projects/release-install-debug/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_reset.c projects/release-install-debug/sys/contrib/ipfilter/netinet/fil.c projects/release-install-debug/sys/contrib/ipfilter/netinet/ip_compat.h projects/release-install-debug/sys/contrib/ipfilter/netinet/ip_fil.h projects/release-install-debug/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c (contents, props changed) projects/release-install-debug/sys/contrib/ipfilter/netinet/ip_nat.c projects/release-install-debug/sys/contrib/vchiq/interface/vchiq_arm/vchiq_kmod.c projects/release-install-debug/sys/contrib/x86emu/x86emu.c projects/release-install-debug/sys/crypto/aesni/aesencdec.h projects/release-install-debug/sys/crypto/aesni/aesni_ghash.c projects/release-install-debug/sys/dev/aac/aac.c projects/release-install-debug/sys/dev/aacraid/aacraid.c projects/release-install-debug/sys/dev/acpica/acpi.c projects/release-install-debug/sys/dev/acpica/acpi_pci.c projects/release-install-debug/sys/dev/acpica/acpi_pcib_acpi.c projects/release-install-debug/sys/dev/acpica/acpi_resource.c projects/release-install-debug/sys/dev/acpica/acpivar.h projects/release-install-debug/sys/dev/advansys/adwcam.c projects/release-install-debug/sys/dev/aha/aha.c projects/release-install-debug/sys/dev/ahb/ahb.c projects/release-install-debug/sys/dev/ahci/ahci.c projects/release-install-debug/sys/dev/ahci/ahci.h projects/release-install-debug/sys/dev/ahci/ahci_pci.c projects/release-install-debug/sys/dev/ahci/ahciem.c projects/release-install-debug/sys/dev/amr/amr_pci.c projects/release-install-debug/sys/dev/ata/ata-all.c projects/release-install-debug/sys/dev/ata/ata-all.h projects/release-install-debug/sys/dev/ata/ata-pci.h projects/release-install-debug/sys/dev/ata/chipsets/ata-acard.c projects/release-install-debug/sys/dev/ata/chipsets/ata-acerlabs.c projects/release-install-debug/sys/dev/ata/chipsets/ata-amd.c projects/release-install-debug/sys/dev/ata/chipsets/ata-ati.c projects/release-install-debug/sys/dev/ata/chipsets/ata-cenatek.c projects/release-install-debug/sys/dev/ata/chipsets/ata-cypress.c projects/release-install-debug/sys/dev/ata/chipsets/ata-cyrix.c projects/release-install-debug/sys/dev/ata/chipsets/ata-fsl.c projects/release-install-debug/sys/dev/ata/chipsets/ata-highpoint.c projects/release-install-debug/sys/dev/ata/chipsets/ata-intel.c projects/release-install-debug/sys/dev/ata/chipsets/ata-ite.c projects/release-install-debug/sys/dev/ata/chipsets/ata-jmicron.c projects/release-install-debug/sys/dev/ata/chipsets/ata-marvell.c projects/release-install-debug/sys/dev/ata/chipsets/ata-micron.c projects/release-install-debug/sys/dev/ata/chipsets/ata-national.c projects/release-install-debug/sys/dev/ata/chipsets/ata-netcell.c projects/release-install-debug/sys/dev/ata/chipsets/ata-nvidia.c projects/release-install-debug/sys/dev/ata/chipsets/ata-promise.c projects/release-install-debug/sys/dev/ata/chipsets/ata-serverworks.c projects/release-install-debug/sys/dev/ata/chipsets/ata-siliconimage.c projects/release-install-debug/sys/dev/ata/chipsets/ata-sis.c projects/release-install-debug/sys/dev/ata/chipsets/ata-via.c projects/release-install-debug/sys/dev/ath/ath_hal/ah.c projects/release-install-debug/sys/dev/ath/ath_hal/ah.h projects/release-install-debug/sys/dev/ath/ath_hal/ah_internal.h projects/release-install-debug/sys/dev/ath/ath_hal/ar5212/ar5212.h projects/release-install-debug/sys/dev/ath/ath_hal/ar5212/ar5212_ani.c projects/release-install-debug/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c projects/release-install-debug/sys/dev/ath/ath_hal/ar5212/ar5212_reset.c projects/release-install-debug/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c projects/release-install-debug/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c projects/release-install-debug/sys/dev/ath/if_ath.c projects/release-install-debug/sys/dev/ath/if_ath_ahb.c projects/release-install-debug/sys/dev/atkbdc/psm.c projects/release-install-debug/sys/dev/bce/if_bcereg.h projects/release-install-debug/sys/dev/bge/if_bge.c projects/release-install-debug/sys/dev/buslogic/bt.c projects/release-install-debug/sys/dev/bwi/if_bwi.c projects/release-install-debug/sys/dev/bwn/if_bwn.c projects/release-install-debug/sys/dev/bxe/bxe.c projects/release-install-debug/sys/dev/cadence/if_cgem.c projects/release-install-debug/sys/dev/ciss/ciss.c projects/release-install-debug/sys/dev/ct/ct_isa.c projects/release-install-debug/sys/dev/cxgb/cxgb_sge.c projects/release-install-debug/sys/dev/cxgbe/adapter.h projects/release-install-debug/sys/dev/cxgbe/t4_main.c projects/release-install-debug/sys/dev/cxgbe/t4_netmap.c projects/release-install-debug/sys/dev/cxgbe/t4_sge.c projects/release-install-debug/sys/dev/cxgbe/tom/t4_cpl_io.c projects/release-install-debug/sys/dev/cxgbe/tom/t4_ddp.c projects/release-install-debug/sys/dev/cxgbe/tom/t4_listen.c projects/release-install-debug/sys/dev/cxgbe/tom/t4_tom.h projects/release-install-debug/sys/dev/dpt/dpt_scsi.c projects/release-install-debug/sys/dev/drm2/ati_pcigart.c projects/release-install-debug/sys/dev/drm2/drm.h projects/release-install-debug/sys/dev/drm2/drmP.h projects/release-install-debug/sys/dev/drm2/drm_agpsupport.c projects/release-install-debug/sys/dev/drm2/drm_atomic.h projects/release-install-debug/sys/dev/drm2/drm_auth.c projects/release-install-debug/sys/dev/drm2/drm_buffer.c projects/release-install-debug/sys/dev/drm2/drm_bufs.c projects/release-install-debug/sys/dev/drm2/drm_context.c projects/release-install-debug/sys/dev/drm2/drm_crtc.c projects/release-install-debug/sys/dev/drm2/drm_crtc.h projects/release-install-debug/sys/dev/drm2/drm_crtc_helper.c projects/release-install-debug/sys/dev/drm2/drm_crtc_helper.h projects/release-install-debug/sys/dev/drm2/drm_dma.c projects/release-install-debug/sys/dev/drm2/drm_dp_helper.c projects/release-install-debug/sys/dev/drm2/drm_dp_iic_helper.c projects/release-install-debug/sys/dev/drm2/drm_drv.c projects/release-install-debug/sys/dev/drm2/drm_edid.c projects/release-install-debug/sys/dev/drm2/drm_edid.h projects/release-install-debug/sys/dev/drm2/drm_edid_modes.h projects/release-install-debug/sys/dev/drm2/drm_fb_helper.c projects/release-install-debug/sys/dev/drm2/drm_fb_helper.h projects/release-install-debug/sys/dev/drm2/drm_fops.c projects/release-install-debug/sys/dev/drm2/drm_fourcc.h projects/release-install-debug/sys/dev/drm2/drm_gem.c projects/release-install-debug/sys/dev/drm2/drm_gem_names.c projects/release-install-debug/sys/dev/drm2/drm_global.c projects/release-install-debug/sys/dev/drm2/drm_hashtab.c projects/release-install-debug/sys/dev/drm2/drm_ioc32.c projects/release-install-debug/sys/dev/drm2/drm_ioctl.c projects/release-install-debug/sys/dev/drm2/drm_irq.c projects/release-install-debug/sys/dev/drm2/drm_lock.c projects/release-install-debug/sys/dev/drm2/drm_memory.c projects/release-install-debug/sys/dev/drm2/drm_mm.c projects/release-install-debug/sys/dev/drm2/drm_mm.h projects/release-install-debug/sys/dev/drm2/drm_mode.h projects/release-install-debug/sys/dev/drm2/drm_modes.c projects/release-install-debug/sys/dev/drm2/drm_os_freebsd.h projects/release-install-debug/sys/dev/drm2/drm_pci.c projects/release-install-debug/sys/dev/drm2/drm_pciids.h projects/release-install-debug/sys/dev/drm2/drm_sarea.h projects/release-install-debug/sys/dev/drm2/drm_scatter.c projects/release-install-debug/sys/dev/drm2/drm_stub.c projects/release-install-debug/sys/dev/drm2/drm_sysctl.c projects/release-install-debug/sys/dev/drm2/drm_vm.c projects/release-install-debug/sys/dev/drm2/i915/i915_debug.c projects/release-install-debug/sys/dev/drm2/i915/i915_dma.c projects/release-install-debug/sys/dev/drm2/i915/i915_drm.h projects/release-install-debug/sys/dev/drm2/i915/i915_drv.c projects/release-install-debug/sys/dev/drm2/i915/i915_drv.h projects/release-install-debug/sys/dev/drm2/i915/i915_gem.c projects/release-install-debug/sys/dev/drm2/i915/i915_gem_context.c projects/release-install-debug/sys/dev/drm2/i915/i915_gem_evict.c projects/release-install-debug/sys/dev/drm2/i915/i915_gem_execbuffer.c projects/release-install-debug/sys/dev/drm2/i915/i915_gem_gtt.c projects/release-install-debug/sys/dev/drm2/i915/i915_gem_tiling.c projects/release-install-debug/sys/dev/drm2/i915/i915_ioc32.c projects/release-install-debug/sys/dev/drm2/i915/i915_irq.c projects/release-install-debug/sys/dev/drm2/i915/i915_suspend.c projects/release-install-debug/sys/dev/drm2/i915/intel_crt.c projects/release-install-debug/sys/dev/drm2/i915/intel_display.c projects/release-install-debug/sys/dev/drm2/i915/intel_dp.c projects/release-install-debug/sys/dev/drm2/i915/intel_fb.c projects/release-install-debug/sys/dev/drm2/i915/intel_hdmi.c projects/release-install-debug/sys/dev/drm2/i915/intel_iic.c projects/release-install-debug/sys/dev/drm2/i915/intel_lvds.c projects/release-install-debug/sys/dev/drm2/i915/intel_modes.c projects/release-install-debug/sys/dev/drm2/i915/intel_opregion.c projects/release-install-debug/sys/dev/drm2/i915/intel_overlay.c projects/release-install-debug/sys/dev/drm2/i915/intel_panel.c projects/release-install-debug/sys/dev/drm2/i915/intel_ringbuffer.c projects/release-install-debug/sys/dev/drm2/i915/intel_sdvo.c projects/release-install-debug/sys/dev/drm2/i915/intel_tv.c projects/release-install-debug/sys/dev/drm2/radeon/atom.c projects/release-install-debug/sys/dev/drm2/radeon/atombios_crtc.c projects/release-install-debug/sys/dev/drm2/radeon/atombios_dp.c projects/release-install-debug/sys/dev/drm2/radeon/atombios_encoders.c projects/release-install-debug/sys/dev/drm2/radeon/atombios_i2c.c projects/release-install-debug/sys/dev/drm2/radeon/cayman_blit_shaders.c projects/release-install-debug/sys/dev/drm2/radeon/evergreen.c projects/release-install-debug/sys/dev/drm2/radeon/evergreen_blit_shaders.c projects/release-install-debug/sys/dev/drm2/radeon/evergreen_cs.c projects/release-install-debug/sys/dev/drm2/radeon/evergreen_reg.h projects/release-install-debug/sys/dev/drm2/radeon/ni.c projects/release-install-debug/sys/dev/drm2/radeon/nid.h projects/release-install-debug/sys/dev/drm2/radeon/r100.c projects/release-install-debug/sys/dev/drm2/radeon/r200.c projects/release-install-debug/sys/dev/drm2/radeon/r300.c projects/release-install-debug/sys/dev/drm2/radeon/r300_cmdbuf.c projects/release-install-debug/sys/dev/drm2/radeon/r420.c projects/release-install-debug/sys/dev/drm2/radeon/r500_reg.h projects/release-install-debug/sys/dev/drm2/radeon/r600.c projects/release-install-debug/sys/dev/drm2/radeon/r600_blit.c projects/release-install-debug/sys/dev/drm2/radeon/r600_blit_shaders.c projects/release-install-debug/sys/dev/drm2/radeon/r600_cp.c projects/release-install-debug/sys/dev/drm2/radeon/r600_cs.c projects/release-install-debug/sys/dev/drm2/radeon/r600_hdmi.c projects/release-install-debug/sys/dev/drm2/radeon/r600d.h projects/release-install-debug/sys/dev/drm2/radeon/radeon.h projects/release-install-debug/sys/dev/drm2/radeon/radeon_acpi.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_agp.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_atombios.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_benchmark.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_bios.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_clocks.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_combios.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_connectors.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_cp.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_cs.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_device.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_display.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_drm.h projects/release-install-debug/sys/dev/drm2/radeon/radeon_drv.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_drv.h projects/release-install-debug/sys/dev/drm2/radeon/radeon_fb.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_fence.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_gart.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_gem.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_i2c.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_ioc32.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_irq_kms.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_irq_kms.h projects/release-install-debug/sys/dev/drm2/radeon/radeon_kms.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_legacy_crtc.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_legacy_encoders.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_legacy_tv.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_mem.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_object.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_object.h projects/release-install-debug/sys/dev/drm2/radeon/radeon_pm.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_ring.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_sa.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_semaphore.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_state.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_test.c projects/release-install-debug/sys/dev/drm2/radeon/radeon_ttm.c projects/release-install-debug/sys/dev/drm2/radeon/rs400.c projects/release-install-debug/sys/dev/drm2/radeon/rs600.c projects/release-install-debug/sys/dev/drm2/radeon/rs690.c projects/release-install-debug/sys/dev/drm2/radeon/rv515.c projects/release-install-debug/sys/dev/drm2/radeon/rv770.c projects/release-install-debug/sys/dev/drm2/radeon/si.c projects/release-install-debug/sys/dev/drm2/radeon/si_blit_shaders.c projects/release-install-debug/sys/dev/drm2/radeon/sid.h projects/release-install-debug/sys/dev/drm2/ttm/ttm_bo.c projects/release-install-debug/sys/dev/drm2/ttm/ttm_bo_util.c projects/release-install-debug/sys/dev/drm2/ttm/ttm_bo_vm.c projects/release-install-debug/sys/dev/drm2/ttm/ttm_lock.c projects/release-install-debug/sys/dev/dwc/if_dwc.c projects/release-install-debug/sys/dev/e1000/if_igb.c projects/release-install-debug/sys/dev/ed/if_ed_pccard.c projects/release-install-debug/sys/dev/etherswitch/arswitch/arswitch.c projects/release-install-debug/sys/dev/etherswitch/arswitch/arswitch_8327.c projects/release-install-debug/sys/dev/etherswitch/arswitch/arswitch_phy.c projects/release-install-debug/sys/dev/etherswitch/arswitch/arswitch_phy.h projects/release-install-debug/sys/dev/etherswitch/arswitch/arswitch_reg.c projects/release-install-debug/sys/dev/etherswitch/arswitch/arswitch_vlans.c projects/release-install-debug/sys/dev/etherswitch/arswitch/arswitch_vlans.h projects/release-install-debug/sys/dev/etherswitch/arswitch/arswitchreg.h projects/release-install-debug/sys/dev/etherswitch/arswitch/arswitchvar.h projects/release-install-debug/sys/dev/etherswitch/miiproxy.c projects/release-install-debug/sys/dev/fb/fbd.c projects/release-install-debug/sys/dev/fdt/fdt_pinctrl.c projects/release-install-debug/sys/dev/fdt/simplebus.c projects/release-install-debug/sys/dev/flash/at45d.c projects/release-install-debug/sys/dev/gpio/gpiobus.c projects/release-install-debug/sys/dev/gpio/gpiobus_if.m projects/release-install-debug/sys/dev/gpio/gpiobusvar.h projects/release-install-debug/sys/dev/gpio/gpioc.c projects/release-install-debug/sys/dev/gpio/gpioled.c projects/release-install-debug/sys/dev/gpio/ofw_gpiobus.c projects/release-install-debug/sys/dev/hptnr/README projects/release-install-debug/sys/dev/hptnr/amd64-elf.hptnr_lib.o.uu projects/release-install-debug/sys/dev/hptnr/him.h projects/release-install-debug/sys/dev/hptnr/hptintf.h projects/release-install-debug/sys/dev/hptnr/hptnr_config.c projects/release-install-debug/sys/dev/hptnr/hptnr_config.h projects/release-install-debug/sys/dev/hptnr/hptnr_osm_bsd.c projects/release-install-debug/sys/dev/hptnr/i386-elf.hptnr_lib.o.uu projects/release-install-debug/sys/dev/hptnr/ldm.h projects/release-install-debug/sys/dev/hptnr/os_bsd.h projects/release-install-debug/sys/dev/hwpmc/hwpmc_arm.c projects/release-install-debug/sys/dev/hwpmc/hwpmc_armv7.c projects/release-install-debug/sys/dev/hwpmc/hwpmc_core.c projects/release-install-debug/sys/dev/hwpmc/hwpmc_intel.c projects/release-install-debug/sys/dev/hwpmc/hwpmc_logging.c projects/release-install-debug/sys/dev/hwpmc/hwpmc_mpc7xxx.c projects/release-install-debug/sys/dev/hwpmc/hwpmc_powerpc.c projects/release-install-debug/sys/dev/hwpmc/hwpmc_powerpc.h projects/release-install-debug/sys/dev/hwpmc/hwpmc_ppc970.c projects/release-install-debug/sys/dev/hwpmc/pmc_events.h projects/release-install-debug/sys/dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c projects/release-install-debug/sys/dev/ichsmb/ichsmb_pci.c projects/release-install-debug/sys/dev/ida/ida.c projects/release-install-debug/sys/dev/ida/ida_eisa.c projects/release-install-debug/sys/dev/ida/ida_pci.c projects/release-install-debug/sys/dev/if_ndis/if_ndis_pci.c projects/release-install-debug/sys/dev/iicbus/iic.c projects/release-install-debug/sys/dev/iicbus/iic.h projects/release-install-debug/sys/dev/iicbus/iicbus_if.m projects/release-install-debug/sys/dev/iicbus/iiconf.c projects/release-install-debug/sys/dev/iicbus/lm75.c projects/release-install-debug/sys/dev/iir/iir.c projects/release-install-debug/sys/dev/iir/iir_pci.c projects/release-install-debug/sys/dev/iscsi/icl_conn_if.m projects/release-install-debug/sys/dev/iscsi/icl_soft.c projects/release-install-debug/sys/dev/iscsi/icl_wrappers.h projects/release-install-debug/sys/dev/iscsi_initiator/isc_sm.c projects/release-install-debug/sys/dev/iwn/if_iwn.c projects/release-install-debug/sys/dev/ixgbe/LICENSE projects/release-install-debug/sys/dev/ixgbe/ixgbe.h projects/release-install-debug/sys/dev/ixgbe/ixgbe_82598.c projects/release-install-debug/sys/dev/ixgbe/ixgbe_82598.h projects/release-install-debug/sys/dev/ixgbe/ixgbe_82599.c projects/release-install-debug/sys/dev/ixgbe/ixgbe_82599.h projects/release-install-debug/sys/dev/ixgbe/ixgbe_api.c projects/release-install-debug/sys/dev/ixgbe/ixgbe_api.h projects/release-install-debug/sys/dev/ixgbe/ixgbe_common.c projects/release-install-debug/sys/dev/ixgbe/ixgbe_common.h projects/release-install-debug/sys/dev/ixgbe/ixgbe_dcb.c projects/release-install-debug/sys/dev/ixgbe/ixgbe_dcb.h projects/release-install-debug/sys/dev/ixgbe/ixgbe_dcb_82598.c projects/release-install-debug/sys/dev/ixgbe/ixgbe_dcb_82598.h projects/release-install-debug/sys/dev/ixgbe/ixgbe_dcb_82599.c projects/release-install-debug/sys/dev/ixgbe/ixgbe_dcb_82599.h projects/release-install-debug/sys/dev/ixgbe/ixgbe_mbx.c projects/release-install-debug/sys/dev/ixgbe/ixgbe_mbx.h projects/release-install-debug/sys/dev/ixgbe/ixgbe_phy.c projects/release-install-debug/sys/dev/ixgbe/ixgbe_phy.h projects/release-install-debug/sys/dev/ixgbe/ixgbe_type.h projects/release-install-debug/sys/dev/ixgbe/ixgbe_vf.c projects/release-install-debug/sys/dev/ixgbe/ixgbe_vf.h projects/release-install-debug/sys/dev/ixgbe/ixgbe_x540.c projects/release-install-debug/sys/dev/ixgbe/ixgbe_x540.h projects/release-install-debug/sys/dev/ixl/i40e_adminq_cmd.h projects/release-install-debug/sys/dev/ixl/i40e_common.c projects/release-install-debug/sys/dev/ixl/i40e_prototype.h projects/release-install-debug/sys/dev/ixl/i40e_type.h projects/release-install-debug/sys/dev/ixl/if_ixl.c projects/release-install-debug/sys/dev/ixl/if_ixlv.c projects/release-install-debug/sys/dev/ixl/ixl.h projects/release-install-debug/sys/dev/ixl/ixl_pf.h projects/release-install-debug/sys/dev/ixl/ixl_txrx.c projects/release-install-debug/sys/dev/ixl/ixlv.h projects/release-install-debug/sys/dev/ixl/ixlvc.c projects/release-install-debug/sys/dev/mii/acphy.c projects/release-install-debug/sys/dev/mii/brgphy.c projects/release-install-debug/sys/dev/mii/lxtphy.c projects/release-install-debug/sys/dev/mii/mii_physubr.c projects/release-install-debug/sys/dev/mii/miivar.h projects/release-install-debug/sys/dev/mii/mlphy.c projects/release-install-debug/sys/dev/mii/rgephy.c projects/release-install-debug/sys/dev/mii/rgephyreg.h projects/release-install-debug/sys/dev/mii/xmphy.c projects/release-install-debug/sys/dev/mlx/mlx.c projects/release-install-debug/sys/dev/mlx/mlx_pci.c projects/release-install-debug/sys/dev/mly/mly.c projects/release-install-debug/sys/dev/mmc/mmc.c projects/release-install-debug/sys/dev/mpr/mpr_sas.c projects/release-install-debug/sys/dev/mps/mpi/mpi2.h projects/release-install-debug/sys/dev/mps/mpi/mpi2_cnfg.h projects/release-install-debug/sys/dev/mps/mpi/mpi2_hbd.h projects/release-install-debug/sys/dev/mps/mpi/mpi2_history.txt projects/release-install-debug/sys/dev/mps/mpi/mpi2_init.h projects/release-install-debug/sys/dev/mps/mpi/mpi2_ioc.h projects/release-install-debug/sys/dev/mps/mpi/mpi2_ra.h projects/release-install-debug/sys/dev/mps/mpi/mpi2_raid.h projects/release-install-debug/sys/dev/mps/mpi/mpi2_sas.h projects/release-install-debug/sys/dev/mps/mpi/mpi2_targ.h projects/release-install-debug/sys/dev/mps/mpi/mpi2_tool.h projects/release-install-debug/sys/dev/mps/mpi/mpi2_type.h projects/release-install-debug/sys/dev/mps/mps.c projects/release-install-debug/sys/dev/mps/mps_config.c projects/release-install-debug/sys/dev/mps/mps_ioctl.h projects/release-install-debug/sys/dev/mps/mps_mapping.c projects/release-install-debug/sys/dev/mps/mps_mapping.h projects/release-install-debug/sys/dev/mps/mps_pci.c projects/release-install-debug/sys/dev/mps/mps_sas.c projects/release-install-debug/sys/dev/mps/mps_sas.h projects/release-install-debug/sys/dev/mps/mps_sas_lsi.c projects/release-install-debug/sys/dev/mps/mps_user.c projects/release-install-debug/sys/dev/mps/mpsvar.h projects/release-install-debug/sys/dev/mvs/mvs.c projects/release-install-debug/sys/dev/mvs/mvs.h projects/release-install-debug/sys/dev/mvs/mvs_pci.c projects/release-install-debug/sys/dev/mvs/mvs_soc.c projects/release-install-debug/sys/dev/nand/nfc_fsl.c projects/release-install-debug/sys/dev/netmap/ixgbe_netmap.h projects/release-install-debug/sys/dev/netmap/netmap.c projects/release-install-debug/sys/dev/netmap/netmap_freebsd.c projects/release-install-debug/sys/dev/nvme/nvme.c projects/release-install-debug/sys/dev/nvme/nvme_ctrlr.c projects/release-install-debug/sys/dev/nvme/nvme_ns.c projects/release-install-debug/sys/dev/nvme/nvme_private.h projects/release-install-debug/sys/dev/nvme/nvme_qpair.c projects/release-install-debug/sys/dev/ofw/ofwbus.c projects/release-install-debug/sys/dev/ofw/openfirm.c projects/release-install-debug/sys/dev/pci/pci.c projects/release-install-debug/sys/dev/pci/pci_if.m projects/release-install-debug/sys/dev/pci/pci_pci.c projects/release-install-debug/sys/dev/pci/pci_private.h projects/release-install-debug/sys/dev/pci/pci_user.c projects/release-install-debug/sys/dev/pci/pcib_if.m projects/release-install-debug/sys/dev/pci/pcib_private.h projects/release-install-debug/sys/dev/pci/pcib_support.c projects/release-install-debug/sys/dev/pci/pcireg.h projects/release-install-debug/sys/dev/pci/pcivar.h projects/release-install-debug/sys/dev/pci/vga_pci.c projects/release-install-debug/sys/dev/re/if_re.c projects/release-install-debug/sys/dev/sdhci/sdhci.c projects/release-install-debug/sys/dev/sfxge/common/efsys.h projects/release-install-debug/sys/dev/sfxge/common/efx.h projects/release-install-debug/sys/dev/sfxge/common/efx_ev.c projects/release-install-debug/sys/dev/sfxge/common/efx_filter.c projects/release-install-debug/sys/dev/sfxge/common/efx_impl.h projects/release-install-debug/sys/dev/sfxge/common/efx_mcdi.c projects/release-install-debug/sys/dev/sfxge/common/efx_nic.c projects/release-install-debug/sys/dev/sfxge/common/efx_phy.c projects/release-install-debug/sys/dev/sfxge/common/efx_regs.h projects/release-install-debug/sys/dev/sfxge/common/efx_regs_ef10.h projects/release-install-debug/sys/dev/sfxge/common/efx_tx.c projects/release-install-debug/sys/dev/sfxge/common/siena_flash.h projects/release-install-debug/sys/dev/sfxge/common/siena_mac.c projects/release-install-debug/sys/dev/sfxge/common/siena_mon.c projects/release-install-debug/sys/dev/sfxge/common/siena_nic.c projects/release-install-debug/sys/dev/sfxge/common/siena_nvram.c projects/release-install-debug/sys/dev/sfxge/common/siena_sram.c projects/release-install-debug/sys/dev/sfxge/sfxge.c projects/release-install-debug/sys/dev/sfxge/sfxge.h projects/release-install-debug/sys/dev/sfxge/sfxge_dma.c projects/release-install-debug/sys/dev/sfxge/sfxge_ev.c projects/release-install-debug/sys/dev/sfxge/sfxge_intr.c projects/release-install-debug/sys/dev/sfxge/sfxge_port.c projects/release-install-debug/sys/dev/sfxge/sfxge_rx.c projects/release-install-debug/sys/dev/sfxge/sfxge_rx.h projects/release-install-debug/sys/dev/sfxge/sfxge_tx.c projects/release-install-debug/sys/dev/sfxge/sfxge_tx.h projects/release-install-debug/sys/dev/siis/siis.c projects/release-install-debug/sys/dev/siis/siis.h projects/release-install-debug/sys/dev/sound/pci/hda/hdaa_patches.c projects/release-install-debug/sys/dev/sound/pci/hda/hdac.c projects/release-install-debug/sys/dev/sound/pci/hda/hdac.h projects/release-install-debug/sys/dev/sound/pci/hda/hdacc.c projects/release-install-debug/sys/dev/sound/pcm/channel.c projects/release-install-debug/sys/dev/sound/pcm/dsp.c projects/release-install-debug/sys/dev/sound/pcm/feeder_eq.c projects/release-install-debug/sys/dev/sound/pcm/feeder_rate.c projects/release-install-debug/sys/dev/sound/pcm/mixer.c projects/release-install-debug/sys/dev/sound/pcm/sndstat.c projects/release-install-debug/sys/dev/sound/pcm/sound.c projects/release-install-debug/sys/dev/sound/pcm/vchan.c projects/release-install-debug/sys/dev/sound/usb/uaudio.c projects/release-install-debug/sys/dev/sound/usb/uaudio.h projects/release-install-debug/sys/dev/sound/usb/uaudio_pcm.c projects/release-install-debug/sys/dev/streams/streams.c projects/release-install-debug/sys/dev/trm/trm.c projects/release-install-debug/sys/dev/twe/twe.c projects/release-install-debug/sys/dev/twe/twe_freebsd.c projects/release-install-debug/sys/dev/uart/uart.h projects/release-install-debug/sys/dev/uart/uart_bus.h projects/release-install-debug/sys/dev/uart/uart_bus_fdt.c projects/release-install-debug/sys/dev/uart/uart_core.c projects/release-install-debug/sys/dev/uart/uart_cpu.h projects/release-install-debug/sys/dev/uart/uart_cpu_fdt.c projects/release-install-debug/sys/dev/uart/uart_dev_imx.c projects/release-install-debug/sys/dev/uart/uart_dev_lpc.c projects/release-install-debug/sys/dev/uart/uart_dev_msm.c projects/release-install-debug/sys/dev/uart/uart_dev_ns8250.c projects/release-install-debug/sys/dev/uart/uart_dev_pl011.c projects/release-install-debug/sys/dev/uart/uart_dev_quicc.c projects/release-install-debug/sys/dev/uart/uart_dev_sab82532.c projects/release-install-debug/sys/dev/uart/uart_dev_ti8250.c projects/release-install-debug/sys/dev/uart/uart_dev_z8530.c projects/release-install-debug/sys/dev/uart/uart_subr.c projects/release-install-debug/sys/dev/usb/controller/dwc_otg.c projects/release-install-debug/sys/dev/usb/controller/dwc_otg_fdt.c projects/release-install-debug/sys/dev/usb/controller/dwc_otgreg.h projects/release-install-debug/sys/dev/usb/controller/ehci_pci.c projects/release-install-debug/sys/dev/usb/controller/uhci_pci.c projects/release-install-debug/sys/dev/usb/controller/xhci.c projects/release-install-debug/sys/dev/usb/controller/xhci.h projects/release-install-debug/sys/dev/usb/controller/xhci_pci.c projects/release-install-debug/sys/dev/usb/input/uhid.c projects/release-install-debug/sys/dev/usb/net/if_axge.c projects/release-install-debug/sys/dev/usb/net/usb_ethernet.c projects/release-install-debug/sys/dev/usb/quirk/usb_quirk.c projects/release-install-debug/sys/dev/usb/serial/u3g.c projects/release-install-debug/sys/dev/usb/serial/uftdi.c projects/release-install-debug/sys/dev/usb/serial/usb_serial.c projects/release-install-debug/sys/dev/usb/serial/usb_serial.h projects/release-install-debug/sys/dev/usb/storage/umass.c projects/release-install-debug/sys/dev/usb/usb.h projects/release-install-debug/sys/dev/usb/usb_core.c projects/release-install-debug/sys/dev/usb/usb_hub.c projects/release-install-debug/sys/dev/usb/usbdevs projects/release-install-debug/sys/dev/usb/video/udl.c projects/release-install-debug/sys/dev/usb/video/udl.h projects/release-install-debug/sys/dev/usb/wlan/if_run.c projects/release-install-debug/sys/dev/usb/wlan/if_urtwn.c projects/release-install-debug/sys/dev/virtio/block/virtio_blk.c projects/release-install-debug/sys/dev/virtio/block/virtio_blk.h projects/release-install-debug/sys/dev/virtio/mmio/virtio_mmio.c projects/release-install-debug/sys/dev/virtio/pci/virtio_pci.c projects/release-install-debug/sys/dev/vt/hw/fb/vt_fb.c projects/release-install-debug/sys/dev/vt/hw/fb/vt_fb.h projects/release-install-debug/sys/dev/vt/hw/ofwfb/ofwfb.c projects/release-install-debug/sys/dev/vt/hw/vga/vt_vga.c projects/release-install-debug/sys/dev/vt/vt.h projects/release-install-debug/sys/dev/vt/vt_core.c projects/release-install-debug/sys/dev/vt/vt_font.c projects/release-install-debug/sys/dev/watchdog/watchdog.c projects/release-install-debug/sys/dev/wpi/if_wpi.c projects/release-install-debug/sys/dev/wpi/if_wpi_debug.h projects/release-install-debug/sys/dev/wpi/if_wpireg.h projects/release-install-debug/sys/dev/wpi/if_wpivar.h projects/release-install-debug/sys/dev/xen/netback/netback.c projects/release-install-debug/sys/dev/xen/netfront/netfront.c projects/release-install-debug/sys/fs/devfs/devfs_devs.c projects/release-install-debug/sys/fs/devfs/devfs_vnops.c projects/release-install-debug/sys/fs/ext2fs/ext2_dir.h projects/release-install-debug/sys/fs/ext2fs/ext2_extern.h projects/release-install-debug/sys/fs/ext2fs/ext2_lookup.c projects/release-install-debug/sys/fs/ext2fs/ext2_vfsops.c projects/release-install-debug/sys/fs/ext2fs/ext2fs.h projects/release-install-debug/sys/fs/fdescfs/fdesc_vnops.c projects/release-install-debug/sys/fs/fuse/fuse_node.c projects/release-install-debug/sys/fs/fuse/fuse_node.h projects/release-install-debug/sys/fs/fuse/fuse_vfsops.c projects/release-install-debug/sys/fs/fuse/fuse_vnops.c projects/release-install-debug/sys/fs/msdosfs/msdosfs_fat.c projects/release-install-debug/sys/fs/msdosfs/msdosfs_vfsops.c projects/release-install-debug/sys/fs/msdosfs/msdosfsmount.h projects/release-install-debug/sys/fs/nandfs/bmap.c projects/release-install-debug/sys/fs/nandfs/nandfs_vfsops.c projects/release-install-debug/sys/fs/nfs/nfs.h projects/release-install-debug/sys/fs/nfs/nfs_commonport.c projects/release-install-debug/sys/fs/nfs/nfsproto.h projects/release-install-debug/sys/fs/nfsclient/nfs_clbio.c projects/release-install-debug/sys/fs/nfsclient/nfs_clrpcops.c projects/release-install-debug/sys/fs/nfsclient/nfs_clvfsops.c projects/release-install-debug/sys/fs/nfsserver/nfs_nfsdport.c projects/release-install-debug/sys/fs/nfsserver/nfs_nfsdserv.c projects/release-install-debug/sys/fs/nullfs/null_vfsops.c projects/release-install-debug/sys/fs/tmpfs/tmpfs_vnops.c projects/release-install-debug/sys/geom/geom_dev.c projects/release-install-debug/sys/geom/geom_dump.c projects/release-install-debug/sys/geom/geom_map.c projects/release-install-debug/sys/geom/geom_subr.c projects/release-install-debug/sys/geom/mirror/g_mirror.c projects/release-install-debug/sys/geom/multipath/g_multipath.c projects/release-install-debug/sys/geom/part/g_part.c projects/release-install-debug/sys/geom/part/g_part.h projects/release-install-debug/sys/geom/part/g_part_gpt.c projects/release-install-debug/sys/geom/raid/g_raid.c projects/release-install-debug/sys/geom/raid/md_intel.c projects/release-install-debug/sys/geom/raid/md_jmicron.c projects/release-install-debug/sys/geom/raid/md_nvidia.c projects/release-install-debug/sys/geom/raid/md_promise.c projects/release-install-debug/sys/geom/raid/md_sii.c projects/release-install-debug/sys/geom/uncompress/g_uncompress.c projects/release-install-debug/sys/gnu/dts/arm/at91rm9200.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/at91rm9200ek.dts (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9260.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9261.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9263.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9g20.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9g20ek_common.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9g45.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9m10g45ek.dts (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9n12.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9n12ek.dts (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9rl.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9x25.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9x35.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9x5.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9x5_can.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9x5_usart3.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9x5ek.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/ethernut5.dts (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx51-apf51dev.dts (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx51-babbage.dts (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx51.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx53-qsrb.dts (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx53-smd.dts (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx53.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6dl-hummingboard.dts (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6dl.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-gw5400-a.dts (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-udoo.dts (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6qdl-cubox-i.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6qdl-gw51xx.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6qdl-gw52xx.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6qdl-gw53xx.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6qdl-gw54xx.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6qdl-nitrogen6x.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6qdl-phytec-pfla02.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6qdl-rex.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6qdl-sabrelite.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6qdl-sabresd.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6qdl.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6sl-evk.dts (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6sl.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6sx-sdb.dts (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6sx.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/sama5d3.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/sama5d31.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/sama5d33.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/sama5d34.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/sama5d35.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/sama5d36.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/sama5d3_can.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/sama5d3xcm.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/sama5d3xmb.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/arm/vf610.dtsi (contents, props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/exynos3250.h (contents, props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/exynos4.h (contents, props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/exynos5420.h (contents, props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/hix5hd2-clock.h (contents, props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/imx5-clock.h (contents, props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/imx6qdl-clock.h (contents, props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/imx6sl-clock.h (contents, props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/imx6sx-clock.h (contents, props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/r8a7790-clock.h (contents, props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/r8a7791-clock.h (contents, props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/rk3188-cru-common.h (contents, props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/rk3288-cru.h (contents, props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/tegra114-car.h (contents, props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/tegra124-car.h (contents, props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/tegra20-car.h (contents, props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/vf610-clock.h (contents, props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/dma/at91.h (contents, props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/interrupt-controller/arm-gic.h (contents, props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/pinctrl/at91.h (contents, props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/pinctrl/dra.h (contents, props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/pinctrl/omap.h (contents, props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/pinctrl/rockchip.h (contents, props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/thermal/thermal.h (contents, props changed) projects/release-install-debug/sys/i386/conf/GENERIC projects/release-install-debug/sys/i386/conf/NOTES projects/release-install-debug/sys/i386/i386/apic_vector.s projects/release-install-debug/sys/i386/i386/bios.c projects/release-install-debug/sys/i386/i386/db_trace.c projects/release-install-debug/sys/i386/i386/initcpu.c projects/release-install-debug/sys/i386/i386/locore.s projects/release-install-debug/sys/i386/i386/machdep.c projects/release-install-debug/sys/i386/i386/minidump_machdep.c projects/release-install-debug/sys/i386/i386/mp_machdep.c projects/release-install-debug/sys/i386/i386/mpboot.s projects/release-install-debug/sys/i386/i386/pmap.c projects/release-install-debug/sys/i386/i386/swtch.s projects/release-install-debug/sys/i386/i386/trap.c projects/release-install-debug/sys/i386/i386/vm86bios.s projects/release-install-debug/sys/i386/i386/vm_machdep.c projects/release-install-debug/sys/i386/include/intr_machdep.h projects/release-install-debug/sys/i386/include/param.h projects/release-install-debug/sys/i386/include/pmap.h projects/release-install-debug/sys/i386/include/smp.h projects/release-install-debug/sys/i386/include/vmparam.h projects/release-install-debug/sys/i386/isa/npx.c projects/release-install-debug/sys/i386/xen/mp_machdep.c projects/release-install-debug/sys/i386/xen/pmap.c projects/release-install-debug/sys/kern/imgact_elf.c projects/release-install-debug/sys/kern/init_main.c projects/release-install-debug/sys/kern/init_sysent.c projects/release-install-debug/sys/kern/kern_conf.c projects/release-install-debug/sys/kern/kern_cons.c projects/release-install-debug/sys/kern/kern_ctf.c projects/release-install-debug/sys/kern/kern_descrip.c projects/release-install-debug/sys/kern/kern_et.c projects/release-install-debug/sys/kern/kern_exec.c projects/release-install-debug/sys/kern/kern_exit.c projects/release-install-debug/sys/kern/kern_fail.c projects/release-install-debug/sys/kern/kern_fork.c projects/release-install-debug/sys/kern/kern_gzio.c projects/release-install-debug/sys/kern/kern_jail.c projects/release-install-debug/sys/kern/kern_kthread.c projects/release-install-debug/sys/kern/kern_loginclass.c projects/release-install-debug/sys/kern/kern_malloc.c projects/release-install-debug/sys/kern/kern_mbuf.c projects/release-install-debug/sys/kern/kern_mib.c projects/release-install-debug/sys/kern/kern_physio.c projects/release-install-debug/sys/kern/kern_poll.c projects/release-install-debug/sys/kern/kern_proc.c projects/release-install-debug/sys/kern/kern_prot.c projects/release-install-debug/sys/kern/kern_resource.c projects/release-install-debug/sys/kern/kern_sig.c projects/release-install-debug/sys/kern/kern_synch.c projects/release-install-debug/sys/kern/kern_sysctl.c projects/release-install-debug/sys/kern/kern_tc.c projects/release-install-debug/sys/kern/kern_thr.c projects/release-install-debug/sys/kern/kern_thread.c projects/release-install-debug/sys/kern/kern_timeout.c projects/release-install-debug/sys/kern/kern_umtx.c projects/release-install-debug/sys/kern/link_elf.c projects/release-install-debug/sys/kern/link_elf_obj.c projects/release-install-debug/sys/kern/sched_ule.c projects/release-install-debug/sys/kern/subr_bus.c projects/release-install-debug/sys/kern/subr_busdma_bufalloc.c projects/release-install-debug/sys/kern/subr_param.c projects/release-install-debug/sys/kern/subr_prf.c projects/release-install-debug/sys/kern/subr_sbuf.c projects/release-install-debug/sys/kern/subr_taskqueue.c projects/release-install-debug/sys/kern/subr_vmem.c projects/release-install-debug/sys/kern/subr_witness.c projects/release-install-debug/sys/kern/sys_capability.c projects/release-install-debug/sys/kern/sys_generic.c projects/release-install-debug/sys/kern/sys_pipe.c projects/release-install-debug/sys/kern/syscalls.c projects/release-install-debug/sys/kern/syscalls.master projects/release-install-debug/sys/kern/systrace_args.c projects/release-install-debug/sys/kern/sysv_shm.c projects/release-install-debug/sys/kern/tty_pts.c projects/release-install-debug/sys/kern/uipc_mqueue.c projects/release-install-debug/sys/kern/uipc_sem.c projects/release-install-debug/sys/kern/uipc_shm.c projects/release-install-debug/sys/kern/uipc_socket.c projects/release-install-debug/sys/kern/uipc_syscalls.c projects/release-install-debug/sys/kern/vfs_bio.c projects/release-install-debug/sys/kern/vfs_cache.c projects/release-install-debug/sys/kern/vfs_subr.c projects/release-install-debug/sys/kern/vfs_syscalls.c projects/release-install-debug/sys/kern/vfs_vnops.c projects/release-install-debug/sys/kern/vnode_if.src projects/release-install-debug/sys/mips/adm5120/uart_dev_adm5120.c projects/release-install-debug/sys/mips/atheros/ar71xx_ehci.c projects/release-install-debug/sys/mips/atheros/ar71xx_gpio.c projects/release-install-debug/sys/mips/atheros/ar71xx_machdep.c projects/release-install-debug/sys/mips/atheros/ar71xxreg.h projects/release-install-debug/sys/mips/atheros/ar724xreg.h projects/release-install-debug/sys/mips/atheros/files.ar71xx projects/release-install-debug/sys/mips/atheros/if_arge.c projects/release-install-debug/sys/mips/atheros/qca955x_chip.c projects/release-install-debug/sys/mips/atheros/qca955xreg.h projects/release-install-debug/sys/mips/atheros/uart_dev_ar933x.c projects/release-install-debug/sys/mips/cavium/uart_dev_oct16550.c projects/release-install-debug/sys/mips/conf/AR91XX_BASE projects/release-install-debug/sys/mips/conf/AR933X_BASE projects/release-install-debug/sys/mips/conf/AR934X_BASE projects/release-install-debug/sys/mips/conf/CARAMBOLA2.hints projects/release-install-debug/sys/mips/conf/DIR-825B1.hints projects/release-install-debug/sys/mips/conf/DIR-825C1.hints projects/release-install-debug/sys/mips/conf/OCTEON1 projects/release-install-debug/sys/mips/include/cache_mipsNN.h projects/release-install-debug/sys/mips/include/cache_r4k.h projects/release-install-debug/sys/mips/include/reg.h projects/release-install-debug/sys/mips/mips/cache.c projects/release-install-debug/sys/mips/mips/cache_mipsNN.c projects/release-install-debug/sys/mips/mips/uma_machdep.c projects/release-install-debug/sys/mips/nlm/board.c projects/release-install-debug/sys/mips/nlm/board.h projects/release-install-debug/sys/mips/nlm/board_cpld.c projects/release-install-debug/sys/mips/nlm/board_eeprom.c projects/release-install-debug/sys/mips/nlm/bus_space_rmi_pci.c projects/release-install-debug/sys/mips/nlm/cms.c projects/release-install-debug/sys/mips/nlm/dev/net/mdio.c projects/release-install-debug/sys/mips/nlm/dev/net/nae.c projects/release-install-debug/sys/mips/nlm/dev/net/sgmii.c projects/release-install-debug/sys/mips/nlm/dev/net/ucore/crt0_basic.S projects/release-install-debug/sys/mips/nlm/dev/net/ucore/ld.ucore.S projects/release-install-debug/sys/mips/nlm/dev/net/ucore/ucore.h projects/release-install-debug/sys/mips/nlm/dev/net/ucore/ucore_app.c projects/release-install-debug/sys/mips/nlm/dev/net/xaui.c projects/release-install-debug/sys/mips/nlm/dev/net/xlpge.c projects/release-install-debug/sys/mips/nlm/dev/net/xlpge.h projects/release-install-debug/sys/mips/nlm/dev/sec/nlmrsa.c projects/release-install-debug/sys/mips/nlm/dev/sec/nlmrsalib.h projects/release-install-debug/sys/mips/nlm/dev/sec/nlmsec.c projects/release-install-debug/sys/mips/nlm/dev/sec/nlmseclib.c projects/release-install-debug/sys/mips/nlm/dev/sec/nlmseclib.h projects/release-install-debug/sys/mips/nlm/dev/sec/rsa_ucode.h projects/release-install-debug/sys/mips/nlm/files.xlp projects/release-install-debug/sys/mips/nlm/hal/fmn.h projects/release-install-debug/sys/mips/nlm/hal/gbu.h projects/release-install-debug/sys/mips/nlm/hal/interlaken.h projects/release-install-debug/sys/mips/nlm/hal/mdio.h projects/release-install-debug/sys/mips/nlm/hal/mips-extns.h projects/release-install-debug/sys/mips/nlm/hal/mmu.h projects/release-install-debug/sys/mips/nlm/hal/nae.h projects/release-install-debug/sys/mips/nlm/hal/nlm_hal.c projects/release-install-debug/sys/mips/nlm/hal/nlmsaelib.h projects/release-install-debug/sys/mips/nlm/hal/pcibus.h projects/release-install-debug/sys/mips/nlm/hal/pic.h projects/release-install-debug/sys/mips/nlm/hal/poe.h projects/release-install-debug/sys/mips/nlm/hal/sgmii.h projects/release-install-debug/sys/mips/nlm/hal/ucore_loader.h projects/release-install-debug/sys/mips/nlm/hal/usb.h projects/release-install-debug/sys/mips/nlm/hal/xaui.h projects/release-install-debug/sys/mips/nlm/interrupt.h projects/release-install-debug/sys/mips/nlm/intr_machdep.c projects/release-install-debug/sys/mips/nlm/mpreset.S projects/release-install-debug/sys/mips/nlm/msgring.h projects/release-install-debug/sys/mips/nlm/tick.c projects/release-install-debug/sys/mips/nlm/uart_cpu_xlp.c projects/release-install-debug/sys/mips/nlm/usb_init.c projects/release-install-debug/sys/mips/nlm/xlp.h projects/release-install-debug/sys/mips/nlm/xlp_machdep.c projects/release-install-debug/sys/mips/nlm/xlp_pci.c projects/release-install-debug/sys/mips/rmi/dev/iic/at24co2n.c projects/release-install-debug/sys/mips/rmi/fmn.c projects/release-install-debug/sys/mips/rt305x/uart_dev_rt305x.c projects/release-install-debug/sys/modules/Makefile projects/release-install-debug/sys/modules/ata/atapci/chipsets/Makefile projects/release-install-debug/sys/modules/drm2/Makefile projects/release-install-debug/sys/modules/drm2/drm2/Makefile projects/release-install-debug/sys/modules/drm2/radeonkms/Makefile projects/release-install-debug/sys/modules/drm2/radeonkmsfw/Makefile projects/release-install-debug/sys/modules/dtb/rpi/Makefile projects/release-install-debug/sys/modules/dtrace/dtraceall/dtraceall.c projects/release-install-debug/sys/modules/ext2fs/Makefile projects/release-install-debug/sys/modules/hwpmc/Makefile projects/release-install-debug/sys/modules/i2c/iicbb/Makefile projects/release-install-debug/sys/modules/mlxen/Makefile projects/release-install-debug/sys/modules/sfxge/Makefile projects/release-install-debug/sys/modules/usb/Makefile projects/release-install-debug/sys/modules/vmm/Makefile projects/release-install-debug/sys/net/bpf.c projects/release-install-debug/sys/net/bpf.h projects/release-install-debug/sys/net/ieee8023ad_lacp.c projects/release-install-debug/sys/net/if.c projects/release-install-debug/sys/net/if_clone.c projects/release-install-debug/sys/net/if_clone.h projects/release-install-debug/sys/net/if_lagg.c projects/release-install-debug/sys/net/if_lagg.h projects/release-install-debug/sys/net/if_media.c projects/release-install-debug/sys/net/if_media.h projects/release-install-debug/sys/net/if_tap.c projects/release-install-debug/sys/net/if_types.h projects/release-install-debug/sys/net/if_var.h projects/release-install-debug/sys/net/if_vlan.c projects/release-install-debug/sys/net/ifq.h projects/release-install-debug/sys/net/pfvar.h projects/release-install-debug/sys/net/route.c projects/release-install-debug/sys/net/zlib.h projects/release-install-debug/sys/net80211/ieee80211_freebsd.c projects/release-install-debug/sys/net80211/ieee80211_ht.c projects/release-install-debug/sys/net80211/ieee80211_mesh.c projects/release-install-debug/sys/net80211/ieee80211_output.c projects/release-install-debug/sys/netgraph/atm/sscop/ng_sscop_cust.h projects/release-install-debug/sys/netgraph/atm/uni/ng_uni_cust.h projects/release-install-debug/sys/netgraph/bluetooth/hci/ng_hci_cmds.c projects/release-install-debug/sys/netgraph/bluetooth/hci/ng_hci_evnt.c projects/release-install-debug/sys/netgraph/bluetooth/hci/ng_hci_main.c projects/release-install-debug/sys/netgraph/bluetooth/hci/ng_hci_misc.c projects/release-install-debug/sys/netgraph/bluetooth/hci/ng_hci_misc.h projects/release-install-debug/sys/netgraph/bluetooth/hci/ng_hci_ulpi.c projects/release-install-debug/sys/netgraph/bluetooth/hci/ng_hci_var.h projects/release-install-debug/sys/netgraph/bluetooth/include/ng_btsocket.h projects/release-install-debug/sys/netgraph/bluetooth/include/ng_btsocket_l2cap.h projects/release-install-debug/sys/netgraph/bluetooth/include/ng_hci.h projects/release-install-debug/sys/netgraph/bluetooth/include/ng_l2cap.h projects/release-install-debug/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.c projects/release-install-debug/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.h projects/release-install-debug/sys/netgraph/bluetooth/l2cap/ng_l2cap_evnt.c projects/release-install-debug/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c projects/release-install-debug/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.h projects/release-install-debug/sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c projects/release-install-debug/sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.h projects/release-install-debug/sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c projects/release-install-debug/sys/netgraph/bluetooth/l2cap/ng_l2cap_var.h projects/release-install-debug/sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c projects/release-install-debug/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c projects/release-install-debug/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c projects/release-install-debug/sys/netinet/icmp6.h projects/release-install-debug/sys/netinet/if_ether.c projects/release-install-debug/sys/netinet/igmp.c projects/release-install-debug/sys/netinet/in.c projects/release-install-debug/sys/netinet/in.h projects/release-install-debug/sys/netinet/in_rss.c projects/release-install-debug/sys/netinet/in_var.h projects/release-install-debug/sys/netinet/ip.h projects/release-install-debug/sys/netinet/ip_carp.c projects/release-install-debug/sys/netinet/ip_fw.h projects/release-install-debug/sys/netinet/ip_gre.c projects/release-install-debug/sys/netinet/ip_id.c projects/release-install-debug/sys/netinet/ip_input.c projects/release-install-debug/sys/netinet/ip_mroute.c projects/release-install-debug/sys/netinet/ip_output.c projects/release-install-debug/sys/netinet/ip_var.h projects/release-install-debug/sys/netinet/raw_ip.c projects/release-install-debug/sys/netinet/sctp.h projects/release-install-debug/sys/netinet/sctp_auth.c projects/release-install-debug/sys/netinet/sctp_cc_functions.c projects/release-install-debug/sys/netinet/sctp_indata.c projects/release-install-debug/sys/netinet/sctp_input.c projects/release-install-debug/sys/netinet/sctp_os_bsd.h projects/release-install-debug/sys/netinet/sctp_output.c projects/release-install-debug/sys/netinet/sctp_pcb.c projects/release-install-debug/sys/netinet/sctp_pcb.h projects/release-install-debug/sys/netinet/sctp_peeloff.c projects/release-install-debug/sys/netinet/sctp_structs.h projects/release-install-debug/sys/netinet/sctp_syscalls.c projects/release-install-debug/sys/netinet/sctp_timer.c projects/release-install-debug/sys/netinet/sctp_usrreq.c projects/release-install-debug/sys/netinet/sctputil.c projects/release-install-debug/sys/netinet/siftr.c projects/release-install-debug/sys/netinet/tcp_hostcache.c projects/release-install-debug/sys/netinet/tcp_subr.c projects/release-install-debug/sys/netinet/tcp_timer.c projects/release-install-debug/sys/netinet/tcp_timer.h projects/release-install-debug/sys/netinet/tcp_usrreq.c projects/release-install-debug/sys/netinet/tcp_var.h projects/release-install-debug/sys/netinet6/in6.c projects/release-install-debug/sys/netinet6/in6.h projects/release-install-debug/sys/netinet6/in6_mcast.c projects/release-install-debug/sys/netinet6/in6_pcb.c projects/release-install-debug/sys/netinet6/in6_var.h projects/release-install-debug/sys/netinet6/ip6_forward.c projects/release-install-debug/sys/netinet6/ip6_input.c projects/release-install-debug/sys/netinet6/ip6_mroute.c projects/release-install-debug/sys/netinet6/ip6_mroute.h projects/release-install-debug/sys/netinet6/ip6_output.c projects/release-install-debug/sys/netinet6/ip6_var.h projects/release-install-debug/sys/netinet6/nd6.c projects/release-install-debug/sys/netinet6/nd6.h projects/release-install-debug/sys/netinet6/nd6_nbr.c projects/release-install-debug/sys/netinet6/nd6_rtr.c projects/release-install-debug/sys/netipsec/ipsec.c projects/release-install-debug/sys/netipsec/ipsec.h projects/release-install-debug/sys/netipsec/ipsec_input.c projects/release-install-debug/sys/netipsec/ipsec_output.c projects/release-install-debug/sys/netipsec/key.c projects/release-install-debug/sys/netipsec/xform.h projects/release-install-debug/sys/netipsec/xform_ah.c projects/release-install-debug/sys/netipsec/xform_esp.c projects/release-install-debug/sys/netipsec/xform_ipcomp.c projects/release-install-debug/sys/netpfil/ipfw/ip_fw2.c projects/release-install-debug/sys/netpfil/ipfw/ip_fw_log.c projects/release-install-debug/sys/netpfil/ipfw/ip_fw_pfil.c projects/release-install-debug/sys/netpfil/ipfw/ip_fw_private.h projects/release-install-debug/sys/netpfil/ipfw/ip_fw_table_value.c projects/release-install-debug/sys/netpfil/pf/if_pfsync.c projects/release-install-debug/sys/netpfil/pf/pf.c projects/release-install-debug/sys/netpfil/pf/pf_ioctl.c projects/release-install-debug/sys/netpfil/pf/pf_norm.c projects/release-install-debug/sys/nfs/krpc_subr.c projects/release-install-debug/sys/nfsclient/nfs.h projects/release-install-debug/sys/ofed/drivers/net/mlx4/cmd.c projects/release-install-debug/sys/ofed/drivers/net/mlx4/en_main.c projects/release-install-debug/sys/ofed/drivers/net/mlx4/en_netdev.c projects/release-install-debug/sys/ofed/drivers/net/mlx4/en_rx.c projects/release-install-debug/sys/ofed/drivers/net/mlx4/en_tx.c projects/release-install-debug/sys/ofed/drivers/net/mlx4/main.c projects/release-install-debug/sys/ofed/drivers/net/mlx4/mcg.c projects/release-install-debug/sys/ofed/drivers/net/mlx4/mlx4_en.h projects/release-install-debug/sys/ofed/include/linux/completion.h projects/release-install-debug/sys/ofed/include/linux/file.h projects/release-install-debug/sys/ofed/include/linux/fs.h projects/release-install-debug/sys/ofed/include/linux/in.h projects/release-install-debug/sys/ofed/include/linux/jiffies.h projects/release-install-debug/sys/ofed/include/linux/kernel.h projects/release-install-debug/sys/ofed/include/linux/linux_compat.c projects/release-install-debug/sys/ofed/include/linux/log2.h projects/release-install-debug/sys/ofed/include/linux/mlx4/device.h projects/release-install-debug/sys/ofed/include/linux/mlx4/qp.h projects/release-install-debug/sys/ofed/include/linux/timer.h projects/release-install-debug/sys/opencrypto/gmac.h projects/release-install-debug/sys/powerpc/aim/locore32.S projects/release-install-debug/sys/powerpc/aim/machdep.c projects/release-install-debug/sys/powerpc/aim/mmu_oea.c projects/release-install-debug/sys/powerpc/aim/mmu_oea64.c projects/release-install-debug/sys/powerpc/aim/mmu_oea64.h projects/release-install-debug/sys/powerpc/aim/moea64_if.m projects/release-install-debug/sys/powerpc/aim/moea64_native.c projects/release-install-debug/sys/powerpc/aim/slb.c projects/release-install-debug/sys/powerpc/aim/trap_subr32.S projects/release-install-debug/sys/powerpc/aim/trap_subr64.S projects/release-install-debug/sys/powerpc/aim/uma_machdep.c projects/release-install-debug/sys/powerpc/booke/interrupt.c projects/release-install-debug/sys/powerpc/booke/locore.S projects/release-install-debug/sys/powerpc/booke/machdep.c projects/release-install-debug/sys/powerpc/booke/pmap.c projects/release-install-debug/sys/powerpc/booke/trap_subr.S projects/release-install-debug/sys/powerpc/conf/GENERIC64 projects/release-install-debug/sys/powerpc/fpu/fpu_emu.c projects/release-install-debug/sys/powerpc/fpu/fpu_explode.c projects/release-install-debug/sys/powerpc/include/cpu.h projects/release-install-debug/sys/powerpc/include/frame.h projects/release-install-debug/sys/powerpc/include/pcb.h projects/release-install-debug/sys/powerpc/include/pmap.h projects/release-install-debug/sys/powerpc/include/pmc_mdep.h projects/release-install-debug/sys/powerpc/include/psl.h projects/release-install-debug/sys/powerpc/include/pte.h projects/release-install-debug/sys/powerpc/include/reg.h projects/release-install-debug/sys/powerpc/include/slb.h projects/release-install-debug/sys/powerpc/include/trap.h projects/release-install-debug/sys/powerpc/include/ucontext.h projects/release-install-debug/sys/powerpc/ofw/ofwcall32.S projects/release-install-debug/sys/powerpc/powermac/platform_powermac.c projects/release-install-debug/sys/powerpc/powerpc/cpu.c projects/release-install-debug/sys/powerpc/powerpc/db_trace.c projects/release-install-debug/sys/powerpc/powerpc/elf32_machdep.c projects/release-install-debug/sys/powerpc/powerpc/exec_machdep.c projects/release-install-debug/sys/powerpc/powerpc/fpu.c projects/release-install-debug/sys/powerpc/powerpc/genassym.c projects/release-install-debug/sys/powerpc/powerpc/swtch32.S projects/release-install-debug/sys/powerpc/powerpc/swtch64.S projects/release-install-debug/sys/powerpc/powerpc/syncicache.c projects/release-install-debug/sys/powerpc/ps3/mmu_ps3.c projects/release-install-debug/sys/powerpc/ps3/ps3_syscons.c projects/release-install-debug/sys/powerpc/pseries/mmu_phyp.c projects/release-install-debug/sys/powerpc/pseries/phyp_llan.c projects/release-install-debug/sys/powerpc/pseries/phyp_vscsi.c projects/release-install-debug/sys/rpc/svc.c projects/release-install-debug/sys/rpc/svc.h projects/release-install-debug/sys/rpc/svc_generic.c projects/release-install-debug/sys/rpc/svc_vc.c projects/release-install-debug/sys/security/audit/audit_syscalls.c projects/release-install-debug/sys/security/mac/mac_syscalls.c projects/release-install-debug/sys/security/mac_lomac/mac_lomac.c projects/release-install-debug/sys/sparc64/conf/NOTES projects/release-install-debug/sys/sparc64/include/reg.h projects/release-install-debug/sys/sparc64/pci/sbbc.c projects/release-install-debug/sys/sparc64/sparc64/vm_machdep.c projects/release-install-debug/sys/sys/_callout.h projects/release-install-debug/sys/sys/bitset.h projects/release-install-debug/sys/sys/buf.h projects/release-install-debug/sys/sys/bus.h projects/release-install-debug/sys/sys/busdma_bufalloc.h projects/release-install-debug/sys/sys/callout.h projects/release-install-debug/sys/sys/capsicum.h projects/release-install-debug/sys/sys/cdefs.h projects/release-install-debug/sys/sys/elf_common.h projects/release-install-debug/sys/sys/fbio.h projects/release-install-debug/sys/sys/fcntl.h projects/release-install-debug/sys/sys/filedesc.h projects/release-install-debug/sys/sys/gpio.h projects/release-install-debug/sys/sys/gpt.h projects/release-install-debug/sys/sys/imgact.h projects/release-install-debug/sys/sys/jail.h projects/release-install-debug/sys/sys/kerneldump.h projects/release-install-debug/sys/sys/ktr_class.h projects/release-install-debug/sys/sys/libkern.h projects/release-install-debug/sys/sys/malloc.h projects/release-install-debug/sys/sys/mbuf.h projects/release-install-debug/sys/sys/module.h projects/release-install-debug/sys/sys/mount.h projects/release-install-debug/sys/sys/mouse.h projects/release-install-debug/sys/sys/mtio.h projects/release-install-debug/sys/sys/param.h projects/release-install-debug/sys/sys/pmc.h projects/release-install-debug/sys/sys/procfs.h projects/release-install-debug/sys/sys/queue.h projects/release-install-debug/sys/sys/sbuf.h projects/release-install-debug/sys/sys/socketvar.h projects/release-install-debug/sys/sys/sockio.h projects/release-install-debug/sys/sys/syscall.h projects/release-install-debug/sys/sys/syscall.mk projects/release-install-debug/sys/sys/syscallsubr.h projects/release-install-debug/sys/sys/sysctl.h projects/release-install-debug/sys/sys/sysproto.h projects/release-install-debug/sys/sys/systm.h projects/release-install-debug/sys/sys/taskqueue.h projects/release-install-debug/sys/sys/timepps.h projects/release-install-debug/sys/sys/types.h projects/release-install-debug/sys/sys/ucred.h projects/release-install-debug/sys/sys/vmem.h projects/release-install-debug/sys/sys/vnode.h projects/release-install-debug/sys/ufs/ffs/ffs_softdep.c projects/release-install-debug/sys/ufs/ffs/ffs_vfsops.c projects/release-install-debug/sys/vm/device_pager.c projects/release-install-debug/sys/vm/memguard.c projects/release-install-debug/sys/vm/swap_pager.c projects/release-install-debug/sys/vm/uma.h projects/release-install-debug/sys/vm/uma_core.c projects/release-install-debug/sys/vm/uma_int.h projects/release-install-debug/sys/vm/vm_fault.c projects/release-install-debug/sys/vm/vm_mmap.c projects/release-install-debug/sys/vm/vm_object.c projects/release-install-debug/sys/vm/vm_object.h projects/release-install-debug/sys/vm/vm_page.c projects/release-install-debug/sys/vm/vm_pageout.c projects/release-install-debug/sys/vm/vm_pager.c projects/release-install-debug/sys/vm/vm_pager.h projects/release-install-debug/sys/vm/vm_reserv.c projects/release-install-debug/sys/vm/vnode_pager.c projects/release-install-debug/sys/x86/acpica/OsdEnvironment.c projects/release-install-debug/sys/x86/acpica/acpi_wakeup.c projects/release-install-debug/sys/x86/acpica/madt.c projects/release-install-debug/sys/x86/include/apicvar.h projects/release-install-debug/sys/x86/include/reg.h projects/release-install-debug/sys/x86/iommu/busdma_dmar.c projects/release-install-debug/sys/x86/iommu/intel_ctx.c projects/release-install-debug/sys/x86/iommu/intel_dmar.h projects/release-install-debug/sys/x86/iommu/intel_drv.c projects/release-install-debug/sys/x86/iommu/intel_fault.c projects/release-install-debug/sys/x86/iommu/intel_gas.c projects/release-install-debug/sys/x86/iommu/intel_idpgtbl.c projects/release-install-debug/sys/x86/iommu/intel_qi.c projects/release-install-debug/sys/x86/iommu/intel_quirks.c projects/release-install-debug/sys/x86/iommu/intel_reg.h projects/release-install-debug/sys/x86/iommu/intel_utils.c projects/release-install-debug/sys/x86/x86/intr_machdep.c projects/release-install-debug/sys/x86/x86/io_apic.c projects/release-install-debug/sys/x86/x86/local_apic.c projects/release-install-debug/sys/x86/x86/mca.c projects/release-install-debug/sys/x86/x86/msi.c projects/release-install-debug/sys/x86/xen/xen_apic.c projects/release-install-debug/sys/x86/xen/xen_intr.c projects/release-install-debug/sys/xen/xenbus/xenbusb.c projects/release-install-debug/tools/build/check-links.sh projects/release-install-debug/tools/build/mk/OptionalObsoleteFiles.inc projects/release-install-debug/tools/build/options/WITHOUT_CXX projects/release-install-debug/tools/regression/aio/aiotest/Makefile projects/release-install-debug/tools/regression/aio/aiotest/aiotest.c projects/release-install-debug/tools/regression/aio/kqueue/Makefile projects/release-install-debug/tools/regression/aio/kqueue/aio_kqueue.c projects/release-install-debug/tools/regression/aio/kqueue/lio/Makefile projects/release-install-debug/tools/regression/aio/kqueue/lio/lio_kqueue.c projects/release-install-debug/tools/regression/lib/libc/gen/test-wordexp.c projects/release-install-debug/tools/regression/sockets/accept_fd_leak/Makefile projects/release-install-debug/tools/regression/sockets/accept_fd_leak/accept_fd_leak.c projects/release-install-debug/tools/regression/sockets/accf_data_attach/Makefile projects/release-install-debug/tools/regression/sockets/accf_data_attach/accf_data_attach.c projects/release-install-debug/tools/regression/sockets/fstat/Makefile projects/release-install-debug/tools/regression/sockets/fstat/fstat.c projects/release-install-debug/tools/regression/sockets/kqueue/Makefile projects/release-install-debug/tools/regression/sockets/kqueue/kqueue.c projects/release-install-debug/tools/regression/sockets/listen_backlog/Makefile projects/release-install-debug/tools/regression/sockets/listen_backlog/listen_backlog.c projects/release-install-debug/tools/regression/sockets/listenclose/Makefile projects/release-install-debug/tools/regression/sockets/listenclose/listenclose.c projects/release-install-debug/tools/regression/sockets/pr_atomic/Makefile projects/release-install-debug/tools/regression/sockets/pr_atomic/pr_atomic.c projects/release-install-debug/tools/regression/sockets/reconnect/Makefile projects/release-install-debug/tools/regression/sockets/reconnect/reconnect.c projects/release-install-debug/tools/regression/sockets/rtsocket/Makefile projects/release-install-debug/tools/regression/sockets/rtsocket/rtsocket.c projects/release-install-debug/tools/regression/sockets/sblock/Makefile projects/release-install-debug/tools/regression/sockets/sblock/sblock.c projects/release-install-debug/tools/regression/sockets/sendfile/sendfile.c projects/release-install-debug/tools/regression/sockets/shutdown/Makefile projects/release-install-debug/tools/regression/sockets/shutdown/shutdown.c projects/release-install-debug/tools/regression/sockets/sigpipe/Makefile projects/release-install-debug/tools/regression/sockets/sigpipe/sigpipe.c projects/release-install-debug/tools/regression/sockets/so_setfib/Makefile projects/release-install-debug/tools/regression/sockets/so_setfib/so_setfib.c projects/release-install-debug/tools/regression/sockets/socketpair/Makefile projects/release-install-debug/tools/regression/sockets/socketpair/socketpair.c projects/release-install-debug/tools/regression/sockets/unix_bindconnect/Makefile projects/release-install-debug/tools/regression/sockets/unix_bindconnect/unix_bindconnect.c projects/release-install-debug/tools/regression/sockets/unix_close_race/Makefile projects/release-install-debug/tools/regression/sockets/unix_close_race/unix_close_race.c projects/release-install-debug/tools/regression/sockets/unix_passfd/Makefile projects/release-install-debug/tools/regression/sockets/unix_passfd/unix_passfd.c projects/release-install-debug/tools/regression/sockets/unix_sendtorace/Makefile projects/release-install-debug/tools/regression/sockets/unix_sendtorace/unix_sendtorace.c projects/release-install-debug/tools/regression/sockets/unix_socket/Makefile projects/release-install-debug/tools/regression/sockets/unix_socket/unix_socket.c projects/release-install-debug/tools/regression/sockets/unix_sorflush/Makefile projects/release-install-debug/tools/regression/sockets/unix_sorflush/unix_sorflush.c projects/release-install-debug/tools/regression/sockets/zerosend/zerosend.c projects/release-install-debug/tools/regression/sysvshm/shmtest.c projects/release-install-debug/tools/regression/usr.bin/env/regress-env.rgdata projects/release-install-debug/tools/regression/usr.bin/env/regress-sb.rb projects/release-install-debug/tools/test/README projects/release-install-debug/tools/tools/ath/athratestats/main.c projects/release-install-debug/tools/tools/ath/athstats/athstats.c projects/release-install-debug/tools/tools/cxgbtool/cxgbtool.c projects/release-install-debug/tools/tools/iwn/iwnstats/iwn_ioctl.c projects/release-install-debug/tools/tools/netmap/pkt-gen.c projects/release-install-debug/usr.bin/Makefile projects/release-install-debug/usr.bin/ar/read.c projects/release-install-debug/usr.bin/bluetooth/bthost/bthost.c projects/release-install-debug/usr.bin/bluetooth/btsockstat/btsockstat.c projects/release-install-debug/usr.bin/bluetooth/rfcomm_sppd/rfcomm_sdp.c projects/release-install-debug/usr.bin/bluetooth/rfcomm_sppd/rfcomm_sppd.c projects/release-install-debug/usr.bin/bmake/Makefile projects/release-install-debug/usr.bin/bmake/unit-tests/Makefile projects/release-install-debug/usr.bin/calendar/Makefile projects/release-install-debug/usr.bin/calendar/calendar.h projects/release-install-debug/usr.bin/calendar/io.c projects/release-install-debug/usr.bin/clang/Makefile projects/release-install-debug/usr.bin/clang/bugpoint/Makefile projects/release-install-debug/usr.bin/clang/bugpoint/bugpoint.1 projects/release-install-debug/usr.bin/clang/clang/Makefile projects/release-install-debug/usr.bin/clang/clang/clang.1 projects/release-install-debug/usr.bin/clang/llc/Makefile projects/release-install-debug/usr.bin/clang/llc/llc.1 projects/release-install-debug/usr.bin/clang/lldb/Makefile projects/release-install-debug/usr.bin/clang/lli/Makefile projects/release-install-debug/usr.bin/clang/lli/lli.1 projects/release-install-debug/usr.bin/clang/llvm-ar/Makefile projects/release-install-debug/usr.bin/clang/llvm-ar/llvm-ar.1 projects/release-install-debug/usr.bin/clang/llvm-as/llvm-as.1 projects/release-install-debug/usr.bin/clang/llvm-bcanalyzer/llvm-bcanalyzer.1 projects/release-install-debug/usr.bin/clang/llvm-diff/llvm-diff.1 projects/release-install-debug/usr.bin/clang/llvm-dis/llvm-dis.1 projects/release-install-debug/usr.bin/clang/llvm-extract/Makefile projects/release-install-debug/usr.bin/clang/llvm-extract/llvm-extract.1 projects/release-install-debug/usr.bin/clang/llvm-link/llvm-link.1 projects/release-install-debug/usr.bin/clang/llvm-mc/Makefile projects/release-install-debug/usr.bin/clang/llvm-nm/Makefile projects/release-install-debug/usr.bin/clang/llvm-nm/llvm-nm.1 projects/release-install-debug/usr.bin/clang/llvm-objdump/Makefile projects/release-install-debug/usr.bin/clang/llvm-rtdyld/Makefile projects/release-install-debug/usr.bin/clang/llvm-symbolizer/llvm-symbolizer.1 projects/release-install-debug/usr.bin/clang/opt/Makefile projects/release-install-debug/usr.bin/clang/opt/opt.1 projects/release-install-debug/usr.bin/clang/tblgen/tblgen.1 projects/release-install-debug/usr.bin/col/col.c projects/release-install-debug/usr.bin/column/column.c projects/release-install-debug/usr.bin/ctlstat/ctlstat.8 projects/release-install-debug/usr.bin/enigma/enigma.c projects/release-install-debug/usr.bin/env/envopts.c projects/release-install-debug/usr.bin/fetch/fetch.1 projects/release-install-debug/usr.bin/fetch/fetch.c projects/release-install-debug/usr.bin/find/find.1 projects/release-install-debug/usr.bin/gcore/elf32core.c projects/release-install-debug/usr.bin/grep/grep.c projects/release-install-debug/usr.bin/gzip/gzip.1 projects/release-install-debug/usr.bin/gzip/gzip.c projects/release-install-debug/usr.bin/iconv/iconv.c projects/release-install-debug/usr.bin/ipcs/Makefile projects/release-install-debug/usr.bin/ipcs/ipc.c projects/release-install-debug/usr.bin/ipcs/ipc.h projects/release-install-debug/usr.bin/ipcs/ipcs.c projects/release-install-debug/usr.bin/iscsictl/Makefile projects/release-install-debug/usr.bin/iscsictl/iscsi.conf.5 projects/release-install-debug/usr.bin/iscsictl/iscsictl.c projects/release-install-debug/usr.bin/iscsictl/parse.y projects/release-install-debug/usr.bin/iscsictl/periphs.c projects/release-install-debug/usr.bin/jot/jot.1 projects/release-install-debug/usr.bin/kdump/mkioctls projects/release-install-debug/usr.bin/lam/lam.1 projects/release-install-debug/usr.bin/ldd/ldd.c projects/release-install-debug/usr.bin/lockf/lockf.1 projects/release-install-debug/usr.bin/lockf/lockf.c projects/release-install-debug/usr.bin/logger/logger.1 projects/release-install-debug/usr.bin/m4/misc.c projects/release-install-debug/usr.bin/man/man.sh projects/release-install-debug/usr.bin/mandoc/Makefile projects/release-install-debug/usr.bin/ministat/ministat.1 projects/release-install-debug/usr.bin/mkimg/Makefile projects/release-install-debug/usr.bin/mkimg/mkimg.1 projects/release-install-debug/usr.bin/mkimg/mkimg.c projects/release-install-debug/usr.bin/mkimg/scheme.c projects/release-install-debug/usr.bin/mt/Makefile projects/release-install-debug/usr.bin/mt/mt.1 projects/release-install-debug/usr.bin/mt/mt.c projects/release-install-debug/usr.bin/netstat/Makefile projects/release-install-debug/usr.bin/netstat/bpf.c projects/release-install-debug/usr.bin/netstat/flowtable.c projects/release-install-debug/usr.bin/netstat/if.c projects/release-install-debug/usr.bin/netstat/inet.c projects/release-install-debug/usr.bin/netstat/inet6.c projects/release-install-debug/usr.bin/netstat/ipsec.c projects/release-install-debug/usr.bin/netstat/main.c projects/release-install-debug/usr.bin/netstat/mbuf.c projects/release-install-debug/usr.bin/netstat/mroute.c projects/release-install-debug/usr.bin/netstat/mroute6.c projects/release-install-debug/usr.bin/netstat/netgraph.c projects/release-install-debug/usr.bin/netstat/netisr.c projects/release-install-debug/usr.bin/netstat/netstat.1 projects/release-install-debug/usr.bin/netstat/netstat.h projects/release-install-debug/usr.bin/netstat/pfkey.c projects/release-install-debug/usr.bin/netstat/route.c projects/release-install-debug/usr.bin/netstat/sctp.c projects/release-install-debug/usr.bin/netstat/unix.c projects/release-install-debug/usr.bin/nfsstat/nfsstat.c projects/release-install-debug/usr.bin/patch/inp.c projects/release-install-debug/usr.bin/patch/pch.c projects/release-install-debug/usr.bin/patch/util.c projects/release-install-debug/usr.bin/printf/printf.c projects/release-install-debug/usr.bin/procstat/Makefile projects/release-install-debug/usr.bin/procstat/procstat.1 projects/release-install-debug/usr.bin/procstat/procstat.c projects/release-install-debug/usr.bin/procstat/procstat.h projects/release-install-debug/usr.bin/rlogin/Makefile projects/release-install-debug/usr.bin/rlogin/rlogin.c projects/release-install-debug/usr.bin/rpcgen/rpc_sample.c projects/release-install-debug/usr.bin/rs/rs.1 projects/release-install-debug/usr.bin/rsh/Makefile projects/release-install-debug/usr.bin/smbutil/Makefile projects/release-install-debug/usr.bin/sockstat/sockstat.1 projects/release-install-debug/usr.bin/sort/bwstring.c projects/release-install-debug/usr.bin/sort/coll.c projects/release-install-debug/usr.bin/sort/file.c projects/release-install-debug/usr.bin/sort/file.h projects/release-install-debug/usr.bin/sort/mem.c projects/release-install-debug/usr.bin/sort/radixsort.c projects/release-install-debug/usr.bin/sort/sort.1.in projects/release-install-debug/usr.bin/sort/sort.c projects/release-install-debug/usr.bin/top/machine.c projects/release-install-debug/usr.bin/touch/touch.1 projects/release-install-debug/usr.bin/unifdef/unifdef.1 projects/release-install-debug/usr.bin/unifdef/unifdef.c projects/release-install-debug/usr.bin/unifdef/unifdef.h projects/release-install-debug/usr.bin/unifdef/unifdefall.sh projects/release-install-debug/usr.bin/unzip/unzip.c projects/release-install-debug/usr.bin/vi/Makefile projects/release-install-debug/usr.bin/w/Makefile projects/release-install-debug/usr.bin/w/w.c projects/release-install-debug/usr.bin/wc/wc.c projects/release-install-debug/usr.bin/xlint/Makefile.inc projects/release-install-debug/usr.bin/xlint/arch/sparc64/targparam.h projects/release-install-debug/usr.bin/xlint/common/lint.h projects/release-install-debug/usr.bin/xlint/common/mem.c projects/release-install-debug/usr.bin/xlint/lint1/cgram.y projects/release-install-debug/usr.bin/xlint/lint1/decl.c projects/release-install-debug/usr.bin/xlint/lint1/emit1.c projects/release-install-debug/usr.bin/xlint/lint1/err.c projects/release-install-debug/usr.bin/xlint/lint1/externs1.h projects/release-install-debug/usr.bin/xlint/lint1/func.c projects/release-install-debug/usr.bin/xlint/lint1/init.c projects/release-install-debug/usr.bin/xlint/lint1/lint1.h projects/release-install-debug/usr.bin/xlint/lint1/main1.c projects/release-install-debug/usr.bin/xlint/lint1/makeman projects/release-install-debug/usr.bin/xlint/lint1/param.h projects/release-install-debug/usr.bin/xlint/lint1/scan.l projects/release-install-debug/usr.bin/xlint/lint1/tree.c projects/release-install-debug/usr.bin/xlint/lint2/read.c projects/release-install-debug/usr.bin/xlint/xlint/lint.1 projects/release-install-debug/usr.bin/xlint/xlint/xlint.c projects/release-install-debug/usr.sbin/Makefile projects/release-install-debug/usr.sbin/acpi/acpiconf/acpiconf.c projects/release-install-debug/usr.sbin/acpi/acpidump/acpi.c projects/release-install-debug/usr.sbin/amd/include/config.h projects/release-install-debug/usr.sbin/ancontrol/ancontrol.c projects/release-install-debug/usr.sbin/arp/arp.c projects/release-install-debug/usr.sbin/authpf/Makefile projects/release-install-debug/usr.sbin/autofs/auto_master.5 projects/release-install-debug/usr.sbin/autofs/automount.c projects/release-install-debug/usr.sbin/autofs/automountd.8 projects/release-install-debug/usr.sbin/autofs/automountd.c projects/release-install-debug/usr.sbin/autofs/common.c projects/release-install-debug/usr.sbin/autofs/common.h projects/release-install-debug/usr.sbin/autofs/popen.c projects/release-install-debug/usr.sbin/bhyve/Makefile projects/release-install-debug/usr.sbin/bhyve/ahci.h projects/release-install-debug/usr.sbin/bhyve/bhyve.8 projects/release-install-debug/usr.sbin/bhyve/bhyverun.c projects/release-install-debug/usr.sbin/bhyve/block_if.c projects/release-install-debug/usr.sbin/bhyve/block_if.h projects/release-install-debug/usr.sbin/bhyve/pci_ahci.c projects/release-install-debug/usr.sbin/bhyve/pci_virtio_block.c projects/release-install-debug/usr.sbin/bhyve/pci_virtio_net.c projects/release-install-debug/usr.sbin/bhyve/pci_virtio_rnd.c projects/release-install-debug/usr.sbin/bhyve/rtc.c projects/release-install-debug/usr.sbin/bhyve/rtc.h projects/release-install-debug/usr.sbin/bhyve/virtio.c projects/release-install-debug/usr.sbin/bhyve/virtio.h projects/release-install-debug/usr.sbin/bhyve/xmsr.c projects/release-install-debug/usr.sbin/bhyvectl/Makefile projects/release-install-debug/usr.sbin/bhyvectl/bhyvectl.c projects/release-install-debug/usr.sbin/bhyveload/Makefile projects/release-install-debug/usr.sbin/bluetooth/bthidcontrol/bthidcontrol.c projects/release-install-debug/usr.sbin/bluetooth/bthidcontrol/hid.c projects/release-install-debug/usr.sbin/bluetooth/bthidcontrol/sdp.c projects/release-install-debug/usr.sbin/bluetooth/bthidd/bthidd.c projects/release-install-debug/usr.sbin/bluetooth/bthidd/client.c projects/release-install-debug/usr.sbin/bluetooth/bthidd/hid.c projects/release-install-debug/usr.sbin/bluetooth/bthidd/kbd.c projects/release-install-debug/usr.sbin/bluetooth/bthidd/lexer.l projects/release-install-debug/usr.sbin/bluetooth/bthidd/parser.y projects/release-install-debug/usr.sbin/bluetooth/bthidd/server.c projects/release-install-debug/usr.sbin/bluetooth/bthidd/session.c projects/release-install-debug/usr.sbin/bluetooth/btpand/bnep.c projects/release-install-debug/usr.sbin/bluetooth/btpand/btpand.c projects/release-install-debug/usr.sbin/bluetooth/btpand/channel.c projects/release-install-debug/usr.sbin/bluetooth/btpand/client.c projects/release-install-debug/usr.sbin/bluetooth/btpand/event.c projects/release-install-debug/usr.sbin/bluetooth/btpand/packet.c projects/release-install-debug/usr.sbin/bluetooth/btpand/sdp.c projects/release-install-debug/usr.sbin/bluetooth/btpand/server.c projects/release-install-debug/usr.sbin/bluetooth/btpand/tap.c projects/release-install-debug/usr.sbin/bluetooth/hccontrol/Makefile projects/release-install-debug/usr.sbin/bluetooth/hccontrol/hccontrol.c projects/release-install-debug/usr.sbin/bluetooth/hccontrol/hccontrol.h projects/release-install-debug/usr.sbin/bluetooth/hccontrol/host_controller_baseband.c projects/release-install-debug/usr.sbin/bluetooth/hccontrol/info.c projects/release-install-debug/usr.sbin/bluetooth/hccontrol/link_control.c projects/release-install-debug/usr.sbin/bluetooth/hccontrol/link_policy.c projects/release-install-debug/usr.sbin/bluetooth/hccontrol/node.c projects/release-install-debug/usr.sbin/bluetooth/hccontrol/util.c projects/release-install-debug/usr.sbin/bluetooth/hcsecd/hcsecd.c projects/release-install-debug/usr.sbin/bluetooth/hcsecd/parser.y projects/release-install-debug/usr.sbin/bluetooth/l2control/l2cap.c projects/release-install-debug/usr.sbin/bluetooth/l2control/l2control.c projects/release-install-debug/usr.sbin/bluetooth/l2ping/l2ping.c projects/release-install-debug/usr.sbin/bluetooth/rfcomm_pppd/rfcomm_pppd.c projects/release-install-debug/usr.sbin/bluetooth/sdpcontrol/sdpcontrol.c projects/release-install-debug/usr.sbin/bluetooth/sdpcontrol/search.c projects/release-install-debug/usr.sbin/bluetooth/sdpd/bgd.c projects/release-install-debug/usr.sbin/bluetooth/sdpd/dun.c projects/release-install-debug/usr.sbin/bluetooth/sdpd/ftrn.c projects/release-install-debug/usr.sbin/bluetooth/sdpd/gn.c projects/release-install-debug/usr.sbin/bluetooth/sdpd/irmc.c projects/release-install-debug/usr.sbin/bluetooth/sdpd/irmc_command.c projects/release-install-debug/usr.sbin/bluetooth/sdpd/lan.c projects/release-install-debug/usr.sbin/bluetooth/sdpd/main.c projects/release-install-debug/usr.sbin/bluetooth/sdpd/nap.c projects/release-install-debug/usr.sbin/bluetooth/sdpd/opush.c projects/release-install-debug/usr.sbin/bluetooth/sdpd/panu.c projects/release-install-debug/usr.sbin/bluetooth/sdpd/profile.c projects/release-install-debug/usr.sbin/bluetooth/sdpd/provider.c projects/release-install-debug/usr.sbin/bluetooth/sdpd/sar.c projects/release-install-debug/usr.sbin/bluetooth/sdpd/scr.c projects/release-install-debug/usr.sbin/bluetooth/sdpd/sd.c projects/release-install-debug/usr.sbin/bluetooth/sdpd/server.c projects/release-install-debug/usr.sbin/bluetooth/sdpd/sp.c projects/release-install-debug/usr.sbin/bluetooth/sdpd/srr.c projects/release-install-debug/usr.sbin/bluetooth/sdpd/ssar.c projects/release-install-debug/usr.sbin/bluetooth/sdpd/ssr.c projects/release-install-debug/usr.sbin/bluetooth/sdpd/sur.c projects/release-install-debug/usr.sbin/bluetooth/sdpd/uuid.c projects/release-install-debug/usr.sbin/bsdconfig/share/geom.subr projects/release-install-debug/usr.sbin/bsdinstall/scripts/docsinstall projects/release-install-debug/usr.sbin/bsdinstall/scripts/zfsboot projects/release-install-debug/usr.sbin/bsnmpd/tools/bsnmptools/Makefile projects/release-install-debug/usr.sbin/config/main.c projects/release-install-debug/usr.sbin/crashinfo/crashinfo.sh projects/release-install-debug/usr.sbin/crunch/crunchide/Makefile projects/release-install-debug/usr.sbin/crunch/crunchide/crunchide.c projects/release-install-debug/usr.sbin/crunch/crunchide/exec_elf32.c projects/release-install-debug/usr.sbin/crunch/crunchide/extern.h projects/release-install-debug/usr.sbin/ctld/ctl.conf.5 projects/release-install-debug/usr.sbin/ctld/ctld.c projects/release-install-debug/usr.sbin/ctld/ctld.h projects/release-install-debug/usr.sbin/ctld/discovery.c projects/release-install-debug/usr.sbin/ctld/isns.c projects/release-install-debug/usr.sbin/ctld/kernel.c projects/release-install-debug/usr.sbin/ctld/keys.c projects/release-install-debug/usr.sbin/ctld/login.c projects/release-install-debug/usr.sbin/ctld/parse.y projects/release-install-debug/usr.sbin/ctld/pdu.c projects/release-install-debug/usr.sbin/ctld/token.l projects/release-install-debug/usr.sbin/fifolog/fifolog_reader/Makefile projects/release-install-debug/usr.sbin/fifolog/fifolog_writer/Makefile projects/release-install-debug/usr.sbin/freebsd-update/freebsd-update.8 projects/release-install-debug/usr.sbin/freebsd-update/freebsd-update.sh projects/release-install-debug/usr.sbin/gpioctl/gpioctl.8 projects/release-install-debug/usr.sbin/gpioctl/gpioctl.c projects/release-install-debug/usr.sbin/ifmcstat/ifmcstat.c projects/release-install-debug/usr.sbin/inetd/inetd.c projects/release-install-debug/usr.sbin/ip6addrctl/ip6addrctl.c projects/release-install-debug/usr.sbin/jail/jail.8 projects/release-install-debug/usr.sbin/jls/jls.8 projects/release-install-debug/usr.sbin/jls/jls.c projects/release-install-debug/usr.sbin/mld6query/mld6.c projects/release-install-debug/usr.sbin/mountd/mountd.c projects/release-install-debug/usr.sbin/ndp/ndp.c projects/release-install-debug/usr.sbin/nfsd/nfsd.8 projects/release-install-debug/usr.sbin/nfsd/nfsd.c projects/release-install-debug/usr.sbin/ntp/Makefile projects/release-install-debug/usr.sbin/ntp/config.h projects/release-install-debug/usr.sbin/ntp/doc/Makefile projects/release-install-debug/usr.sbin/ntp/doc/ntp-keygen.8 projects/release-install-debug/usr.sbin/ntp/doc/ntp.conf.5 projects/release-install-debug/usr.sbin/ntp/doc/ntp.keys.5 projects/release-install-debug/usr.sbin/ntp/doc/ntpd.8 projects/release-install-debug/usr.sbin/ntp/doc/ntpdc.8 projects/release-install-debug/usr.sbin/ntp/doc/ntpq.8 projects/release-install-debug/usr.sbin/ntp/doc/ntptrace.8 projects/release-install-debug/usr.sbin/ntp/libntp/Makefile projects/release-install-debug/usr.sbin/ntp/libopts/Makefile projects/release-install-debug/usr.sbin/ntp/libparse/Makefile projects/release-install-debug/usr.sbin/ntp/ntp-keygen/Makefile projects/release-install-debug/usr.sbin/ntp/ntpd/Makefile projects/release-install-debug/usr.sbin/ntp/ntpdate/Makefile projects/release-install-debug/usr.sbin/ntp/ntpdc/Makefile projects/release-install-debug/usr.sbin/ntp/ntpq/Makefile projects/release-install-debug/usr.sbin/ntp/ntptime/Makefile projects/release-install-debug/usr.sbin/ntp/scripts/mkver projects/release-install-debug/usr.sbin/ntp/sntp/Makefile projects/release-install-debug/usr.sbin/pciconf/cap.c projects/release-install-debug/usr.sbin/pciconf/pciconf.c projects/release-install-debug/usr.sbin/pciconf/pciconf.h projects/release-install-debug/usr.sbin/pkg/pkg.c projects/release-install-debug/usr.sbin/pmccontrol/pmccontrol.c projects/release-install-debug/usr.sbin/pmcstat/pmcstat.8 projects/release-install-debug/usr.sbin/pmcstat/pmcstat.c projects/release-install-debug/usr.sbin/pmcstudy/Makefile projects/release-install-debug/usr.sbin/pmcstudy/pmcstudy.c projects/release-install-debug/usr.sbin/powerd/powerd.c projects/release-install-debug/usr.sbin/ppp/iface.c projects/release-install-debug/usr.sbin/pw/tests/pw_useradd.sh projects/release-install-debug/usr.sbin/rip6query/rip6query.c projects/release-install-debug/usr.sbin/route6d/route6d.c projects/release-install-debug/usr.sbin/rpc.lockd/Makefile projects/release-install-debug/usr.sbin/rrenumd/lexer.l projects/release-install-debug/usr.sbin/rrenumd/parser.y projects/release-install-debug/usr.sbin/rtadvctl/rtadvctl.c projects/release-install-debug/usr.sbin/rtadvd/config.c projects/release-install-debug/usr.sbin/rtadvd/if.c projects/release-install-debug/usr.sbin/rtadvd/rrenum.c projects/release-install-debug/usr.sbin/rtadvd/rtadvd.c projects/release-install-debug/usr.sbin/rtsold/Makefile projects/release-install-debug/usr.sbin/rtsold/if.c projects/release-install-debug/usr.sbin/rtsold/probe.c projects/release-install-debug/usr.sbin/rtsold/rtsold.c projects/release-install-debug/usr.sbin/syslogd/syslogd.8 projects/release-install-debug/usr.sbin/syslogd/syslogd.c projects/release-install-debug/usr.sbin/sysrc/sysrc projects/release-install-debug/usr.sbin/sysrc/sysrc.8 projects/release-install-debug/usr.sbin/tzsetup/tzsetup.c projects/release-install-debug/usr.sbin/uhsoctl/uhsoctl.c projects/release-install-debug/usr.sbin/vidcontrol/vidcontrol.c projects/release-install-debug/usr.sbin/wpa/Makefile.crypto projects/release-install-debug/usr.sbin/wpa/hostapd/Makefile projects/release-install-debug/usr.sbin/wpa/ndis_events/ndis_events.c projects/release-install-debug/usr.sbin/wpa/wpa_passphrase/Makefile projects/release-install-debug/usr.sbin/wpa/wpa_supplicant/Makefile projects/release-install-debug/usr.sbin/wpa/wpa_supplicant/Packet32.c Directory Properties: projects/release-install-debug/ (props changed) projects/release-install-debug/cddl/ (props changed) projects/release-install-debug/cddl/contrib/opensolaris/ (props changed) projects/release-install-debug/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/ (props changed) projects/release-install-debug/cddl/contrib/opensolaris/lib/libzfs/ (props changed) projects/release-install-debug/contrib/amd/ (props changed) projects/release-install-debug/contrib/binutils/ (props changed) projects/release-install-debug/contrib/bmake/ (props changed) projects/release-install-debug/contrib/compiler-rt/ (props changed) projects/release-install-debug/contrib/ee/ (props changed) projects/release-install-debug/contrib/elftoolchain/ (props changed) projects/release-install-debug/contrib/gcc/ (props changed) projects/release-install-debug/contrib/gdb/ (props changed) projects/release-install-debug/contrib/groff/ (props changed) projects/release-install-debug/contrib/ipfilter/ (props changed) projects/release-install-debug/contrib/libarchive/ (props changed) projects/release-install-debug/contrib/libarchive/libarchive/ (props changed) projects/release-install-debug/contrib/libc++/ (props changed) projects/release-install-debug/contrib/libcxxrt/ (props changed) projects/release-install-debug/contrib/libucl/ (props changed) projects/release-install-debug/contrib/llvm/ (props changed) projects/release-install-debug/contrib/llvm/tools/clang/ (props changed) projects/release-install-debug/contrib/llvm/tools/lldb/ (props changed) projects/release-install-debug/contrib/mdocml/ (props changed) projects/release-install-debug/contrib/ntp/ (props changed) projects/release-install-debug/contrib/ntp/INSTALL (props changed) projects/release-install-debug/contrib/ntp/NOTES.y2kfixes (props changed) projects/release-install-debug/contrib/ntp/README (props changed) projects/release-install-debug/contrib/ntp/README.bk (props changed) projects/release-install-debug/contrib/ntp/README.patches (props changed) projects/release-install-debug/contrib/ntp/README.refclocks (props changed) projects/release-install-debug/contrib/ntp/README.versions (props changed) projects/release-install-debug/contrib/ntp/TODO (props changed) projects/release-install-debug/contrib/ntp/adjtimed/README (props changed) projects/release-install-debug/contrib/ntp/adjtimed/adjtimed.c (props changed) projects/release-install-debug/contrib/ntp/compile (props changed) projects/release-install-debug/contrib/ntp/conf/README (props changed) projects/release-install-debug/contrib/ntp/conf/baldwin.conf (props changed) projects/release-install-debug/contrib/ntp/conf/grundoon.conf (props changed) projects/release-install-debug/contrib/ntp/conf/malarky.conf (props changed) projects/release-install-debug/contrib/ntp/conf/pogo.conf (props changed) projects/release-install-debug/contrib/ntp/conf/rackety.conf (props changed) projects/release-install-debug/contrib/ntp/depcomp (props changed) projects/release-install-debug/contrib/ntp/include/README (props changed) projects/release-install-debug/contrib/ntp/include/adjtime.h (props changed) projects/release-install-debug/contrib/ntp/include/ascii.h (props changed) projects/release-install-debug/contrib/ntp/include/gps.h (props changed) projects/release-install-debug/contrib/ntp/include/hopf6039.h (props changed) projects/release-install-debug/contrib/ntp/include/mx4200.h (props changed) projects/release-install-debug/contrib/ntp/include/ntif.h (props changed) projects/release-install-debug/contrib/ntp/include/ntp_datum.h (props changed) projects/release-install-debug/contrib/ntp/include/ntp_if.h (props changed) projects/release-install-debug/contrib/ntp/include/parse_conf.h (props changed) projects/release-install-debug/contrib/ntp/install-sh (props changed) projects/release-install-debug/contrib/ntp/kernel/sys/README (props changed) projects/release-install-debug/contrib/ntp/kernel/sys/bsd_audioirig.h (props changed) projects/release-install-debug/contrib/ntp/kernel/sys/i8253.h (props changed) projects/release-install-debug/contrib/ntp/kernel/sys/parsestreams.h (props changed) projects/release-install-debug/contrib/ntp/kernel/sys/pcl720.h (props changed) projects/release-install-debug/contrib/ntp/kernel/sys/ppsclock.h (props changed) projects/release-install-debug/contrib/ntp/kernel/sys/timex.h (props changed) projects/release-install-debug/contrib/ntp/kernel/sys/tpro.h (props changed) projects/release-install-debug/contrib/ntp/kernel/sys/tt560_api.h (props changed) projects/release-install-debug/contrib/ntp/libntp/README (props changed) projects/release-install-debug/contrib/ntp/libntp/adjtime.c (props changed) projects/release-install-debug/contrib/ntp/libntp/adjtimex.c (props changed) projects/release-install-debug/contrib/ntp/libntp/systime_s.c (props changed) projects/release-install-debug/contrib/ntp/libparse/README (props changed) projects/release-install-debug/contrib/ntp/missing (props changed) projects/release-install-debug/contrib/ntp/ntpd/jupiter.h (props changed) projects/release-install-debug/contrib/ntp/ntpdate/README (props changed) projects/release-install-debug/contrib/ntp/ntpdc/README (props changed) projects/release-install-debug/contrib/ntp/ntpdc/nl_in.c (props changed) projects/release-install-debug/contrib/ntp/ntpq/README (props changed) projects/release-install-debug/contrib/ntp/parseutil/README (props changed) projects/release-install-debug/contrib/ntp/results.y2kfixes (props changed) projects/release-install-debug/contrib/ntp/scripts/monitoring/README (props changed) projects/release-install-debug/contrib/ntp/scripts/monitoring/loopwatch.config.SAMPLE (props changed) projects/release-install-debug/contrib/ntp/scripts/monitoring/lr.pl (props changed) projects/release-install-debug/contrib/ntp/scripts/monitoring/ntploopstat (props changed) projects/release-install-debug/contrib/ntp/scripts/monitoring/ntploopwatch (props changed) projects/release-install-debug/contrib/ntp/scripts/monitoring/timelocal.pl (props changed) projects/release-install-debug/contrib/ntp/scripts/stats/README (props changed) projects/release-install-debug/contrib/ntp/scripts/stats/README.stats (props changed) projects/release-install-debug/contrib/ntp/scripts/stats/README.timecodes (props changed) projects/release-install-debug/contrib/ntp/scripts/stats/clock.awk (props changed) projects/release-install-debug/contrib/ntp/scripts/stats/dupe.awk (props changed) projects/release-install-debug/contrib/ntp/scripts/stats/ensemble.S (props changed) projects/release-install-debug/contrib/ntp/scripts/stats/ensemble.awk (props changed) projects/release-install-debug/contrib/ntp/scripts/stats/etf.S (props changed) projects/release-install-debug/contrib/ntp/scripts/stats/etf.awk (props changed) projects/release-install-debug/contrib/ntp/scripts/stats/itf.S (props changed) projects/release-install-debug/contrib/ntp/scripts/stats/itf.awk (props changed) projects/release-install-debug/contrib/ntp/scripts/stats/loop.S (props changed) projects/release-install-debug/contrib/ntp/scripts/stats/loop.awk (props changed) projects/release-install-debug/contrib/ntp/scripts/stats/loop_summary (props changed) projects/release-install-debug/contrib/ntp/scripts/stats/peer.awk (props changed) projects/release-install-debug/contrib/ntp/scripts/stats/psummary.awk (props changed) projects/release-install-debug/contrib/ntp/scripts/stats/summary.sh (props changed) projects/release-install-debug/contrib/ntp/scripts/stats/tdata.S (props changed) projects/release-install-debug/contrib/ntp/scripts/stats/tdata.awk (props changed) projects/release-install-debug/contrib/ntp/sntp/depcomp (props changed) projects/release-install-debug/contrib/ntp/sntp/install-sh (props changed) projects/release-install-debug/contrib/ntp/sntp/missing (props changed) projects/release-install-debug/contrib/ntp/util/ansi2knr.1 (props changed) projects/release-install-debug/contrib/ntp/util/ansi2knr.c (props changed) projects/release-install-debug/contrib/ntp/util/byteorder.c (props changed) projects/release-install-debug/contrib/ntp/util/kern.c (props changed) projects/release-install-debug/contrib/ntp/util/longsize.c (props changed) projects/release-install-debug/contrib/ntp/util/pps-api.c (props changed) projects/release-install-debug/contrib/ntp/util/precision.c (props changed) projects/release-install-debug/contrib/ntp/util/testrs6000.c (props changed) projects/release-install-debug/contrib/ntp/util/timetrim.c (props changed) projects/release-install-debug/contrib/nvi/ (props changed) projects/release-install-debug/contrib/openpam/ (props changed) projects/release-install-debug/contrib/sendmail/ (props changed) projects/release-install-debug/contrib/tcpdump/ (props changed) projects/release-install-debug/contrib/top/ (props changed) projects/release-install-debug/contrib/tzdata/ (props changed) projects/release-install-debug/contrib/wpa/ (props changed) projects/release-install-debug/contrib/xz/ (props changed) projects/release-install-debug/crypto/openssh/ (props changed) projects/release-install-debug/crypto/openssl/ (props changed) projects/release-install-debug/etc/ (props changed) projects/release-install-debug/gnu/lib/ (props changed) projects/release-install-debug/gnu/usr.bin/binutils/ (props changed) projects/release-install-debug/include/ (props changed) projects/release-install-debug/lib/libc/ (props changed) projects/release-install-debug/lib/libutil/ (props changed) projects/release-install-debug/lib/libvmmapi/ (props changed) projects/release-install-debug/sbin/ (props changed) projects/release-install-debug/sbin/ipfw/ (props changed) projects/release-install-debug/share/ (props changed) projects/release-install-debug/share/man/man4/ (props changed) projects/release-install-debug/sys/ (props changed) projects/release-install-debug/sys/amd64/vmm/ (props changed) projects/release-install-debug/sys/boot/ (props changed) projects/release-install-debug/sys/boot/powerpc/kboot/ (props changed) projects/release-install-debug/sys/boot/powerpc/ofw/ (props changed) projects/release-install-debug/sys/cddl/contrib/opensolaris/ (props changed) projects/release-install-debug/sys/conf/ (props changed) projects/release-install-debug/sys/contrib/dev/acpica/ (props changed) projects/release-install-debug/sys/contrib/ipfilter/ (props changed) projects/release-install-debug/sys/contrib/x86emu/ (props changed) projects/release-install-debug/sys/dev/hyperv/ (props changed) projects/release-install-debug/sys/gnu/dts/ (props changed) projects/release-install-debug/sys/gnu/dts/FreeBSD-list (props changed) projects/release-install-debug/sys/gnu/dts/FreeBSD-upgrade (props changed) projects/release-install-debug/sys/gnu/dts/arm/ (props changed) projects/release-install-debug/sys/gnu/dts/arm/animeo_ip.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91-ariag25.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91-cosino.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91-cosino_mega2560.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91-foxg20.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91-qil_a9260.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91-sama5d3_xplained.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91rm9200_pqfp.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9261ek.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9263ek.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9g15.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9g15ek.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9g20ek.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9g20ek_2mmc.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9g25.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9g25ek.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9g35.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9g35ek.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9rlek.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9x25ek.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9x35ek.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9x5_isi.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9x5_lcd.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9x5_macb0.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9x5_macb1.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/at91sam9x5cm.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/evk-pro3.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/ge863-pro3.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx51-apf51.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx51-digi-connectcore-jsk.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx51-digi-connectcore-som.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx51-eukrea-cpuimx51.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx51-eukrea-mbimxsd51-baseboard.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx51-pinfunc.h (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx53-ard.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx53-evk.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx53-m53.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx53-m53evk.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx53-mba53.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx53-pinfunc.h (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx53-qsb-common.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx53-qsb.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx53-tqma53.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx53-tx53-x03x.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx53-tx53-x13x.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx53-tx53.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx53-voipac-bsb.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx53-voipac-dmm-668.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6dl-aristainetos_4.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6dl-aristainetos_7.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6dl-cubox-i.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6dl-dfi-fs700-m60.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6dl-gw51xx.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6dl-gw52xx.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6dl-gw53xx.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6dl-gw54xx.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6dl-nitrogen6x.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6dl-phytec-pbab01.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6dl-phytec-pfla02.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6dl-pinfunc.h (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6dl-rex-basic.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6dl-riotboard.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6dl-sabreauto.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6dl-sabrelite.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6dl-sabresd.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6dl-tx6dl-comtft.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6dl-tx6u-801x.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6dl-tx6u-811x.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6dl-wandboard-revb1.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6dl-wandboard.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-arm2.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-cm-fx6.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-cubox-i.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-dfi-fs700-m60.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-dmo-edmqmx6.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-gk802.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-gw51xx.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-gw52xx.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-gw53xx.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-gw54xx.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-nitrogen6x.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-phytec-pbab01.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-phytec-pfla02.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-pinfunc.h (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-rex-pro.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-sabreauto.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-sabrelite.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-sabresd.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-sbc6x.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-tx6q-1010-comtft.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-tx6q-1010.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-tx6q-1020-comtft.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-tx6q-1020.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-tx6q-1110.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-wandboard-revb1.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6q-wandboard.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6qdl-aristainetos.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6qdl-dfi-fs700-m60.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6qdl-sabreauto.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6qdl-tx6.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6qdl-wandboard-revb1.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6qdl-wandboard-revc1.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6qdl-wandboard.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/imx6sl-pinfunc.h (props changed) projects/release-install-debug/sys/gnu/dts/arm/kizbox.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/mpa1600.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/pm9g45.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/sama5d31ek.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/sama5d33ek.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/sama5d34ek.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/sama5d35ek.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/sama5d36ek.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/sama5d3_emac.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/sama5d3_gmac.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/sama5d3_lcd.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/sama5d3_mci2.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/sama5d3_tcb1.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/sama5d3_uart.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/sama5d3xdm.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/skeleton.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/skeleton64.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/tny_a9260.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/tny_a9260_common.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/tny_a9263.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/tny_a9g20.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/usb_a9260.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/usb_a9260_common.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/usb_a9263.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/usb_a9g20.dts (props changed) projects/release-install-debug/sys/gnu/dts/arm/usb_a9g20_common.dtsi (props changed) projects/release-install-debug/sys/gnu/dts/arm/usb_a9g20_lpw.dts (props changed) projects/release-install-debug/sys/gnu/dts/include/ (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/ (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clk/ (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clk/at91.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clk/exynos-audss-clk.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clk/ti-dra7-atl.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/ (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/at91.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/bcm21664.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/bcm281xx.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/berlin2.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/berlin2q.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/clps711x-clock.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/efm32-cmu.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/exynos-audss-clk.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/exynos5250.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/exynos5260-clk.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/exynos5410.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/exynos5440.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/hi3620-clock.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/hip04-clock.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/imx1-clock.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/imx21-clock.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/imx27-clock.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/mpc512x-clock.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/r7s72100-clock.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/r8a7779-clock.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/rk3066a-cru.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/rk3188-cru.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/s3c2410.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/s3c2412.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/s3c2443.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/s5pv210-audss.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/s5pv210.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/stih415-clks.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/stih416-clks.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/clock/tegra30-car.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/dma/ (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/dma/nbpfaxi.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/gpio/ (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/gpio/gpio.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/gpio/tegra-gpio.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/input/ (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/input/input.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/interrupt-controller/ (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/interrupt-controller/irq.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/mfd/ (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/mfd/as3722.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/mfd/dbx500-prcmu.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/mfd/palmas.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/phy/ (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/phy/phy-miphy365x.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/pinctrl/ (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/pinctrl/am33xx.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/pinctrl/am43xx.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/pinctrl/nomadik.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/pinctrl/pinctrl-tegra-xusb.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/pinctrl/pinctrl-tegra.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/pwm/ (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/pwm/pwm.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/reset-controller/ (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/reset-controller/stih415-resets.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/reset-controller/stih416-resets.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/sound/ (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/sound/fsl-imx-audmux.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/sound/tlv320aic31xx-micbias.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/spmi/ (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/spmi/spmi.h (props changed) projects/release-install-debug/sys/gnu/dts/include/dt-bindings/thermal/ (props changed) projects/release-install-debug/sys/modules/vmm/ (props changed) projects/release-install-debug/usr.bin/calendar/ (props changed) projects/release-install-debug/usr.bin/mkimg/ (props changed) projects/release-install-debug/usr.bin/procstat/ (props changed) projects/release-install-debug/usr.sbin/bhyve/ (props changed) projects/release-install-debug/usr.sbin/bhyvectl/ (props changed) projects/release-install-debug/usr.sbin/bhyveload/ (props changed) projects/release-install-debug/usr.sbin/jail/ (props changed) projects/release-install-debug/usr.sbin/rtadvctl/ (props changed) projects/release-install-debug/usr.sbin/rtadvd/ (props changed) projects/release-install-debug/usr.sbin/rtsold/ (props changed) Modified: projects/release-install-debug/.arcconfig ============================================================================== --- projects/release-install-debug/.arcconfig Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/.arcconfig Wed Apr 22 12:39:19 2015 (r281852) @@ -1,5 +1,4 @@ { "project.name": "S", - "phabricator.uri" : "https://reviews.freebsd.org/", - "history.immutable" : true + "phabricator.uri" : "https://reviews.freebsd.org/" } Modified: projects/release-install-debug/.arclint ============================================================================== --- projects/release-install-debug/.arclint Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/.arclint Wed Apr 22 12:39:19 2015 (r281852) @@ -1,9 +1,25 @@ { + "exclude": "(contrib|crypto)", "linters": { "python": { "type": "pep8", - "exclude": "(contrib)", "include": "(\\.py$)" + }, + "spelling": { + "type": "spelling" + }, + "chmod": { + "type": "chmod" + }, + "merge-conflict": { + "type": "merge-conflict" + }, + "filename": { + "type": "filename" + }, + "json": { + "type": "json", + "include": "(\\.arclint|\\.json$)" } } } Modified: projects/release-install-debug/Makefile ============================================================================== --- projects/release-install-debug/Makefile Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/Makefile Wed Apr 22 12:39:19 2015 (r281852) @@ -165,10 +165,10 @@ _MAKE= PATH=${PATH} ${SUB_MAKE} -f Makef # Guess machine architecture from machine type, and vice versa. .if !defined(TARGET_ARCH) && defined(TARGET) -_TARGET_ARCH= ${TARGET:S/pc98/i386/} +_TARGET_ARCH= ${TARGET:S/pc98/i386/:S/arm64/aarch64/} .elif !defined(TARGET) && defined(TARGET_ARCH) && \ ${TARGET_ARCH} != ${MACHINE_ARCH} -_TARGET= ${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/arm(v6)?(eb|hf)?/arm/} +_TARGET= ${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/arm(v6)?(eb|hf)?/arm/:C/aarch64/arm64/:C/powerpc64/powerpc/} .endif .if defined(TARGET) && !defined(_TARGET) _TARGET=${TARGET} @@ -374,6 +374,17 @@ kernel-toolchains: # .if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets) TARGETS?=amd64 arm i386 mips pc98 powerpc sparc64 +# XXX Add arm64 to universe only if we have an external binutils installed. +# It does not build with the in-tree linnker. +.if exists(/usr/local/aarch64-freebsd/bin/ld) +TARGETS+=arm64 +TARGET_ARCHES_arm64?= aarch64 +.else +universe: universe_arm64_skip +universe_epilogue: universe_arm64_skip +universe_arm64_skip: universe_prologue + @echo ">> arm64 skipped - install aarch64-binutils port or package to build" +.endif TARGET_ARCHES_arm?= arm armeb armv6 armv6hf TARGET_ARCHES_mips?= mipsel mips mips64el mips64 mipsn32 TARGET_ARCHES_powerpc?= powerpc powerpc64 Modified: projects/release-install-debug/Makefile.inc1 ============================================================================== --- projects/release-install-debug/Makefile.inc1 Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/Makefile.inc1 Wed Apr 22 12:39:19 2015 (r281852) @@ -149,7 +149,7 @@ SRCRELDATE!= awk '/^\#define[[:space:]]* VERSION= FreeBSD ${REVISION}-${BRANCH:C/-p[0-9]+$//} ${TARGET_ARCH} ${SRCRELDATE} .endif -KNOWN_ARCHES?= amd64 arm armeb/arm armv6/arm armv6hf/arm i386 i386/pc98 mips mipsel/mips mips64el/mips mips64/mips mipsn32el/mips mipsn32/mips powerpc powerpc64/powerpc sparc64 +KNOWN_ARCHES?= aarch64/arm64 amd64 arm armeb/arm armv6/arm armv6hf/arm i386 i386/pc98 mips mipsel/mips mips64el/mips mips64/mips mipsn32el/mips mipsn32/mips powerpc powerpc64/powerpc sparc64 .if ${TARGET} == ${TARGET_ARCH} _t= ${TARGET} .else @@ -209,7 +209,9 @@ INSTALLTMP!= /usr/bin/mktemp -d -u -t in # 1. legacy stage [BMAKE] # This stage is responsible for creating compatibility # shims that are needed by the bootstrap-tools, -# build-tools and cross-tools stages. +# build-tools and cross-tools stages. These are generally +# APIs that tools from one of those three stages need to +# build that aren't present on the host. # 1. bootstrap-tools stage [BMAKE] # This stage is responsible for creating programs that # are needed for backward compatibility reasons. They @@ -220,7 +222,7 @@ INSTALLTMP!= /usr/bin/mktemp -d -u -t in # the build process. # 3. cross-tools stage [XMAKE] # This stage is responsible for creating any tools that -# are needed for cross-builds. A cross-compiler is one +# are needed for building the system. A cross-compiler is one # of them. # 4. world stage [WMAKE] # This stage actually builds the world. @@ -259,7 +261,8 @@ BMAKE= MAKEOBJDIRPREFIX=${WORLDTMP} \ -DNO_PIC MK_PROFILE=no -DNO_SHARED \ -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \ MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \ - MK_LLDB=no MK_TESTS=no + MK_LLDB=no MK_TESTS=no \ + MK_INCLUDES=yes # build-tools stage TMAKE= MAKEOBJDIRPREFIX=${OBJTREE} \ @@ -318,6 +321,19 @@ LOCALBASE?= /usr/local CROSS_COMPILER_PREFIX?=${CROSS_TOOLCHAIN_PREFIX} CROSS_BINUTILS_PREFIX?=${CROSS_TOOLCHAIN_PREFIX} .endif + +# If we do not have a bootstrap binutils (because the in-tree one does not +# support the target architecture), provide a default cross-binutils prefix. +# This allows aarch64 builds, for example, to automatically use the +# aarch64-binutils port or package. +.if !empty(BROKEN_OPTIONS:MBINUTILS_BOOTSTRAP) && \ + !defined(CROSS_BINUTILS_PREFIX) +CROSS_BINUTILS_PREFIX=/usr/local/${TARGET_ARCH}-freebsd/bin/ +.if !exists(${CROSS_BINUTILS_PREFIX}) +.error In-tree binutils does not support the ${TARGET_ARCH} architecture. Install the ${TARGET_ARCH}-binutils port or package or set CROSS_BINUTILS_PREFIX. +.endif +.endif + XCOMPILERS= CC CXX CPP .for COMPILER in ${XCOMPILERS} .if defined(CROSS_COMPILER_PREFIX) @@ -328,7 +344,8 @@ X${COMPILER}?= ${${COMPILER}} .endfor XBINUTILS= AS AR LD NM OBJCOPY OBJDUMP RANLIB SIZE STRINGS .for BINUTIL in ${XBINUTILS} -.if defined(CROSS_BINUTILS_PREFIX) +.if defined(CROSS_BINUTILS_PREFIX) && \ + exists(${CROSS_BINUTILS_PREFIX}${${BINUTIL}}) X${BINUTIL}?= ${CROSS_BINUTILS_PREFIX}${${BINUTIL}} .else X${BINUTIL}?= ${${BINUTIL}} @@ -368,10 +385,16 @@ DEPFLAGS+= -I${WORLDTMP}/usr/include/c++ TARGET_ABI?= unknown TARGET_TRIPLE?= ${TARGET_ARCH:C/amd64/x86_64/}-${TARGET_ABI}-freebsd11.0 XCFLAGS+= -target ${TARGET_TRIPLE} +.endif XCFLAGS+= --sysroot=${WORLDTMP} ${BFLAGS} XCXXFLAGS+= --sysroot=${WORLDTMP} ${BFLAGS} +.else +.if defined(CROSS_BINUTILS_PREFIX) && exists(${CROSS_BINUTILS_PREFIX}) +BFLAGS+= -B${CROSS_BINUTILS_PREFIX} +XCFLAGS+= ${BFLAGS} +XCXXFLAGS+= ${BFLAGS} .endif -.endif +.endif # ${XCC:M/*} WMAKE= ${WMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 DESTDIR=${WORLDTMP} @@ -389,8 +412,9 @@ LIB32CPUFLAGS= -march=${TARGET_CPUTYPE} LIB32WMAKEENV= MACHINE=i386 MACHINE_ARCH=i386 \ MACHINE_CPU="i686 mmx sse sse2" LIB32WMAKEFLAGS= \ - AS="${AS} --32" \ - LD="${LD} -m elf_i386_fbsd -Y P,${LIB32TMP}/usr/lib32" + AS="${XAS} --32" \ + LD="${XLD} -m elf_i386_fbsd -Y P,${LIB32TMP}/usr/lib32" \ + OBJCOPY="${XOBJCOPY}" .elif ${TARGET_ARCH} == "powerpc64" .if empty(TARGET_CPUTYPE) @@ -400,7 +424,8 @@ LIB32CPUFLAGS= -mcpu=${TARGET_CPUTYPE} .endif LIB32WMAKEENV= MACHINE=powerpc MACHINE_ARCH=powerpc LIB32WMAKEFLAGS= \ - LD="${LD} -m elf32ppc_fbsd" + LD="${XLD} -m elf32ppc_fbsd" \ + OBJCOPY="${XOBJCOPY}" .endif @@ -1218,7 +1243,9 @@ update: # # -# legacy: Build compatibility shims for the next three targets +# legacy: Build compatibility shims for the next three targets. This is a minimal +# set of tools and shims necessary to compensate for older systems which don't have +# the APIs that the targets built in bootstrap-tools, build-tools or cross-tools. # legacy: .if ${BOOTSTRAPPING} < 800107 && ${BOOTSTRAPPING} != 0 @@ -1236,8 +1263,13 @@ legacy: .endfor # -# bootstrap-tools: Build tools needed for compatibility +# bootstrap-tools: Build tools needed for compatibility. These are binaries that +# are built to build other binaries in the system. However, the focus of these +# binaries is usually quite narrow. Bootstrap tools use the host's compiler and +# libraries, augmented by -legacy. # +_bt= _bootstrap-tools + .if ${MK_GAMES} != "no" _strfile= games/fortune/strfile .endif @@ -1261,15 +1293,15 @@ _sed= usr.bin/sed .if ${BOOTSTRAPPING} < 1000002 _m4= lib/libohash \ usr.bin/m4 -.endif -.if ${BOOTSTRAPPING} < 1000014 -_crunch= usr.sbin/crunch +${_bt}-usr.bin/m4: ${_bt}-lib/libohash .endif .if ${BOOTSTRAPPING} < 1000026 _nmtree= lib/libnetbsd \ usr.sbin/nmtree + +${_bt}-usr.sbin/nmtree: ${_bt}-lib/libnetbsd .endif .if ${BOOTSTRAPPING} < 1000027 @@ -1280,14 +1312,18 @@ _cat= bin/cat _lex= usr.bin/lex .endif +.if ${BOOTSTRAPPING} < 1001507 +_crunch= usr.sbin/crunch +.endif + .if ${BOOTSTRAPPING} >= 900040 && ${BOOTSTRAPPING} < 900041 _awk= usr.bin/awk .endif -.if ${BOOTSTRAPPING} < 1001506 _yacc= lib/liby \ usr.bin/yacc -.endif + +${_bt}-usr.bin/yacc: ${_bt}-lib/liby .if ${MK_BSNMP} != "no" _gensnmptree= usr.sbin/bsnmpd/gensnmptree @@ -1301,6 +1337,9 @@ _clang_tblgen= \ lib/clang/libllvmtablegen \ usr.bin/clang/tblgen \ usr.bin/clang/clang-tblgen + +${_bt}-usr.bin/clang/clang-tblgen: ${_bt}-lib/clang/libllvmtablegen ${_bt}-lib/clang/libllvmsupport +${_bt}-usr.bin/clang/tblgen: ${_bt}-lib/clang/libllvmtablegen ${_bt}-lib/clang/libllvmsupport .endif # ELF Tool Chain libraries are needed for ELF tools and dtrace tools. @@ -1312,6 +1351,9 @@ _elftoolchain_libs= lib/libelf lib/libdw .if ${MK_CDDL} != "no" _dtrace_tools= cddl/usr.bin/sgsmsg cddl/lib/libctf cddl/usr.bin/ctfconvert \ cddl/usr.bin/ctfmerge + +${_bt}-cddl/usr.bin/ctfconvert: ${_bt}-lib/libelf ${_bt}-lib/libdwarf ${_bt}-cddl/lib/libctf +${_bt}-cddl/usr.bin/ctfmerge: ${_bt}-lib/libelf ${_bt}-lib/libdwarf ${_bt}-cddl/lib/libctf .endif .endif @@ -1330,12 +1372,15 @@ _kerberos5_bootstrap_tools= \ kerberos5/tools/asn1_compile \ kerberos5/tools/slc \ usr.bin/compile_et + +.ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g} .endif +bootstrap-tools: .PHONY + # Please document (add comment) why something is in 'bootstrap-tools'. # Try to bound the building of the bootstrap-tool to just the # FreeBSD versions that need the tool built at this stage of the build. -bootstrap-tools: .MAKE .for _tool in \ ${_clang_tblgen} \ ${_kerberos5_bootstrap_tools} \ @@ -1361,12 +1406,15 @@ bootstrap-tools: .MAKE ${_crunch} \ ${_nmtree} \ ${_vtfontcvt} +${_bt}-${_tool}: .PHONY .MAKE ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \ cd ${.CURDIR}/${_tool} && \ ${MAKE} DIRPRFX=${_tool}/ obj && \ ${MAKE} DIRPRFX=${_tool}/ depend && \ ${MAKE} DIRPRFX=${_tool}/ all && \ ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install + +bootstrap-tools: ${_bt}-${_tool} .endfor # @@ -1421,7 +1469,9 @@ kernel-tools: .MAKE -p ${MAKEOBJDIRPREFIX}/usr >/dev/null # -# cross-tools: Build cross-building tools +# cross-tools: All the tools needed to build the rest of the system after +# we get done with the earlier stages. It is the last set of tools needed +# to begin building the target binaries. # .if ${TARGET_ARCH} != ${MACHINE_ARCH} .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" @@ -1429,12 +1479,9 @@ _btxld= usr.sbin/btxld .endif .endif .if ${TARGET_ARCH} != ${MACHINE_ARCH} -.if ${MK_RESCUE} != "no" || defined(RELEASEDIR) +.if ${MK_RESCUE} != "no" _crunchide= usr.sbin/crunch/crunchide .endif -.if ${TARGET_ARCH} == "i386" && defined(RELEASEDIR) -_kgzip= usr.sbin/kgzip -.endif .endif # If we're given an XAS, don't build binutils. @@ -1452,6 +1499,11 @@ _elftctools= lib/libelftc \ # cross-build on a FreeBSD 10 host: _elftctools+= usr.bin/addr2line .endif +.elif ${TARGET_ARCH} != ${MACHINE_ARCH} && ${MK_ELFTOOLCHAIN_TOOLS} != "no" +# If cross-building with an external binutils we still need to build strip for +# the target (for at least crunchide). +_elftctools= lib/libelftc \ + usr.bin/elfcopy .endif # If an full path to an external cross compiler is given, don't build @@ -1473,10 +1525,8 @@ cross-tools: .MAKE ${_binutils} \ ${_elftctools} \ ${_cc} \ - usr.bin/xlint/lint1 usr.bin/xlint/lint2 usr.bin/xlint/xlint \ ${_btxld} \ ${_crunchide} \ - ${_kgzip} \ sys/boot/usb/tools ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \ cd ${.CURDIR}/${_tool} && \ @@ -1662,6 +1712,10 @@ gnu/lib/libstdc++__L: lib/msun__L gnu/lib/libsupc++__L: gnu/lib/libstdc++__L .endif +.if ${MK_LIBCPLUSPLUS} != "no" +_prebuild_libs+= lib/libc++ +.endif + lib/libgeom__L: lib/libexpat__L .if ${MK_LIBTHR} != "no" Modified: projects/release-install-debug/ObsoleteFiles.inc ============================================================================== --- projects/release-install-debug/ObsoleteFiles.inc Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/ObsoleteFiles.inc Wed Apr 22 12:39:19 2015 (r281852) @@ -38,6 +38,106 @@ # xargs -n1 | sort | uniq -d; # done +# 20150418 +OLD_FILES+=sbin/mount_oldnfs +OLD_FILES+=usr/share/man/man8/mount_oldnfs.8.gz +# 20150416: ALTQ moved to net/altq +OLD_FILES+=usr/include/altq/altq_rmclass_debug.h +OLD_FILES+=usr/include/altq/altq.h +OLD_FILES+=usr/include/altq/altq_cdnr.h +OLD_FILES+=usr/include/altq/altq_hfsc.h +OLD_FILES+=usr/include/altq/altq_priq.h +OLD_FILES+=usr/include/altq/altqconf.h +OLD_FILES+=usr/include/altq/altq_classq.h +OLD_FILES+=usr/include/altq/altq_red.h +OLD_FILES+=usr/include/altq/if_altq.h +OLD_FILES+=usr/include/altq/altq_var.h +OLD_FILES+=usr/include/altq/altq_rmclass.h +OLD_FILES+=usr/include/altq/altq_cbq.h +OLD_FILES+=usr/include/altq/altq_rio.h +OLD_DIRS+=usr/include/altq +# 20150410 +OLD_FILES+=usr/share/doc/usd/10.exref/paper.ascii.gz +OLD_FILES+=usr/share/doc/usd/10.exref/summary.ascii.gz +OLD_DIRS+=usr/share/doc/usd/10.exref +OLD_FILES+=usr/share/doc/usd/11.edit/paper.ascii.gz +OLD_DIRS+=usr/share/doc/usd/11.edit +OLD_FILES+=usr/share/doc/usd/12.vi/paper.ascii.gz +OLD_FILES+=usr/share/doc/usd/12.vi/summary.ascii.gz +OLD_FILES+=usr/share/doc/usd/12.vi/viapwh.ascii.gz +OLD_DIRS+=usr/share/doc/usd/12.vi +OLD_FILES+=usr/share/doc/usd/13.viref/paper.ascii.gz +OLD_DIRS+=usr/share/doc/usd/13.viref +# 20150329 +.if ${TARGET_ARCH} == "arm" +OLD_FILES+=usr/include/bootconfig.h +.endif +# 20150326 +OLD_FILES+=usr/share/man/man1/pmcstudy.1.gz +# 20150315: new clang import which bumps version from 3.5.1 to 3.6.0. +OLD_FILES+=usr/include/clang/3.5.1/__wmmintrin_aes.h +OLD_FILES+=usr/include/clang/3.5.1/__wmmintrin_pclmul.h +OLD_FILES+=usr/include/clang/3.5.1/altivec.h +OLD_FILES+=usr/include/clang/3.5.1/ammintrin.h +OLD_FILES+=usr/include/clang/3.5.1/arm_acle.h +OLD_FILES+=usr/include/clang/3.5.1/arm_neon.h +OLD_FILES+=usr/include/clang/3.5.1/avx2intrin.h +OLD_FILES+=usr/include/clang/3.5.1/avxintrin.h +OLD_FILES+=usr/include/clang/3.5.1/bmi2intrin.h +OLD_FILES+=usr/include/clang/3.5.1/bmiintrin.h +OLD_FILES+=usr/include/clang/3.5.1/cpuid.h +OLD_FILES+=usr/include/clang/3.5.1/emmintrin.h +OLD_FILES+=usr/include/clang/3.5.1/f16cintrin.h +OLD_FILES+=usr/include/clang/3.5.1/fma4intrin.h +OLD_FILES+=usr/include/clang/3.5.1/fmaintrin.h +OLD_FILES+=usr/include/clang/3.5.1/ia32intrin.h +OLD_FILES+=usr/include/clang/3.5.1/immintrin.h +OLD_FILES+=usr/include/clang/3.5.1/lzcntintrin.h +OLD_FILES+=usr/include/clang/3.5.1/mm3dnow.h +OLD_FILES+=usr/include/clang/3.5.1/mm_malloc.h +OLD_FILES+=usr/include/clang/3.5.1/mmintrin.h +OLD_FILES+=usr/include/clang/3.5.1/module.modulemap +OLD_FILES+=usr/include/clang/3.5.1/nmmintrin.h +OLD_FILES+=usr/include/clang/3.5.1/pmmintrin.h +OLD_FILES+=usr/include/clang/3.5.1/popcntintrin.h +OLD_FILES+=usr/include/clang/3.5.1/prfchwintrin.h +OLD_FILES+=usr/include/clang/3.5.1/rdseedintrin.h +OLD_FILES+=usr/include/clang/3.5.1/rtmintrin.h +OLD_FILES+=usr/include/clang/3.5.1/shaintrin.h +OLD_FILES+=usr/include/clang/3.5.1/smmintrin.h +OLD_FILES+=usr/include/clang/3.5.1/tbmintrin.h +OLD_FILES+=usr/include/clang/3.5.1/tmmintrin.h +OLD_FILES+=usr/include/clang/3.5.1/wmmintrin.h +OLD_FILES+=usr/include/clang/3.5.1/x86intrin.h +OLD_FILES+=usr/include/clang/3.5.1/xmmintrin.h +OLD_FILES+=usr/include/clang/3.5.1/xopintrin.h +OLD_DIRS+=usr/include/clang/3.5.1 +OLD_DIRS+=usr/include/clang +OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.asan-i386.a +OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.asan-x86_64.a +OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.asan_cxx-i386.a +OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.asan_cxx-x86_64.a +OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.profile-arm.a +OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.profile-i386.a +OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.profile-x86_64.a +OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.san-i386.a +OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.san-x86_64.a +OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.ubsan-i386.a +OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.ubsan-x86_64.a +OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.ubsan_cxx-i386.a +OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.ubsan_cxx-x86_64.a +OLD_DIRS+=usr/lib/clang/3.5.1/lib/freebsd +OLD_DIRS+=usr/lib/clang/3.5.1/lib +OLD_DIRS+=usr/lib/clang/3.5.1 +# 20150302: binutils documentation distributed as a manpage +OLD_FILES+=usr/share/doc/binutils/as.txt +OLD_FILES+=usr/share/doc/binutils/ld.txt +OLD_DIRS+=usr/share/doc/binutils +# 20150222: Removed bcd(6) and ppt(6) +OLD_FILES+=usr/bin/bcd +OLD_FILES+=usr/bin/ppt +OLD_FILES+=usr/share/man/man6/bcd.6.gz +OLD_FILES+=usr/share/man/man6/ppt.6.gz # 20150217: Removed remnants of ar(4) driver OLD_FILES+=usr/include/sys/dev/ic/hd64570.h # 20150212: /usr/games moving into /usr/bin Modified: projects/release-install-debug/README ============================================================================== --- projects/release-install-debug/README Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/README Wed Apr 22 12:39:19 2015 (r281852) @@ -8,39 +8,32 @@ sources in this tree - please see the sp more information). The Makefile in this directory supports a number of targets for -building components (or all) of the FreeBSD source tree, the most -commonly used one being ``world'', which rebuilds and installs -everything in the FreeBSD system from the source tree except the -kernel, the kernel-modules and the contents of /etc. The ``world'' -target should only be used in cases where the source tree has not -changed from the currently running version. See: -http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html +building components (or all) of the FreeBSD source tree. See build(7) +and http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html for more information, including setting make(1) variables. -The ``buildkernel'' and ``installkernel'' targets build and install +The `buildkernel` and `installkernel` targets build and install the kernel and the modules (see below). Please see the top of the Makefile in this directory for more information on the standard build targets and compile-time flags. -Building a kernel is a somewhat more involved process, documentation -for which can be found at: - http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html -And in the config(8) man page. +Building a kernel is a somewhat more involved process. See build(7), config(8), +and http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html +for more information. + Note: If you want to build and install the kernel with the -``buildkernel'' and ``installkernel'' targets, you might need to build +`buildkernel` and `installkernel` targets, you might need to build world before. More information is available in the handbook. -The sample kernel configuration files reside in the sys//conf -sub-directory (assuming that you've installed the kernel sources), the -file named GENERIC being the one used to build your initial installation -kernel. The file NOTES contains entries and documentation for all possible -devices, not just those commonly used. It is the successor of the ancient -LINT file, but in contrast to LINT, it is not buildable as a kernel but a -pure reference and documentation file. +The kernel configuration files reside in the sys//conf +sub-directory. GENERIC is the default configuration used in release builds. +NOTES contains entries and documentation for all possible +devices, not just those commonly used. Source Roadmap: --------------- + bin System/user commands. cddl Various commands and libraries under the Common Development @@ -77,6 +70,9 @@ share Shared resources. sys Kernel sources. +tests Regression tests which can be run by Kyua. See tests/README + for additional information. + tools Utilities for regression testing and miscellaneous tasks. usr.bin User commands. Modified: projects/release-install-debug/UPDATING ============================================================================== --- projects/release-install-debug/UPDATING Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/UPDATING Wed Apr 22 12:39:19 2015 (r281852) @@ -31,12 +31,38 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 11 disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20150415: + The const qualifier has been removed from iconv(3) to comply with + POSIX. The ports tree is aware of this from r384038 onwards. + +20150416: + Libraries specified by LIBADD in Makefiles must have a corresponding + DPADD_ variable to ensure correct dependencies. This is now + enforced in src.libnames.mk. + +20150324: + From legacy ata(4) driver was removed support for SATA controllers + supported by more functional drivers ahci(4), siis(4) and mvs(4). + Kernel modules ataahci and ataadaptec were removed completely, + replaced by ahci and mvs modules respectively. + +20150315: + Clang, llvm and lldb have been upgraded to 3.6.0 release. Please see + the 20141231 entry below for information about prerequisites and + upgrading, if you are not already using 3.5.0 or higher. + +20150307: + The 32-bit PowerPC kernel has been changed to a position-independent + executable. This can only be booted with a version of loader(8) + newer than January 31, 2015, so make sure to update both world and + kernel before rebooting. + 20150217: If you are running a -CURRENT kernel since r273872 (Oct 30th, 2014), but before r278950, the RNG was not seeded properly. Immediately upgrade the kernel to r278950 or later and regenerate any keys (e.g. ssh keys or openssl keys) that were generated w/ a kernel from that - range. This does not effect programs that directly used /dev/random + range. This does not affect programs that directly used /dev/random or /dev/urandom. All userland uses of arc4random(3) are affected. 20150210: Modified: projects/release-install-debug/bin/cp/utils.c ============================================================================== --- projects/release-install-debug/bin/cp/utils.c Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/bin/cp/utils.c Wed Apr 22 12:39:19 2015 (r281852) @@ -342,7 +342,7 @@ setfile(struct stat *fs, int fd) tspec[0] = fs->st_atim; tspec[1] = fs->st_mtim; - if (utimensat(AT_FDCWD, to.p_path, tspec, + if (fdval ? futimens(fd, tspec) : utimensat(AT_FDCWD, to.p_path, tspec, islink ? AT_SYMLINK_NOFOLLOW : 0)) { warn("utimensat: %s", to.p_path); rval = 1; Modified: projects/release-install-debug/bin/csh/config.h ============================================================================== --- projects/release-install-debug/bin/csh/config.h Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/bin/csh/config.h Wed Apr 22 12:39:19 2015 (r281852) @@ -198,7 +198,7 @@ #define HAVE_WCWIDTH 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Support NLS. */ #define NLS 1 Modified: projects/release-install-debug/bin/csh/iconv_stub.h ============================================================================== --- projects/release-install-debug/bin/csh/iconv_stub.h Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/bin/csh/iconv_stub.h Wed Apr 22 12:39:19 2015 (r281852) @@ -30,7 +30,7 @@ #define _ICONV_H_ typedef void *iconv_t; -typedef size_t dl_iconv_t(iconv_t, const char **, size_t *, char **, size_t *); +typedef size_t dl_iconv_t(iconv_t, char **, size_t *, char **, size_t *); typedef int dl_iconv_close_t(iconv_t); extern iconv_t dl_iconv_open(const char *, const char *); Modified: projects/release-install-debug/bin/ed/glbl.c ============================================================================== --- projects/release-install-debug/bin/ed/glbl.c Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/bin/ed/glbl.c Wed Apr 22 12:39:19 2015 (r281852) @@ -60,7 +60,7 @@ build_active_list(int isgcmd) return ERR; if (isbinary) NUL_TO_NEWLINE(s, lp->len); - if (!regexec(pat, s, 0, NULL, 0) == isgcmd && + if (!(regexec(pat, s, 0, NULL, 0) == isgcmd) && set_active_node(lp) < 0) return ERR; } @@ -153,7 +153,7 @@ set_active_node(line_t *lp) if (active_list != NULL) { #endif if ((ts = (line_t **) realloc(active_list, - (ti += MINBUFSZ) * sizeof(line_t **))) == NULL) { + (ti += MINBUFSZ) * sizeof(line_t *))) == NULL) { fprintf(stderr, "%s\n", strerror(errno)); errmsg = "out of memory"; SPL0(); Modified: projects/release-install-debug/bin/expr/Makefile ============================================================================== --- projects/release-install-debug/bin/expr/Makefile Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/bin/expr/Makefile Wed Apr 22 12:39:19 2015 (r281852) @@ -6,6 +6,9 @@ PROG= expr SRCS= expr.y YFLAGS= +# expr relies on signed integer wrapping +CFLAGS+= -fwrapv + NO_WMISSING_VARIABLE_DECLARATIONS= .if ${MK_TESTS} != "no" Modified: projects/release-install-debug/bin/kill/kill.c ============================================================================== --- projects/release-install-debug/bin/kill/kill.c Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/bin/kill/kill.c Wed Apr 22 12:39:19 2015 (r281852) @@ -56,7 +56,6 @@ __FBSDID("$FreeBSD$"); #ifdef SHELL #define main killcmd #include "bltin/bltin.h" -#include "error.h" #endif static void nosig(const char *); Modified: projects/release-install-debug/bin/mv/mv.c ============================================================================== --- projects/release-install-debug/bin/mv/mv.c Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/bin/mv/mv.c Wed Apr 22 12:39:19 2015 (r281852) @@ -352,7 +352,7 @@ err: if (unlink(to)) ts[0] = sbp->st_atim; ts[1] = sbp->st_mtim; - if (utimensat(AT_FDCWD, to, ts, 0)) + if (futimens(to_fd, ts)) warn("%s: set times", to); if (close(to_fd)) { Modified: projects/release-install-debug/bin/pax/ar_io.c ============================================================================== --- projects/release-install-debug/bin/pax/ar_io.c Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/bin/pax/ar_io.c Wed Apr 22 12:39:19 2015 (r281852) @@ -82,7 +82,7 @@ static int wr_trail = 1; /* trailer was static int can_unlnk = 0; /* do we unlink null archives? */ const char *arcname; /* printable name of archive */ const char *gzip_program; /* name of gzip program */ -static pid_t zpid = -1; /* pid of child process */ +static pid_t zpid = -1; /* pid of child process */ static int get_phys(void); static void ar_start_gzip(int, const char *, int); @@ -1123,7 +1123,7 @@ ar_next(void) if (sigprocmask(SIG_SETMASK, &o_mask, NULL) < 0) syswarn(0, errno, "Unable to restore signal mask"); - if (done || !wr_trail || strcmp(NM_TAR, argv0) == 0) + if (done || !wr_trail || Oflag || strcmp(NM_TAR, argv0) == 0) return(-1); tty_prnt("\nATTENTION! %s archive volume change required.\n", argv0); Modified: projects/release-install-debug/bin/pax/extern.h ============================================================================== --- projects/release-install-debug/bin/pax/extern.h Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/bin/pax/extern.h Wed Apr 22 12:39:19 2015 (r281852) @@ -217,6 +217,7 @@ extern int vflag; extern int Dflag; extern int Hflag; extern int Lflag; +extern int Oflag; extern int Xflag; extern int Yflag; extern int Zflag; Modified: projects/release-install-debug/bin/pax/options.c ============================================================================== --- projects/release-install-debug/bin/pax/options.c Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/bin/pax/options.c Wed Apr 22 12:39:19 2015 (r281852) @@ -194,7 +194,7 @@ pax_options(int argc, char **argv) /* * process option flags */ - while ((c=getopt(argc,argv,"ab:cdf:iklno:p:rs:tuvwx:zB:DE:G:HLPT:U:XYZ")) + while ((c=getopt(argc,argv,"ab:cdf:iklno:p:rs:tuvwx:zB:DE:G:HLOPT:U:XYZ")) != -1) { switch (c) { case 'a': @@ -447,6 +447,12 @@ pax_options(int argc, char **argv) Lflag = 1; flg |= CLF; break; + case 'O': + /* + * Force one volume. Non standard option. + */ + Oflag = 1; + break; case 'P': /* * do NOT follow symlinks (default) @@ -584,7 +590,7 @@ tar_options(int argc, char **argv) { int c; int fstdin = 0; - int Oflag = 0; + int tar_Oflag = 0; int nincfiles = 0; int incfiles_max = 0; struct incfile { @@ -664,7 +670,7 @@ tar_options(int argc, char **argv) if (opt_add("write_opt=nodir") < 0) tar_usage(); case 'O': - Oflag = 1; + tar_Oflag = 1; break; case 'p': /* @@ -820,8 +826,8 @@ tar_options(int argc, char **argv) * (unless -o specified) */ if (act == ARCHIVE || act == APPND) - frmt = &(fsub[Oflag ? F_OTAR : F_TAR]); - else if (Oflag) { + frmt = &(fsub[tar_Oflag ? F_OTAR : F_TAR]); + else if (tar_Oflag) { paxwarn(1, "The -O/-o options are only valid when writing an archive"); tar_usage(); /* only valid when writing */ } @@ -1526,25 +1532,25 @@ no_op(void) void pax_usage(void) { - (void)fputs("usage: pax [-cdnvz] [-E limit] [-f archive] ", stderr); + (void)fputs("usage: pax [-cdnOvz] [-E limit] [-f archive] ", stderr); (void)fputs("[-s replstr] ... [-U user] ...", stderr); (void)fputs("\n [-G group] ... ", stderr); (void)fputs("[-T [from_date][,to_date]] ... ", stderr); (void)fputs("[pattern ...]\n", stderr); - (void)fputs(" pax -r [-cdiknuvzDYZ] [-E limit] ", stderr); + (void)fputs(" pax -r [-cdiknOuvzDYZ] [-E limit] ", stderr); (void)fputs("[-f archive] [-o options] ... \n", stderr); (void)fputs(" [-p string] ... [-s replstr] ... ", stderr); (void)fputs("[-U user] ... [-G group] ...\n ", stderr); (void)fputs("[-T [from_date][,to_date]] ... ", stderr); (void)fputs(" [pattern ...]\n", stderr); - (void)fputs(" pax -w [-dituvzHLPX] [-b blocksize] ", stderr); + (void)fputs(" pax -w [-dituvzHLOPX] [-b blocksize] ", stderr); (void)fputs("[ [-a] [-f archive] ] [-x format] \n", stderr); (void)fputs(" [-B bytes] [-s replstr] ... ", stderr); (void)fputs("[-o options] ... [-U user] ...", stderr); (void)fputs("\n [-G group] ... ", stderr); (void)fputs("[-T [from_date][,to_date][/[c][m]]] ... ", stderr); (void)fputs("[file ...]\n", stderr); - (void)fputs(" pax -r -w [-diklntuvDHLPXYZ] ", stderr); + (void)fputs(" pax -r -w [-diklntuvDHLOPXYZ] ", stderr); (void)fputs("[-p string] ... [-s replstr] ...", stderr); (void)fputs("\n [-U user] ... [-G group] ... ", stderr); (void)fputs("[-T [from_date][,to_date][/[c][m]]] ... ", stderr); Modified: projects/release-install-debug/bin/pax/pax.1 ============================================================================== --- projects/release-install-debug/bin/pax/pax.1 Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/bin/pax/pax.1 Wed Apr 22 12:39:19 2015 (r281852) @@ -33,7 +33,7 @@ .\" @(#)pax.1 8.4 (Berkeley) 4/18/94 .\" $FreeBSD$ .\" -.Dd December 21, 2013 +.Dd March 17, 2015 .Dt PAX 1 .Os .Sh NAME @@ -41,7 +41,7 @@ .Nd read and write file archives and copy directory hierarchies .Sh SYNOPSIS .Nm -.Op Fl cdnvz +.Op Fl cdnvzO .Bk -words .Op Fl f Ar archive .Ek @@ -68,7 +68,7 @@ .Op Ar pattern ...\& .Nm .Fl r -.Op Fl cdiknuvzDYZ +.Op Fl cdiknuvzDOYZ .Bk -words .Op Fl f Ar archive .Ek @@ -104,7 +104,7 @@ .Op Ar pattern ...\& .Nm .Fl w -.Op Fl dituvzHLPX +.Op Fl dituvzHLOPX .Bk -words .Op Fl b Ar blocksize .Ek @@ -147,7 +147,7 @@ .Nm .Fl r .Fl w -.Op Fl diklntuvDHLPXYZ +.Op Fl diklntuvDHLOPXYZ .Bk -words .Op Fl p Ar string .Ar ...\& @@ -853,6 +853,13 @@ Follow only command line symbolic links system traversal. .It Fl L Follow all symbolic links to perform a logical file system traversal. +.It Fl O +Force the archive to be one volume. +If a volume ends prematurely, +.Nm +will not prompt for a new volume. +This option can be useful for +automated tasks where error recovery cannot be performed by a human. .It Fl P Do not follow symbolic links, perform a physical file system traversal. This is the default mode. @@ -1176,6 +1183,7 @@ The options .Fl G , .Fl H , .Fl L , +.Fl O , .Fl P , .Fl T , .Fl U , Modified: projects/release-install-debug/bin/pax/pax.c ============================================================================== --- projects/release-install-debug/bin/pax/pax.c Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/bin/pax/pax.c Wed Apr 22 12:39:19 2015 (r281852) @@ -85,6 +85,7 @@ int vflag; /* produce verbose output * int Dflag; /* same as uflag except inode change time */ int Hflag; /* follow command line symlinks (write only) */ int Lflag; /* follow symlinks when writing */ +int Oflag; /* limit to single volume */ int Xflag; /* archive files with same device id only */ int Yflag; /* same as Dflg except after name mode */ int Zflag; /* same as uflg except after name mode */ Modified: projects/release-install-debug/bin/pkill/tests/pgrep-j_test.sh ============================================================================== --- projects/release-install-debug/bin/pkill/tests/pgrep-j_test.sh Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/bin/pkill/tests/pgrep-j_test.sh Wed Apr 22 12:39:19 2015 (r281852) @@ -4,7 +4,7 @@ jail_name_to_jid() { local check_name="$1" - jls -j "$check_name" -s 2>/dev/null | tr ' ' '\n' | grep jid= | sed -e 's/.*=//g' + jls -j "$check_name" -s | tr ' ' '\n' | grep jid= | sed -e 's/.*=//g' } base=pgrep_j_test @@ -38,6 +38,7 @@ for i in `seq 1 10`; do esac sleep 0.1 done +sleep 0.5 pid1="$(pgrep -f -x -j "$jid" "$sleep $sleep_amount" | sort)" pid2=$(printf "%s\n%s" "$(cat ${PWD}/${base}_1_1.pid)" \ Modified: projects/release-install-debug/bin/pkill/tests/pkill-j_test.sh ============================================================================== --- projects/release-install-debug/bin/pkill/tests/pkill-j_test.sh Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/bin/pkill/tests/pkill-j_test.sh Wed Apr 22 12:39:19 2015 (r281852) @@ -4,7 +4,7 @@ jail_name_to_jid() { local check_name="$1" - jls -j "$check_name" -s 2>/dev/null | tr ' ' '\n' | grep jid= | sed -e 's/.*=//g' + jls -j "$check_name" -s | tr ' ' '\n' | grep jid= | sed -e 's/.*=//g' } base=pkill_j_test @@ -40,6 +40,7 @@ for i in `seq 1 10`; do esac sleep 0.1 done +sleep 0.5 if pkill -f -j "$jid" $sleep && sleep 0.5 && ! -f ${PWD}/${base}_1_1.pid && Modified: projects/release-install-debug/bin/ps/print.c ============================================================================== --- projects/release-install-debug/bin/ps/print.c Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/bin/ps/print.c Wed Apr 22 12:39:19 2015 (r281852) @@ -383,7 +383,6 @@ started(KINFO *k, VARENT *ve __unused) { time_t then; struct tm *tp; - static int use_ampm = -1; size_t buflen = 100; char *buf; @@ -394,16 +393,12 @@ started(KINFO *k, VARENT *ve __unused) if (buf == NULL) errx(1, "malloc failed"); - if (use_ampm < 0) - use_ampm = (*nl_langinfo(T_FMT_AMPM) != '\0'); then = k->ki_p->ki_start.tv_sec; tp = localtime(&then); if (now - k->ki_p->ki_start.tv_sec < 24 * 3600) { - (void)strftime(buf, buflen, - use_ampm ? "%l:%M%p" : "%k:%M ", tp); + (void)strftime(buf, buflen, "%H:%M ", tp); } else if (now - k->ki_p->ki_start.tv_sec < 7 * 86400) { - (void)strftime(buf, buflen, - use_ampm ? "%a%I%p" : "%a%H ", tp); + (void)strftime(buf, buflen, "%a%H ", tp); } else (void)strftime(buf, buflen, "%e%b%y", tp); return (buf); Modified: projects/release-install-debug/bin/ps/ps.1 ============================================================================== --- projects/release-install-debug/bin/ps/ps.1 Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/bin/ps/ps.1 Wed Apr 22 12:39:19 2015 (r281852) @@ -381,12 +381,12 @@ the real memory (resident set) size of t The time the command started. If the command started less than 24 hours ago, the start time is displayed using the -.Dq Li %l:ps.1p +.Dq Li %H:%M format described in .Xr strftime 3 . If the command started less than 7 days ago, the start time is displayed using the -.Dq Li %a6.15p +.Dq Li %a%H format. Otherwise, the start time is displayed using the .Dq Li %e%b%y Modified: projects/release-install-debug/bin/rcp/Makefile ============================================================================== --- projects/release-install-debug/bin/rcp/Makefile Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/bin/rcp/Makefile Wed Apr 22 12:39:19 2015 (r281852) @@ -7,6 +7,5 @@ CFLAGS+=-DBINDIR=${BINDIR} BINOWN= root BINMODE=4555 -PRECIOUSPROG= .include Modified: projects/release-install-debug/bin/sh/arith_yacc.h ============================================================================== --- projects/release-install-debug/bin/sh/arith_yacc.h Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/bin/sh/arith_yacc.h Wed Apr 22 12:39:19 2015 (r281852) @@ -81,6 +81,8 @@ #define ARITH_QMARK 37 #define ARITH_COLON 38 +extern const char *arith_buf; + union yystype { arith_t val; char *name; Modified: projects/release-install-debug/bin/sh/arith_yylex.c ============================================================================== --- projects/release-install-debug/bin/sh/arith_yylex.c Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/bin/sh/arith_yylex.c Wed Apr 22 12:39:19 2015 (r281852) @@ -50,8 +50,6 @@ __FBSDID("$FreeBSD$"); #error Arithmetic tokens are out of order. #endif -extern const char *arith_buf; - int yylex(void) { Modified: projects/release-install-debug/bin/sh/bltin/bltin.h ============================================================================== --- projects/release-install-debug/bin/sh/bltin/bltin.h Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/bin/sh/bltin/bltin.h Wed Apr 22 12:39:19 2015 (r281852) @@ -42,6 +42,7 @@ #include "../shell.h" #include "../mystring.h" #ifdef SHELL +#include "../error.h" #include "../output.h" #include "builtins.h" #define FILE struct output @@ -73,7 +74,6 @@ #include pointer stalloc(int); -void error(const char *, ...) __printf0like(1, 2); int killjob(const char *, int); extern char *commandname; Modified: projects/release-install-debug/bin/sh/error.c ============================================================================== --- projects/release-install-debug/bin/sh/error.c Wed Apr 22 12:32:14 2015 (r281851) +++ projects/release-install-debug/bin/sh/error.c Wed Apr 22 12:39:19 2015 (r281852) @@ -43,6 +43,7 @@ __FBSDID("$FreeBSD$"); */ #include "shell.h" +#include "eval.h" #include "main.h" #include "options.h" #include "output.h" @@ -64,7 +65,6 @@ struct jmploc *handler; volatile sig_atomic_t exception; volatile sig_atomic_t suppressint; *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Wed Apr 22 12:58:33 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2CCFA286; Wed, 22 Apr 2015 12:58:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 15C581DC0; Wed, 22 Apr 2015 12:58:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3MCwXDg057444; Wed, 22 Apr 2015 12:58:33 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3MCwL5V057219; Wed, 22 Apr 2015 12:58:21 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201504221258.t3MCwL5V057219@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Wed, 22 Apr 2015 12:58:21 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r281853 - in projects/release-arm-redux: . bin/csh bin/ed bin/sh bin/sh/tests/builtins bin/sh/tests/expansion cddl/contrib/opensolaris/cmd/dtrace cddl/contrib/opensolaris/cmd/dtrace/tes... 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.20 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: Wed, 22 Apr 2015 12:58:33 -0000 Author: gjb Date: Wed Apr 22 12:58:16 2015 New Revision: 281853 URL: https://svnweb.freebsd.org/changeset/base/281853 Log: MFH: r280643-r281852 Sponsored by: The FreeBSD Foundation Added: projects/release-arm-redux/bin/sh/tests/builtins/trap15.0 - copied unchanged from r281852, head/bin/sh/tests/builtins/trap15.0 projects/release-arm-redux/bin/sh/tests/builtins/trap16.0 - copied unchanged from r281852, head/bin/sh/tests/builtins/trap16.0 projects/release-arm-redux/bin/sh/tests/expansion/ifs6.0 - copied unchanged from r281852, head/bin/sh/tests/expansion/ifs6.0 projects/release-arm-redux/bin/sh/tests/expansion/ifs7.0 - copied unchanged from r281852, head/bin/sh/tests/expansion/ifs7.0 projects/release-arm-redux/cddl/usr.sbin/dtrace/tests/tools/dtest.sh - copied unchanged from r281852, head/cddl/usr.sbin/dtrace/tests/tools/dtest.sh projects/release-arm-redux/contrib/bmake/mk/cython.mk - copied unchanged from r281852, head/contrib/bmake/mk/cython.mk projects/release-arm-redux/contrib/bmake/mk/manifest.mk - copied unchanged from r281852, head/contrib/bmake/mk/manifest.mk projects/release-arm-redux/contrib/bmake/mk/mkopt.sh - copied unchanged from r281852, head/contrib/bmake/mk/mkopt.sh projects/release-arm-redux/contrib/bmake/mk/whats.mk - copied unchanged from r281852, head/contrib/bmake/mk/whats.mk projects/release-arm-redux/contrib/bmake/unit-tests/comment.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/comment.exp projects/release-arm-redux/contrib/bmake/unit-tests/comment.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/comment.mk projects/release-arm-redux/contrib/bmake/unit-tests/cond1.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/cond1.exp projects/release-arm-redux/contrib/bmake/unit-tests/cond1.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/cond1.mk projects/release-arm-redux/contrib/bmake/unit-tests/doterror.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/doterror.exp projects/release-arm-redux/contrib/bmake/unit-tests/doterror.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/doterror.mk projects/release-arm-redux/contrib/bmake/unit-tests/dotwait.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/dotwait.exp projects/release-arm-redux/contrib/bmake/unit-tests/dotwait.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/dotwait.mk projects/release-arm-redux/contrib/bmake/unit-tests/error.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/error.exp projects/release-arm-redux/contrib/bmake/unit-tests/error.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/error.mk projects/release-arm-redux/contrib/bmake/unit-tests/escape.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/escape.exp projects/release-arm-redux/contrib/bmake/unit-tests/escape.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/escape.mk projects/release-arm-redux/contrib/bmake/unit-tests/export-all.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/export-all.exp projects/release-arm-redux/contrib/bmake/unit-tests/export-all.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/export-all.mk projects/release-arm-redux/contrib/bmake/unit-tests/export-env.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/export-env.exp projects/release-arm-redux/contrib/bmake/unit-tests/export-env.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/export-env.mk projects/release-arm-redux/contrib/bmake/unit-tests/export.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/export.exp projects/release-arm-redux/contrib/bmake/unit-tests/export.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/export.mk projects/release-arm-redux/contrib/bmake/unit-tests/forloop.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/forloop.exp projects/release-arm-redux/contrib/bmake/unit-tests/forloop.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/forloop.mk projects/release-arm-redux/contrib/bmake/unit-tests/forsubst.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/forsubst.exp projects/release-arm-redux/contrib/bmake/unit-tests/forsubst.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/forsubst.mk projects/release-arm-redux/contrib/bmake/unit-tests/hash.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/hash.exp projects/release-arm-redux/contrib/bmake/unit-tests/hash.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/hash.mk projects/release-arm-redux/contrib/bmake/unit-tests/impsrc.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/impsrc.exp projects/release-arm-redux/contrib/bmake/unit-tests/impsrc.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/impsrc.mk projects/release-arm-redux/contrib/bmake/unit-tests/misc.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/misc.exp projects/release-arm-redux/contrib/bmake/unit-tests/misc.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/misc.mk projects/release-arm-redux/contrib/bmake/unit-tests/moderrs.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/moderrs.exp projects/release-arm-redux/contrib/bmake/unit-tests/moderrs.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/moderrs.mk projects/release-arm-redux/contrib/bmake/unit-tests/modmatch.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/modmatch.exp projects/release-arm-redux/contrib/bmake/unit-tests/modmatch.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/modmatch.mk projects/release-arm-redux/contrib/bmake/unit-tests/modmisc.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/modmisc.exp projects/release-arm-redux/contrib/bmake/unit-tests/modmisc.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/modmisc.mk projects/release-arm-redux/contrib/bmake/unit-tests/modorder.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/modorder.exp projects/release-arm-redux/contrib/bmake/unit-tests/modorder.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/modorder.mk projects/release-arm-redux/contrib/bmake/unit-tests/modts.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/modts.exp projects/release-arm-redux/contrib/bmake/unit-tests/modts.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/modts.mk projects/release-arm-redux/contrib/bmake/unit-tests/modword.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/modword.exp projects/release-arm-redux/contrib/bmake/unit-tests/modword.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/modword.mk projects/release-arm-redux/contrib/bmake/unit-tests/order.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/order.exp projects/release-arm-redux/contrib/bmake/unit-tests/order.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/order.mk projects/release-arm-redux/contrib/bmake/unit-tests/phony-end.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/phony-end.exp projects/release-arm-redux/contrib/bmake/unit-tests/phony-end.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/phony-end.mk projects/release-arm-redux/contrib/bmake/unit-tests/posix.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/posix.exp projects/release-arm-redux/contrib/bmake/unit-tests/posix.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/posix.mk projects/release-arm-redux/contrib/bmake/unit-tests/posix1.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/posix1.exp projects/release-arm-redux/contrib/bmake/unit-tests/posix1.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/posix1.mk projects/release-arm-redux/contrib/bmake/unit-tests/qequals.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/qequals.exp projects/release-arm-redux/contrib/bmake/unit-tests/qequals.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/qequals.mk projects/release-arm-redux/contrib/bmake/unit-tests/suffixes.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/suffixes.exp projects/release-arm-redux/contrib/bmake/unit-tests/suffixes.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/suffixes.mk projects/release-arm-redux/contrib/bmake/unit-tests/sunshcmd.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/sunshcmd.exp projects/release-arm-redux/contrib/bmake/unit-tests/sunshcmd.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/sunshcmd.mk projects/release-arm-redux/contrib/bmake/unit-tests/sysv.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/sysv.exp projects/release-arm-redux/contrib/bmake/unit-tests/sysv.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/sysv.mk projects/release-arm-redux/contrib/bmake/unit-tests/ternary.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/ternary.exp projects/release-arm-redux/contrib/bmake/unit-tests/ternary.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/ternary.mk projects/release-arm-redux/contrib/bmake/unit-tests/unexport-env.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/unexport-env.exp projects/release-arm-redux/contrib/bmake/unit-tests/unexport-env.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/unexport-env.mk projects/release-arm-redux/contrib/bmake/unit-tests/unexport.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/unexport.exp projects/release-arm-redux/contrib/bmake/unit-tests/unexport.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/unexport.mk projects/release-arm-redux/contrib/bmake/unit-tests/varcmd.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/varcmd.exp projects/release-arm-redux/contrib/bmake/unit-tests/varcmd.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/varcmd.mk projects/release-arm-redux/contrib/bmake/unit-tests/varmisc.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/varmisc.exp projects/release-arm-redux/contrib/bmake/unit-tests/varmisc.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/varmisc.mk projects/release-arm-redux/contrib/bmake/unit-tests/varshell.exp - copied unchanged from r281852, head/contrib/bmake/unit-tests/varshell.exp projects/release-arm-redux/contrib/bmake/unit-tests/varshell.mk - copied unchanged from r281852, head/contrib/bmake/unit-tests/varshell.mk projects/release-arm-redux/contrib/compiler-rt/lib/builtins/floatditf.c - copied unchanged from r281852, head/contrib/compiler-rt/lib/builtins/floatditf.c projects/release-arm-redux/contrib/compiler-rt/lib/builtins/floatunditf.c - copied unchanged from r281852, head/contrib/compiler-rt/lib/builtins/floatunditf.c projects/release-arm-redux/contrib/compiler-rt/lib/builtins/multc3.c - copied unchanged from r281852, head/contrib/compiler-rt/lib/builtins/multc3.c projects/release-arm-redux/contrib/llvm/patches/patch-11-llvm-r231227-aarch64-tls-relocs.diff - copied unchanged from r281852, head/contrib/llvm/patches/patch-11-llvm-r231227-aarch64-tls-relocs.diff projects/release-arm-redux/contrib/llvm/patches/patch-12-clang-r227115-constantarraytype.diff - copied unchanged from r281852, head/contrib/llvm/patches/patch-12-clang-r227115-constantarraytype.diff projects/release-arm-redux/contrib/llvm/patches/patch-13-llvm-r229911-uleb128-commas.diff - copied unchanged from r281852, head/contrib/llvm/patches/patch-13-llvm-r229911-uleb128-commas.diff projects/release-arm-redux/contrib/llvm/tools/llvm-cov/ - copied from r281852, head/contrib/llvm/tools/llvm-cov/ projects/release-arm-redux/contrib/llvm/tools/llvm-profdata/ - copied from r281852, head/contrib/llvm/tools/llvm-profdata/ projects/release-arm-redux/contrib/ntp/FREEBSD-Xlist - copied unchanged from r281852, head/contrib/ntp/FREEBSD-Xlist projects/release-arm-redux/contrib/ntp/FREEBSD-upgrade - copied unchanged from r281852, head/contrib/ntp/FREEBSD-upgrade projects/release-arm-redux/contrib/ntp/check-libopts.mf - copied unchanged from r281852, head/contrib/ntp/check-libopts.mf projects/release-arm-redux/contrib/ntp/deps-ver - copied unchanged from r281852, head/contrib/ntp/deps-ver projects/release-arm-redux/contrib/ntp/depsver.mf - copied unchanged from r281852, head/contrib/ntp/depsver.mf projects/release-arm-redux/contrib/ntp/html/access.html - copied unchanged from r281852, head/contrib/ntp/html/access.html projects/release-arm-redux/contrib/ntp/html/authentic.html - copied unchanged from r281852, head/contrib/ntp/html/authentic.html projects/release-arm-redux/contrib/ntp/html/autokey.html - copied unchanged from r281852, head/contrib/ntp/html/autokey.html projects/release-arm-redux/contrib/ntp/html/bugs.html - copied unchanged from r281852, head/contrib/ntp/html/bugs.html projects/release-arm-redux/contrib/ntp/html/build.html - copied unchanged from r281852, head/contrib/ntp/html/build.html projects/release-arm-redux/contrib/ntp/html/clock.html - copied unchanged from r281852, head/contrib/ntp/html/clock.html projects/release-arm-redux/contrib/ntp/html/cluster.html - copied unchanged from r281852, head/contrib/ntp/html/cluster.html projects/release-arm-redux/contrib/ntp/html/comdex.html - copied unchanged from r281852, head/contrib/ntp/html/comdex.html projects/release-arm-redux/contrib/ntp/html/config.html - copied unchanged from r281852, head/contrib/ntp/html/config.html projects/release-arm-redux/contrib/ntp/html/decode.html - copied unchanged from r281852, head/contrib/ntp/html/decode.html projects/release-arm-redux/contrib/ntp/html/discipline.html - copied unchanged from r281852, head/contrib/ntp/html/discipline.html projects/release-arm-redux/contrib/ntp/html/discover.html - copied unchanged from r281852, head/contrib/ntp/html/discover.html projects/release-arm-redux/contrib/ntp/html/drivers/driver45.html - copied unchanged from r281852, head/contrib/ntp/html/drivers/driver45.html projects/release-arm-redux/contrib/ntp/html/drivers/driver46.html - copied unchanged from r281852, head/contrib/ntp/html/drivers/driver46.html projects/release-arm-redux/contrib/ntp/html/drivers/mx4200data.html - copied unchanged from r281852, head/contrib/ntp/html/drivers/mx4200data.html projects/release-arm-redux/contrib/ntp/html/filter.html - copied unchanged from r281852, head/contrib/ntp/html/filter.html projects/release-arm-redux/contrib/ntp/html/hints/ - copied from r281852, head/contrib/ntp/html/hints/ projects/release-arm-redux/contrib/ntp/html/hints.html - copied unchanged from r281852, head/contrib/ntp/html/hints.html projects/release-arm-redux/contrib/ntp/html/history.html - copied unchanged from r281852, head/contrib/ntp/html/history.html projects/release-arm-redux/contrib/ntp/html/huffpuff.html - copied unchanged from r281852, head/contrib/ntp/html/huffpuff.html projects/release-arm-redux/contrib/ntp/html/icons/sitemap.png - copied unchanged from r281852, head/contrib/ntp/html/icons/sitemap.png projects/release-arm-redux/contrib/ntp/html/kernpps.html - copied unchanged from r281852, head/contrib/ntp/html/kernpps.html projects/release-arm-redux/contrib/ntp/html/leap.html - copied unchanged from r281852, head/contrib/ntp/html/leap.html projects/release-arm-redux/contrib/ntp/html/ntp-wait.html - copied unchanged from r281852, head/contrib/ntp/html/ntp-wait.html projects/release-arm-redux/contrib/ntp/html/orphan.html - copied unchanged from r281852, head/contrib/ntp/html/orphan.html projects/release-arm-redux/contrib/ntp/html/pic/ - copied from r281852, head/contrib/ntp/html/pic/ projects/release-arm-redux/contrib/ntp/html/poll.html - copied unchanged from r281852, head/contrib/ntp/html/poll.html projects/release-arm-redux/contrib/ntp/html/quick.html - copied unchanged from r281852, head/contrib/ntp/html/quick.html projects/release-arm-redux/contrib/ntp/html/rate.html - copied unchanged from r281852, head/contrib/ntp/html/rate.html projects/release-arm-redux/contrib/ntp/html/scripts/accopt.txt - copied unchanged from r281852, head/contrib/ntp/html/scripts/accopt.txt projects/release-arm-redux/contrib/ntp/html/scripts/audio.txt - copied unchanged from r281852, head/contrib/ntp/html/scripts/audio.txt projects/release-arm-redux/contrib/ntp/html/scripts/authopt.txt - copied unchanged from r281852, head/contrib/ntp/html/scripts/authopt.txt projects/release-arm-redux/contrib/ntp/html/scripts/clockopt.txt - copied unchanged from r281852, head/contrib/ntp/html/scripts/clockopt.txt projects/release-arm-redux/contrib/ntp/html/scripts/command.txt - copied unchanged from r281852, head/contrib/ntp/html/scripts/command.txt projects/release-arm-redux/contrib/ntp/html/scripts/config.txt - copied unchanged from r281852, head/contrib/ntp/html/scripts/config.txt projects/release-arm-redux/contrib/ntp/html/scripts/confopt.txt - copied unchanged from r281852, head/contrib/ntp/html/scripts/confopt.txt projects/release-arm-redux/contrib/ntp/html/scripts/external.txt - copied unchanged from r281852, head/contrib/ntp/html/scripts/external.txt projects/release-arm-redux/contrib/ntp/html/scripts/hand.txt - copied unchanged from r281852, head/contrib/ntp/html/scripts/hand.txt projects/release-arm-redux/contrib/ntp/html/scripts/install.txt - copied unchanged from r281852, head/contrib/ntp/html/scripts/install.txt projects/release-arm-redux/contrib/ntp/html/scripts/manual.txt - copied unchanged from r281852, head/contrib/ntp/html/scripts/manual.txt projects/release-arm-redux/contrib/ntp/html/scripts/misc.txt - copied unchanged from r281852, head/contrib/ntp/html/scripts/misc.txt projects/release-arm-redux/contrib/ntp/html/scripts/miscopt.txt - copied unchanged from r281852, head/contrib/ntp/html/scripts/miscopt.txt projects/release-arm-redux/contrib/ntp/html/scripts/monopt.txt - copied unchanged from r281852, head/contrib/ntp/html/scripts/monopt.txt projects/release-arm-redux/contrib/ntp/html/scripts/refclock.txt - copied unchanged from r281852, head/contrib/ntp/html/scripts/refclock.txt projects/release-arm-redux/contrib/ntp/html/scripts/special.txt - copied unchanged from r281852, head/contrib/ntp/html/scripts/special.txt projects/release-arm-redux/contrib/ntp/html/select.html - copied unchanged from r281852, head/contrib/ntp/html/select.html projects/release-arm-redux/contrib/ntp/html/sitemap.html - copied unchanged from r281852, head/contrib/ntp/html/sitemap.html projects/release-arm-redux/contrib/ntp/html/stats.html - copied unchanged from r281852, head/contrib/ntp/html/stats.html projects/release-arm-redux/contrib/ntp/html/warp.html - copied unchanged from r281852, head/contrib/ntp/html/warp.html projects/release-arm-redux/contrib/ntp/html/xleave.html - copied unchanged from r281852, head/contrib/ntp/html/xleave.html projects/release-arm-redux/contrib/ntp/include/declcond.h - copied unchanged from r281852, head/contrib/ntp/include/declcond.h projects/release-arm-redux/contrib/ntp/include/intreswork.h - copied unchanged from r281852, head/contrib/ntp/include/intreswork.h projects/release-arm-redux/contrib/ntp/include/lib_strbuf.h - copied unchanged from r281852, head/contrib/ntp/include/lib_strbuf.h projects/release-arm-redux/contrib/ntp/include/libntp.h - copied unchanged from r281852, head/contrib/ntp/include/libntp.h projects/release-arm-redux/contrib/ntp/include/ntp_assert.h - copied unchanged from r281852, head/contrib/ntp/include/ntp_assert.h projects/release-arm-redux/contrib/ntp/include/ntp_intres.h - copied unchanged from r281852, head/contrib/ntp/include/ntp_intres.h projects/release-arm-redux/contrib/ntp/include/ntp_libopts.h - copied unchanged from r281852, head/contrib/ntp/include/ntp_libopts.h projects/release-arm-redux/contrib/ntp/include/ntp_lineedit.h - copied unchanged from r281852, head/contrib/ntp/include/ntp_lineedit.h projects/release-arm-redux/contrib/ntp/include/ntp_lists.h - copied unchanged from r281852, head/contrib/ntp/include/ntp_lists.h projects/release-arm-redux/contrib/ntp/include/ntp_net.h - copied unchanged from r281852, head/contrib/ntp/include/ntp_net.h projects/release-arm-redux/contrib/ntp/include/ntp_prio_q.h - copied unchanged from r281852, head/contrib/ntp/include/ntp_prio_q.h projects/release-arm-redux/contrib/ntp/include/ntp_worker.h - copied unchanged from r281852, head/contrib/ntp/include/ntp_worker.h projects/release-arm-redux/contrib/ntp/include/ntp_workimpl.h - copied unchanged from r281852, head/contrib/ntp/include/ntp_workimpl.h projects/release-arm-redux/contrib/ntp/include/refclock_atom.h - copied unchanged from r281852, head/contrib/ntp/include/refclock_atom.h projects/release-arm-redux/contrib/ntp/include/ssl_applink.c - copied unchanged from r281852, head/contrib/ntp/include/ssl_applink.c projects/release-arm-redux/contrib/ntp/include/timespecops.h - copied unchanged from r281852, head/contrib/ntp/include/timespecops.h projects/release-arm-redux/contrib/ntp/include/timetoa.h - copied unchanged from r281852, head/contrib/ntp/include/timetoa.h projects/release-arm-redux/contrib/ntp/include/timevalops.h - copied unchanged from r281852, head/contrib/ntp/include/timevalops.h projects/release-arm-redux/contrib/ntp/include/vint64ops.h - copied unchanged from r281852, head/contrib/ntp/include/vint64ops.h projects/release-arm-redux/contrib/ntp/includes.mf - copied unchanged from r281852, head/contrib/ntp/includes.mf projects/release-arm-redux/contrib/ntp/lib/ - copied from r281852, head/contrib/ntp/lib/ projects/release-arm-redux/contrib/ntp/libjsmn/ - copied from r281852, head/contrib/ntp/libjsmn/ projects/release-arm-redux/contrib/ntp/libntp/bsd_strerror.c - copied unchanged from r281852, head/contrib/ntp/libntp/bsd_strerror.c projects/release-arm-redux/contrib/ntp/libntp/ntp_calendar.c - copied unchanged from r281852, head/contrib/ntp/libntp/ntp_calendar.c projects/release-arm-redux/contrib/ntp/libntp/ntp_crypto_rnd.c - copied unchanged from r281852, head/contrib/ntp/libntp/ntp_crypto_rnd.c projects/release-arm-redux/contrib/ntp/libntp/ntp_intres.c - copied unchanged from r281852, head/contrib/ntp/libntp/ntp_intres.c projects/release-arm-redux/contrib/ntp/libntp/ntp_libopts.c - copied unchanged from r281852, head/contrib/ntp/libntp/ntp_libopts.c projects/release-arm-redux/contrib/ntp/libntp/ntp_lineedit.c - copied unchanged from r281852, head/contrib/ntp/libntp/ntp_lineedit.c projects/release-arm-redux/contrib/ntp/libntp/ntp_worker.c - copied unchanged from r281852, head/contrib/ntp/libntp/ntp_worker.c projects/release-arm-redux/contrib/ntp/libntp/socket.c - copied unchanged from r281852, head/contrib/ntp/libntp/socket.c projects/release-arm-redux/contrib/ntp/libntp/ssl_init.c - copied unchanged from r281852, head/contrib/ntp/libntp/ssl_init.c projects/release-arm-redux/contrib/ntp/libntp/strl_obsd.c - copied unchanged from r281852, head/contrib/ntp/libntp/strl_obsd.c projects/release-arm-redux/contrib/ntp/libntp/timetoa.c - copied unchanged from r281852, head/contrib/ntp/libntp/timetoa.c projects/release-arm-redux/contrib/ntp/libntp/timevalops.c - copied unchanged from r281852, head/contrib/ntp/libntp/timevalops.c projects/release-arm-redux/contrib/ntp/libntp/vint64ops.c - copied unchanged from r281852, head/contrib/ntp/libntp/vint64ops.c projects/release-arm-redux/contrib/ntp/libntp/work_fork.c - copied unchanged from r281852, head/contrib/ntp/libntp/work_fork.c projects/release-arm-redux/contrib/ntp/libntp/work_thread.c - copied unchanged from r281852, head/contrib/ntp/libntp/work_thread.c projects/release-arm-redux/contrib/ntp/libparse/clk_sel240x.c - copied unchanged from r281852, head/contrib/ntp/libparse/clk_sel240x.c projects/release-arm-redux/contrib/ntp/ntpd/complete.conf.in - copied unchanged from r281852, head/contrib/ntp/ntpd/complete.conf.in projects/release-arm-redux/contrib/ntp/ntpd/declcond.h - copied unchanged from r281852, head/contrib/ntp/ntpd/declcond.h projects/release-arm-redux/contrib/ntp/ntpd/invoke-ntp.conf.menu - copied unchanged from r281852, head/contrib/ntp/ntpd/invoke-ntp.conf.menu projects/release-arm-redux/contrib/ntp/ntpd/invoke-ntp.conf.texi - copied unchanged from r281852, head/contrib/ntp/ntpd/invoke-ntp.conf.texi projects/release-arm-redux/contrib/ntp/ntpd/invoke-ntp.keys.menu - copied unchanged from r281852, head/contrib/ntp/ntpd/invoke-ntp.keys.menu projects/release-arm-redux/contrib/ntp/ntpd/invoke-ntp.keys.texi - copied unchanged from r281852, head/contrib/ntp/ntpd/invoke-ntp.keys.texi projects/release-arm-redux/contrib/ntp/ntpd/invoke-ntpd.menu - copied unchanged from r281852, head/contrib/ntp/ntpd/invoke-ntpd.menu projects/release-arm-redux/contrib/ntp/ntpd/invoke-ntpd.texi - copied unchanged from r281852, head/contrib/ntp/ntpd/invoke-ntpd.texi projects/release-arm-redux/contrib/ntp/ntpd/keyword-gen-utd - copied unchanged from r281852, head/contrib/ntp/ntpd/keyword-gen-utd projects/release-arm-redux/contrib/ntp/ntpd/keyword-gen.c - copied unchanged from r281852, head/contrib/ntp/ntpd/keyword-gen.c projects/release-arm-redux/contrib/ntp/ntpd/ntp.conf.5man - copied unchanged from r281852, head/contrib/ntp/ntpd/ntp.conf.5man projects/release-arm-redux/contrib/ntp/ntpd/ntp.conf.5mdoc - copied unchanged from r281852, head/contrib/ntp/ntpd/ntp.conf.5mdoc projects/release-arm-redux/contrib/ntp/ntpd/ntp.conf.def - copied unchanged from r281852, head/contrib/ntp/ntpd/ntp.conf.def projects/release-arm-redux/contrib/ntp/ntpd/ntp.conf.html - copied unchanged from r281852, head/contrib/ntp/ntpd/ntp.conf.html projects/release-arm-redux/contrib/ntp/ntpd/ntp.conf.man.in - copied unchanged from r281852, head/contrib/ntp/ntpd/ntp.conf.man.in projects/release-arm-redux/contrib/ntp/ntpd/ntp.conf.mdoc.in - copied unchanged from r281852, head/contrib/ntp/ntpd/ntp.conf.mdoc.in projects/release-arm-redux/contrib/ntp/ntpd/ntp.conf.texi - copied unchanged from r281852, head/contrib/ntp/ntpd/ntp.conf.texi projects/release-arm-redux/contrib/ntp/ntpd/ntp.keys.5man - copied unchanged from r281852, head/contrib/ntp/ntpd/ntp.keys.5man projects/release-arm-redux/contrib/ntp/ntpd/ntp.keys.5mdoc - copied unchanged from r281852, head/contrib/ntp/ntpd/ntp.keys.5mdoc projects/release-arm-redux/contrib/ntp/ntpd/ntp.keys.def - copied unchanged from r281852, head/contrib/ntp/ntpd/ntp.keys.def projects/release-arm-redux/contrib/ntp/ntpd/ntp.keys.html - copied unchanged from r281852, head/contrib/ntp/ntpd/ntp.keys.html projects/release-arm-redux/contrib/ntp/ntpd/ntp.keys.man.in - copied unchanged from r281852, head/contrib/ntp/ntpd/ntp.keys.man.in projects/release-arm-redux/contrib/ntp/ntpd/ntp.keys.mdoc.in - copied unchanged from r281852, head/contrib/ntp/ntpd/ntp.keys.mdoc.in projects/release-arm-redux/contrib/ntp/ntpd/ntp.keys.texi - copied unchanged from r281852, head/contrib/ntp/ntpd/ntp.keys.texi projects/release-arm-redux/contrib/ntp/ntpd/ntp_keyword.h - copied unchanged from r281852, head/contrib/ntp/ntpd/ntp_keyword.h projects/release-arm-redux/contrib/ntp/ntpd/ntp_leapsec.c - copied unchanged from r281852, head/contrib/ntp/ntpd/ntp_leapsec.c projects/release-arm-redux/contrib/ntp/ntpd/ntp_leapsec.h - copied unchanged from r281852, head/contrib/ntp/ntpd/ntp_leapsec.h projects/release-arm-redux/contrib/ntp/ntpd/ntp_parser.c - copied unchanged from r281852, head/contrib/ntp/ntpd/ntp_parser.c projects/release-arm-redux/contrib/ntp/ntpd/ntp_parser.h - copied unchanged from r281852, head/contrib/ntp/ntpd/ntp_parser.h projects/release-arm-redux/contrib/ntp/ntpd/ntp_prio_q.c - copied unchanged from r281852, head/contrib/ntp/ntpd/ntp_prio_q.c projects/release-arm-redux/contrib/ntp/ntpd/ntp_scanner.c - copied unchanged from r281852, head/contrib/ntp/ntpd/ntp_scanner.c projects/release-arm-redux/contrib/ntp/ntpd/ntp_scanner.h - copied unchanged from r281852, head/contrib/ntp/ntpd/ntp_scanner.h projects/release-arm-redux/contrib/ntp/ntpd/ntp_signd.c - copied unchanged from r281852, head/contrib/ntp/ntpd/ntp_signd.c projects/release-arm-redux/contrib/ntp/ntpd/ntpd.1ntpdman - copied unchanged from r281852, head/contrib/ntp/ntpd/ntpd.1ntpdman projects/release-arm-redux/contrib/ntp/ntpd/ntpd.1ntpdmdoc - copied unchanged from r281852, head/contrib/ntp/ntpd/ntpd.1ntpdmdoc projects/release-arm-redux/contrib/ntp/ntpd/ntpd.html - copied unchanged from r281852, head/contrib/ntp/ntpd/ntpd.html projects/release-arm-redux/contrib/ntp/ntpd/ntpd.man.in - copied unchanged from r281852, head/contrib/ntp/ntpd/ntpd.man.in projects/release-arm-redux/contrib/ntp/ntpd/ntpd.mdoc.in - copied unchanged from r281852, head/contrib/ntp/ntpd/ntpd.mdoc.in projects/release-arm-redux/contrib/ntp/ntpd/ntpd.texi - copied unchanged from r281852, head/contrib/ntp/ntpd/ntpd.texi projects/release-arm-redux/contrib/ntp/ntpd/refclock_gpsdjson.c - copied unchanged from r281852, head/contrib/ntp/ntpd/refclock_gpsdjson.c projects/release-arm-redux/contrib/ntp/ntpd/refclock_tsyncpci.c - copied unchanged from r281852, head/contrib/ntp/ntpd/refclock_tsyncpci.c projects/release-arm-redux/contrib/ntp/ntpdc/invoke-ntpdc.menu - copied unchanged from r281852, head/contrib/ntp/ntpdc/invoke-ntpdc.menu projects/release-arm-redux/contrib/ntp/ntpdc/invoke-ntpdc.texi - copied unchanged from r281852, head/contrib/ntp/ntpdc/invoke-ntpdc.texi projects/release-arm-redux/contrib/ntp/ntpdc/ntpdc.1ntpdcman - copied unchanged from r281852, head/contrib/ntp/ntpdc/ntpdc.1ntpdcman projects/release-arm-redux/contrib/ntp/ntpdc/ntpdc.1ntpdcmdoc - copied unchanged from r281852, head/contrib/ntp/ntpdc/ntpdc.1ntpdcmdoc projects/release-arm-redux/contrib/ntp/ntpdc/ntpdc.html - copied unchanged from r281852, head/contrib/ntp/ntpdc/ntpdc.html projects/release-arm-redux/contrib/ntp/ntpdc/ntpdc.man.in - copied unchanged from r281852, head/contrib/ntp/ntpdc/ntpdc.man.in projects/release-arm-redux/contrib/ntp/ntpdc/ntpdc.mdoc.in - copied unchanged from r281852, head/contrib/ntp/ntpdc/ntpdc.mdoc.in projects/release-arm-redux/contrib/ntp/ntpdc/ntpdc.texi - copied unchanged from r281852, head/contrib/ntp/ntpdc/ntpdc.texi projects/release-arm-redux/contrib/ntp/ntpq/invoke-ntpq.menu - copied unchanged from r281852, head/contrib/ntp/ntpq/invoke-ntpq.menu projects/release-arm-redux/contrib/ntp/ntpq/invoke-ntpq.texi - copied unchanged from r281852, head/contrib/ntp/ntpq/invoke-ntpq.texi projects/release-arm-redux/contrib/ntp/ntpq/libntpq.c - copied unchanged from r281852, head/contrib/ntp/ntpq/libntpq.c projects/release-arm-redux/contrib/ntp/ntpq/libntpq.h - copied unchanged from r281852, head/contrib/ntp/ntpq/libntpq.h projects/release-arm-redux/contrib/ntp/ntpq/libntpq_subs.c - copied unchanged from r281852, head/contrib/ntp/ntpq/libntpq_subs.c projects/release-arm-redux/contrib/ntp/ntpq/ntpq.1ntpqman - copied unchanged from r281852, head/contrib/ntp/ntpq/ntpq.1ntpqman projects/release-arm-redux/contrib/ntp/ntpq/ntpq.1ntpqmdoc - copied unchanged from r281852, head/contrib/ntp/ntpq/ntpq.1ntpqmdoc projects/release-arm-redux/contrib/ntp/ntpq/ntpq.html - copied unchanged from r281852, head/contrib/ntp/ntpq/ntpq.html projects/release-arm-redux/contrib/ntp/ntpq/ntpq.man.in - copied unchanged from r281852, head/contrib/ntp/ntpq/ntpq.man.in projects/release-arm-redux/contrib/ntp/ntpq/ntpq.mdoc.in - copied unchanged from r281852, head/contrib/ntp/ntpq/ntpq.mdoc.in projects/release-arm-redux/contrib/ntp/ntpq/ntpq.texi - copied unchanged from r281852, head/contrib/ntp/ntpq/ntpq.texi projects/release-arm-redux/contrib/ntp/ntpsnmpd/ - copied from r281852, head/contrib/ntp/ntpsnmpd/ projects/release-arm-redux/contrib/ntp/scripts/build/ - copied from r281852, head/contrib/ntp/scripts/build/ projects/release-arm-redux/contrib/ntp/scripts/calc_tickadj/ - copied from r281852, head/contrib/ntp/scripts/calc_tickadj/ projects/release-arm-redux/contrib/ntp/scripts/deprecated/ - copied from r281852, head/contrib/ntp/scripts/deprecated/ projects/release-arm-redux/contrib/ntp/scripts/invoke-plot_summary.menu - copied unchanged from r281852, head/contrib/ntp/scripts/invoke-plot_summary.menu projects/release-arm-redux/contrib/ntp/scripts/invoke-plot_summary.texi - copied unchanged from r281852, head/contrib/ntp/scripts/invoke-plot_summary.texi projects/release-arm-redux/contrib/ntp/scripts/invoke-summary.menu - copied unchanged from r281852, head/contrib/ntp/scripts/invoke-summary.menu projects/release-arm-redux/contrib/ntp/scripts/invoke-summary.texi - copied unchanged from r281852, head/contrib/ntp/scripts/invoke-summary.texi projects/release-arm-redux/contrib/ntp/scripts/lib/ - copied from r281852, head/contrib/ntp/scripts/lib/ projects/release-arm-redux/contrib/ntp/scripts/ntp-wait/ - copied from r281852, head/contrib/ntp/scripts/ntp-wait/ projects/release-arm-redux/contrib/ntp/scripts/ntpsweep/ - copied from r281852, head/contrib/ntp/scripts/ntpsweep/ projects/release-arm-redux/contrib/ntp/scripts/ntptrace/ - copied from r281852, head/contrib/ntp/scripts/ntptrace/ projects/release-arm-redux/contrib/ntp/scripts/plot_summary-opts - copied unchanged from r281852, head/contrib/ntp/scripts/plot_summary-opts projects/release-arm-redux/contrib/ntp/scripts/plot_summary-opts.def - copied unchanged from r281852, head/contrib/ntp/scripts/plot_summary-opts.def projects/release-arm-redux/contrib/ntp/scripts/plot_summary.1plot_summaryman - copied unchanged from r281852, head/contrib/ntp/scripts/plot_summary.1plot_summaryman projects/release-arm-redux/contrib/ntp/scripts/plot_summary.1plot_summarymdoc - copied unchanged from r281852, head/contrib/ntp/scripts/plot_summary.1plot_summarymdoc projects/release-arm-redux/contrib/ntp/scripts/plot_summary.html - copied unchanged from r281852, head/contrib/ntp/scripts/plot_summary.html projects/release-arm-redux/contrib/ntp/scripts/plot_summary.man.in - copied unchanged from r281852, head/contrib/ntp/scripts/plot_summary.man.in projects/release-arm-redux/contrib/ntp/scripts/plot_summary.mdoc.in - copied unchanged from r281852, head/contrib/ntp/scripts/plot_summary.mdoc.in projects/release-arm-redux/contrib/ntp/scripts/plot_summary.texi - copied unchanged from r281852, head/contrib/ntp/scripts/plot_summary.texi projects/release-arm-redux/contrib/ntp/scripts/rc/ - copied from r281852, head/contrib/ntp/scripts/rc/ projects/release-arm-redux/contrib/ntp/scripts/summary-opts - copied unchanged from r281852, head/contrib/ntp/scripts/summary-opts projects/release-arm-redux/contrib/ntp/scripts/summary-opts.def - copied unchanged from r281852, head/contrib/ntp/scripts/summary-opts.def projects/release-arm-redux/contrib/ntp/scripts/summary.1summaryman - copied unchanged from r281852, head/contrib/ntp/scripts/summary.1summaryman projects/release-arm-redux/contrib/ntp/scripts/summary.1summarymdoc - copied unchanged from r281852, head/contrib/ntp/scripts/summary.1summarymdoc projects/release-arm-redux/contrib/ntp/scripts/summary.html - copied unchanged from r281852, head/contrib/ntp/scripts/summary.html projects/release-arm-redux/contrib/ntp/scripts/summary.man.in - copied unchanged from r281852, head/contrib/ntp/scripts/summary.man.in projects/release-arm-redux/contrib/ntp/scripts/summary.mdoc.in - copied unchanged from r281852, head/contrib/ntp/scripts/summary.mdoc.in projects/release-arm-redux/contrib/ntp/scripts/summary.texi - copied unchanged from r281852, head/contrib/ntp/scripts/summary.texi projects/release-arm-redux/contrib/ntp/sntp/ag-tpl/ - copied from r281852, head/contrib/ntp/sntp/ag-tpl/ projects/release-arm-redux/contrib/ntp/sntp/check-libntp.mf - copied unchanged from r281852, head/contrib/ntp/sntp/check-libntp.mf projects/release-arm-redux/contrib/ntp/sntp/check-libopts.mf - copied unchanged from r281852, head/contrib/ntp/sntp/check-libopts.mf projects/release-arm-redux/contrib/ntp/sntp/crypto.c - copied unchanged from r281852, head/contrib/ntp/sntp/crypto.c projects/release-arm-redux/contrib/ntp/sntp/crypto.h - copied unchanged from r281852, head/contrib/ntp/sntp/crypto.h projects/release-arm-redux/contrib/ntp/sntp/data_formats.h - copied unchanged from r281852, head/contrib/ntp/sntp/data_formats.h projects/release-arm-redux/contrib/ntp/sntp/deps-ver - copied unchanged from r281852, head/contrib/ntp/sntp/deps-ver projects/release-arm-redux/contrib/ntp/sntp/depsver.mf - copied unchanged from r281852, head/contrib/ntp/sntp/depsver.mf projects/release-arm-redux/contrib/ntp/sntp/include/ - copied from r281852, head/contrib/ntp/sntp/include/ projects/release-arm-redux/contrib/ntp/sntp/includes.mf - copied unchanged from r281852, head/contrib/ntp/sntp/includes.mf projects/release-arm-redux/contrib/ntp/sntp/invoke-sntp.menu - copied unchanged from r281852, head/contrib/ntp/sntp/invoke-sntp.menu projects/release-arm-redux/contrib/ntp/sntp/invoke-sntp.texi - copied unchanged from r281852, head/contrib/ntp/sntp/invoke-sntp.texi projects/release-arm-redux/contrib/ntp/sntp/kod_management.c - copied unchanged from r281852, head/contrib/ntp/sntp/kod_management.c projects/release-arm-redux/contrib/ntp/sntp/kod_management.h - copied unchanged from r281852, head/contrib/ntp/sntp/kod_management.h projects/release-arm-redux/contrib/ntp/sntp/libevent/ - copied from r281852, head/contrib/ntp/sntp/libevent/ projects/release-arm-redux/contrib/ntp/sntp/libopts/COPYING.gplv3 - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/COPYING.gplv3 projects/release-arm-redux/contrib/ntp/sntp/libopts/COPYING.lgplv3 - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/COPYING.lgplv3 projects/release-arm-redux/contrib/ntp/sntp/libopts/ag-char-map.h - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/ag-char-map.h projects/release-arm-redux/contrib/ntp/sntp/libopts/alias.c - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/alias.c projects/release-arm-redux/contrib/ntp/sntp/libopts/ao-strs.c - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/ao-strs.c projects/release-arm-redux/contrib/ntp/sntp/libopts/ao-strs.h - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/ao-strs.h projects/release-arm-redux/contrib/ntp/sntp/libopts/autoopts/project.h - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/autoopts/project.h projects/release-arm-redux/contrib/ntp/sntp/libopts/check.c - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/check.c projects/release-arm-redux/contrib/ntp/sntp/libopts/compat/_Noreturn.h - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/compat/_Noreturn.h projects/release-arm-redux/contrib/ntp/sntp/libopts/enum.c - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/enum.c projects/release-arm-redux/contrib/ntp/sntp/libopts/env.c - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/env.c projects/release-arm-redux/contrib/ntp/sntp/libopts/file.c - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/file.c projects/release-arm-redux/contrib/ntp/sntp/libopts/find.c - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/find.c projects/release-arm-redux/contrib/ntp/sntp/libopts/gettext.h - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/gettext.h projects/release-arm-redux/contrib/ntp/sntp/libopts/init.c - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/init.c projects/release-arm-redux/contrib/ntp/sntp/libopts/intprops.h - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/intprops.h projects/release-arm-redux/contrib/ntp/sntp/libopts/m4/stdnoreturn.m4 - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/m4/stdnoreturn.m4 projects/release-arm-redux/contrib/ntp/sntp/libopts/option-value-type.c - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/option-value-type.c projects/release-arm-redux/contrib/ntp/sntp/libopts/option-value-type.h - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/option-value-type.h projects/release-arm-redux/contrib/ntp/sntp/libopts/option-xat-attribute.c - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/option-xat-attribute.c projects/release-arm-redux/contrib/ntp/sntp/libopts/option-xat-attribute.h - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/option-xat-attribute.h projects/release-arm-redux/contrib/ntp/sntp/libopts/parse-duration.c - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/parse-duration.c projects/release-arm-redux/contrib/ntp/sntp/libopts/parse-duration.h - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/parse-duration.h projects/release-arm-redux/contrib/ntp/sntp/libopts/reset.c - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/reset.c projects/release-arm-redux/contrib/ntp/sntp/libopts/stdnoreturn.in.h - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/stdnoreturn.in.h projects/release-arm-redux/contrib/ntp/sntp/libopts/time.c - copied unchanged from r281852, head/contrib/ntp/sntp/libopts/time.c projects/release-arm-redux/contrib/ntp/sntp/loc/ - copied from r281852, head/contrib/ntp/sntp/loc/ projects/release-arm-redux/contrib/ntp/sntp/log.c - copied unchanged from r281852, head/contrib/ntp/sntp/log.c projects/release-arm-redux/contrib/ntp/sntp/log.h - copied unchanged from r281852, head/contrib/ntp/sntp/log.h projects/release-arm-redux/contrib/ntp/sntp/m4/ - copied from r281852, head/contrib/ntp/sntp/m4/ projects/release-arm-redux/contrib/ntp/sntp/main.h - copied unchanged from r281852, head/contrib/ntp/sntp/main.h projects/release-arm-redux/contrib/ntp/sntp/networking.c - copied unchanged from r281852, head/contrib/ntp/sntp/networking.c projects/release-arm-redux/contrib/ntp/sntp/networking.h - copied unchanged from r281852, head/contrib/ntp/sntp/networking.h projects/release-arm-redux/contrib/ntp/sntp/scm-rev - copied unchanged from r281852, head/contrib/ntp/sntp/scm-rev projects/release-arm-redux/contrib/ntp/sntp/scripts/ - copied from r281852, head/contrib/ntp/sntp/scripts/ projects/release-arm-redux/contrib/ntp/sntp/sntp.1sntpman - copied unchanged from r281852, head/contrib/ntp/sntp/sntp.1sntpman projects/release-arm-redux/contrib/ntp/sntp/sntp.1sntpmdoc - copied unchanged from r281852, head/contrib/ntp/sntp/sntp.1sntpmdoc projects/release-arm-redux/contrib/ntp/sntp/sntp.c - copied unchanged from r281852, head/contrib/ntp/sntp/sntp.c projects/release-arm-redux/contrib/ntp/sntp/sntp.html - copied unchanged from r281852, head/contrib/ntp/sntp/sntp.html projects/release-arm-redux/contrib/ntp/sntp/sntp.man.in - copied unchanged from r281852, head/contrib/ntp/sntp/sntp.man.in projects/release-arm-redux/contrib/ntp/sntp/sntp.mdoc.in - copied unchanged from r281852, head/contrib/ntp/sntp/sntp.mdoc.in projects/release-arm-redux/contrib/ntp/sntp/sntp.texi - copied unchanged from r281852, head/contrib/ntp/sntp/sntp.texi projects/release-arm-redux/contrib/ntp/sntp/tests/ - copied from r281852, head/contrib/ntp/sntp/tests/ projects/release-arm-redux/contrib/ntp/sntp/tests_main.cpp - copied unchanged from r281852, head/contrib/ntp/sntp/tests_main.cpp projects/release-arm-redux/contrib/ntp/sntp/tests_main.h - copied unchanged from r281852, head/contrib/ntp/sntp/tests_main.h projects/release-arm-redux/contrib/ntp/sntp/utilities.c - copied unchanged from r281852, head/contrib/ntp/sntp/utilities.c projects/release-arm-redux/contrib/ntp/sntp/utilities.h - copied unchanged from r281852, head/contrib/ntp/sntp/utilities.h projects/release-arm-redux/contrib/ntp/tests/ - copied from r281852, head/contrib/ntp/tests/ projects/release-arm-redux/contrib/ntp/util/invoke-ntp-keygen.menu - copied unchanged from r281852, head/contrib/ntp/util/invoke-ntp-keygen.menu projects/release-arm-redux/contrib/ntp/util/invoke-ntp-keygen.texi - copied unchanged from r281852, head/contrib/ntp/util/invoke-ntp-keygen.texi projects/release-arm-redux/contrib/ntp/util/ntp-keygen.1ntp-keygenman - copied unchanged from r281852, head/contrib/ntp/util/ntp-keygen.1ntp-keygenman projects/release-arm-redux/contrib/ntp/util/ntp-keygen.1ntp-keygenmdoc - copied unchanged from r281852, head/contrib/ntp/util/ntp-keygen.1ntp-keygenmdoc projects/release-arm-redux/contrib/ntp/util/ntp-keygen.html - copied unchanged from r281852, head/contrib/ntp/util/ntp-keygen.html projects/release-arm-redux/contrib/ntp/util/ntp-keygen.man.in - copied unchanged from r281852, head/contrib/ntp/util/ntp-keygen.man.in projects/release-arm-redux/contrib/ntp/util/ntp-keygen.mdoc.in - copied unchanged from r281852, head/contrib/ntp/util/ntp-keygen.mdoc.in projects/release-arm-redux/contrib/ntp/util/ntp-keygen.texi - copied unchanged from r281852, head/contrib/ntp/util/ntp-keygen.texi projects/release-arm-redux/contrib/ntp/util/tg2.c - copied unchanged from r281852, head/contrib/ntp/util/tg2.c projects/release-arm-redux/contrib/ntp/ylwrap - copied unchanged from r281852, head/contrib/ntp/ylwrap projects/release-arm-redux/contrib/nvi/docs/man/ - copied from r281852, head/contrib/nvi/docs/man/ projects/release-arm-redux/contrib/wpa/CONTRIBUTIONS - copied unchanged from r281852, head/contrib/wpa/CONTRIBUTIONS projects/release-arm-redux/contrib/wpa/hostapd/hapd_module_tests.c - copied unchanged from r281852, head/contrib/wpa/hostapd/hapd_module_tests.c projects/release-arm-redux/contrib/wpa/hostapd/wps-ap-nfc.py - copied unchanged from r281852, head/contrib/wpa/hostapd/wps-ap-nfc.py projects/release-arm-redux/contrib/wpa/hs20/ - copied from r281852, head/contrib/wpa/hs20/ projects/release-arm-redux/contrib/wpa/patches/openssl-0.9.8za-tls-extensions.patch - copied unchanged from r281852, head/contrib/wpa/patches/openssl-0.9.8za-tls-extensions.patch projects/release-arm-redux/contrib/wpa/src/ap/acs.c - copied unchanged from r281852, head/contrib/wpa/src/ap/acs.c projects/release-arm-redux/contrib/wpa/src/ap/acs.h - copied unchanged from r281852, head/contrib/wpa/src/ap/acs.h projects/release-arm-redux/contrib/wpa/src/ap/bss_load.c - copied unchanged from r281852, head/contrib/wpa/src/ap/bss_load.c projects/release-arm-redux/contrib/wpa/src/ap/bss_load.h - copied unchanged from r281852, head/contrib/wpa/src/ap/bss_load.h projects/release-arm-redux/contrib/wpa/src/ap/dfs.c - copied unchanged from r281852, head/contrib/wpa/src/ap/dfs.c projects/release-arm-redux/contrib/wpa/src/ap/dfs.h - copied unchanged from r281852, head/contrib/wpa/src/ap/dfs.h projects/release-arm-redux/contrib/wpa/src/ap/dhcp_snoop.c - copied unchanged from r281852, head/contrib/wpa/src/ap/dhcp_snoop.c projects/release-arm-redux/contrib/wpa/src/ap/dhcp_snoop.h - copied unchanged from r281852, head/contrib/wpa/src/ap/dhcp_snoop.h projects/release-arm-redux/contrib/wpa/src/ap/ndisc_snoop.c - copied unchanged from r281852, head/contrib/wpa/src/ap/ndisc_snoop.c projects/release-arm-redux/contrib/wpa/src/ap/ndisc_snoop.h - copied unchanged from r281852, head/contrib/wpa/src/ap/ndisc_snoop.h projects/release-arm-redux/contrib/wpa/src/ap/x_snoop.c - copied unchanged from r281852, head/contrib/wpa/src/ap/x_snoop.c projects/release-arm-redux/contrib/wpa/src/ap/x_snoop.h - copied unchanged from r281852, head/contrib/wpa/src/ap/x_snoop.h projects/release-arm-redux/contrib/wpa/src/common/common_module_tests.c - copied unchanged from r281852, head/contrib/wpa/src/common/common_module_tests.c projects/release-arm-redux/contrib/wpa/src/common/hw_features_common.c - copied unchanged from r281852, head/contrib/wpa/src/common/hw_features_common.c projects/release-arm-redux/contrib/wpa/src/common/hw_features_common.h - copied unchanged from r281852, head/contrib/wpa/src/common/hw_features_common.h projects/release-arm-redux/contrib/wpa/src/common/ieee802_1x_defs.h - copied unchanged from r281852, head/contrib/wpa/src/common/ieee802_1x_defs.h projects/release-arm-redux/contrib/wpa/src/common/qca-vendor-attr.h - copied unchanged from r281852, head/contrib/wpa/src/common/qca-vendor-attr.h projects/release-arm-redux/contrib/wpa/src/common/qca-vendor.h - copied unchanged from r281852, head/contrib/wpa/src/common/qca-vendor.h projects/release-arm-redux/contrib/wpa/src/common/sae.c - copied unchanged from r281852, head/contrib/wpa/src/common/sae.c projects/release-arm-redux/contrib/wpa/src/common/sae.h - copied unchanged from r281852, head/contrib/wpa/src/common/sae.h projects/release-arm-redux/contrib/wpa/src/common/tnc.h - copied unchanged from r281852, head/contrib/wpa/src/common/tnc.h projects/release-arm-redux/contrib/wpa/src/common/wpa_helpers.c - copied unchanged from r281852, head/contrib/wpa/src/common/wpa_helpers.c projects/release-arm-redux/contrib/wpa/src/common/wpa_helpers.h - copied unchanged from r281852, head/contrib/wpa/src/common/wpa_helpers.h projects/release-arm-redux/contrib/wpa/src/crypto/aes-siv.c - copied unchanged from r281852, head/contrib/wpa/src/crypto/aes-siv.c projects/release-arm-redux/contrib/wpa/src/crypto/aes_siv.h - copied unchanged from r281852, head/contrib/wpa/src/crypto/aes_siv.h projects/release-arm-redux/contrib/wpa/src/crypto/crypto_module_tests.c - copied unchanged from r281852, head/contrib/wpa/src/crypto/crypto_module_tests.c projects/release-arm-redux/contrib/wpa/src/crypto/sha256-kdf.c - copied unchanged from r281852, head/contrib/wpa/src/crypto/sha256-kdf.c projects/release-arm-redux/contrib/wpa/src/crypto/sha384.h - copied unchanged from r281852, head/contrib/wpa/src/crypto/sha384.h projects/release-arm-redux/contrib/wpa/src/drivers/driver_macsec_qca.c - copied unchanged from r281852, head/contrib/wpa/src/drivers/driver_macsec_qca.c projects/release-arm-redux/contrib/wpa/src/drivers/driver_nl80211.h - copied unchanged from r281852, head/contrib/wpa/src/drivers/driver_nl80211.h projects/release-arm-redux/contrib/wpa/src/drivers/driver_nl80211_android.c - copied unchanged from r281852, head/contrib/wpa/src/drivers/driver_nl80211_android.c projects/release-arm-redux/contrib/wpa/src/drivers/driver_nl80211_capa.c - copied unchanged from r281852, head/contrib/wpa/src/drivers/driver_nl80211_capa.c projects/release-arm-redux/contrib/wpa/src/drivers/driver_nl80211_event.c - copied unchanged from r281852, head/contrib/wpa/src/drivers/driver_nl80211_event.c projects/release-arm-redux/contrib/wpa/src/drivers/driver_nl80211_monitor.c - copied unchanged from r281852, head/contrib/wpa/src/drivers/driver_nl80211_monitor.c projects/release-arm-redux/contrib/wpa/src/drivers/driver_nl80211_scan.c - copied unchanged from r281852, head/contrib/wpa/src/drivers/driver_nl80211_scan.c projects/release-arm-redux/contrib/wpa/src/drivers/driver_openbsd.c - copied unchanged from r281852, head/contrib/wpa/src/drivers/driver_openbsd.c projects/release-arm-redux/contrib/wpa/src/drivers/linux_defines.h - copied unchanged from r281852, head/contrib/wpa/src/drivers/linux_defines.h projects/release-arm-redux/contrib/wpa/src/eap_common/eap_eke_common.c - copied unchanged from r281852, head/contrib/wpa/src/eap_common/eap_eke_common.c projects/release-arm-redux/contrib/wpa/src/eap_common/eap_eke_common.h - copied unchanged from r281852, head/contrib/wpa/src/eap_common/eap_eke_common.h projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_eke.c - copied unchanged from r281852, head/contrib/wpa/src/eap_peer/eap_eke.c projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_proxy.h - copied unchanged from r281852, head/contrib/wpa/src/eap_peer/eap_proxy.h projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_proxy_dummy.c - copied unchanged from r281852, head/contrib/wpa/src/eap_peer/eap_proxy_dummy.c projects/release-arm-redux/contrib/wpa/src/eap_server/eap_server_eke.c - copied unchanged from r281852, head/contrib/wpa/src/eap_server/eap_server_eke.c projects/release-arm-redux/contrib/wpa/src/pae/ - copied from r281852, head/contrib/wpa/src/pae/ projects/release-arm-redux/contrib/wpa/src/utils/bitfield.c - copied unchanged from r281852, head/contrib/wpa/src/utils/bitfield.c projects/release-arm-redux/contrib/wpa/src/utils/bitfield.h - copied unchanged from r281852, head/contrib/wpa/src/utils/bitfield.h projects/release-arm-redux/contrib/wpa/src/utils/browser-android.c - copied unchanged from r281852, head/contrib/wpa/src/utils/browser-android.c projects/release-arm-redux/contrib/wpa/src/utils/browser-system.c - copied unchanged from r281852, head/contrib/wpa/src/utils/browser-system.c projects/release-arm-redux/contrib/wpa/src/utils/browser-wpadebug.c - copied unchanged from r281852, head/contrib/wpa/src/utils/browser-wpadebug.c projects/release-arm-redux/contrib/wpa/src/utils/browser.c - copied unchanged from r281852, head/contrib/wpa/src/utils/browser.c projects/release-arm-redux/contrib/wpa/src/utils/browser.h - copied unchanged from r281852, head/contrib/wpa/src/utils/browser.h projects/release-arm-redux/contrib/wpa/src/utils/http-utils.h - copied unchanged from r281852, head/contrib/wpa/src/utils/http-utils.h projects/release-arm-redux/contrib/wpa/src/utils/http_curl.c - copied unchanged from r281852, head/contrib/wpa/src/utils/http_curl.c projects/release-arm-redux/contrib/wpa/src/utils/platform.h - copied unchanged from r281852, head/contrib/wpa/src/utils/platform.h projects/release-arm-redux/contrib/wpa/src/utils/utils_module_tests.c - copied unchanged from r281852, head/contrib/wpa/src/utils/utils_module_tests.c projects/release-arm-redux/contrib/wpa/src/utils/xml-utils.c - copied unchanged from r281852, head/contrib/wpa/src/utils/xml-utils.c projects/release-arm-redux/contrib/wpa/src/utils/xml-utils.h - copied unchanged from r281852, head/contrib/wpa/src/utils/xml-utils.h projects/release-arm-redux/contrib/wpa/src/utils/xml_libxml2.c - copied unchanged from r281852, head/contrib/wpa/src/utils/xml_libxml2.c projects/release-arm-redux/contrib/wpa/src/wps/wps_module_tests.c - copied unchanged from r281852, head/contrib/wpa/src/wps/wps_module_tests.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/eap_proxy_dummy.mak - copied unchanged from r281852, head/contrib/wpa/wpa_supplicant/eap_proxy_dummy.mak projects/release-arm-redux/contrib/wpa/wpa_supplicant/eap_proxy_dummy.mk - copied unchanged from r281852, head/contrib/wpa/wpa_supplicant/eap_proxy_dummy.mk projects/release-arm-redux/contrib/wpa/wpa_supplicant/examples/p2p-nfc.py - copied unchanged from r281852, head/contrib/wpa/wpa_supplicant/examples/p2p-nfc.py projects/release-arm-redux/contrib/wpa/wpa_supplicant/mesh.c - copied unchanged from r281852, head/contrib/wpa/wpa_supplicant/mesh.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/mesh.h - copied unchanged from r281852, head/contrib/wpa/wpa_supplicant/mesh.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/mesh_mpm.c - copied unchanged from r281852, head/contrib/wpa/wpa_supplicant/mesh_mpm.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/mesh_mpm.h - copied unchanged from r281852, head/contrib/wpa/wpa_supplicant/mesh_mpm.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/mesh_rsn.c - copied unchanged from r281852, head/contrib/wpa/wpa_supplicant/mesh_rsn.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/mesh_rsn.h - copied unchanged from r281852, head/contrib/wpa/wpa_supplicant/mesh_rsn.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/wmm_ac.c - copied unchanged from r281852, head/contrib/wpa/wpa_supplicant/wmm_ac.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/wmm_ac.h - copied unchanged from r281852, head/contrib/wpa/wpa_supplicant/wmm_ac.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/wpas_kay.c - copied unchanged from r281852, head/contrib/wpa/wpa_supplicant/wpas_kay.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/wpas_kay.h - copied unchanged from r281852, head/contrib/wpa/wpa_supplicant/wpas_kay.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/wpas_module_tests.c - copied unchanged from r281852, head/contrib/wpa/wpa_supplicant/wpas_module_tests.c projects/release-arm-redux/lib/libc/aarch64/SYS.h - copied unchanged from r281852, head/lib/libc/aarch64/SYS.h projects/release-arm-redux/lib/libc/aarch64/Symbol.map - copied unchanged from r281852, head/lib/libc/aarch64/Symbol.map projects/release-arm-redux/lib/libc/aarch64/_fpmath.h - copied unchanged from r281852, head/lib/libc/aarch64/_fpmath.h projects/release-arm-redux/lib/libc/aarch64/arith.h - copied unchanged from r281852, head/lib/libc/aarch64/arith.h projects/release-arm-redux/lib/libc/aarch64/gd_qnan.h - copied unchanged from r281852, head/lib/libc/aarch64/gd_qnan.h projects/release-arm-redux/lib/libc/aarch64/gen/ - copied from r281852, head/lib/libc/aarch64/gen/ projects/release-arm-redux/lib/libc/aarch64/sys/ - copied from r281852, head/lib/libc/aarch64/sys/ projects/release-arm-redux/lib/libc/sys/kevent.c - copied unchanged from r281852, head/lib/libc/sys/kevent.c projects/release-arm-redux/lib/libc/sys/ppoll.c - copied unchanged from r281852, head/lib/libc/sys/ppoll.c projects/release-arm-redux/lib/libc/sys/trivial-vdso_tc.c - copied unchanged from r281852, head/lib/libc/sys/trivial-vdso_tc.c projects/release-arm-redux/lib/libc/sys/wait6.c - copied unchanged from r281852, head/lib/libc/sys/wait6.c projects/release-arm-redux/lib/libkvm/kvm_aarch64.c - copied unchanged from r281852, head/lib/libkvm/kvm_aarch64.c projects/release-arm-redux/lib/libthr/arch/aarch64/include/ - copied from r281852, head/lib/libthr/arch/aarch64/include/ projects/release-arm-redux/lib/libthread_db/arch/aarch64/ - copied from r281852, head/lib/libthread_db/arch/aarch64/ projects/release-arm-redux/lib/msun/aarch64/fenv.c - copied unchanged from r281852, head/lib/msun/aarch64/fenv.c projects/release-arm-redux/libexec/rtld-elf/aarch64/ - copied from r281852, head/libexec/rtld-elf/aarch64/ projects/release-arm-redux/release/Makefile.ec2 - copied unchanged from r281852, head/release/Makefile.ec2 projects/release-arm-redux/release/arm64/ - copied from r281852, head/release/arm64/ projects/release-arm-redux/release/tools/ec2.conf - copied unchanged from r281852, head/release/tools/ec2.conf projects/release-arm-redux/share/man/man4/dtrace-io.4 - copied unchanged from r281852, head/share/man/man4/dtrace-io.4 projects/release-arm-redux/share/man/man4/dtrace-ip.4 - copied unchanged from r281852, head/share/man/man4/dtrace-ip.4 projects/release-arm-redux/share/man/man4/dtrace-proc.4 - copied unchanged from r281852, head/share/man/man4/dtrace-proc.4 projects/release-arm-redux/share/man/man4/dtrace-sched.4 - copied unchanged from r281852, head/share/man/man4/dtrace-sched.4 projects/release-arm-redux/share/man/man4/dtrace-tcp.4 - copied unchanged from r281852, head/share/man/man4/dtrace-tcp.4 projects/release-arm-redux/share/man/man4/dtrace-udp.4 - copied unchanged from r281852, head/share/man/man4/dtrace-udp.4 projects/release-arm-redux/sys/arm/allwinner/files.allwinner - copied unchanged from r281852, head/sys/arm/allwinner/files.allwinner projects/release-arm-redux/sys/arm/amlogic/ - copied from r281852, head/sys/arm/amlogic/ projects/release-arm-redux/sys/arm/arm/pmap-v6-new.c - copied unchanged from r281852, head/sys/arm/arm/pmap-v6-new.c projects/release-arm-redux/sys/arm/conf/ODROIDC1 - copied unchanged from r281852, head/sys/arm/conf/ODROIDC1 projects/release-arm-redux/sys/arm/conf/SOCKIT.common - copied unchanged from r281852, head/sys/arm/conf/SOCKIT.common projects/release-arm-redux/sys/arm/conf/VIRT - copied unchanged from r281852, head/sys/arm/conf/VIRT projects/release-arm-redux/sys/arm/conf/VSATV102 - copied unchanged from r281852, head/sys/arm/conf/VSATV102 projects/release-arm-redux/sys/arm/include/pmap-v6.h - copied unchanged from r281852, head/sys/arm/include/pmap-v6.h projects/release-arm-redux/sys/arm/include/pmap_var.h - copied unchanged from r281852, head/sys/arm/include/pmap_var.h projects/release-arm-redux/sys/arm/include/pte-v6.h - copied unchanged from r281852, head/sys/arm/include/pte-v6.h projects/release-arm-redux/sys/arm/qemu/ - copied from r281852, head/sys/arm/qemu/ projects/release-arm-redux/sys/arm64/arm64/ - copied from r281852, head/sys/arm64/arm64/ projects/release-arm-redux/sys/arm64/conf/ - copied from r281852, head/sys/arm64/conf/ projects/release-arm-redux/sys/arm64/include/_bus.h - copied unchanged from r281852, head/sys/arm64/include/_bus.h projects/release-arm-redux/sys/arm64/include/armreg.h - copied unchanged from r281852, head/sys/arm64/include/armreg.h projects/release-arm-redux/sys/arm64/include/bus.h - copied unchanged from r281852, head/sys/arm64/include/bus.h projects/release-arm-redux/sys/arm64/include/bus_dma.h - copied unchanged from r281852, head/sys/arm64/include/bus_dma.h projects/release-arm-redux/sys/arm64/include/clock.h - copied unchanged from r281852, head/sys/arm64/include/clock.h projects/release-arm-redux/sys/arm64/include/counter.h - copied unchanged from r281852, head/sys/arm64/include/counter.h projects/release-arm-redux/sys/arm64/include/db_machdep.h - copied unchanged from r281852, head/sys/arm64/include/db_machdep.h projects/release-arm-redux/sys/arm64/include/debug_monitor.h - copied unchanged from r281852, head/sys/arm64/include/debug_monitor.h projects/release-arm-redux/sys/arm64/include/devmap.h - copied unchanged from r281852, head/sys/arm64/include/devmap.h projects/release-arm-redux/sys/arm64/include/dump.h - copied unchanged from r281852, head/sys/arm64/include/dump.h projects/release-arm-redux/sys/arm64/include/frame.h - copied unchanged from r281852, head/sys/arm64/include/frame.h projects/release-arm-redux/sys/arm64/include/hypervisor.h - copied unchanged from r281852, head/sys/arm64/include/hypervisor.h projects/release-arm-redux/sys/arm64/include/in_cksum.h - copied unchanged from r281852, head/sys/arm64/include/in_cksum.h projects/release-arm-redux/sys/arm64/include/intr.h - copied unchanged from r281852, head/sys/arm64/include/intr.h projects/release-arm-redux/sys/arm64/include/kdb.h - copied unchanged from r281852, head/sys/arm64/include/kdb.h projects/release-arm-redux/sys/arm64/include/machdep.h - copied unchanged from r281852, head/sys/arm64/include/machdep.h projects/release-arm-redux/sys/arm64/include/md_var.h - copied unchanged from r281852, head/sys/arm64/include/md_var.h projects/release-arm-redux/sys/arm64/include/memdev.h - copied unchanged from r281852, head/sys/arm64/include/memdev.h projects/release-arm-redux/sys/arm64/include/metadata.h - copied unchanged from r281852, head/sys/arm64/include/metadata.h projects/release-arm-redux/sys/arm64/include/ofw_machdep.h - copied unchanged from r281852, head/sys/arm64/include/ofw_machdep.h projects/release-arm-redux/sys/arm64/include/psl.h - copied unchanged from r281852, head/sys/arm64/include/psl.h projects/release-arm-redux/sys/arm64/include/ptrace.h - copied unchanged from r281852, head/sys/arm64/include/ptrace.h projects/release-arm-redux/sys/arm64/include/reg.h - copied unchanged from r281852, head/sys/arm64/include/reg.h projects/release-arm-redux/sys/arm64/include/resource.h - copied unchanged from r281852, head/sys/arm64/include/resource.h projects/release-arm-redux/sys/arm64/include/sf_buf.h - copied unchanged from r281852, head/sys/arm64/include/sf_buf.h projects/release-arm-redux/sys/arm64/include/smp.h - copied unchanged from r281852, head/sys/arm64/include/smp.h projects/release-arm-redux/sys/arm64/include/stack.h - copied unchanged from r281852, head/sys/arm64/include/stack.h projects/release-arm-redux/sys/arm64/include/sysarch.h - copied unchanged from r281852, head/sys/arm64/include/sysarch.h projects/release-arm-redux/sys/arm64/include/trap.h - copied unchanged from r281852, head/sys/arm64/include/trap.h projects/release-arm-redux/sys/arm64/include/vfp.h - copied unchanged from r281852, head/sys/arm64/include/vfp.h projects/release-arm-redux/sys/boot/Makefile.arm64 - copied unchanged from r281852, head/sys/boot/Makefile.arm64 projects/release-arm-redux/sys/boot/arm64/ - copied from r281852, head/sys/boot/arm64/ projects/release-arm-redux/sys/boot/efi/boot1/ - copied from r281852, head/sys/boot/efi/boot1/ projects/release-arm-redux/sys/boot/efi/fdt/ - copied from r281852, head/sys/boot/efi/fdt/ projects/release-arm-redux/sys/boot/efi/include/arm/ - copied from r281852, head/sys/boot/efi/include/arm/ projects/release-arm-redux/sys/boot/efi/include/arm64/ - copied from r281852, head/sys/boot/efi/include/arm64/ projects/release-arm-redux/sys/boot/efi/loader/ - copied from r281852, head/sys/boot/efi/loader/ projects/release-arm-redux/sys/boot/fdt/dts/arm/meson8b.dtsi - copied unchanged from r281852, head/sys/boot/fdt/dts/arm/meson8b.dtsi projects/release-arm-redux/sys/boot/fdt/dts/arm/odroidc1.dts - copied unchanged from r281852, head/sys/boot/fdt/dts/arm/odroidc1.dts projects/release-arm-redux/sys/boot/fdt/dts/arm/vsatv102-m6.dts - copied unchanged from r281852, head/sys/boot/fdt/dts/arm/vsatv102-m6.dts projects/release-arm-redux/sys/boot/ficl/aarch64/ - copied from r281852, head/sys/boot/ficl/aarch64/ projects/release-arm-redux/sys/boot/forth/Makefile - copied unchanged from r281852, head/sys/boot/forth/Makefile projects/release-arm-redux/sys/boot/forth/Makefile.inc - copied unchanged from r281852, head/sys/boot/forth/Makefile.inc projects/release-arm-redux/sys/boot/forth/brand-fbsd.4th - copied unchanged from r281852, head/sys/boot/forth/brand-fbsd.4th projects/release-arm-redux/sys/boot/forth/logo-beastie.4th - copied unchanged from r281852, head/sys/boot/forth/logo-beastie.4th projects/release-arm-redux/sys/boot/forth/logo-beastiebw.4th - copied unchanged from r281852, head/sys/boot/forth/logo-beastiebw.4th projects/release-arm-redux/sys/boot/forth/logo-fbsdbw.4th - copied unchanged from r281852, head/sys/boot/forth/logo-fbsdbw.4th projects/release-arm-redux/sys/boot/forth/logo-orb.4th - copied unchanged from r281852, head/sys/boot/forth/logo-orb.4th projects/release-arm-redux/sys/boot/forth/logo-orbbw.4th - copied unchanged from r281852, head/sys/boot/forth/logo-orbbw.4th projects/release-arm-redux/sys/boot/i386/libi386/smbios.h - copied unchanged from r281852, head/sys/boot/i386/libi386/smbios.h projects/release-arm-redux/sys/conf/Makefile.arm64 - copied unchanged from r281852, head/sys/conf/Makefile.arm64 projects/release-arm-redux/sys/conf/files.arm64 - copied unchanged from r281852, head/sys/conf/files.arm64 projects/release-arm-redux/sys/conf/ldscript.arm64 - copied unchanged from r281852, head/sys/conf/ldscript.arm64 projects/release-arm-redux/sys/conf/options.arm64 - copied unchanged from r281852, head/sys/conf/options.arm64 projects/release-arm-redux/sys/crypto/aesni/aesni_os.h - copied unchanged from r281852, head/sys/crypto/aesni/aesni_os.h projects/release-arm-redux/sys/dev/fdt/fdt_arm64.c - copied unchanged from r281852, head/sys/dev/fdt/fdt_arm64.c projects/release-arm-redux/sys/dev/hwpmc/hwpmc_e500.c - copied unchanged from r281852, head/sys/dev/hwpmc/hwpmc_e500.c projects/release-arm-redux/sys/dev/hwpmc/hwpmc_mips74k.c - copied unchanged from r281852, head/sys/dev/hwpmc/hwpmc_mips74k.c projects/release-arm-redux/sys/dev/psci/ - copied from r281852, head/sys/dev/psci/ projects/release-arm-redux/sys/dev/xen/debug/ - copied from r281852, head/sys/dev/xen/debug/ projects/release-arm-redux/sys/modules/dtb/allwinner/ - copied from r281852, head/sys/modules/dtb/allwinner/ projects/release-arm-redux/sys/net/altq/ - copied from r281852, head/sys/net/altq/ projects/release-arm-redux/sys/netinet/ip_reass.c - copied unchanged from r281852, head/sys/netinet/ip_reass.c projects/release-arm-redux/sys/pc98/pc98/genassym.c - copied unchanged from r281852, head/sys/pc98/pc98/genassym.c projects/release-arm-redux/sys/powerpc/mpc85xx/mpc85xx_gpio.c - copied unchanged from r281852, head/sys/powerpc/mpc85xx/mpc85xx_gpio.c projects/release-arm-redux/sys/powerpc/powerpc/trap.c - copied unchanged from r281852, head/sys/powerpc/powerpc/trap.c projects/release-arm-redux/sys/x86/x86/cpu_machdep.c - copied unchanged from r281852, head/sys/x86/x86/cpu_machdep.c projects/release-arm-redux/tools/debugscripts/netstat-anr.gdb - copied unchanged from r281852, head/tools/debugscripts/netstat-anr.gdb projects/release-arm-redux/usr.bin/clang/llvm-cov/ - copied from r281852, head/usr.bin/clang/llvm-cov/ projects/release-arm-redux/usr.bin/clang/llvm-profdata/ - copied from r281852, head/usr.bin/clang/llvm-profdata/ projects/release-arm-redux/usr.sbin/bluetooth/hccontrol/le.c - copied unchanged from r281852, head/usr.sbin/bluetooth/hccontrol/le.c projects/release-arm-redux/usr.sbin/ntp/doc/drivers/ - copied from r281852, head/usr.sbin/ntp/doc/drivers/ projects/release-arm-redux/usr.sbin/ntp/doc/hints/ - copied from r281852, head/usr.sbin/ntp/doc/hints/ projects/release-arm-redux/usr.sbin/ntp/doc/icons/ - copied from r281852, head/usr.sbin/ntp/doc/icons/ projects/release-arm-redux/usr.sbin/ntp/doc/pic/ - copied from r281852, head/usr.sbin/ntp/doc/pic/ projects/release-arm-redux/usr.sbin/ntp/doc/scripts/ - copied from r281852, head/usr.sbin/ntp/doc/scripts/ projects/release-arm-redux/usr.sbin/ntp/doc/sntp.8 - copied unchanged from r281852, head/usr.sbin/ntp/doc/sntp.8 projects/release-arm-redux/usr.sbin/ntp/libntpevent/ - copied from r281852, head/usr.sbin/ntp/libntpevent/ projects/release-arm-redux/usr.sbin/ntp/ntpdc/nl.c - copied unchanged from r281852, head/usr.sbin/ntp/ntpdc/nl.c projects/release-arm-redux/usr.sbin/pmcstudy/pmcstudy.8 - copied unchanged from r281852, head/usr.sbin/pmcstudy/pmcstudy.8 Deleted: projects/release-arm-redux/contrib/bmake/unit-tests/comment projects/release-arm-redux/contrib/bmake/unit-tests/cond1 projects/release-arm-redux/contrib/bmake/unit-tests/doterror projects/release-arm-redux/contrib/bmake/unit-tests/dotwait projects/release-arm-redux/contrib/bmake/unit-tests/error projects/release-arm-redux/contrib/bmake/unit-tests/export projects/release-arm-redux/contrib/bmake/unit-tests/export-all projects/release-arm-redux/contrib/bmake/unit-tests/export-env projects/release-arm-redux/contrib/bmake/unit-tests/forloop projects/release-arm-redux/contrib/bmake/unit-tests/forsubst projects/release-arm-redux/contrib/bmake/unit-tests/hash projects/release-arm-redux/contrib/bmake/unit-tests/misc projects/release-arm-redux/contrib/bmake/unit-tests/moderrs projects/release-arm-redux/contrib/bmake/unit-tests/modmatch projects/release-arm-redux/contrib/bmake/unit-tests/modmisc projects/release-arm-redux/contrib/bmake/unit-tests/modorder projects/release-arm-redux/contrib/bmake/unit-tests/modts projects/release-arm-redux/contrib/bmake/unit-tests/modword projects/release-arm-redux/contrib/bmake/unit-tests/order projects/release-arm-redux/contrib/bmake/unit-tests/phony-end projects/release-arm-redux/contrib/bmake/unit-tests/posix projects/release-arm-redux/contrib/bmake/unit-tests/qequals projects/release-arm-redux/contrib/bmake/unit-tests/sunshcmd projects/release-arm-redux/contrib/bmake/unit-tests/sysv projects/release-arm-redux/contrib/bmake/unit-tests/ternary projects/release-arm-redux/contrib/bmake/unit-tests/test.exp projects/release-arm-redux/contrib/bmake/unit-tests/unexport projects/release-arm-redux/contrib/bmake/unit-tests/unexport-env projects/release-arm-redux/contrib/bmake/unit-tests/varcmd projects/release-arm-redux/contrib/ntp/arlib/ projects/release-arm-redux/contrib/ntp/clockstuff/clktest.c projects/release-arm-redux/contrib/ntp/excludes projects/release-arm-redux/contrib/ntp/html/build/ projects/release-arm-redux/contrib/ntp/html/drivers/driver2.html projects/release-arm-redux/contrib/ntp/html/gadget.html projects/release-arm-redux/contrib/ntp/html/groups.html projects/release-arm-redux/contrib/ntp/html/ldisc.html projects/release-arm-redux/contrib/ntp/html/manyopt.html projects/release-arm-redux/contrib/ntp/html/measure.html projects/release-arm-redux/contrib/ntp/html/mx4200data.html projects/release-arm-redux/contrib/ntp/html/notes.html projects/release-arm-redux/contrib/ntp/html/scripts/links10.txt projects/release-arm-redux/contrib/ntp/html/scripts/links11.txt projects/release-arm-redux/contrib/ntp/html/scripts/links12.txt projects/release-arm-redux/contrib/ntp/html/scripts/links7.txt projects/release-arm-redux/contrib/ntp/html/scripts/links8.txt projects/release-arm-redux/contrib/ntp/html/scripts/links9.txt projects/release-arm-redux/contrib/ntp/include/autogen-version.def projects/release-arm-redux/contrib/ntp/include/copyright.def projects/release-arm-redux/contrib/ntp/include/debug-opt.def projects/release-arm-redux/contrib/ntp/include/global.h projects/release-arm-redux/contrib/ntp/include/homerc.def projects/release-arm-redux/contrib/ntp/include/isc/app.h projects/release-arm-redux/contrib/ntp/include/isc/assertions.h projects/release-arm-redux/contrib/ntp/include/isc/boolean.h projects/release-arm-redux/contrib/ntp/include/isc/buffer.h projects/release-arm-redux/contrib/ntp/include/isc/error.h projects/release-arm-redux/contrib/ntp/include/isc/formatcheck.h projects/release-arm-redux/contrib/ntp/include/isc/int.h projects/release-arm-redux/contrib/ntp/include/isc/interfaceiter.h projects/release-arm-redux/contrib/ntp/include/isc/ipv6.h projects/release-arm-redux/contrib/ntp/include/isc/lang.h projects/release-arm-redux/contrib/ntp/include/isc/lib.h projects/release-arm-redux/contrib/ntp/include/isc/list.h projects/release-arm-redux/contrib/ntp/include/isc/magic.h projects/release-arm-redux/contrib/ntp/include/isc/msgcat.h projects/release-arm-redux/contrib/ntp/include/isc/msgs.h projects/release-arm-redux/contrib/ntp/include/isc/mutex.h projects/release-arm-redux/contrib/ntp/include/isc/net.h projects/release-arm-redux/contrib/ntp/include/isc/netaddr.h projects/release-arm-redux/contrib/ntp/include/isc/netscope.h projects/release-arm-redux/contrib/ntp/include/isc/offset.h projects/release-arm-redux/contrib/ntp/include/isc/once.h projects/release-arm-redux/contrib/ntp/include/isc/platform.h projects/release-arm-redux/contrib/ntp/include/isc/print.h projects/release-arm-redux/contrib/ntp/include/isc/region.h projects/release-arm-redux/contrib/ntp/include/isc/result.h projects/release-arm-redux/contrib/ntp/include/isc/sockaddr.h projects/release-arm-redux/contrib/ntp/include/isc/strerror.h projects/release-arm-redux/contrib/ntp/include/isc/string.h projects/release-arm-redux/contrib/ntp/include/isc/types.h projects/release-arm-redux/contrib/ntp/include/isc/util.h projects/release-arm-redux/contrib/ntp/include/ntp_sprintf.h projects/release-arm-redux/contrib/ntp/include/rsa_md5.h projects/release-arm-redux/contrib/ntp/include/version.def projects/release-arm-redux/contrib/ntp/kernel/README projects/release-arm-redux/contrib/ntp/kernel/chuinit.c projects/release-arm-redux/contrib/ntp/kernel/clkinit.c projects/release-arm-redux/contrib/ntp/kernel/sys/chudefs.h projects/release-arm-redux/contrib/ntp/kernel/sys/clkdefs.h projects/release-arm-redux/contrib/ntp/kernel/tty_chu.c projects/release-arm-redux/contrib/ntp/kernel/tty_chu_STREAMS.c projects/release-arm-redux/contrib/ntp/kernel/tty_clk.c projects/release-arm-redux/contrib/ntp/kernel/tty_clk_STREAMS.c projects/release-arm-redux/contrib/ntp/libisc/ projects/release-arm-redux/contrib/ntp/libntp/fptoa.c projects/release-arm-redux/contrib/ntp/libntp/fptoms.c projects/release-arm-redux/contrib/ntp/libntp/inttoa.c projects/release-arm-redux/contrib/ntp/libntp/lib_strbuf.h projects/release-arm-redux/contrib/ntp/libntp/md5c.c projects/release-arm-redux/contrib/ntp/libntp/memmove.c projects/release-arm-redux/contrib/ntp/libntp/mfptoa.c projects/release-arm-redux/contrib/ntp/libntp/mfptoms.c projects/release-arm-redux/contrib/ntp/libntp/msutotsf.c projects/release-arm-redux/contrib/ntp/libntp/strerror.c projects/release-arm-redux/contrib/ntp/libntp/strstr.c projects/release-arm-redux/contrib/ntp/libntp/tsftomsu.c projects/release-arm-redux/contrib/ntp/libntp/tstotv.c projects/release-arm-redux/contrib/ntp/libntp/tvtoa.c projects/release-arm-redux/contrib/ntp/libntp/tvtots.c projects/release-arm-redux/contrib/ntp/libntp/uinttoa.c projects/release-arm-redux/contrib/ntp/libntp/utvtoa.c projects/release-arm-redux/contrib/ntp/libopts/ projects/release-arm-redux/contrib/ntp/m4/ projects/release-arm-redux/contrib/ntp/ntpd/ntp_intres.c projects/release-arm-redux/contrib/ntp/ntpd/ntpd-opts.menu projects/release-arm-redux/contrib/ntp/ntpd/ntpd-opts.texi projects/release-arm-redux/contrib/ntp/ntpd/ntpd.1 projects/release-arm-redux/contrib/ntp/ntpd/ntpdsim-opts.c projects/release-arm-redux/contrib/ntp/ntpd/ntpdsim-opts.def projects/release-arm-redux/contrib/ntp/ntpd/ntpdsim-opts.h projects/release-arm-redux/contrib/ntp/ntpd/ntpdsim-opts.menu projects/release-arm-redux/contrib/ntp/ntpd/ntpdsim-opts.texi projects/release-arm-redux/contrib/ntp/ntpd/ntpdsim.1 projects/release-arm-redux/contrib/ntp/ntpd/refclock_trak.c projects/release-arm-redux/contrib/ntp/ntpdate/ntptime_config.c projects/release-arm-redux/contrib/ntp/ntpdate/ntptimeset.c projects/release-arm-redux/contrib/ntp/ntpdc/ntpdc-opts.menu projects/release-arm-redux/contrib/ntp/ntpdc/ntpdc-opts.texi projects/release-arm-redux/contrib/ntp/ntpdc/ntpdc.1 projects/release-arm-redux/contrib/ntp/ntpq/ntpq-opts.menu projects/release-arm-redux/contrib/ntp/ntpq/ntpq-opts.texi projects/release-arm-redux/contrib/ntp/ntpq/ntpq.1 projects/release-arm-redux/contrib/ntp/scripts/VersionName projects/release-arm-redux/contrib/ntp/scripts/calc_tickadj.in projects/release-arm-redux/contrib/ntp/scripts/checktime.in projects/release-arm-redux/contrib/ntp/scripts/fixautomakedepsmagic projects/release-arm-redux/contrib/ntp/scripts/freq_adj.in projects/release-arm-redux/contrib/ntp/scripts/genCommitLog projects/release-arm-redux/contrib/ntp/scripts/genver projects/release-arm-redux/contrib/ntp/scripts/hpadjtime.sh projects/release-arm-redux/contrib/ntp/scripts/html2man.in projects/release-arm-redux/contrib/ntp/scripts/mkver.in projects/release-arm-redux/contrib/ntp/scripts/ntp-close projects/release-arm-redux/contrib/ntp/scripts/ntp-groper projects/release-arm-redux/contrib/ntp/scripts/ntp-restart projects/release-arm-redux/contrib/ntp/scripts/ntp-status projects/release-arm-redux/contrib/ntp/scripts/ntp-wait.in projects/release-arm-redux/contrib/ntp/scripts/ntpsweep.in projects/release-arm-redux/contrib/ntp/scripts/ntptrace.in projects/release-arm-redux/contrib/ntp/scripts/rc1/ projects/release-arm-redux/contrib/ntp/scripts/rc2/ projects/release-arm-redux/contrib/ntp/sntp/README projects/release-arm-redux/contrib/ntp/sntp/autogen-version.def projects/release-arm-redux/contrib/ntp/sntp/header.h projects/release-arm-redux/contrib/ntp/sntp/internet.c projects/release-arm-redux/contrib/ntp/sntp/internet.h projects/release-arm-redux/contrib/ntp/sntp/kludges.h projects/release-arm-redux/contrib/ntp/sntp/libopts/COPYING.lgpl projects/release-arm-redux/contrib/ntp/sntp/libopts/enumeration.c projects/release-arm-redux/contrib/ntp/sntp/libopts/environment.c projects/release-arm-redux/contrib/ntp/sntp/sntp-opts.menu projects/release-arm-redux/contrib/ntp/sntp/sntp-opts.texi projects/release-arm-redux/contrib/ntp/sntp/sntp.1 projects/release-arm-redux/contrib/ntp/sntp/socket.c projects/release-arm-redux/contrib/ntp/sntp/timing.c projects/release-arm-redux/contrib/ntp/sntp/unix.c projects/release-arm-redux/contrib/ntp/sntp/version.def projects/release-arm-redux/contrib/ntp/util/ntp-keygen-opts.menu projects/release-arm-redux/contrib/ntp/util/ntp-keygen-opts.texi projects/release-arm-redux/contrib/ntp/util/ntp-keygen.1 projects/release-arm-redux/contrib/ntp/version projects/release-arm-redux/contrib/ntp/version.m4 projects/release-arm-redux/contrib/nvi/catalog/spell.ok projects/release-arm-redux/contrib/nvi/docs/TODO projects/release-arm-redux/contrib/nvi/docs/USD.doc/ projects/release-arm-redux/contrib/nvi/docs/changelog projects/release-arm-redux/contrib/nvi/docs/ev projects/release-arm-redux/contrib/nvi/docs/features projects/release-arm-redux/contrib/nvi/docs/help projects/release-arm-redux/contrib/nvi/docs/internals/ projects/release-arm-redux/contrib/nvi/docs/interp/ projects/release-arm-redux/contrib/nvi/docs/spell.ok projects/release-arm-redux/contrib/nvi/docs/tutorial/ projects/release-arm-redux/contrib/wpa/hostapd/dump_state.c projects/release-arm-redux/contrib/wpa/hostapd/dump_state.h projects/release-arm-redux/contrib/wpa/patches/openssl-0.9.8-tls-extensions.patch projects/release-arm-redux/contrib/wpa/patches/openssl-0.9.8d-tls-extensions.patch projects/release-arm-redux/contrib/wpa/patches/openssl-0.9.8e-tls-extensions.patch projects/release-arm-redux/contrib/wpa/patches/openssl-0.9.8g-tls-extensions.patch projects/release-arm-redux/contrib/wpa/patches/openssl-0.9.8h-tls-extensions.patch projects/release-arm-redux/contrib/wpa/patches/openssl-0.9.8i-tls-extensions.patch projects/release-arm-redux/contrib/wpa/patches/openssl-0.9.8x-tls-extensions.patch projects/release-arm-redux/contrib/wpa/patches/openssl-0.9.9-session-ticket.patch projects/release-arm-redux/contrib/wpa/src/crypto/crypto_nss.c projects/release-arm-redux/contrib/wpa/src/crypto/fips_prf_cryptoapi.c projects/release-arm-redux/contrib/wpa/src/crypto/fips_prf_gnutls.c projects/release-arm-redux/contrib/wpa/src/crypto/fips_prf_nss.c projects/release-arm-redux/contrib/wpa/src/crypto/tls_nss.c projects/release-arm-redux/contrib/wpa/src/utils/eloop_none.c projects/release-arm-redux/lib/libc/arm/sys/__vdso_gettc.c projects/release-arm-redux/lib/libc/mips/sys/__vdso_gettc.c projects/release-arm-redux/lib/libc/powerpc/sys/__vdso_gettc.c projects/release-arm-redux/lib/libc/powerpc64/sys/__vdso_gettc.c projects/release-arm-redux/lib/libc/sparc64/sys/__vdso_gettc.c projects/release-arm-redux/lib/libc/sys/ftruncate.c projects/release-arm-redux/lib/libc/sys/lseek.c projects/release-arm-redux/lib/libc/sys/mmap.c projects/release-arm-redux/lib/libc/sys/pread.c projects/release-arm-redux/lib/libc/sys/pwrite.c projects/release-arm-redux/lib/libc/sys/truncate.c projects/release-arm-redux/share/doc/usd/10.exref/ projects/release-arm-redux/share/doc/usd/11.vitut/ projects/release-arm-redux/share/doc/usd/12.vi/ projects/release-arm-redux/share/doc/usd/13.viref/ projects/release-arm-redux/sys/arm/arm/bootconfig.c projects/release-arm-redux/sys/arm/arm/cpufunc_asm_armv5.S projects/release-arm-redux/sys/arm/include/bootconfig.h projects/release-arm-redux/sys/boot/amd64/ projects/release-arm-redux/sys/boot/i386/efi/ projects/release-arm-redux/sys/contrib/altq/ projects/release-arm-redux/sys/fs/ext2fs/ext2_hash.c projects/release-arm-redux/sys/fs/ext2fs/ext2_htree.c projects/release-arm-redux/sys/netipsec/xform_ipip.c projects/release-arm-redux/sys/powerpc/aim/trap.c projects/release-arm-redux/sys/powerpc/booke/trap.c projects/release-arm-redux/tools/build/options/WITHOUT_SYSCALL_COMPAT projects/release-arm-redux/tools/regression/sockets/so_setfib/so_setfib.t projects/release-arm-redux/usr.sbin/crunch/crunchide/exec_aout.c projects/release-arm-redux/usr.sbin/pmcstudy/pmcstudy.1 Modified: projects/release-arm-redux/.arcconfig projects/release-arm-redux/.arclint projects/release-arm-redux/Makefile projects/release-arm-redux/Makefile.inc1 projects/release-arm-redux/ObsoleteFiles.inc projects/release-arm-redux/README projects/release-arm-redux/UPDATING projects/release-arm-redux/bin/csh/config.h projects/release-arm-redux/bin/csh/iconv_stub.h projects/release-arm-redux/bin/ed/glbl.c projects/release-arm-redux/bin/sh/sh.1 projects/release-arm-redux/bin/sh/tests/builtins/Makefile projects/release-arm-redux/bin/sh/tests/expansion/Makefile projects/release-arm-redux/bin/sh/trap.c projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/dtrace.1 projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.system.d projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.system.d.out projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4localicmp.ksh projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4localicmp.ksh.out projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4localtcp.ksh projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4remotetcp.ksh projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv6localicmp.ksh projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv6localicmp.ksh.out projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.localtcpstate.ksh projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.remotetcpstate.ksh projects/release-arm-redux/cddl/contrib/opensolaris/lib/libdtrace/common/drti.c projects/release-arm-redux/cddl/contrib/opensolaris/lib/libdtrace/common/dt_consume.c projects/release-arm-redux/cddl/contrib/opensolaris/lib/libdtrace/common/dt_link.c projects/release-arm-redux/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pid.c projects/release-arm-redux/cddl/lib/libdtrace/libproc_compat.h projects/release-arm-redux/cddl/usr.bin/ctfmerge/Makefile projects/release-arm-redux/cddl/usr.sbin/dtrace/tests/Makefile projects/release-arm-redux/cddl/usr.sbin/dtrace/tests/Makefile.inc1 projects/release-arm-redux/cddl/usr.sbin/dtrace/tests/tools/gentest.sh projects/release-arm-redux/contrib/binutils/bfd/elf-bfd.h projects/release-arm-redux/contrib/binutils/bfd/elf32-arm.c projects/release-arm-redux/contrib/binutils/include/elf/arm.h projects/release-arm-redux/contrib/bmake/ChangeLog projects/release-arm-redux/contrib/bmake/FILES projects/release-arm-redux/contrib/bmake/Makefile projects/release-arm-redux/contrib/bmake/PSD.doc/Makefile projects/release-arm-redux/contrib/bmake/PSD.doc/tutorial.ms projects/release-arm-redux/contrib/bmake/bmake.1 projects/release-arm-redux/contrib/bmake/bmake.cat1 projects/release-arm-redux/contrib/bmake/compat.c projects/release-arm-redux/contrib/bmake/configure projects/release-arm-redux/contrib/bmake/configure.in projects/release-arm-redux/contrib/bmake/job.c projects/release-arm-redux/contrib/bmake/lst.h projects/release-arm-redux/contrib/bmake/lst.lib/lstInt.h projects/release-arm-redux/contrib/bmake/lst.lib/lstRemove.c projects/release-arm-redux/contrib/bmake/main.c projects/release-arm-redux/contrib/bmake/make.1 projects/release-arm-redux/contrib/bmake/make.c projects/release-arm-redux/contrib/bmake/make.h projects/release-arm-redux/contrib/bmake/meta.c projects/release-arm-redux/contrib/bmake/mk/ChangeLog projects/release-arm-redux/contrib/bmake/mk/FILES projects/release-arm-redux/contrib/bmake/mk/auto.dep.mk projects/release-arm-redux/contrib/bmake/mk/auto.obj.mk projects/release-arm-redux/contrib/bmake/mk/autodep.mk projects/release-arm-redux/contrib/bmake/mk/dep.mk projects/release-arm-redux/contrib/bmake/mk/dirdeps.mk projects/release-arm-redux/contrib/bmake/mk/gendirdeps.mk projects/release-arm-redux/contrib/bmake/mk/install-mk projects/release-arm-redux/contrib/bmake/mk/links.mk projects/release-arm-redux/contrib/bmake/mk/meta.autodep.mk projects/release-arm-redux/contrib/bmake/mk/meta.stage.mk projects/release-arm-redux/contrib/bmake/mk/meta.sys.mk projects/release-arm-redux/contrib/bmake/mk/meta2deps.py projects/release-arm-redux/contrib/bmake/mk/meta2deps.sh projects/release-arm-redux/contrib/bmake/mk/mk-files.txt projects/release-arm-redux/contrib/bmake/mk/own.mk projects/release-arm-redux/contrib/bmake/mk/sys.dependfile.mk projects/release-arm-redux/contrib/bmake/nonints.h projects/release-arm-redux/contrib/bmake/parse.c projects/release-arm-redux/contrib/bmake/suff.c projects/release-arm-redux/contrib/bmake/targ.c projects/release-arm-redux/contrib/bmake/unit-tests/Makefile.in projects/release-arm-redux/contrib/bmake/var.c projects/release-arm-redux/contrib/elftoolchain/addr2line/addr2line.c projects/release-arm-redux/contrib/elftoolchain/common/_elftc.h projects/release-arm-redux/contrib/elftoolchain/common/elfdefinitions.h projects/release-arm-redux/contrib/elftoolchain/common/native-elf-format projects/release-arm-redux/contrib/elftoolchain/cxxfilt/cxxfilt.c projects/release-arm-redux/contrib/elftoolchain/elfcopy/archive.c projects/release-arm-redux/contrib/elftoolchain/elfcopy/ascii.c projects/release-arm-redux/contrib/elftoolchain/elfcopy/binary.c projects/release-arm-redux/contrib/elftoolchain/elfcopy/elfcopy.1 projects/release-arm-redux/contrib/elftoolchain/elfcopy/elfcopy.h projects/release-arm-redux/contrib/elftoolchain/elfcopy/main.c projects/release-arm-redux/contrib/elftoolchain/elfcopy/sections.c projects/release-arm-redux/contrib/elftoolchain/elfcopy/segments.c projects/release-arm-redux/contrib/elftoolchain/elfcopy/symbols.c projects/release-arm-redux/contrib/elftoolchain/libdwarf/_libdwarf.h projects/release-arm-redux/contrib/elftoolchain/libdwarf/libdwarf.h projects/release-arm-redux/contrib/elftoolchain/libdwarf/libdwarf_lineno.c projects/release-arm-redux/contrib/elftoolchain/libelf/_libelf.h projects/release-arm-redux/contrib/elftoolchain/libelf/_libelf_config.h projects/release-arm-redux/contrib/elftoolchain/libelf/elf_data.c projects/release-arm-redux/contrib/elftoolchain/libelf/elf_end.c projects/release-arm-redux/contrib/elftoolchain/libelf/elf_errmsg.c projects/release-arm-redux/contrib/elftoolchain/libelf/elf_errno.c projects/release-arm-redux/contrib/elftoolchain/libelf/elf_fill.c projects/release-arm-redux/contrib/elftoolchain/libelf/elf_flag.c projects/release-arm-redux/contrib/elftoolchain/libelf/elf_getarhdr.c projects/release-arm-redux/contrib/elftoolchain/libelf/elf_getarsym.c projects/release-arm-redux/contrib/elftoolchain/libelf/elf_getbase.c projects/release-arm-redux/contrib/elftoolchain/libelf/elf_getident.c projects/release-arm-redux/contrib/elftoolchain/libelf/elf_hash.c projects/release-arm-redux/contrib/elftoolchain/libelf/elf_kind.c projects/release-arm-redux/contrib/elftoolchain/libelf/elf_next.c projects/release-arm-redux/contrib/elftoolchain/libelf/elf_phnum.c projects/release-arm-redux/contrib/elftoolchain/libelf/elf_rand.c projects/release-arm-redux/contrib/elftoolchain/libelf/elf_rawfile.c projects/release-arm-redux/contrib/elftoolchain/libelf/elf_scn.c projects/release-arm-redux/contrib/elftoolchain/libelf/elf_shnum.c projects/release-arm-redux/contrib/elftoolchain/libelf/elf_shstrndx.c projects/release-arm-redux/contrib/elftoolchain/libelf/elf_version.c projects/release-arm-redux/contrib/elftoolchain/libelf/gelf.h projects/release-arm-redux/contrib/elftoolchain/libelf/gelf_cap.c projects/release-arm-redux/contrib/elftoolchain/libelf/gelf_checksum.c projects/release-arm-redux/contrib/elftoolchain/libelf/gelf_dyn.c projects/release-arm-redux/contrib/elftoolchain/libelf/gelf_ehdr.c projects/release-arm-redux/contrib/elftoolchain/libelf/gelf_fsize.c projects/release-arm-redux/contrib/elftoolchain/libelf/gelf_getclass.c projects/release-arm-redux/contrib/elftoolchain/libelf/gelf_move.c projects/release-arm-redux/contrib/elftoolchain/libelf/gelf_phdr.c projects/release-arm-redux/contrib/elftoolchain/libelf/gelf_rel.c projects/release-arm-redux/contrib/elftoolchain/libelf/gelf_rela.c projects/release-arm-redux/contrib/elftoolchain/libelf/gelf_shdr.c projects/release-arm-redux/contrib/elftoolchain/libelf/gelf_sym.c projects/release-arm-redux/contrib/elftoolchain/libelf/gelf_syminfo.c projects/release-arm-redux/contrib/elftoolchain/libelf/gelf_symshndx.c projects/release-arm-redux/contrib/elftoolchain/libelf/gelf_xlate.c projects/release-arm-redux/contrib/elftoolchain/libelf/libelf.h projects/release-arm-redux/contrib/elftoolchain/libelf/libelf_align.c projects/release-arm-redux/contrib/elftoolchain/libelf/libelf_allocate.c projects/release-arm-redux/contrib/elftoolchain/libelf/libelf_ar.c projects/release-arm-redux/contrib/elftoolchain/libelf/libelf_ar_util.c projects/release-arm-redux/contrib/elftoolchain/libelf/libelf_checksum.c projects/release-arm-redux/contrib/elftoolchain/libelf/libelf_convert.m4 projects/release-arm-redux/contrib/elftoolchain/libelf/libelf_data.c projects/release-arm-redux/contrib/elftoolchain/libelf/libelf_ehdr.c projects/release-arm-redux/contrib/elftoolchain/libelf/libelf_extended.c projects/release-arm-redux/contrib/elftoolchain/libelf/libelf_msize.m4 projects/release-arm-redux/contrib/elftoolchain/libelf/libelf_phdr.c projects/release-arm-redux/contrib/elftoolchain/libelf/libelf_shdr.c projects/release-arm-redux/contrib/elftoolchain/libelf/libelf_xlate.c projects/release-arm-redux/contrib/elftoolchain/libelftc/_libelftc.h projects/release-arm-redux/contrib/elftoolchain/libelftc/elftc_bfdtarget.c projects/release-arm-redux/contrib/elftoolchain/libelftc/elftc_demangle.c projects/release-arm-redux/contrib/elftoolchain/libelftc/libelftc.h projects/release-arm-redux/contrib/elftoolchain/libelftc/libelftc_bfdtarget.c projects/release-arm-redux/contrib/elftoolchain/nm/nm.c projects/release-arm-redux/contrib/elftoolchain/readelf/readelf.c projects/release-arm-redux/contrib/elftoolchain/size/size.c projects/release-arm-redux/contrib/elftoolchain/strings/strings.c projects/release-arm-redux/contrib/gcc/config/aarch64/aarch64.h projects/release-arm-redux/contrib/gcc/unwind-dw2.c projects/release-arm-redux/contrib/ipfilter/ipsend/44arp.c projects/release-arm-redux/contrib/ipfilter/ipsend/ip.c projects/release-arm-redux/contrib/ipfilter/ipsend/resend.c projects/release-arm-redux/contrib/ipfilter/lib/kmem.c projects/release-arm-redux/contrib/ipfilter/tools/ipfs.c projects/release-arm-redux/contrib/ipfilter/tools/ipftest.c projects/release-arm-redux/contrib/ipfilter/tools/ipnat.c projects/release-arm-redux/contrib/ipfilter/tools/ipnat_y.y projects/release-arm-redux/contrib/ipfilter/tools/ippool.c projects/release-arm-redux/contrib/ipfilter/tools/ippool_y.y projects/release-arm-redux/contrib/libarchive/libarchive/archive_read_disk_posix.c projects/release-arm-redux/contrib/libc++/include/type_traits projects/release-arm-redux/contrib/llvm/FREEBSD-Xlist projects/release-arm-redux/contrib/llvm/lib/MC/MCParser/AsmParser.cpp projects/release-arm-redux/contrib/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp projects/release-arm-redux/contrib/llvm/lib/Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp projects/release-arm-redux/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp projects/release-arm-redux/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.h projects/release-arm-redux/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.td projects/release-arm-redux/contrib/llvm/lib/Target/AArch64/AArch64MCInstLower.cpp projects/release-arm-redux/contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.h projects/release-arm-redux/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp projects/release-arm-redux/contrib/llvm/tools/lldb/source/Core/Mangled.cpp projects/release-arm-redux/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp projects/release-arm-redux/contrib/ntp/COPYRIGHT (contents, props changed) projects/release-arm-redux/contrib/ntp/ChangeLog (contents, props changed) projects/release-arm-redux/contrib/ntp/CommitLog projects/release-arm-redux/contrib/ntp/Makefile.am (contents, props changed) projects/release-arm-redux/contrib/ntp/Makefile.in (contents, props changed) projects/release-arm-redux/contrib/ntp/NEWS (contents, props changed) projects/release-arm-redux/contrib/ntp/README.hackers (contents, props changed) projects/release-arm-redux/contrib/ntp/WHERE-TO-START (contents, props changed) projects/release-arm-redux/contrib/ntp/aclocal.m4 (contents, props changed) projects/release-arm-redux/contrib/ntp/adjtimed/Makefile.am (contents, props changed) projects/release-arm-redux/contrib/ntp/adjtimed/Makefile.in (contents, props changed) projects/release-arm-redux/contrib/ntp/bincheck.mf projects/release-arm-redux/contrib/ntp/bootstrap projects/release-arm-redux/contrib/ntp/build (contents, props changed) projects/release-arm-redux/contrib/ntp/clockstuff/Makefile.am (contents, props changed) projects/release-arm-redux/contrib/ntp/clockstuff/Makefile.in (contents, props changed) projects/release-arm-redux/contrib/ntp/clockstuff/README (contents, props changed) projects/release-arm-redux/contrib/ntp/clockstuff/chutest.c (contents, props changed) projects/release-arm-redux/contrib/ntp/clockstuff/propdelay.c (contents, props changed) projects/release-arm-redux/contrib/ntp/conf/beauregard.conf (contents, props changed) projects/release-arm-redux/contrib/ntp/config.guess (contents, props changed) projects/release-arm-redux/contrib/ntp/config.h.in (contents, props changed) projects/release-arm-redux/contrib/ntp/config.sub (contents, props changed) projects/release-arm-redux/contrib/ntp/configure (contents, props changed) projects/release-arm-redux/contrib/ntp/configure.ac projects/release-arm-redux/contrib/ntp/dot.emacs (contents, props changed) projects/release-arm-redux/contrib/ntp/flock-build (contents, props changed) projects/release-arm-redux/contrib/ntp/html/accopt.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/assoc.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/audio.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/authopt.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/clockopt.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/confopt.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/copyright.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/debug.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver1.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver10.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver11.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver12.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver16.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver18.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver19.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver20.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver22.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver26.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver27.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver28.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver29.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver3.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver30.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver31.html projects/release-arm-redux/contrib/ntp/html/drivers/driver32.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver33.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver34.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver35.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver36.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver37.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver38.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver39.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver4.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver40.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver42.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver43.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver44.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver5.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver6.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver7.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver8.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/driver9.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/oncore-shmem.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/drivers/scripts/footer.txt projects/release-arm-redux/contrib/ntp/html/drivers/scripts/style.css projects/release-arm-redux/contrib/ntp/html/drivers/tf582_4.html projects/release-arm-redux/contrib/ntp/html/extern.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/howto.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/index.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/kern.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/keygen.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/miscopt.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/monopt.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/msyslog.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/ntp_conf.html projects/release-arm-redux/contrib/ntp/html/ntpd.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/ntpdate.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/ntpdc.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/ntpdsim.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/ntpdsim_new.html projects/release-arm-redux/contrib/ntp/html/ntpq.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/ntptime.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/ntptrace.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/parsedata.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/parsenew.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/pps.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/prefer.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/rdebug.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/refclock.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/release.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/scripts/footer.txt (contents, props changed) projects/release-arm-redux/contrib/ntp/html/scripts/style.css (contents, props changed) projects/release-arm-redux/contrib/ntp/html/sntp.html (contents, props changed) projects/release-arm-redux/contrib/ntp/html/tickadj.html (contents, props changed) projects/release-arm-redux/contrib/ntp/include/Makefile.am (contents, props changed) projects/release-arm-redux/contrib/ntp/include/Makefile.in (contents, props changed) projects/release-arm-redux/contrib/ntp/include/audio.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/binio.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/icom.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ieee754io.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/iosignal.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/isc/Makefile.am (contents, props changed) projects/release-arm-redux/contrib/ntp/include/isc/Makefile.in (contents, props changed) projects/release-arm-redux/contrib/ntp/include/isc/mem.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/l_stdlib.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/mbg_gps166.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntp.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntp_calendar.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntp_cmdargs.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntp_config.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntp_control.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntp_crypto.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntp_debug.h projects/release-arm-redux/contrib/ntp/include/ntp_filegen.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntp_fp.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntp_io.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntp_machine.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntp_malloc.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntp_md5.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntp_proto.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntp_random.h projects/release-arm-redux/contrib/ntp/include/ntp_refclock.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntp_request.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntp_rfc2553.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntp_select.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntp_stdlib.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntp_string.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntp_syscall.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntp_syslog.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntp_tty.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntp_types.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntp_unixtime.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntpd.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/ntpsim.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/parse.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/recvbuff.h (contents, props changed) projects/release-arm-redux/contrib/ntp/include/timepps-SCO.h projects/release-arm-redux/contrib/ntp/include/timepps-Solaris.h projects/release-arm-redux/contrib/ntp/include/timepps-SunOS.h projects/release-arm-redux/contrib/ntp/include/trimble.h (contents, props changed) projects/release-arm-redux/contrib/ntp/kernel/Makefile.am (contents, props changed) projects/release-arm-redux/contrib/ntp/kernel/Makefile.in (contents, props changed) projects/release-arm-redux/contrib/ntp/kernel/sys/Makefile.am (contents, props changed) projects/release-arm-redux/contrib/ntp/kernel/sys/Makefile.in (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/Makefile.am (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/Makefile.in (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/a_md5encrypt.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/atoint.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/atolfp.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/atouint.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/audio.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/authkeys.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/authreadkeys.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/authusekey.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/buftvtots.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/caljulian.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/caltontp.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/calyearstart.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/clocktime.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/clocktypes.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/decodenetnum.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/dofptoa.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/dolfptoa.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/emalloc.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/findconfig.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/getopt.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/hextoint.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/hextolfp.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/humandate.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/icom.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/iosignal.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/lib_strbuf.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/machines.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/mktime.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/modetoa.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/mstolfp.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/msyslog.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/netof.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/ntp_random.c projects/release-arm-redux/contrib/ntp/libntp/ntp_rfc2553.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/numtoa.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/numtohost.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/octtoint.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/prettydate.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/recvbuff.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/refnumtoa.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/snprintf.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/socktoa.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/socktohost.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/statestr.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/strdup.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/syssignal.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/systime.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/uglydate.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libntp/ymd2yd.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libparse/Makefile.am (contents, props changed) projects/release-arm-redux/contrib/ntp/libparse/Makefile.in (contents, props changed) projects/release-arm-redux/contrib/ntp/libparse/binio.c projects/release-arm-redux/contrib/ntp/libparse/clk_computime.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libparse/clk_dcf7000.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libparse/clk_hopf6021.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libparse/clk_meinberg.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libparse/clk_rawdcf.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libparse/clk_rcc8000.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libparse/clk_schmid.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libparse/clk_trimtaip.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libparse/clk_trimtsip.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libparse/clk_varitext.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libparse/clk_wharton.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libparse/data_mbg.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libparse/gpstolfp.c projects/release-arm-redux/contrib/ntp/libparse/ieee754io.c projects/release-arm-redux/contrib/ntp/libparse/info_trimble.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libparse/mfp_mul.c projects/release-arm-redux/contrib/ntp/libparse/mkinfo_rcmd.sed (contents, props changed) projects/release-arm-redux/contrib/ntp/libparse/mkinfo_scmd.sed (contents, props changed) projects/release-arm-redux/contrib/ntp/libparse/parse.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libparse/parse_conf.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libparse/parsesolaris.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libparse/parsestreams.c (contents, props changed) projects/release-arm-redux/contrib/ntp/libparse/trim_info.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ltmain.sh projects/release-arm-redux/contrib/ntp/ntpd/Makefile.am (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/Makefile.in (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/check_y2k.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/cmd_args.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/ntp_config.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/ntp_control.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/ntp_crypto.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/ntp_filegen.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/ntp_io.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/ntp_loopfilter.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/ntp_monitor.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/ntp_peer.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/ntp_proto.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/ntp_refclock.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/ntp_request.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/ntp_restrict.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/ntp_timer.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/ntp_util.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/ntpd-opts.c projects/release-arm-redux/contrib/ntp/ntpd/ntpd-opts.def projects/release-arm-redux/contrib/ntp/ntpd/ntpd-opts.h projects/release-arm-redux/contrib/ntp/ntpd/ntpd.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/ntpdbase-opts.def projects/release-arm-redux/contrib/ntp/ntpd/ntpsim.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_acts.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_arbiter.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_arc.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_as2201.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_atom.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_bancomm.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_chronolog.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_chu.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_conf.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_datum.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_dumbclock.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_fg.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_gpsvme.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_heath.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_hopfpci.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_hopfser.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_hpgps.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_irig.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_jjy.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_jupiter.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_leitch.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_local.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_msfees.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_mx4200.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_neoclock4x.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_nmea.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_oncore.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_palisade.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_palisade.h (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_parse.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_pcf.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_pst.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_ripencc.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_shm.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_tpro.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_true.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_tt560.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_ulink.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_wwv.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_wwvb.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpd/refclock_zyfer.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpdate/Makefile.am (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpdate/Makefile.in (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpdate/ntpdate.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpdate/ntpdate.h (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpdc/Makefile.am (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpdc/Makefile.in (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpdc/layout.std (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpdc/nl.pl (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpdc/nl.pl.in (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpdc/ntpdc-layout.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpdc/ntpdc-opts.c projects/release-arm-redux/contrib/ntp/ntpdc/ntpdc-opts.def projects/release-arm-redux/contrib/ntp/ntpdc/ntpdc-opts.h projects/release-arm-redux/contrib/ntp/ntpdc/ntpdc.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpdc/ntpdc.h (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpdc/ntpdc_ops.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpq/Makefile.am (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpq/Makefile.in (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpq/ntpq-opts.c projects/release-arm-redux/contrib/ntp/ntpq/ntpq-opts.def projects/release-arm-redux/contrib/ntp/ntpq/ntpq-opts.h projects/release-arm-redux/contrib/ntp/ntpq/ntpq-subs.c projects/release-arm-redux/contrib/ntp/ntpq/ntpq.c (contents, props changed) projects/release-arm-redux/contrib/ntp/ntpq/ntpq.h (contents, props changed) projects/release-arm-redux/contrib/ntp/packageinfo.sh projects/release-arm-redux/contrib/ntp/parseutil/Makefile.am (contents, props changed) projects/release-arm-redux/contrib/ntp/parseutil/Makefile.in (contents, props changed) projects/release-arm-redux/contrib/ntp/parseutil/dcfd.c (contents, props changed) projects/release-arm-redux/contrib/ntp/parseutil/testdcf.c (contents, props changed) projects/release-arm-redux/contrib/ntp/readme.y2kfixes (contents, props changed) projects/release-arm-redux/contrib/ntp/scripts/Makefile.am (contents, props changed) projects/release-arm-redux/contrib/ntp/scripts/Makefile.in (contents, props changed) projects/release-arm-redux/contrib/ntp/scripts/README (contents, props changed) projects/release-arm-redux/contrib/ntp/scripts/monitoring/ntp.pl (contents, props changed) projects/release-arm-redux/contrib/ntp/scripts/monitoring/ntptrap (contents, props changed) projects/release-arm-redux/contrib/ntp/scripts/ntpver.in (contents, props changed) projects/release-arm-redux/contrib/ntp/scripts/plot_summary.in (contents, props changed) projects/release-arm-redux/contrib/ntp/scripts/summary.in (contents, props changed) projects/release-arm-redux/contrib/ntp/sntp/COPYRIGHT projects/release-arm-redux/contrib/ntp/sntp/Makefile.am (contents, props changed) projects/release-arm-redux/contrib/ntp/sntp/Makefile.in (contents, props changed) projects/release-arm-redux/contrib/ntp/sntp/aclocal.m4 (contents, props changed) projects/release-arm-redux/contrib/ntp/sntp/bincheck.mf projects/release-arm-redux/contrib/ntp/sntp/config.guess (contents, props changed) projects/release-arm-redux/contrib/ntp/sntp/config.h.in projects/release-arm-redux/contrib/ntp/sntp/config.sub (contents, props changed) projects/release-arm-redux/contrib/ntp/sntp/configure (contents, props changed) projects/release-arm-redux/contrib/ntp/sntp/configure.ac (contents, props changed) projects/release-arm-redux/contrib/ntp/sntp/libopts/Makefile.am projects/release-arm-redux/contrib/ntp/sntp/libopts/Makefile.in projects/release-arm-redux/contrib/ntp/sntp/libopts/README projects/release-arm-redux/contrib/ntp/sntp/libopts/autoopts.c projects/release-arm-redux/contrib/ntp/sntp/libopts/autoopts.h projects/release-arm-redux/contrib/ntp/sntp/libopts/autoopts/options.h projects/release-arm-redux/contrib/ntp/sntp/libopts/autoopts/usage-txt.h projects/release-arm-redux/contrib/ntp/sntp/libopts/boolean.c projects/release-arm-redux/contrib/ntp/sntp/libopts/compat/compat.h projects/release-arm-redux/contrib/ntp/sntp/libopts/compat/pathfind.c projects/release-arm-redux/contrib/ntp/sntp/libopts/compat/snprintf.c projects/release-arm-redux/contrib/ntp/sntp/libopts/compat/strchr.c projects/release-arm-redux/contrib/ntp/sntp/libopts/compat/strdup.c projects/release-arm-redux/contrib/ntp/sntp/libopts/compat/windows-config.h projects/release-arm-redux/contrib/ntp/sntp/libopts/configfile.c projects/release-arm-redux/contrib/ntp/sntp/libopts/cook.c projects/release-arm-redux/contrib/ntp/sntp/libopts/genshell.c projects/release-arm-redux/contrib/ntp/sntp/libopts/genshell.h projects/release-arm-redux/contrib/ntp/sntp/libopts/libopts.c projects/release-arm-redux/contrib/ntp/sntp/libopts/load.c projects/release-arm-redux/contrib/ntp/sntp/libopts/m4/libopts.m4 projects/release-arm-redux/contrib/ntp/sntp/libopts/m4/liboptschk.m4 projects/release-arm-redux/contrib/ntp/sntp/libopts/makeshell.c projects/release-arm-redux/contrib/ntp/sntp/libopts/nested.c projects/release-arm-redux/contrib/ntp/sntp/libopts/numeric.c projects/release-arm-redux/contrib/ntp/sntp/libopts/pgusage.c projects/release-arm-redux/contrib/ntp/sntp/libopts/proto.h projects/release-arm-redux/contrib/ntp/sntp/libopts/putshell.c projects/release-arm-redux/contrib/ntp/sntp/libopts/restore.c projects/release-arm-redux/contrib/ntp/sntp/libopts/save.c projects/release-arm-redux/contrib/ntp/sntp/libopts/sort.c projects/release-arm-redux/contrib/ntp/sntp/libopts/stack.c projects/release-arm-redux/contrib/ntp/sntp/libopts/streqvcmp.c projects/release-arm-redux/contrib/ntp/sntp/libopts/text_mmap.c projects/release-arm-redux/contrib/ntp/sntp/libopts/tokenize.c projects/release-arm-redux/contrib/ntp/sntp/libopts/usage.c projects/release-arm-redux/contrib/ntp/sntp/libopts/version.c projects/release-arm-redux/contrib/ntp/sntp/ltmain.sh projects/release-arm-redux/contrib/ntp/sntp/main.c (contents, props changed) projects/release-arm-redux/contrib/ntp/sntp/sntp-opts.c projects/release-arm-redux/contrib/ntp/sntp/sntp-opts.def projects/release-arm-redux/contrib/ntp/sntp/sntp-opts.h projects/release-arm-redux/contrib/ntp/util/Makefile.am (contents, props changed) projects/release-arm-redux/contrib/ntp/util/Makefile.in (contents, props changed) projects/release-arm-redux/contrib/ntp/util/README (contents, props changed) projects/release-arm-redux/contrib/ntp/util/audio-pcm.c (contents, props changed) projects/release-arm-redux/contrib/ntp/util/hist.c (contents, props changed) projects/release-arm-redux/contrib/ntp/util/jitter.c (contents, props changed) projects/release-arm-redux/contrib/ntp/util/jitter.h projects/release-arm-redux/contrib/ntp/util/ntp-keygen-opts.c projects/release-arm-redux/contrib/ntp/util/ntp-keygen-opts.def projects/release-arm-redux/contrib/ntp/util/ntp-keygen-opts.h projects/release-arm-redux/contrib/ntp/util/ntp-keygen.c (contents, props changed) projects/release-arm-redux/contrib/ntp/util/ntptime.c (contents, props changed) projects/release-arm-redux/contrib/ntp/util/sht.c (contents, props changed) projects/release-arm-redux/contrib/ntp/util/tg.c projects/release-arm-redux/contrib/ntp/util/tickadj.c (contents, props changed) projects/release-arm-redux/contrib/nvi/README projects/release-arm-redux/contrib/nvi/catalog/dump.c projects/release-arm-redux/contrib/nvi/cl/cl.h projects/release-arm-redux/contrib/nvi/cl/cl_funcs.c projects/release-arm-redux/contrib/nvi/cl/cl_main.c projects/release-arm-redux/contrib/nvi/cl/cl_read.c projects/release-arm-redux/contrib/nvi/cl/cl_screen.c projects/release-arm-redux/contrib/nvi/cl/cl_term.c projects/release-arm-redux/contrib/nvi/cl/extern.h projects/release-arm-redux/contrib/nvi/common/common.h projects/release-arm-redux/contrib/nvi/common/conv.c projects/release-arm-redux/contrib/nvi/common/cut.c projects/release-arm-redux/contrib/nvi/common/delete.c projects/release-arm-redux/contrib/nvi/common/encoding.c projects/release-arm-redux/contrib/nvi/common/exf.c projects/release-arm-redux/contrib/nvi/common/extern.h projects/release-arm-redux/contrib/nvi/common/gs.h projects/release-arm-redux/contrib/nvi/common/key.c projects/release-arm-redux/contrib/nvi/common/line.c projects/release-arm-redux/contrib/nvi/common/log.c projects/release-arm-redux/contrib/nvi/common/main.c projects/release-arm-redux/contrib/nvi/common/mark.c projects/release-arm-redux/contrib/nvi/common/msg.c projects/release-arm-redux/contrib/nvi/common/options.c projects/release-arm-redux/contrib/nvi/common/options.h projects/release-arm-redux/contrib/nvi/common/options_f.c projects/release-arm-redux/contrib/nvi/common/put.c projects/release-arm-redux/contrib/nvi/common/recover.c projects/release-arm-redux/contrib/nvi/common/screen.c projects/release-arm-redux/contrib/nvi/common/search.c projects/release-arm-redux/contrib/nvi/common/seq.c projects/release-arm-redux/contrib/nvi/common/util.c projects/release-arm-redux/contrib/nvi/ex/ex.c projects/release-arm-redux/contrib/nvi/ex/ex.h projects/release-arm-redux/contrib/nvi/ex/ex_abbrev.c projects/release-arm-redux/contrib/nvi/ex/ex_append.c projects/release-arm-redux/contrib/nvi/ex/ex_args.c projects/release-arm-redux/contrib/nvi/ex/ex_argv.c projects/release-arm-redux/contrib/nvi/ex/ex_at.c projects/release-arm-redux/contrib/nvi/ex/ex_bang.c projects/release-arm-redux/contrib/nvi/ex/ex_cd.c projects/release-arm-redux/contrib/nvi/ex/ex_cscope.c projects/release-arm-redux/contrib/nvi/ex/ex_delete.c projects/release-arm-redux/contrib/nvi/ex/ex_display.c projects/release-arm-redux/contrib/nvi/ex/ex_edit.c projects/release-arm-redux/contrib/nvi/ex/ex_equal.c projects/release-arm-redux/contrib/nvi/ex/ex_file.c projects/release-arm-redux/contrib/nvi/ex/ex_filter.c projects/release-arm-redux/contrib/nvi/ex/ex_global.c projects/release-arm-redux/contrib/nvi/ex/ex_init.c projects/release-arm-redux/contrib/nvi/ex/ex_join.c projects/release-arm-redux/contrib/nvi/ex/ex_map.c projects/release-arm-redux/contrib/nvi/ex/ex_mark.c projects/release-arm-redux/contrib/nvi/ex/ex_mkexrc.c projects/release-arm-redux/contrib/nvi/ex/ex_move.c projects/release-arm-redux/contrib/nvi/ex/ex_open.c projects/release-arm-redux/contrib/nvi/ex/ex_preserve.c projects/release-arm-redux/contrib/nvi/ex/ex_print.c projects/release-arm-redux/contrib/nvi/ex/ex_put.c projects/release-arm-redux/contrib/nvi/ex/ex_quit.c projects/release-arm-redux/contrib/nvi/ex/ex_read.c projects/release-arm-redux/contrib/nvi/ex/ex_screen.c projects/release-arm-redux/contrib/nvi/ex/ex_script.c projects/release-arm-redux/contrib/nvi/ex/ex_set.c projects/release-arm-redux/contrib/nvi/ex/ex_shell.c projects/release-arm-redux/contrib/nvi/ex/ex_shift.c projects/release-arm-redux/contrib/nvi/ex/ex_source.c projects/release-arm-redux/contrib/nvi/ex/ex_stop.c projects/release-arm-redux/contrib/nvi/ex/ex_subst.c projects/release-arm-redux/contrib/nvi/ex/ex_tag.c projects/release-arm-redux/contrib/nvi/ex/ex_txt.c projects/release-arm-redux/contrib/nvi/ex/ex_undo.c projects/release-arm-redux/contrib/nvi/ex/ex_usage.c projects/release-arm-redux/contrib/nvi/ex/ex_util.c projects/release-arm-redux/contrib/nvi/ex/ex_version.c projects/release-arm-redux/contrib/nvi/ex/ex_visual.c projects/release-arm-redux/contrib/nvi/ex/ex_write.c projects/release-arm-redux/contrib/nvi/ex/ex_yank.c projects/release-arm-redux/contrib/nvi/ex/ex_z.c projects/release-arm-redux/contrib/nvi/ex/extern.h projects/release-arm-redux/contrib/nvi/ex/version.h projects/release-arm-redux/contrib/nvi/regex/COPYRIGHT projects/release-arm-redux/contrib/nvi/regex/cclass.h projects/release-arm-redux/contrib/nvi/regex/cname.h projects/release-arm-redux/contrib/nvi/regex/engine.c projects/release-arm-redux/contrib/nvi/regex/re_format.7 projects/release-arm-redux/contrib/nvi/regex/regcomp.c projects/release-arm-redux/contrib/nvi/regex/regerror.c projects/release-arm-redux/contrib/nvi/regex/regex.3 projects/release-arm-redux/contrib/nvi/regex/regex.h projects/release-arm-redux/contrib/nvi/regex/regex2.h projects/release-arm-redux/contrib/nvi/regex/regexec.c projects/release-arm-redux/contrib/nvi/regex/regfree.c projects/release-arm-redux/contrib/nvi/regex/utils.h projects/release-arm-redux/contrib/nvi/vi/extern.h projects/release-arm-redux/contrib/nvi/vi/getc.c projects/release-arm-redux/contrib/nvi/vi/v_at.c projects/release-arm-redux/contrib/nvi/vi/v_ch.c projects/release-arm-redux/contrib/nvi/vi/v_delete.c projects/release-arm-redux/contrib/nvi/vi/v_ex.c projects/release-arm-redux/contrib/nvi/vi/v_increment.c projects/release-arm-redux/contrib/nvi/vi/v_init.c projects/release-arm-redux/contrib/nvi/vi/v_itxt.c projects/release-arm-redux/contrib/nvi/vi/v_left.c projects/release-arm-redux/contrib/nvi/vi/v_mark.c projects/release-arm-redux/contrib/nvi/vi/v_match.c projects/release-arm-redux/contrib/nvi/vi/v_paragraph.c projects/release-arm-redux/contrib/nvi/vi/v_put.c projects/release-arm-redux/contrib/nvi/vi/v_redraw.c projects/release-arm-redux/contrib/nvi/vi/v_replace.c projects/release-arm-redux/contrib/nvi/vi/v_right.c projects/release-arm-redux/contrib/nvi/vi/v_screen.c projects/release-arm-redux/contrib/nvi/vi/v_scroll.c projects/release-arm-redux/contrib/nvi/vi/v_search.c projects/release-arm-redux/contrib/nvi/vi/v_section.c projects/release-arm-redux/contrib/nvi/vi/v_sentence.c projects/release-arm-redux/contrib/nvi/vi/v_status.c projects/release-arm-redux/contrib/nvi/vi/v_txt.c projects/release-arm-redux/contrib/nvi/vi/v_ulcase.c projects/release-arm-redux/contrib/nvi/vi/v_undo.c projects/release-arm-redux/contrib/nvi/vi/v_util.c projects/release-arm-redux/contrib/nvi/vi/v_word.c projects/release-arm-redux/contrib/nvi/vi/v_xchar.c projects/release-arm-redux/contrib/nvi/vi/v_yank.c projects/release-arm-redux/contrib/nvi/vi/v_z.c projects/release-arm-redux/contrib/nvi/vi/v_zexit.c projects/release-arm-redux/contrib/nvi/vi/vi.c projects/release-arm-redux/contrib/nvi/vi/vi.h projects/release-arm-redux/contrib/nvi/vi/vs_line.c projects/release-arm-redux/contrib/nvi/vi/vs_msg.c projects/release-arm-redux/contrib/nvi/vi/vs_refresh.c projects/release-arm-redux/contrib/nvi/vi/vs_relative.c projects/release-arm-redux/contrib/nvi/vi/vs_smap.c projects/release-arm-redux/contrib/nvi/vi/vs_split.c projects/release-arm-redux/contrib/pjdfstest/tests/open/20.t projects/release-arm-redux/contrib/pjdfstest/tests/truncate/11.t projects/release-arm-redux/contrib/smbfs/include/netsmb/smb_lib.h projects/release-arm-redux/contrib/smbfs/lib/smb/nls.c projects/release-arm-redux/contrib/smbfs/lib/smb/print.c projects/release-arm-redux/contrib/smbfs/lib/smb/rq.c projects/release-arm-redux/contrib/wpa/COPYING projects/release-arm-redux/contrib/wpa/README projects/release-arm-redux/contrib/wpa/hostapd/ChangeLog projects/release-arm-redux/contrib/wpa/hostapd/README projects/release-arm-redux/contrib/wpa/hostapd/README-WPS projects/release-arm-redux/contrib/wpa/hostapd/config_file.c projects/release-arm-redux/contrib/wpa/hostapd/ctrl_iface.c projects/release-arm-redux/contrib/wpa/hostapd/defconfig projects/release-arm-redux/contrib/wpa/hostapd/eap_register.c projects/release-arm-redux/contrib/wpa/hostapd/hlr_auc_gw.c projects/release-arm-redux/contrib/wpa/hostapd/hostapd.8 projects/release-arm-redux/contrib/wpa/hostapd/hostapd.conf projects/release-arm-redux/contrib/wpa/hostapd/hostapd.eap_user projects/release-arm-redux/contrib/wpa/hostapd/hostapd.eap_user_sqlite projects/release-arm-redux/contrib/wpa/hostapd/hostapd_cli.c projects/release-arm-redux/contrib/wpa/hostapd/main.c projects/release-arm-redux/contrib/wpa/src/ap/accounting.c projects/release-arm-redux/contrib/wpa/src/ap/ap_config.c projects/release-arm-redux/contrib/wpa/src/ap/ap_config.h projects/release-arm-redux/contrib/wpa/src/ap/ap_drv_ops.c projects/release-arm-redux/contrib/wpa/src/ap/ap_drv_ops.h projects/release-arm-redux/contrib/wpa/src/ap/ap_list.c projects/release-arm-redux/contrib/wpa/src/ap/ap_list.h projects/release-arm-redux/contrib/wpa/src/ap/ap_mlme.c projects/release-arm-redux/contrib/wpa/src/ap/authsrv.c projects/release-arm-redux/contrib/wpa/src/ap/beacon.c projects/release-arm-redux/contrib/wpa/src/ap/beacon.h projects/release-arm-redux/contrib/wpa/src/ap/ctrl_iface_ap.c projects/release-arm-redux/contrib/wpa/src/ap/ctrl_iface_ap.h projects/release-arm-redux/contrib/wpa/src/ap/drv_callbacks.c projects/release-arm-redux/contrib/wpa/src/ap/eap_user_db.c projects/release-arm-redux/contrib/wpa/src/ap/gas_serv.c projects/release-arm-redux/contrib/wpa/src/ap/gas_serv.h projects/release-arm-redux/contrib/wpa/src/ap/hostapd.c projects/release-arm-redux/contrib/wpa/src/ap/hostapd.h projects/release-arm-redux/contrib/wpa/src/ap/hs20.c projects/release-arm-redux/contrib/wpa/src/ap/hs20.h projects/release-arm-redux/contrib/wpa/src/ap/hw_features.c projects/release-arm-redux/contrib/wpa/src/ap/hw_features.h projects/release-arm-redux/contrib/wpa/src/ap/iapp.c projects/release-arm-redux/contrib/wpa/src/ap/ieee802_11.c projects/release-arm-redux/contrib/wpa/src/ap/ieee802_11.h projects/release-arm-redux/contrib/wpa/src/ap/ieee802_11_auth.c projects/release-arm-redux/contrib/wpa/src/ap/ieee802_11_ht.c projects/release-arm-redux/contrib/wpa/src/ap/ieee802_11_shared.c projects/release-arm-redux/contrib/wpa/src/ap/ieee802_11_vht.c projects/release-arm-redux/contrib/wpa/src/ap/ieee802_1x.c projects/release-arm-redux/contrib/wpa/src/ap/ieee802_1x.h projects/release-arm-redux/contrib/wpa/src/ap/p2p_hostapd.c projects/release-arm-redux/contrib/wpa/src/ap/peerkey_auth.c projects/release-arm-redux/contrib/wpa/src/ap/pmksa_cache_auth.c projects/release-arm-redux/contrib/wpa/src/ap/pmksa_cache_auth.h projects/release-arm-redux/contrib/wpa/src/ap/sta_info.c projects/release-arm-redux/contrib/wpa/src/ap/sta_info.h projects/release-arm-redux/contrib/wpa/src/ap/tkip_countermeasures.c projects/release-arm-redux/contrib/wpa/src/ap/vlan_init.c projects/release-arm-redux/contrib/wpa/src/ap/vlan_init.h projects/release-arm-redux/contrib/wpa/src/ap/wmm.c projects/release-arm-redux/contrib/wpa/src/ap/wmm.h projects/release-arm-redux/contrib/wpa/src/ap/wnm_ap.c projects/release-arm-redux/contrib/wpa/src/ap/wnm_ap.h projects/release-arm-redux/contrib/wpa/src/ap/wpa_auth.c projects/release-arm-redux/contrib/wpa/src/ap/wpa_auth.h projects/release-arm-redux/contrib/wpa/src/ap/wpa_auth_ft.c projects/release-arm-redux/contrib/wpa/src/ap/wpa_auth_glue.c projects/release-arm-redux/contrib/wpa/src/ap/wpa_auth_i.h projects/release-arm-redux/contrib/wpa/src/ap/wpa_auth_ie.c projects/release-arm-redux/contrib/wpa/src/ap/wpa_auth_ie.h projects/release-arm-redux/contrib/wpa/src/ap/wps_hostapd.c projects/release-arm-redux/contrib/wpa/src/ap/wps_hostapd.h projects/release-arm-redux/contrib/wpa/src/common/defs.h projects/release-arm-redux/contrib/wpa/src/common/eapol_common.h projects/release-arm-redux/contrib/wpa/src/common/ieee802_11_common.c projects/release-arm-redux/contrib/wpa/src/common/ieee802_11_common.h projects/release-arm-redux/contrib/wpa/src/common/ieee802_11_defs.h projects/release-arm-redux/contrib/wpa/src/common/privsep_commands.h projects/release-arm-redux/contrib/wpa/src/common/version.h projects/release-arm-redux/contrib/wpa/src/common/wpa_common.c projects/release-arm-redux/contrib/wpa/src/common/wpa_common.h projects/release-arm-redux/contrib/wpa/src/common/wpa_ctrl.c projects/release-arm-redux/contrib/wpa/src/common/wpa_ctrl.h projects/release-arm-redux/contrib/wpa/src/crypto/aes-ccm.c projects/release-arm-redux/contrib/wpa/src/crypto/aes-eax.c projects/release-arm-redux/contrib/wpa/src/crypto/aes-gcm.c projects/release-arm-redux/contrib/wpa/src/crypto/aes-omac1.c projects/release-arm-redux/contrib/wpa/src/crypto/aes-unwrap.c projects/release-arm-redux/contrib/wpa/src/crypto/aes-wrap.c projects/release-arm-redux/contrib/wpa/src/crypto/aes_wrap.h projects/release-arm-redux/contrib/wpa/src/crypto/crypto.h projects/release-arm-redux/contrib/wpa/src/crypto/crypto_internal-rsa.c projects/release-arm-redux/contrib/wpa/src/crypto/crypto_openssl.c projects/release-arm-redux/contrib/wpa/src/crypto/dh_groups.c projects/release-arm-redux/contrib/wpa/src/crypto/dh_groups.h projects/release-arm-redux/contrib/wpa/src/crypto/md5.c projects/release-arm-redux/contrib/wpa/src/crypto/milenage.c projects/release-arm-redux/contrib/wpa/src/crypto/ms_funcs.c projects/release-arm-redux/contrib/wpa/src/crypto/random.c projects/release-arm-redux/contrib/wpa/src/crypto/sha1-internal.c projects/release-arm-redux/contrib/wpa/src/crypto/sha1-prf.c projects/release-arm-redux/contrib/wpa/src/crypto/sha1.c projects/release-arm-redux/contrib/wpa/src/crypto/sha256-prf.c projects/release-arm-redux/contrib/wpa/src/crypto/sha256.h projects/release-arm-redux/contrib/wpa/src/crypto/tls.h projects/release-arm-redux/contrib/wpa/src/crypto/tls_gnutls.c projects/release-arm-redux/contrib/wpa/src/crypto/tls_internal.c projects/release-arm-redux/contrib/wpa/src/crypto/tls_none.c projects/release-arm-redux/contrib/wpa/src/crypto/tls_openssl.c projects/release-arm-redux/contrib/wpa/src/crypto/tls_schannel.c projects/release-arm-redux/contrib/wpa/src/drivers/driver.h projects/release-arm-redux/contrib/wpa/src/drivers/driver_bsd.c projects/release-arm-redux/contrib/wpa/src/drivers/driver_common.c projects/release-arm-redux/contrib/wpa/src/drivers/driver_ndis.c projects/release-arm-redux/contrib/wpa/src/drivers/driver_privsep.c projects/release-arm-redux/contrib/wpa/src/drivers/driver_wired.c projects/release-arm-redux/contrib/wpa/src/drivers/drivers.c projects/release-arm-redux/contrib/wpa/src/eap_common/eap_common.c projects/release-arm-redux/contrib/wpa/src/eap_common/eap_common.h projects/release-arm-redux/contrib/wpa/src/eap_common/eap_defs.h projects/release-arm-redux/contrib/wpa/src/eap_common/eap_fast_common.c projects/release-arm-redux/contrib/wpa/src/eap_common/eap_fast_common.h projects/release-arm-redux/contrib/wpa/src/eap_common/eap_gpsk_common.c projects/release-arm-redux/contrib/wpa/src/eap_common/eap_gpsk_common.h projects/release-arm-redux/contrib/wpa/src/eap_common/eap_ikev2_common.c projects/release-arm-redux/contrib/wpa/src/eap_common/eap_ikev2_common.h projects/release-arm-redux/contrib/wpa/src/eap_common/eap_pax_common.c projects/release-arm-redux/contrib/wpa/src/eap_common/eap_pax_common.h projects/release-arm-redux/contrib/wpa/src/eap_common/eap_pwd_common.c projects/release-arm-redux/contrib/wpa/src/eap_common/eap_pwd_common.h projects/release-arm-redux/contrib/wpa/src/eap_common/eap_sim_common.c projects/release-arm-redux/contrib/wpa/src/eap_common/eap_sim_common.h projects/release-arm-redux/contrib/wpa/src/eap_common/ikev2_common.c projects/release-arm-redux/contrib/wpa/src/eap_common/ikev2_common.h projects/release-arm-redux/contrib/wpa/src/eap_peer/eap.c projects/release-arm-redux/contrib/wpa/src/eap_peer/eap.h projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_aka.c projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_config.h projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_fast.c projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_fast_pac.c projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_gpsk.c projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_i.h projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_ikev2.c projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_leap.c projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_methods.c projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_methods.h projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_mschapv2.c projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_pax.c projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_peap.c projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_psk.c projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_pwd.c projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_sake.c projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_sim.c projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_tls.c projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_tls_common.c projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_tls_common.h projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_tnc.c projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_ttls.c projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_vendor_test.c projects/release-arm-redux/contrib/wpa/src/eap_peer/eap_wsc.c projects/release-arm-redux/contrib/wpa/src/eap_peer/ikev2.c projects/release-arm-redux/contrib/wpa/src/eap_peer/mschapv2.c projects/release-arm-redux/contrib/wpa/src/eap_peer/tncc.c projects/release-arm-redux/contrib/wpa/src/eap_server/eap.h projects/release-arm-redux/contrib/wpa/src/eap_server/eap_i.h projects/release-arm-redux/contrib/wpa/src/eap_server/eap_methods.h projects/release-arm-redux/contrib/wpa/src/eap_server/eap_server.c projects/release-arm-redux/contrib/wpa/src/eap_server/eap_server_aka.c projects/release-arm-redux/contrib/wpa/src/eap_server/eap_server_fast.c projects/release-arm-redux/contrib/wpa/src/eap_server/eap_server_gpsk.c projects/release-arm-redux/contrib/wpa/src/eap_server/eap_server_gtc.c projects/release-arm-redux/contrib/wpa/src/eap_server/eap_server_identity.c projects/release-arm-redux/contrib/wpa/src/eap_server/eap_server_ikev2.c projects/release-arm-redux/contrib/wpa/src/eap_server/eap_server_md5.c projects/release-arm-redux/contrib/wpa/src/eap_server/eap_server_methods.c projects/release-arm-redux/contrib/wpa/src/eap_server/eap_server_mschapv2.c projects/release-arm-redux/contrib/wpa/src/eap_server/eap_server_pax.c projects/release-arm-redux/contrib/wpa/src/eap_server/eap_server_peap.c projects/release-arm-redux/contrib/wpa/src/eap_server/eap_server_psk.c projects/release-arm-redux/contrib/wpa/src/eap_server/eap_server_pwd.c projects/release-arm-redux/contrib/wpa/src/eap_server/eap_server_sake.c projects/release-arm-redux/contrib/wpa/src/eap_server/eap_server_sim.c projects/release-arm-redux/contrib/wpa/src/eap_server/eap_server_tls.c projects/release-arm-redux/contrib/wpa/src/eap_server/eap_server_tls_common.c projects/release-arm-redux/contrib/wpa/src/eap_server/eap_server_tnc.c projects/release-arm-redux/contrib/wpa/src/eap_server/eap_server_ttls.c projects/release-arm-redux/contrib/wpa/src/eap_server/eap_server_wsc.c projects/release-arm-redux/contrib/wpa/src/eap_server/eap_sim_db.c projects/release-arm-redux/contrib/wpa/src/eap_server/eap_tls_common.h projects/release-arm-redux/contrib/wpa/src/eap_server/ikev2.c projects/release-arm-redux/contrib/wpa/src/eap_server/tncs.c projects/release-arm-redux/contrib/wpa/src/eapol_auth/eapol_auth_dump.c projects/release-arm-redux/contrib/wpa/src/eapol_auth/eapol_auth_sm.c projects/release-arm-redux/contrib/wpa/src/eapol_auth/eapol_auth_sm.h projects/release-arm-redux/contrib/wpa/src/eapol_auth/eapol_auth_sm_i.h projects/release-arm-redux/contrib/wpa/src/eapol_supp/eapol_supp_sm.c projects/release-arm-redux/contrib/wpa/src/eapol_supp/eapol_supp_sm.h projects/release-arm-redux/contrib/wpa/src/l2_packet/l2_packet.h projects/release-arm-redux/contrib/wpa/src/l2_packet/l2_packet_freebsd.c projects/release-arm-redux/contrib/wpa/src/l2_packet/l2_packet_ndis.c projects/release-arm-redux/contrib/wpa/src/l2_packet/l2_packet_none.c projects/release-arm-redux/contrib/wpa/src/l2_packet/l2_packet_privsep.c projects/release-arm-redux/contrib/wpa/src/p2p/p2p.c projects/release-arm-redux/contrib/wpa/src/p2p/p2p.h projects/release-arm-redux/contrib/wpa/src/p2p/p2p_build.c projects/release-arm-redux/contrib/wpa/src/p2p/p2p_dev_disc.c projects/release-arm-redux/contrib/wpa/src/p2p/p2p_go_neg.c projects/release-arm-redux/contrib/wpa/src/p2p/p2p_group.c projects/release-arm-redux/contrib/wpa/src/p2p/p2p_i.h projects/release-arm-redux/contrib/wpa/src/p2p/p2p_invitation.c projects/release-arm-redux/contrib/wpa/src/p2p/p2p_parse.c projects/release-arm-redux/contrib/wpa/src/p2p/p2p_pd.c projects/release-arm-redux/contrib/wpa/src/p2p/p2p_sd.c projects/release-arm-redux/contrib/wpa/src/p2p/p2p_utils.c projects/release-arm-redux/contrib/wpa/src/radius/radius.c projects/release-arm-redux/contrib/wpa/src/radius/radius.h projects/release-arm-redux/contrib/wpa/src/radius/radius_client.c projects/release-arm-redux/contrib/wpa/src/radius/radius_das.c projects/release-arm-redux/contrib/wpa/src/radius/radius_das.h projects/release-arm-redux/contrib/wpa/src/radius/radius_server.c projects/release-arm-redux/contrib/wpa/src/radius/radius_server.h projects/release-arm-redux/contrib/wpa/src/rsn_supp/peerkey.c projects/release-arm-redux/contrib/wpa/src/rsn_supp/peerkey.h projects/release-arm-redux/contrib/wpa/src/rsn_supp/pmksa_cache.c projects/release-arm-redux/contrib/wpa/src/rsn_supp/pmksa_cache.h projects/release-arm-redux/contrib/wpa/src/rsn_supp/preauth.c projects/release-arm-redux/contrib/wpa/src/rsn_supp/preauth.h projects/release-arm-redux/contrib/wpa/src/rsn_supp/tdls.c projects/release-arm-redux/contrib/wpa/src/rsn_supp/wpa.c projects/release-arm-redux/contrib/wpa/src/rsn_supp/wpa.h projects/release-arm-redux/contrib/wpa/src/rsn_supp/wpa_ft.c projects/release-arm-redux/contrib/wpa/src/rsn_supp/wpa_i.h projects/release-arm-redux/contrib/wpa/src/rsn_supp/wpa_ie.c projects/release-arm-redux/contrib/wpa/src/rsn_supp/wpa_ie.h projects/release-arm-redux/contrib/wpa/src/tls/asn1.c projects/release-arm-redux/contrib/wpa/src/tls/asn1.h projects/release-arm-redux/contrib/wpa/src/tls/libtommath.c projects/release-arm-redux/contrib/wpa/src/tls/pkcs1.c projects/release-arm-redux/contrib/wpa/src/tls/pkcs1.h projects/release-arm-redux/contrib/wpa/src/tls/rsa.c projects/release-arm-redux/contrib/wpa/src/tls/rsa.h projects/release-arm-redux/contrib/wpa/src/tls/tlsv1_client.c projects/release-arm-redux/contrib/wpa/src/tls/tlsv1_client_read.c projects/release-arm-redux/contrib/wpa/src/tls/tlsv1_client_write.c projects/release-arm-redux/contrib/wpa/src/tls/tlsv1_common.c projects/release-arm-redux/contrib/wpa/src/tls/tlsv1_common.h projects/release-arm-redux/contrib/wpa/src/tls/tlsv1_record.c projects/release-arm-redux/contrib/wpa/src/tls/tlsv1_server.c projects/release-arm-redux/contrib/wpa/src/tls/tlsv1_server.h projects/release-arm-redux/contrib/wpa/src/tls/tlsv1_server_i.h projects/release-arm-redux/contrib/wpa/src/tls/tlsv1_server_read.c projects/release-arm-redux/contrib/wpa/src/tls/tlsv1_server_write.c projects/release-arm-redux/contrib/wpa/src/tls/x509v3.c projects/release-arm-redux/contrib/wpa/src/utils/base64.c projects/release-arm-redux/contrib/wpa/src/utils/build_config.h projects/release-arm-redux/contrib/wpa/src/utils/common.c projects/release-arm-redux/contrib/wpa/src/utils/common.h projects/release-arm-redux/contrib/wpa/src/utils/edit.c projects/release-arm-redux/contrib/wpa/src/utils/edit_readline.c projects/release-arm-redux/contrib/wpa/src/utils/edit_simple.c projects/release-arm-redux/contrib/wpa/src/utils/eloop.c projects/release-arm-redux/contrib/wpa/src/utils/eloop.h projects/release-arm-redux/contrib/wpa/src/utils/eloop_win.c projects/release-arm-redux/contrib/wpa/src/utils/ext_password_test.c projects/release-arm-redux/contrib/wpa/src/utils/ip_addr.c projects/release-arm-redux/contrib/wpa/src/utils/ip_addr.h projects/release-arm-redux/contrib/wpa/src/utils/list.h projects/release-arm-redux/contrib/wpa/src/utils/os.h projects/release-arm-redux/contrib/wpa/src/utils/os_internal.c projects/release-arm-redux/contrib/wpa/src/utils/os_none.c projects/release-arm-redux/contrib/wpa/src/utils/os_unix.c projects/release-arm-redux/contrib/wpa/src/utils/os_win32.c projects/release-arm-redux/contrib/wpa/src/utils/pcsc_funcs.c projects/release-arm-redux/contrib/wpa/src/utils/pcsc_funcs.h projects/release-arm-redux/contrib/wpa/src/utils/radiotap.c projects/release-arm-redux/contrib/wpa/src/utils/radiotap.h projects/release-arm-redux/contrib/wpa/src/utils/radiotap_iter.h projects/release-arm-redux/contrib/wpa/src/utils/trace.c projects/release-arm-redux/contrib/wpa/src/utils/trace.h projects/release-arm-redux/contrib/wpa/src/utils/uuid.c projects/release-arm-redux/contrib/wpa/src/utils/wpa_debug.c projects/release-arm-redux/contrib/wpa/src/utils/wpa_debug.h projects/release-arm-redux/contrib/wpa/src/utils/wpabuf.c projects/release-arm-redux/contrib/wpa/src/utils/wpabuf.h projects/release-arm-redux/contrib/wpa/src/wps/http_client.c projects/release-arm-redux/contrib/wpa/src/wps/http_server.c projects/release-arm-redux/contrib/wpa/src/wps/httpread.c projects/release-arm-redux/contrib/wpa/src/wps/ndef.c projects/release-arm-redux/contrib/wpa/src/wps/wps.c projects/release-arm-redux/contrib/wpa/src/wps/wps.h projects/release-arm-redux/contrib/wpa/src/wps/wps_attr_build.c projects/release-arm-redux/contrib/wpa/src/wps/wps_attr_parse.c projects/release-arm-redux/contrib/wpa/src/wps/wps_attr_parse.h projects/release-arm-redux/contrib/wpa/src/wps/wps_attr_process.c projects/release-arm-redux/contrib/wpa/src/wps/wps_common.c projects/release-arm-redux/contrib/wpa/src/wps/wps_defs.h projects/release-arm-redux/contrib/wpa/src/wps/wps_dev_attr.c projects/release-arm-redux/contrib/wpa/src/wps/wps_dev_attr.h projects/release-arm-redux/contrib/wpa/src/wps/wps_enrollee.c projects/release-arm-redux/contrib/wpa/src/wps/wps_er.c projects/release-arm-redux/contrib/wpa/src/wps/wps_er.h projects/release-arm-redux/contrib/wpa/src/wps/wps_er_ssdp.c projects/release-arm-redux/contrib/wpa/src/wps/wps_i.h projects/release-arm-redux/contrib/wpa/src/wps/wps_registrar.c projects/release-arm-redux/contrib/wpa/src/wps/wps_upnp.c projects/release-arm-redux/contrib/wpa/src/wps/wps_upnp_ap.c projects/release-arm-redux/contrib/wpa/src/wps/wps_upnp_i.h projects/release-arm-redux/contrib/wpa/src/wps/wps_upnp_ssdp.c projects/release-arm-redux/contrib/wpa/src/wps/wps_upnp_web.c projects/release-arm-redux/contrib/wpa/src/wps/wps_validate.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/ChangeLog projects/release-arm-redux/contrib/wpa/wpa_supplicant/README projects/release-arm-redux/contrib/wpa/wpa_supplicant/README-HS20 projects/release-arm-redux/contrib/wpa/wpa_supplicant/README-P2P projects/release-arm-redux/contrib/wpa/wpa_supplicant/README-WPS projects/release-arm-redux/contrib/wpa/wpa_supplicant/ap.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/ap.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/bgscan.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/bgscan.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/bgscan_learn.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/bgscan_simple.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/bss.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/bss.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/config.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/config.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/config_file.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/config_none.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/config_ssid.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/ctrl_iface.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/ctrl_iface.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/ctrl_iface_named_pipe.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/ctrl_iface_udp.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/ctrl_iface_unix.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/dbus/Makefile projects/release-arm-redux/contrib/wpa/wpa_supplicant/dbus/dbus_common.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/dbus/dbus_dict_helpers.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/dbus/dbus_dict_helpers.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/dbus/dbus_new.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/dbus/dbus_new.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_p2p.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_p2p.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_wps.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/dbus/dbus_new_helpers.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/dbus/dbus_new_helpers.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/dbus/dbus_new_introspect.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/dbus/dbus_old.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/dbus/dbus_old.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/dbus/dbus_old_handlers.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/dbus/dbus_old_handlers.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/dbus/dbus_old_handlers_wps.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/defconfig projects/release-arm-redux/contrib/wpa/wpa_supplicant/driver_i.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/eap_register.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/eapol_test.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/events.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/examples/p2p-action.sh projects/release-arm-redux/contrib/wpa/wpa_supplicant/examples/wps-ap-cli projects/release-arm-redux/contrib/wpa/wpa_supplicant/examples/wps-nfc.py projects/release-arm-redux/contrib/wpa/wpa_supplicant/gas_query.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/gas_query.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/hs20_supplicant.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/hs20_supplicant.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/ibss_rsn.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/ibss_rsn.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/interworking.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/interworking.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/main.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/main_none.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/notify.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/notify.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/offchannel.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/p2p_supplicant.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/p2p_supplicant.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/preauth_test.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/scan.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/scan.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/sme.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/sme.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/tests/test_wpa.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/todo.txt projects/release-arm-redux/contrib/wpa/wpa_supplicant/wifi_display.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/wifi_display.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/wnm_sta.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/wnm_sta.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/wpa_cli.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/wpa_priv.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/wpa_supplicant.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/wpa_supplicant.conf projects/release-arm-redux/contrib/wpa/wpa_supplicant/wpa_supplicant_i.h projects/release-arm-redux/contrib/wpa/wpa_supplicant/wpa_supplicant_template.conf projects/release-arm-redux/contrib/wpa/wpa_supplicant/wpas_glue.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/wps_supplicant.c projects/release-arm-redux/contrib/wpa/wpa_supplicant/wps_supplicant.h projects/release-arm-redux/contrib/xz/ChangeLog projects/release-arm-redux/contrib/xz/THANKS projects/release-arm-redux/contrib/xz/src/common/tuklib_cpucores.c projects/release-arm-redux/contrib/xz/src/common/tuklib_integer.h projects/release-arm-redux/contrib/xz/src/liblzma/api/lzma/version.h projects/release-arm-redux/contrib/xz/src/liblzma/common/memcmplen.h projects/release-arm-redux/contrib/xz/src/liblzma/lz/lz_encoder.c projects/release-arm-redux/contrib/xz/src/liblzma/lzma/lzma_encoder_optimum_fast.c projects/release-arm-redux/contrib/xz/src/xz/file_io.c projects/release-arm-redux/crypto/openssh/clientloop.c projects/release-arm-redux/etc/Makefile projects/release-arm-redux/etc/defaults/periodic.conf projects/release-arm-redux/etc/defaults/rc.conf projects/release-arm-redux/etc/login.conf projects/release-arm-redux/etc/mtree/BSD.include.dist projects/release-arm-redux/etc/mtree/BSD.usr.dist projects/release-arm-redux/etc/ntp.conf projects/release-arm-redux/etc/periodic/daily/420.status-network projects/release-arm-redux/etc/rc.d/hostid_save projects/release-arm-redux/etc/rc.d/mountd projects/release-arm-redux/etc/rc.d/nfsd projects/release-arm-redux/etc/rc.d/pflog projects/release-arm-redux/games/fortune/tools/do_uniq.py projects/release-arm-redux/gnu/lib/libgcc/Makefile projects/release-arm-redux/gnu/usr.bin/binutils/Makefile projects/release-arm-redux/include/Makefile projects/release-arm-redux/include/iconv.h projects/release-arm-redux/include/pthread.h projects/release-arm-redux/include/signal.h projects/release-arm-redux/include/stdlib.h projects/release-arm-redux/lib/csu/i386-elf/Makefile projects/release-arm-redux/lib/libarchive/Makefile projects/release-arm-redux/lib/libbluetooth/bluetooth.c projects/release-arm-redux/lib/libbluetooth/dev.c projects/release-arm-redux/lib/libbluetooth/hci.c projects/release-arm-redux/lib/libc/Makefile projects/release-arm-redux/lib/libc/aarch64/Makefile.inc projects/release-arm-redux/lib/libc/amd64/sys/Makefile.inc projects/release-arm-redux/lib/libc/arm/sys/Makefile.inc projects/release-arm-redux/lib/libc/gen/fts.c projects/release-arm-redux/lib/libc/gen/setmode.c projects/release-arm-redux/lib/libc/gen/setproctitle.c projects/release-arm-redux/lib/libc/gen/tls.c projects/release-arm-redux/lib/libc/gen/waitid.c projects/release-arm-redux/lib/libc/gen/wordexp.c projects/release-arm-redux/lib/libc/i386/sys/Makefile.inc projects/release-arm-redux/lib/libc/iconv/__iconv.c projects/release-arm-redux/lib/libc/iconv/bsd_iconv.c projects/release-arm-redux/lib/libc/iconv/citrus_iconv.h projects/release-arm-redux/lib/libc/iconv/citrus_iconv_local.h projects/release-arm-redux/lib/libc/iconv/citrus_none.c projects/release-arm-redux/lib/libc/iconv/citrus_prop.c projects/release-arm-redux/lib/libc/iconv/citrus_stdenc.h projects/release-arm-redux/lib/libc/iconv/citrus_stdenc_local.h projects/release-arm-redux/lib/libc/iconv/citrus_stdenc_template.h projects/release-arm-redux/lib/libc/iconv/iconv-internal.h projects/release-arm-redux/lib/libc/iconv/iconv.3 projects/release-arm-redux/lib/libc/iconv/iconv.c projects/release-arm-redux/lib/libc/iconv/iconv_compat.c projects/release-arm-redux/lib/libc/include/compat.h projects/release-arm-redux/lib/libc/include/libc_private.h projects/release-arm-redux/lib/libc/locale/cXXrtomb_iconv.h projects/release-arm-redux/lib/libc/locale/mbrtocXX_iconv.h projects/release-arm-redux/lib/libc/mips/sys/Makefile.inc projects/release-arm-redux/lib/libc/net/Symbol.map projects/release-arm-redux/lib/libc/net/getaddrinfo.c projects/release-arm-redux/lib/libc/net/name6.c projects/release-arm-redux/lib/libc/powerpc/Makefile.inc projects/release-arm-redux/lib/libc/powerpc/gen/_setjmp.S projects/release-arm-redux/lib/libc/powerpc/gen/setjmp.S projects/release-arm-redux/lib/libc/powerpc/gen/sigsetjmp.S projects/release-arm-redux/lib/libc/powerpc/sys/Makefile.inc projects/release-arm-redux/lib/libc/powerpc64/Makefile.inc projects/release-arm-redux/lib/libc/powerpc64/sys/Makefile.inc projects/release-arm-redux/lib/libc/sparc64/Makefile.inc projects/release-arm-redux/lib/libc/sparc64/sys/Makefile.inc projects/release-arm-redux/lib/libc/stdio/flags.c projects/release-arm-redux/lib/libc/string/strlcat.c projects/release-arm-redux/lib/libc/string/strlcpy.c projects/release-arm-redux/lib/libc/sys/Makefile.inc projects/release-arm-redux/lib/libc/sys/fcntl.c projects/release-arm-redux/lib/libc/sys/interposing_table.c projects/release-arm-redux/lib/libc/sys/kqueue.2 projects/release-arm-redux/lib/libc/sys/mount.2 projects/release-arm-redux/lib/libc/sys/open.2 projects/release-arm-redux/lib/libc/sys/vfork.2 projects/release-arm-redux/lib/libc/xdr/xdr_float.c projects/release-arm-redux/lib/libcompiler_rt/Makefile projects/release-arm-redux/lib/libelftc/elftc_version.c projects/release-arm-redux/lib/libgeom/geom_xml2tree.c projects/release-arm-redux/lib/libiconv_modules/BIG5/citrus_big5.c projects/release-arm-redux/lib/libiconv_modules/DECHanyu/citrus_dechanyu.c projects/release-arm-redux/lib/libiconv_modules/EUC/citrus_euc.c projects/release-arm-redux/lib/libiconv_modules/EUCTW/citrus_euctw.c projects/release-arm-redux/lib/libiconv_modules/GBK2K/citrus_gbk2k.c projects/release-arm-redux/lib/libiconv_modules/HZ/citrus_hz.c projects/release-arm-redux/lib/libiconv_modules/ISO2022/citrus_iso2022.c projects/release-arm-redux/lib/libiconv_modules/JOHAB/citrus_johab.c projects/release-arm-redux/lib/libiconv_modules/MSKanji/citrus_mskanji.c projects/release-arm-redux/lib/libiconv_modules/UES/citrus_ues.c projects/release-arm-redux/lib/libiconv_modules/UTF1632/citrus_utf1632.c projects/release-arm-redux/lib/libiconv_modules/UTF7/citrus_utf7.c projects/release-arm-redux/lib/libiconv_modules/UTF8/citrus_utf8.c projects/release-arm-redux/lib/libiconv_modules/VIQR/citrus_viqr.c projects/release-arm-redux/lib/libiconv_modules/ZW/citrus_zw.c projects/release-arm-redux/lib/libiconv_modules/iconv_none/citrus_iconv_none.c projects/release-arm-redux/lib/libiconv_modules/iconv_std/citrus_iconv_std.c projects/release-arm-redux/lib/libkiconv/xlat16_iconv.c projects/release-arm-redux/lib/liblzma/Symbol.map projects/release-arm-redux/lib/liblzma/config.h projects/release-arm-redux/lib/libmt/Makefile projects/release-arm-redux/lib/libmt/mt.3 projects/release-arm-redux/lib/libpmc/libpmc.c projects/release-arm-redux/lib/libpmc/pmc.haswellxeon.3 projects/release-arm-redux/lib/libsdp/search.c projects/release-arm-redux/lib/libsdp/service.c projects/release-arm-redux/lib/libsdp/session.c projects/release-arm-redux/lib/libsdp/util.c projects/release-arm-redux/lib/libstand/Makefile projects/release-arm-redux/lib/libthr/Makefile projects/release-arm-redux/lib/libthr/thread/thr_syscalls.c projects/release-arm-redux/lib/libvmmapi/Makefile projects/release-arm-redux/lib/libvmmapi/vmmapi.c projects/release-arm-redux/lib/libvmmapi/vmmapi.h projects/release-arm-redux/lib/msun/aarch64/fenv.h projects/release-arm-redux/libexec/rtld-elf/Makefile projects/release-arm-redux/libexec/rtld-elf/amd64/reloc.c projects/release-arm-redux/libexec/rtld-elf/amd64/rtld_machdep.h projects/release-arm-redux/libexec/rtld-elf/amd64/rtld_start.S projects/release-arm-redux/libexec/rtld-elf/i386/reloc.c projects/release-arm-redux/libexec/rtld-elf/i386/rtld_machdep.h projects/release-arm-redux/libexec/rtld-elf/i386/rtld_start.S projects/release-arm-redux/libexec/rtld-elf/mips/reloc.c projects/release-arm-redux/libexec/rtld-elf/rtld.c projects/release-arm-redux/libexec/rtld-elf/rtld.h projects/release-arm-redux/libexec/rtld-elf/rtld_lock.c projects/release-arm-redux/libexec/rtld-elf/rtld_lock.h projects/release-arm-redux/libexec/rtld-elf/rtld_tls.h projects/release-arm-redux/release/Makefile.vm projects/release-arm-redux/release/release.conf.sample projects/release-arm-redux/release/release.sh projects/release-arm-redux/release/tools/arm/crochet-BEAGLEBONE.conf projects/release-arm-redux/release/tools/arm/crochet-PANDABOARD.conf projects/release-arm-redux/release/tools/arm/crochet-RPI-B.conf projects/release-arm-redux/release/tools/arm/crochet-WANDBOARD-QUAD.conf projects/release-arm-redux/release/tools/arm/crochet-ZEDBOARD.conf projects/release-arm-redux/release/tools/gce.conf projects/release-arm-redux/release/tools/vmimage.subr projects/release-arm-redux/sbin/dmesg/dmesg.c projects/release-arm-redux/sbin/geom/class/part/geom_part.c projects/release-arm-redux/sbin/ggate/ggatec/ggatec.8 projects/release-arm-redux/sbin/ggate/ggatel/ggatel.8 projects/release-arm-redux/sbin/ifconfig/af_inet.c projects/release-arm-redux/sbin/ifconfig/af_inet6.c projects/release-arm-redux/sbin/ifconfig/af_nd6.c projects/release-arm-redux/sbin/ifconfig/carp.c projects/release-arm-redux/sbin/ifconfig/ifconfig.c projects/release-arm-redux/sbin/ifconfig/ifmedia.c projects/release-arm-redux/sbin/ifconfig/ifvlan.c projects/release-arm-redux/sbin/ifconfig/ifvxlan.c projects/release-arm-redux/sbin/ipfw/nat.c projects/release-arm-redux/sbin/md5/Makefile projects/release-arm-redux/sbin/md5/md5.c projects/release-arm-redux/sbin/mount/mount.8 projects/release-arm-redux/sbin/mount/mount.c projects/release-arm-redux/sbin/mount_nfs/Makefile projects/release-arm-redux/sbin/mount_nfs/mount_nfs.8 projects/release-arm-redux/sbin/newfs_msdos/newfs_msdos.8 projects/release-arm-redux/sbin/pfctl/parse.y projects/release-arm-redux/sbin/pfctl/pfctl.c projects/release-arm-redux/sbin/pfctl/pfctl_altq.c projects/release-arm-redux/sbin/pfctl/pfctl_qstats.c projects/release-arm-redux/share/doc/usd/Makefile projects/release-arm-redux/share/man/man3/pthread_testcancel.3 projects/release-arm-redux/share/man/man3/queue.3 projects/release-arm-redux/share/man/man4/Makefile projects/release-arm-redux/share/man/man4/amdtemp.4 projects/release-arm-redux/share/man/man4/ata.4 projects/release-arm-redux/share/man/man4/ctl.4 projects/release-arm-redux/share/man/man4/icmp.4 projects/release-arm-redux/share/man/man4/inet.4 projects/release-arm-redux/share/man/man4/run.4 projects/release-arm-redux/share/man/man4/tap.4 projects/release-arm-redux/share/man/man5/periodic.conf.5 projects/release-arm-redux/share/man/man5/rc.conf.5 projects/release-arm-redux/share/man/man5/src.conf.5 projects/release-arm-redux/share/man/man9/SDT.9 projects/release-arm-redux/share/man/man9/printf.9 projects/release-arm-redux/share/misc/committers-src.dot projects/release-arm-redux/share/mk/bsd.dep.mk projects/release-arm-redux/share/mk/bsd.sys.mk projects/release-arm-redux/share/mk/src.libnames.mk projects/release-arm-redux/share/mk/src.opts.mk projects/release-arm-redux/share/mk/sys.mk projects/release-arm-redux/sys/amd64/amd64/machdep.c projects/release-arm-redux/sys/amd64/amd64/mp_machdep.c projects/release-arm-redux/sys/amd64/amd64/pmap.c projects/release-arm-redux/sys/amd64/amd64/trap.c projects/release-arm-redux/sys/amd64/amd64/uma_machdep.c projects/release-arm-redux/sys/amd64/include/md_var.h projects/release-arm-redux/sys/amd64/include/metadata.h projects/release-arm-redux/sys/amd64/include/vmm_instruction_emul.h (contents, props changed) projects/release-arm-redux/sys/amd64/vmm/amd/svm.c projects/release-arm-redux/sys/amd64/vmm/io/vrtc.c projects/release-arm-redux/sys/amd64/vmm/vmm.c projects/release-arm-redux/sys/amd64/vmm/vmm_dev.c projects/release-arm-redux/sys/amd64/vmm/vmm_instruction_emul.c projects/release-arm-redux/sys/amd64/vmm/vmm_lapic.c projects/release-arm-redux/sys/arm/allwinner/a10_clk.c projects/release-arm-redux/sys/arm/allwinner/a10_clk.h projects/release-arm-redux/sys/arm/allwinner/a10_common.c projects/release-arm-redux/sys/arm/allwinner/a10_gpio.c projects/release-arm-redux/sys/arm/allwinner/a10_sramc.c projects/release-arm-redux/sys/arm/allwinner/a10_wdog.c projects/release-arm-redux/sys/arm/allwinner/a20/a20_cpu_cfg.c projects/release-arm-redux/sys/arm/allwinner/a20/a20_mp.c projects/release-arm-redux/sys/arm/allwinner/a20/files.a20 projects/release-arm-redux/sys/arm/allwinner/a20/std.a20 projects/release-arm-redux/sys/arm/allwinner/files.a10 projects/release-arm-redux/sys/arm/allwinner/if_emac.c projects/release-arm-redux/sys/arm/allwinner/if_emacreg.h projects/release-arm-redux/sys/arm/allwinner/std.a10 projects/release-arm-redux/sys/arm/allwinner/timer.c projects/release-arm-redux/sys/arm/altera/socfpga/files.socfpga projects/release-arm-redux/sys/arm/altera/socfpga/socfpga_gpio.c projects/release-arm-redux/sys/arm/altera/socfpga/socfpga_manager.c projects/release-arm-redux/sys/arm/altera/socfpga/socfpga_mp.c projects/release-arm-redux/sys/arm/arm/cpufunc.c projects/release-arm-redux/sys/arm/arm/cpufunc_asm_arm10.S projects/release-arm-redux/sys/arm/arm/cpufunc_asm_arm11.S projects/release-arm-redux/sys/arm/arm/cpufunc_asm_armv6.S projects/release-arm-redux/sys/arm/arm/devmap.c projects/release-arm-redux/sys/arm/arm/elf_trampoline.c projects/release-arm-redux/sys/arm/arm/genassym.c projects/release-arm-redux/sys/arm/arm/generic_timer.c projects/release-arm-redux/sys/arm/arm/gic.c projects/release-arm-redux/sys/arm/arm/intr.c projects/release-arm-redux/sys/arm/arm/machdep.c projects/release-arm-redux/sys/arm/arm/mem.c projects/release-arm-redux/sys/arm/arm/minidump_machdep.c projects/release-arm-redux/sys/arm/arm/mp_machdep.c projects/release-arm-redux/sys/arm/arm/mpcore_timer.c projects/release-arm-redux/sys/arm/arm/pl310.c projects/release-arm-redux/sys/arm/arm/pmap-v6.c projects/release-arm-redux/sys/arm/arm/pmap.c projects/release-arm-redux/sys/arm/arm/pmu.c projects/release-arm-redux/sys/arm/arm/swtch.S projects/release-arm-redux/sys/arm/arm/trap-v6.c projects/release-arm-redux/sys/arm/arm/vm_machdep.c projects/release-arm-redux/sys/arm/at91/at91_common.c projects/release-arm-redux/sys/arm/at91/at91_machdep.c projects/release-arm-redux/sys/arm/at91/files.at91 projects/release-arm-redux/sys/arm/broadcom/bcm2835/bcm2835_common.c projects/release-arm-redux/sys/arm/broadcom/bcm2835/bcm2835_fbd.c projects/release-arm-redux/sys/arm/broadcom/bcm2835/bcm2835_spi.c projects/release-arm-redux/sys/arm/broadcom/bcm2835/bcm2835_systimer.c projects/release-arm-redux/sys/arm/broadcom/bcm2835/bcm2835_wdog.c projects/release-arm-redux/sys/arm/broadcom/bcm2835/files.bcm2835 projects/release-arm-redux/sys/arm/broadcom/bcm2835/files.bcm2836 projects/release-arm-redux/sys/arm/broadcom/bcm2835/files.bcm283x projects/release-arm-redux/sys/arm/cavium/cns11xx/econa_machdep.c projects/release-arm-redux/sys/arm/cavium/cns11xx/files.econa projects/release-arm-redux/sys/arm/conf/CUBIEBOARD projects/release-arm-redux/sys/arm/conf/CUBIEBOARD2 projects/release-arm-redux/sys/arm/conf/SOCKIT projects/release-arm-redux/sys/arm/conf/SOCKIT-BERI projects/release-arm-redux/sys/arm/freescale/imx/files.imx51 projects/release-arm-redux/sys/arm/freescale/imx/files.imx53 projects/release-arm-redux/sys/arm/freescale/imx/files.imx6 projects/release-arm-redux/sys/arm/freescale/imx/imx51_ccm.c projects/release-arm-redux/sys/arm/freescale/imx/imx51_ipuv3.c projects/release-arm-redux/sys/arm/freescale/imx/imx51_ipuv3_fbd.c projects/release-arm-redux/sys/arm/freescale/imx/imx6_anatop.c projects/release-arm-redux/sys/arm/freescale/imx/imx6_audmux.c projects/release-arm-redux/sys/arm/freescale/imx/imx6_mp.c projects/release-arm-redux/sys/arm/freescale/imx/imx6_sdma.c projects/release-arm-redux/sys/arm/freescale/imx/imx6_ssi.c projects/release-arm-redux/sys/arm/freescale/imx/imx_common.c projects/release-arm-redux/sys/arm/freescale/imx/imx_gpt.c projects/release-arm-redux/sys/arm/freescale/imx/imx_iomux.c projects/release-arm-redux/sys/arm/freescale/imx/imx_wdog.c projects/release-arm-redux/sys/arm/freescale/vybrid/files.vybrid projects/release-arm-redux/sys/arm/freescale/vybrid/vf_adc.c projects/release-arm-redux/sys/arm/freescale/vybrid/vf_anadig.c projects/release-arm-redux/sys/arm/freescale/vybrid/vf_ccm.c projects/release-arm-redux/sys/arm/freescale/vybrid/vf_dcu4.c projects/release-arm-redux/sys/arm/freescale/vybrid/vf_dmamux.c projects/release-arm-redux/sys/arm/freescale/vybrid/vf_edma.c projects/release-arm-redux/sys/arm/freescale/vybrid/vf_gpio.c projects/release-arm-redux/sys/arm/freescale/vybrid/vf_i2c.c projects/release-arm-redux/sys/arm/freescale/vybrid/vf_iomuxc.c projects/release-arm-redux/sys/arm/freescale/vybrid/vf_mscm.c projects/release-arm-redux/sys/arm/freescale/vybrid/vf_nfc.c projects/release-arm-redux/sys/arm/freescale/vybrid/vf_port.c projects/release-arm-redux/sys/arm/freescale/vybrid/vf_sai.c projects/release-arm-redux/sys/arm/freescale/vybrid/vf_spi.c projects/release-arm-redux/sys/arm/freescale/vybrid/vf_src.c projects/release-arm-redux/sys/arm/freescale/vybrid/vf_tcon.c projects/release-arm-redux/sys/arm/freescale/vybrid/vf_uart.c projects/release-arm-redux/sys/arm/include/cpu-v6.h projects/release-arm-redux/sys/arm/include/cpuconf.h projects/release-arm-redux/sys/arm/include/cpufunc.h projects/release-arm-redux/sys/arm/include/fdt.h projects/release-arm-redux/sys/arm/include/intr.h projects/release-arm-redux/sys/arm/include/machdep.h projects/release-arm-redux/sys/arm/include/metadata.h projects/release-arm-redux/sys/arm/include/pcb.h projects/release-arm-redux/sys/arm/include/pmap.h projects/release-arm-redux/sys/arm/include/pmc_mdep.h projects/release-arm-redux/sys/arm/include/pte.h projects/release-arm-redux/sys/arm/include/sf_buf.h projects/release-arm-redux/sys/arm/include/smp.h projects/release-arm-redux/sys/arm/include/sysreg.h projects/release-arm-redux/sys/arm/include/vm.h projects/release-arm-redux/sys/arm/include/vmparam.h projects/release-arm-redux/sys/arm/lpc/files.lpc projects/release-arm-redux/sys/arm/mv/armadaxp/armadaxp_mp.c projects/release-arm-redux/sys/arm/mv/files.mv projects/release-arm-redux/sys/arm/mv/gpio.c projects/release-arm-redux/sys/arm/mv/mv_localbus.c projects/release-arm-redux/sys/arm/mv/mv_ts.c projects/release-arm-redux/sys/arm/mv/mvvar.h projects/release-arm-redux/sys/arm/rockchip/files.rk30xx projects/release-arm-redux/sys/arm/rockchip/rk30xx_common.c projects/release-arm-redux/sys/arm/rockchip/rk30xx_gpio.c projects/release-arm-redux/sys/arm/rockchip/rk30xx_grf.c projects/release-arm-redux/sys/arm/rockchip/rk30xx_mp.c projects/release-arm-redux/sys/arm/rockchip/rk30xx_pmu.c projects/release-arm-redux/sys/arm/samsung/exynos/exynos5_mp.c projects/release-arm-redux/sys/arm/samsung/exynos/exynos_uart.c projects/release-arm-redux/sys/arm/samsung/exynos/files.exynos5 projects/release-arm-redux/sys/arm/samsung/s3c2xx0/files.s3c2xx0 projects/release-arm-redux/sys/arm/samsung/s3c2xx0/s3c24x0_machdep.c projects/release-arm-redux/sys/arm/samsung/s3c2xx0/uart_dev_s3c2410.c projects/release-arm-redux/sys/arm/ti/am335x/am335x_dmtimer.c projects/release-arm-redux/sys/arm/ti/am335x/am335x_prcm.c projects/release-arm-redux/sys/arm/ti/files.ti projects/release-arm-redux/sys/arm/ti/omap4/omap4_mp.c projects/release-arm-redux/sys/arm/ti/ti_common.c projects/release-arm-redux/sys/arm/ti/ti_mbox.c projects/release-arm-redux/sys/arm/ti/ti_pruss.c projects/release-arm-redux/sys/arm/ti/ti_wdt.c projects/release-arm-redux/sys/arm/versatile/files.versatile projects/release-arm-redux/sys/arm/versatile/pl050.c projects/release-arm-redux/sys/arm/versatile/sp804.c projects/release-arm-redux/sys/arm/versatile/versatile_clcd.c projects/release-arm-redux/sys/arm/versatile/versatile_common.c projects/release-arm-redux/sys/arm/versatile/versatile_pci.c projects/release-arm-redux/sys/arm/versatile/versatile_timer.c projects/release-arm-redux/sys/arm/xilinx/files.zynq7 projects/release-arm-redux/sys/arm/xilinx/zy7_mp.c projects/release-arm-redux/sys/arm/xscale/i80321/ep80219_machdep.c projects/release-arm-redux/sys/arm/xscale/i80321/files.i80219 projects/release-arm-redux/sys/arm/xscale/i80321/files.i80321 projects/release-arm-redux/sys/arm/xscale/i80321/iq31244_machdep.c projects/release-arm-redux/sys/arm/xscale/i8134x/crb_machdep.c projects/release-arm-redux/sys/arm/xscale/i8134x/files.i81342 projects/release-arm-redux/sys/arm/xscale/ixp425/avila_machdep.c projects/release-arm-redux/sys/arm/xscale/ixp425/files.ixp425 projects/release-arm-redux/sys/arm/xscale/pxa/files.pxa projects/release-arm-redux/sys/arm/xscale/pxa/pxa_machdep.c projects/release-arm-redux/sys/arm64/include/atomic.h projects/release-arm-redux/sys/arm64/include/cpufunc.h projects/release-arm-redux/sys/arm64/include/param.h projects/release-arm-redux/sys/arm64/include/pmap.h projects/release-arm-redux/sys/arm64/include/ucontext.h projects/release-arm-redux/sys/boot/Makefile projects/release-arm-redux/sys/boot/Makefile.amd64 projects/release-arm-redux/sys/boot/Makefile.arm projects/release-arm-redux/sys/boot/arm/uboot/Makefile projects/release-arm-redux/sys/boot/common/Makefile.inc projects/release-arm-redux/sys/boot/efi/Makefile projects/release-arm-redux/sys/boot/efi/Makefile.inc projects/release-arm-redux/sys/boot/efi/libefi/Makefile projects/release-arm-redux/sys/boot/forth/beastie.4th projects/release-arm-redux/sys/boot/forth/brand.4th projects/release-arm-redux/sys/boot/forth/check-password.4th projects/release-arm-redux/sys/boot/forth/check-password.4th.8 projects/release-arm-redux/sys/boot/forth/delay.4th projects/release-arm-redux/sys/boot/forth/frames.4th projects/release-arm-redux/sys/boot/forth/loader.4th projects/release-arm-redux/sys/boot/forth/loader.conf projects/release-arm-redux/sys/boot/forth/menu-commands.4th projects/release-arm-redux/sys/boot/forth/menu.4th projects/release-arm-redux/sys/boot/forth/menu.rc projects/release-arm-redux/sys/boot/forth/menusets.4th projects/release-arm-redux/sys/boot/forth/pcibios.4th projects/release-arm-redux/sys/boot/forth/pnp.4th projects/release-arm-redux/sys/boot/forth/screen.4th projects/release-arm-redux/sys/boot/forth/support.4th projects/release-arm-redux/sys/boot/forth/version.4th projects/release-arm-redux/sys/boot/i386/boot2/Makefile projects/release-arm-redux/sys/boot/i386/gptboot/Makefile projects/release-arm-redux/sys/boot/i386/gptzfsboot/Makefile projects/release-arm-redux/sys/boot/i386/libi386/libi386.h projects/release-arm-redux/sys/boot/i386/libi386/multiboot.c projects/release-arm-redux/sys/boot/i386/libi386/smbios.c projects/release-arm-redux/sys/boot/i386/loader/Makefile projects/release-arm-redux/sys/boot/i386/loader/main.c projects/release-arm-redux/sys/boot/i386/zfsboot/Makefile projects/release-arm-redux/sys/boot/mips/beri/boot2/Makefile projects/release-arm-redux/sys/boot/mips/beri/loader/Makefile projects/release-arm-redux/sys/boot/pc98/boot0.5/Makefile projects/release-arm-redux/sys/boot/pc98/boot0/Makefile projects/release-arm-redux/sys/boot/pc98/boot2/Makefile projects/release-arm-redux/sys/boot/pc98/loader/Makefile projects/release-arm-redux/sys/boot/powerpc/kboot/Makefile projects/release-arm-redux/sys/boot/powerpc/ofw/Makefile projects/release-arm-redux/sys/boot/powerpc/ps3/Makefile projects/release-arm-redux/sys/boot/sparc64/loader/Makefile projects/release-arm-redux/sys/cam/ata/ata_da.c projects/release-arm-redux/sys/cam/cam_xpt.c projects/release-arm-redux/sys/cam/scsi/scsi_all.c projects/release-arm-redux/sys/cam/scsi/scsi_da.c projects/release-arm-redux/sys/cddl/compat/opensolaris/sys/atomic.h projects/release-arm-redux/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c projects/release-arm-redux/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c projects/release-arm-redux/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c projects/release-arm-redux/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h projects/release-arm-redux/sys/cddl/contrib/opensolaris/uts/common/sys/isa_defs.h projects/release-arm-redux/sys/cddl/dev/dtrace/amd64/dtrace_isa.c projects/release-arm-redux/sys/cddl/dev/dtrace/dtrace_ioctl.c projects/release-arm-redux/sys/cddl/dev/dtrace/i386/dtrace_isa.c projects/release-arm-redux/sys/compat/freebsd32/freebsd32.h projects/release-arm-redux/sys/compat/freebsd32/freebsd32_misc.c projects/release-arm-redux/sys/compat/linprocfs/linprocfs.c projects/release-arm-redux/sys/compat/linux/linux_file.c projects/release-arm-redux/sys/compat/linux/linux_getcwd.c projects/release-arm-redux/sys/compat/linux/linux_misc.h projects/release-arm-redux/sys/compat/svr4/svr4_stream.c projects/release-arm-redux/sys/conf/Makefile.pc98 projects/release-arm-redux/sys/conf/NOTES projects/release-arm-redux/sys/conf/files projects/release-arm-redux/sys/conf/files.amd64 projects/release-arm-redux/sys/conf/files.arm projects/release-arm-redux/sys/conf/files.i386 projects/release-arm-redux/sys/conf/files.mips projects/release-arm-redux/sys/conf/files.pc98 projects/release-arm-redux/sys/conf/files.powerpc projects/release-arm-redux/sys/conf/kern.opts.mk projects/release-arm-redux/sys/conf/kern.pre.mk projects/release-arm-redux/sys/conf/kmod.mk projects/release-arm-redux/sys/conf/newvers.sh projects/release-arm-redux/sys/conf/options projects/release-arm-redux/sys/conf/options.arm projects/release-arm-redux/sys/conf/options.i386 projects/release-arm-redux/sys/contrib/dev/acpica/acpica_prep.sh projects/release-arm-redux/sys/contrib/dev/acpica/changes.txt projects/release-arm-redux/sys/contrib/dev/acpica/common/adfile.c projects/release-arm-redux/sys/contrib/dev/acpica/common/adisasm.c projects/release-arm-redux/sys/contrib/dev/acpica/common/dmtable.c projects/release-arm-redux/sys/contrib/dev/acpica/common/dmtbdump.c projects/release-arm-redux/sys/contrib/dev/acpica/common/dmtbinfo.c projects/release-arm-redux/sys/contrib/dev/acpica/compiler/aslcodegen.c projects/release-arm-redux/sys/contrib/dev/acpica/compiler/aslcompile.c projects/release-arm-redux/sys/contrib/dev/acpica/compiler/aslcompiler.h projects/release-arm-redux/sys/contrib/dev/acpica/compiler/asldefine.h projects/release-arm-redux/sys/contrib/dev/acpica/compiler/aslfold.c projects/release-arm-redux/sys/contrib/dev/acpica/compiler/asllisting.c projects/release-arm-redux/sys/contrib/dev/acpica/compiler/aslmain.c projects/release-arm-redux/sys/contrib/dev/acpica/compiler/aslmap.c projects/release-arm-redux/sys/contrib/dev/acpica/compiler/aslmapenter.c projects/release-arm-redux/sys/contrib/dev/acpica/compiler/asloptions.c projects/release-arm-redux/sys/contrib/dev/acpica/compiler/aslrules.y projects/release-arm-redux/sys/contrib/dev/acpica/compiler/aslstartup.c projects/release-arm-redux/sys/contrib/dev/acpica/compiler/asltree.c projects/release-arm-redux/sys/contrib/dev/acpica/compiler/asltypes.y projects/release-arm-redux/sys/contrib/dev/acpica/compiler/aslutils.c projects/release-arm-redux/sys/contrib/dev/acpica/compiler/aslwalks.c projects/release-arm-redux/sys/contrib/dev/acpica/compiler/dtcompile.c projects/release-arm-redux/sys/contrib/dev/acpica/compiler/dtcompiler.h projects/release-arm-redux/sys/contrib/dev/acpica/compiler/dtio.c projects/release-arm-redux/sys/contrib/dev/acpica/compiler/dttable.c projects/release-arm-redux/sys/contrib/dev/acpica/compiler/dttemplate.h projects/release-arm-redux/sys/contrib/dev/acpica/compiler/dtutils.c projects/release-arm-redux/sys/contrib/dev/acpica/components/debugger/dbmethod.c projects/release-arm-redux/sys/contrib/dev/acpica/components/debugger/dbxface.c projects/release-arm-redux/sys/contrib/dev/acpica/components/disassembler/dmopcode.c projects/release-arm-redux/sys/contrib/dev/acpica/components/disassembler/dmwalk.c projects/release-arm-redux/sys/contrib/dev/acpica/components/dispatcher/dsopcode.c projects/release-arm-redux/sys/contrib/dev/acpica/components/dispatcher/dsutils.c projects/release-arm-redux/sys/contrib/dev/acpica/components/events/evregion.c projects/release-arm-redux/sys/contrib/dev/acpica/components/events/evxfevnt.c projects/release-arm-redux/sys/contrib/dev/acpica/components/executer/exdump.c projects/release-arm-redux/sys/contrib/dev/acpica/components/executer/exfldio.c projects/release-arm-redux/sys/contrib/dev/acpica/components/executer/exoparg3.c projects/release-arm-redux/sys/contrib/dev/acpica/components/executer/exregion.c projects/release-arm-redux/sys/contrib/dev/acpica/components/hardware/hwgpe.c projects/release-arm-redux/sys/contrib/dev/acpica/components/hardware/hwvalid.c projects/release-arm-redux/sys/contrib/dev/acpica/components/namespace/nsdump.c projects/release-arm-redux/sys/contrib/dev/acpica/components/parser/psopcode.c projects/release-arm-redux/sys/contrib/dev/acpica/components/parser/psopinfo.c projects/release-arm-redux/sys/contrib/dev/acpica/components/resources/rsaddr.c projects/release-arm-redux/sys/contrib/dev/acpica/components/resources/rsdump.c projects/release-arm-redux/sys/contrib/dev/acpica/components/resources/rsdumpinfo.c projects/release-arm-redux/sys/contrib/dev/acpica/components/resources/rsxface.c projects/release-arm-redux/sys/contrib/dev/acpica/components/tables/tbdata.c projects/release-arm-redux/sys/contrib/dev/acpica/components/tables/tbinstal.c projects/release-arm-redux/sys/contrib/dev/acpica/components/tables/tbprint.c projects/release-arm-redux/sys/contrib/dev/acpica/components/tables/tbxfroot.c projects/release-arm-redux/sys/contrib/dev/acpica/components/utilities/utaddress.c projects/release-arm-redux/sys/contrib/dev/acpica/components/utilities/utbuffer.c projects/release-arm-redux/sys/contrib/dev/acpica/components/utilities/utglobal.c projects/release-arm-redux/sys/contrib/dev/acpica/components/utilities/utmisc.c projects/release-arm-redux/sys/contrib/dev/acpica/components/utilities/utosi.c projects/release-arm-redux/sys/contrib/dev/acpica/components/utilities/utprint.c projects/release-arm-redux/sys/contrib/dev/acpica/components/utilities/utstate.c projects/release-arm-redux/sys/contrib/dev/acpica/components/utilities/utuuid.c projects/release-arm-redux/sys/contrib/dev/acpica/include/acdebug.h projects/release-arm-redux/sys/contrib/dev/acpica/include/acdisasm.h projects/release-arm-redux/sys/contrib/dev/acpica/include/acglobal.h projects/release-arm-redux/sys/contrib/dev/acpica/include/aclocal.h projects/release-arm-redux/sys/contrib/dev/acpica/include/acmacros.h projects/release-arm-redux/sys/contrib/dev/acpica/include/acopcode.h projects/release-arm-redux/sys/contrib/dev/acpica/include/acpixf.h projects/release-arm-redux/sys/contrib/dev/acpica/include/acresrc.h projects/release-arm-redux/sys/contrib/dev/acpica/include/acrestyp.h projects/release-arm-redux/sys/contrib/dev/acpica/include/acstruct.h projects/release-arm-redux/sys/contrib/dev/acpica/include/actables.h projects/release-arm-redux/sys/contrib/dev/acpica/include/actbl2.h projects/release-arm-redux/sys/contrib/dev/acpica/include/actypes.h projects/release-arm-redux/sys/contrib/dev/acpica/include/acutils.h projects/release-arm-redux/sys/contrib/dev/acpica/include/amlcode.h projects/release-arm-redux/sys/contrib/dev/acpica/include/platform/acenv.h projects/release-arm-redux/sys/contrib/dev/ath/ath_hal/ar9300/ar9300.h projects/release-arm-redux/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_ani.c projects/release-arm-redux/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c projects/release-arm-redux/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_misc.c projects/release-arm-redux/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_reset.c projects/release-arm-redux/sys/contrib/ipfilter/netinet/fil.c projects/release-arm-redux/sys/contrib/ipfilter/netinet/ip_compat.h projects/release-arm-redux/sys/contrib/ipfilter/netinet/ip_fil.h projects/release-arm-redux/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c (contents, props changed) projects/release-arm-redux/sys/contrib/ipfilter/netinet/ip_nat.c projects/release-arm-redux/sys/contrib/x86emu/x86emu.c projects/release-arm-redux/sys/crypto/aesni/aesencdec.h projects/release-arm-redux/sys/crypto/aesni/aesni_ghash.c projects/release-arm-redux/sys/dev/acpica/acpi.c projects/release-arm-redux/sys/dev/acpica/acpi_pcib_acpi.c projects/release-arm-redux/sys/dev/acpica/acpi_resource.c projects/release-arm-redux/sys/dev/acpica/acpivar.h projects/release-arm-redux/sys/dev/ath/ath_hal/ah.c projects/release-arm-redux/sys/dev/ath/ath_hal/ah.h projects/release-arm-redux/sys/dev/ath/ath_hal/ah_internal.h projects/release-arm-redux/sys/dev/ath/ath_hal/ar5212/ar5212.h projects/release-arm-redux/sys/dev/ath/ath_hal/ar5212/ar5212_ani.c projects/release-arm-redux/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c projects/release-arm-redux/sys/dev/ath/ath_hal/ar5212/ar5212_reset.c projects/release-arm-redux/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c projects/release-arm-redux/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c projects/release-arm-redux/sys/dev/ath/if_ath.c projects/release-arm-redux/sys/dev/atkbdc/psm.c projects/release-arm-redux/sys/dev/bxe/bxe.c projects/release-arm-redux/sys/dev/ciss/ciss.c projects/release-arm-redux/sys/dev/cxgbe/t4_sge.c projects/release-arm-redux/sys/dev/cxgbe/tom/t4_cpl_io.c projects/release-arm-redux/sys/dev/cxgbe/tom/t4_listen.c projects/release-arm-redux/sys/dev/drm2/drm_crtc_helper.c projects/release-arm-redux/sys/dev/drm2/drm_modes.c projects/release-arm-redux/sys/dev/dwc/if_dwc.c projects/release-arm-redux/sys/dev/e1000/if_igb.c projects/release-arm-redux/sys/dev/etherswitch/arswitch/arswitch_vlans.c projects/release-arm-redux/sys/dev/etherswitch/miiproxy.c projects/release-arm-redux/sys/dev/fdt/fdt_pinctrl.c projects/release-arm-redux/sys/dev/fdt/simplebus.c projects/release-arm-redux/sys/dev/fdt/simplebus.h projects/release-arm-redux/sys/dev/gpio/gpioled.c projects/release-arm-redux/sys/dev/hptnr/README projects/release-arm-redux/sys/dev/hptnr/amd64-elf.hptnr_lib.o.uu projects/release-arm-redux/sys/dev/hptnr/him.h projects/release-arm-redux/sys/dev/hptnr/hptintf.h projects/release-arm-redux/sys/dev/hptnr/hptnr_config.c projects/release-arm-redux/sys/dev/hptnr/hptnr_config.h projects/release-arm-redux/sys/dev/hptnr/hptnr_osm_bsd.c projects/release-arm-redux/sys/dev/hptnr/i386-elf.hptnr_lib.o.uu projects/release-arm-redux/sys/dev/hptnr/ldm.h projects/release-arm-redux/sys/dev/hptnr/os_bsd.h projects/release-arm-redux/sys/dev/hwpmc/hwpmc_arm.c projects/release-arm-redux/sys/dev/hwpmc/hwpmc_armv7.c projects/release-arm-redux/sys/dev/hwpmc/hwpmc_core.c projects/release-arm-redux/sys/dev/hwpmc/hwpmc_intel.c projects/release-arm-redux/sys/dev/hwpmc/hwpmc_mpc7xxx.c projects/release-arm-redux/sys/dev/hwpmc/hwpmc_powerpc.c projects/release-arm-redux/sys/dev/hwpmc/hwpmc_powerpc.h projects/release-arm-redux/sys/dev/hwpmc/hwpmc_ppc970.c projects/release-arm-redux/sys/dev/hwpmc/pmc_events.h projects/release-arm-redux/sys/dev/ichsmb/ichsmb_pci.c projects/release-arm-redux/sys/dev/iicbus/iic.c projects/release-arm-redux/sys/dev/iicbus/iic.h projects/release-arm-redux/sys/dev/iicbus/iicbus_if.m projects/release-arm-redux/sys/dev/iicbus/iiconf.c projects/release-arm-redux/sys/dev/iscsi/icl_conn_if.m projects/release-arm-redux/sys/dev/iscsi/icl_soft.c projects/release-arm-redux/sys/dev/iscsi/icl_wrappers.h projects/release-arm-redux/sys/dev/iwn/if_iwn.c projects/release-arm-redux/sys/dev/ixgbe/if_ix.c projects/release-arm-redux/sys/dev/ixgbe/ix_txrx.c projects/release-arm-redux/sys/dev/mii/acphy.c projects/release-arm-redux/sys/dev/mii/brgphy.c projects/release-arm-redux/sys/dev/mii/lxtphy.c projects/release-arm-redux/sys/dev/mii/mii_physubr.c projects/release-arm-redux/sys/dev/mii/miivar.h projects/release-arm-redux/sys/dev/mii/mlphy.c projects/release-arm-redux/sys/dev/mii/xmphy.c projects/release-arm-redux/sys/dev/mmc/mmc.c projects/release-arm-redux/sys/dev/nand/nfc_fsl.c projects/release-arm-redux/sys/dev/netmap/netmap.c projects/release-arm-redux/sys/dev/nvme/nvme.c projects/release-arm-redux/sys/dev/nvme/nvme_ctrlr.c projects/release-arm-redux/sys/dev/nvme/nvme_ns.c projects/release-arm-redux/sys/dev/nvme/nvme_private.h projects/release-arm-redux/sys/dev/nvme/nvme_qpair.c projects/release-arm-redux/sys/dev/ofw/ofwbus.c projects/release-arm-redux/sys/dev/ofw/openfirm.c projects/release-arm-redux/sys/dev/re/if_re.c projects/release-arm-redux/sys/dev/sfxge/sfxge_rx.c projects/release-arm-redux/sys/dev/sfxge/sfxge_tx.c projects/release-arm-redux/sys/dev/sfxge/sfxge_version.h projects/release-arm-redux/sys/dev/sound/pci/hda/hdaa_patches.c projects/release-arm-redux/sys/dev/sound/pci/hda/hdac.c projects/release-arm-redux/sys/dev/sound/pci/hda/hdac.h projects/release-arm-redux/sys/dev/sound/pci/hda/hdacc.c projects/release-arm-redux/sys/dev/streams/streams.c projects/release-arm-redux/sys/dev/uart/uart_bus.h projects/release-arm-redux/sys/dev/uart/uart_bus_fdt.c projects/release-arm-redux/sys/dev/uart/uart_core.c projects/release-arm-redux/sys/dev/uart/uart_cpu.h projects/release-arm-redux/sys/dev/uart/uart_cpu_fdt.c projects/release-arm-redux/sys/dev/uart/uart_cpu_fdt.h projects/release-arm-redux/sys/dev/uart/uart_dev_imx.c projects/release-arm-redux/sys/dev/uart/uart_dev_lpc.c projects/release-arm-redux/sys/dev/uart/uart_dev_msm.c projects/release-arm-redux/sys/dev/uart/uart_dev_ns8250.c projects/release-arm-redux/sys/dev/uart/uart_dev_pl011.c projects/release-arm-redux/sys/dev/uart/uart_dev_quicc.c projects/release-arm-redux/sys/dev/uart/uart_dev_sab82532.c projects/release-arm-redux/sys/dev/uart/uart_dev_ti8250.c projects/release-arm-redux/sys/dev/uart/uart_dev_z8530.c projects/release-arm-redux/sys/dev/usb/controller/ehci_pci.c projects/release-arm-redux/sys/dev/usb/controller/uhci_pci.c projects/release-arm-redux/sys/dev/usb/controller/xhci_pci.c projects/release-arm-redux/sys/dev/usb/net/if_axge.c projects/release-arm-redux/sys/dev/usb/serial/uftdi.c projects/release-arm-redux/sys/dev/usb/usbdevs projects/release-arm-redux/sys/dev/usb/video/udl.c projects/release-arm-redux/sys/dev/usb/video/udl.h projects/release-arm-redux/sys/dev/usb/wlan/if_run.c projects/release-arm-redux/sys/dev/usb/wlan/if_urtwn.c projects/release-arm-redux/sys/dev/virtio/block/virtio_blk.c projects/release-arm-redux/sys/dev/vt/vt_font.c projects/release-arm-redux/sys/dev/wpi/if_wpi.c projects/release-arm-redux/sys/dev/xen/netfront/netfront.c projects/release-arm-redux/sys/fs/devfs/devfs_vnops.c projects/release-arm-redux/sys/fs/ext2fs/ext2_dir.h projects/release-arm-redux/sys/fs/ext2fs/ext2_extern.h projects/release-arm-redux/sys/fs/ext2fs/ext2_lookup.c projects/release-arm-redux/sys/fs/ext2fs/ext2_vfsops.c projects/release-arm-redux/sys/fs/ext2fs/ext2fs.h projects/release-arm-redux/sys/fs/fuse/fuse_vfsops.c projects/release-arm-redux/sys/fs/msdosfs/msdosfs_fat.c projects/release-arm-redux/sys/fs/msdosfs/msdosfs_vfsops.c projects/release-arm-redux/sys/fs/nandfs/nandfs_vfsops.c projects/release-arm-redux/sys/fs/nfs/nfs.h projects/release-arm-redux/sys/fs/nfs/nfs_commonport.c projects/release-arm-redux/sys/fs/nfs/nfsproto.h projects/release-arm-redux/sys/fs/nfsclient/nfs_clrpcops.c projects/release-arm-redux/sys/fs/nfsclient/nfs_clvfsops.c projects/release-arm-redux/sys/fs/nfsserver/nfs_nfsdport.c projects/release-arm-redux/sys/fs/nfsserver/nfs_nfsdserv.c projects/release-arm-redux/sys/fs/nullfs/null_vfsops.c projects/release-arm-redux/sys/fs/tmpfs/tmpfs_vnops.c projects/release-arm-redux/sys/geom/geom_dev.c projects/release-arm-redux/sys/geom/geom_dump.c projects/release-arm-redux/sys/geom/geom_subr.c projects/release-arm-redux/sys/geom/mirror/g_mirror.c projects/release-arm-redux/sys/geom/multipath/g_multipath.c projects/release-arm-redux/sys/geom/part/g_part.c projects/release-arm-redux/sys/geom/raid/g_raid.c projects/release-arm-redux/sys/geom/uncompress/g_uncompress.c projects/release-arm-redux/sys/gnu/dts/arm/meson.dtsi projects/release-arm-redux/sys/gnu/dts/arm/meson6.dtsi projects/release-arm-redux/sys/gnu/dts/arm/meson8.dtsi projects/release-arm-redux/sys/i386/i386/apic_vector.s projects/release-arm-redux/sys/i386/i386/bios.c projects/release-arm-redux/sys/i386/i386/db_trace.c projects/release-arm-redux/sys/i386/i386/initcpu.c projects/release-arm-redux/sys/i386/i386/locore.s projects/release-arm-redux/sys/i386/i386/machdep.c projects/release-arm-redux/sys/i386/i386/minidump_machdep.c projects/release-arm-redux/sys/i386/i386/mp_machdep.c projects/release-arm-redux/sys/i386/i386/mpboot.s projects/release-arm-redux/sys/i386/i386/pmap.c projects/release-arm-redux/sys/i386/i386/swtch.s projects/release-arm-redux/sys/i386/i386/trap.c projects/release-arm-redux/sys/i386/i386/vm86bios.s projects/release-arm-redux/sys/i386/i386/vm_machdep.c projects/release-arm-redux/sys/i386/include/md_var.h projects/release-arm-redux/sys/i386/include/param.h projects/release-arm-redux/sys/i386/include/pmap.h projects/release-arm-redux/sys/i386/include/smp.h projects/release-arm-redux/sys/i386/include/vmparam.h projects/release-arm-redux/sys/i386/xen/mp_machdep.c projects/release-arm-redux/sys/i386/xen/pmap.c projects/release-arm-redux/sys/kern/imgact_elf.c projects/release-arm-redux/sys/kern/init_main.c projects/release-arm-redux/sys/kern/init_sysent.c projects/release-arm-redux/sys/kern/kern_descrip.c projects/release-arm-redux/sys/kern/kern_exec.c projects/release-arm-redux/sys/kern/kern_fork.c projects/release-arm-redux/sys/kern/kern_mbuf.c projects/release-arm-redux/sys/kern/kern_physio.c projects/release-arm-redux/sys/kern/kern_poll.c projects/release-arm-redux/sys/kern/kern_resource.c projects/release-arm-redux/sys/kern/kern_synch.c projects/release-arm-redux/sys/kern/kern_thread.c projects/release-arm-redux/sys/kern/kern_timeout.c projects/release-arm-redux/sys/kern/kern_umtx.c projects/release-arm-redux/sys/kern/link_elf_obj.c projects/release-arm-redux/sys/kern/subr_bus.c projects/release-arm-redux/sys/kern/subr_busdma_bufalloc.c projects/release-arm-redux/sys/kern/subr_prf.c projects/release-arm-redux/sys/kern/subr_vmem.c projects/release-arm-redux/sys/kern/sys_generic.c projects/release-arm-redux/sys/kern/sys_pipe.c projects/release-arm-redux/sys/kern/syscalls.c projects/release-arm-redux/sys/kern/syscalls.master projects/release-arm-redux/sys/kern/systrace_args.c projects/release-arm-redux/sys/kern/sysv_shm.c projects/release-arm-redux/sys/kern/tty_pts.c projects/release-arm-redux/sys/kern/uipc_mqueue.c projects/release-arm-redux/sys/kern/uipc_sem.c projects/release-arm-redux/sys/kern/uipc_shm.c projects/release-arm-redux/sys/kern/uipc_syscalls.c projects/release-arm-redux/sys/kern/vfs_cache.c projects/release-arm-redux/sys/kern/vfs_subr.c projects/release-arm-redux/sys/kern/vfs_syscalls.c projects/release-arm-redux/sys/kern/vfs_vnops.c projects/release-arm-redux/sys/kern/vnode_if.src projects/release-arm-redux/sys/mips/adm5120/uart_dev_adm5120.c projects/release-arm-redux/sys/mips/atheros/ar71xx_macaddr.c projects/release-arm-redux/sys/mips/atheros/ar71xx_macaddr.h projects/release-arm-redux/sys/mips/atheros/ar71xx_machdep.c projects/release-arm-redux/sys/mips/atheros/if_arge.c projects/release-arm-redux/sys/mips/atheros/uart_dev_ar933x.c projects/release-arm-redux/sys/mips/cavium/uart_dev_oct16550.c projects/release-arm-redux/sys/mips/conf/AR91XX_BASE projects/release-arm-redux/sys/mips/conf/AR933X_BASE projects/release-arm-redux/sys/mips/conf/CARAMBOLA2.hints projects/release-arm-redux/sys/mips/conf/DIR-655A1.hints projects/release-arm-redux/sys/mips/conf/DIR-825C1.hints projects/release-arm-redux/sys/mips/conf/TL-WDR4300.hints projects/release-arm-redux/sys/mips/conf/TL-WR1043NDv2.hints projects/release-arm-redux/sys/mips/include/cache_mipsNN.h projects/release-arm-redux/sys/mips/include/cache_r4k.h projects/release-arm-redux/sys/mips/include/reg.h projects/release-arm-redux/sys/mips/mips/cache.c projects/release-arm-redux/sys/mips/mips/cache_mipsNN.c projects/release-arm-redux/sys/mips/mips/uma_machdep.c projects/release-arm-redux/sys/mips/rt305x/uart_dev_rt305x.c projects/release-arm-redux/sys/modules/Makefile projects/release-arm-redux/sys/modules/ext2fs/Makefile projects/release-arm-redux/sys/modules/hwpmc/Makefile projects/release-arm-redux/sys/modules/i2c/iicbb/Makefile projects/release-arm-redux/sys/modules/usb/Makefile projects/release-arm-redux/sys/net/bpf.c projects/release-arm-redux/sys/net/bpf.h projects/release-arm-redux/sys/net/ieee8023ad_lacp.c projects/release-arm-redux/sys/net/if.c projects/release-arm-redux/sys/net/if_lagg.c projects/release-arm-redux/sys/net/if_media.c projects/release-arm-redux/sys/net/if_media.h projects/release-arm-redux/sys/net/if_tap.c projects/release-arm-redux/sys/net/if_types.h projects/release-arm-redux/sys/net/if_var.h projects/release-arm-redux/sys/net/ifq.h projects/release-arm-redux/sys/net/pfvar.h projects/release-arm-redux/sys/net/route.c projects/release-arm-redux/sys/net80211/ieee80211_mesh.c projects/release-arm-redux/sys/netgraph/atm/sscop/ng_sscop_cust.h projects/release-arm-redux/sys/netgraph/atm/uni/ng_uni_cust.h projects/release-arm-redux/sys/netgraph/bluetooth/hci/ng_hci_cmds.c projects/release-arm-redux/sys/netgraph/bluetooth/hci/ng_hci_evnt.c projects/release-arm-redux/sys/netgraph/bluetooth/hci/ng_hci_main.c projects/release-arm-redux/sys/netgraph/bluetooth/hci/ng_hci_misc.c projects/release-arm-redux/sys/netgraph/bluetooth/hci/ng_hci_misc.h projects/release-arm-redux/sys/netgraph/bluetooth/hci/ng_hci_ulpi.c projects/release-arm-redux/sys/netgraph/bluetooth/hci/ng_hci_var.h projects/release-arm-redux/sys/netgraph/bluetooth/include/ng_btsocket.h projects/release-arm-redux/sys/netgraph/bluetooth/include/ng_btsocket_l2cap.h projects/release-arm-redux/sys/netgraph/bluetooth/include/ng_hci.h projects/release-arm-redux/sys/netgraph/bluetooth/include/ng_l2cap.h projects/release-arm-redux/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.c projects/release-arm-redux/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.h projects/release-arm-redux/sys/netgraph/bluetooth/l2cap/ng_l2cap_evnt.c projects/release-arm-redux/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c projects/release-arm-redux/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.h projects/release-arm-redux/sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c projects/release-arm-redux/sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.h projects/release-arm-redux/sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c projects/release-arm-redux/sys/netgraph/bluetooth/l2cap/ng_l2cap_var.h projects/release-arm-redux/sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c projects/release-arm-redux/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c projects/release-arm-redux/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c projects/release-arm-redux/sys/netinet/igmp.c projects/release-arm-redux/sys/netinet/in.c projects/release-arm-redux/sys/netinet/in.h projects/release-arm-redux/sys/netinet/in_var.h projects/release-arm-redux/sys/netinet/ip_carp.c projects/release-arm-redux/sys/netinet/ip_gre.c projects/release-arm-redux/sys/netinet/ip_id.c projects/release-arm-redux/sys/netinet/ip_input.c projects/release-arm-redux/sys/netinet/ip_mroute.c projects/release-arm-redux/sys/netinet/ip_output.c projects/release-arm-redux/sys/netinet/ip_var.h projects/release-arm-redux/sys/netinet/raw_ip.c projects/release-arm-redux/sys/netinet/sctp_output.c projects/release-arm-redux/sys/netinet/sctp_structs.h projects/release-arm-redux/sys/netinet/sctp_syscalls.c projects/release-arm-redux/sys/netinet/tcp_subr.c projects/release-arm-redux/sys/netinet/tcp_timer.c projects/release-arm-redux/sys/netinet/tcp_timer.h projects/release-arm-redux/sys/netinet/tcp_var.h projects/release-arm-redux/sys/netinet6/in6.c projects/release-arm-redux/sys/netinet6/in6.h projects/release-arm-redux/sys/netinet6/in6_mcast.c projects/release-arm-redux/sys/netinet6/ip6_forward.c projects/release-arm-redux/sys/netinet6/ip6_mroute.c projects/release-arm-redux/sys/netinet6/ip6_mroute.h projects/release-arm-redux/sys/netinet6/ip6_output.c projects/release-arm-redux/sys/netinet6/ip6_var.h projects/release-arm-redux/sys/netinet6/nd6.c projects/release-arm-redux/sys/netinet6/nd6_nbr.c projects/release-arm-redux/sys/netinet6/nd6_rtr.c projects/release-arm-redux/sys/netipsec/ipsec.c projects/release-arm-redux/sys/netipsec/ipsec.h projects/release-arm-redux/sys/netipsec/ipsec_input.c projects/release-arm-redux/sys/netipsec/ipsec_output.c projects/release-arm-redux/sys/netipsec/key.c projects/release-arm-redux/sys/netipsec/xform.h projects/release-arm-redux/sys/netipsec/xform_ah.c projects/release-arm-redux/sys/netipsec/xform_esp.c projects/release-arm-redux/sys/netipsec/xform_ipcomp.c projects/release-arm-redux/sys/netpfil/ipfw/ip_fw_log.c projects/release-arm-redux/sys/netpfil/pf/if_pfsync.c projects/release-arm-redux/sys/netpfil/pf/pf.c projects/release-arm-redux/sys/netpfil/pf/pf_ioctl.c projects/release-arm-redux/sys/netpfil/pf/pf_norm.c projects/release-arm-redux/sys/nfsclient/nfs.h projects/release-arm-redux/sys/ofed/include/linux/completion.h projects/release-arm-redux/sys/ofed/include/linux/file.h projects/release-arm-redux/sys/ofed/include/linux/fs.h projects/release-arm-redux/sys/ofed/include/linux/in.h projects/release-arm-redux/sys/ofed/include/linux/jiffies.h projects/release-arm-redux/sys/ofed/include/linux/linux_compat.c projects/release-arm-redux/sys/opencrypto/gmac.h projects/release-arm-redux/sys/powerpc/aim/machdep.c projects/release-arm-redux/sys/powerpc/aim/mmu_oea64.c projects/release-arm-redux/sys/powerpc/aim/slb.c projects/release-arm-redux/sys/powerpc/aim/uma_machdep.c projects/release-arm-redux/sys/powerpc/booke/interrupt.c projects/release-arm-redux/sys/powerpc/booke/locore.S projects/release-arm-redux/sys/powerpc/booke/machdep.c projects/release-arm-redux/sys/powerpc/booke/pmap.c projects/release-arm-redux/sys/powerpc/booke/trap_subr.S projects/release-arm-redux/sys/powerpc/include/pmc_mdep.h projects/release-arm-redux/sys/powerpc/include/reg.h projects/release-arm-redux/sys/powerpc/include/trap.h projects/release-arm-redux/sys/rpc/svc.c projects/release-arm-redux/sys/rpc/svc.h projects/release-arm-redux/sys/rpc/svc_generic.c projects/release-arm-redux/sys/rpc/svc_vc.c projects/release-arm-redux/sys/sparc64/include/reg.h projects/release-arm-redux/sys/sparc64/pci/sbbc.c projects/release-arm-redux/sys/sparc64/sparc64/vm_machdep.c projects/release-arm-redux/sys/sys/_callout.h projects/release-arm-redux/sys/sys/buf.h projects/release-arm-redux/sys/sys/busdma_bufalloc.h projects/release-arm-redux/sys/sys/callout.h projects/release-arm-redux/sys/sys/cdefs.h projects/release-arm-redux/sys/sys/elf_common.h projects/release-arm-redux/sys/sys/fcntl.h projects/release-arm-redux/sys/sys/filedesc.h projects/release-arm-redux/sys/sys/imgact.h projects/release-arm-redux/sys/sys/kerneldump.h projects/release-arm-redux/sys/sys/malloc.h projects/release-arm-redux/sys/sys/mbuf.h projects/release-arm-redux/sys/sys/module.h projects/release-arm-redux/sys/sys/mount.h projects/release-arm-redux/sys/sys/mouse.h projects/release-arm-redux/sys/sys/param.h projects/release-arm-redux/sys/sys/pmc.h projects/release-arm-redux/sys/sys/procfs.h projects/release-arm-redux/sys/sys/socketvar.h projects/release-arm-redux/sys/sys/sockio.h projects/release-arm-redux/sys/sys/syscall.h projects/release-arm-redux/sys/sys/syscall.mk projects/release-arm-redux/sys/sys/syscallsubr.h projects/release-arm-redux/sys/sys/sysproto.h projects/release-arm-redux/sys/sys/vmem.h projects/release-arm-redux/sys/sys/vnode.h projects/release-arm-redux/sys/ufs/ffs/ffs_softdep.c projects/release-arm-redux/sys/ufs/ffs/ffs_vfsops.c projects/release-arm-redux/sys/vm/device_pager.c projects/release-arm-redux/sys/vm/memguard.c projects/release-arm-redux/sys/vm/swap_pager.c projects/release-arm-redux/sys/vm/uma.h projects/release-arm-redux/sys/vm/uma_core.c projects/release-arm-redux/sys/vm/uma_int.h projects/release-arm-redux/sys/vm/vm_fault.c projects/release-arm-redux/sys/vm/vm_mmap.c projects/release-arm-redux/sys/vm/vm_page.c projects/release-arm-redux/sys/vm/vm_pageout.c projects/release-arm-redux/sys/vm/vm_reserv.c projects/release-arm-redux/sys/vm/vnode_pager.c projects/release-arm-redux/sys/x86/acpica/OsdEnvironment.c projects/release-arm-redux/sys/x86/acpica/acpi_wakeup.c projects/release-arm-redux/sys/x86/include/reg.h projects/release-arm-redux/sys/x86/iommu/busdma_dmar.c projects/release-arm-redux/sys/x86/iommu/intel_dmar.h projects/release-arm-redux/sys/x86/iommu/intel_gas.c projects/release-arm-redux/sys/x86/x86/mca.c projects/release-arm-redux/sys/x86/xen/xen_apic.c projects/release-arm-redux/tools/build/check-links.sh projects/release-arm-redux/tools/build/mk/OptionalObsoleteFiles.inc projects/release-arm-redux/tools/build/options/WITHOUT_CXX projects/release-arm-redux/tools/regression/aio/aiotest/Makefile projects/release-arm-redux/tools/regression/aio/aiotest/aiotest.c projects/release-arm-redux/tools/regression/aio/kqueue/Makefile projects/release-arm-redux/tools/regression/aio/kqueue/aio_kqueue.c projects/release-arm-redux/tools/regression/aio/kqueue/lio/Makefile projects/release-arm-redux/tools/regression/aio/kqueue/lio/lio_kqueue.c projects/release-arm-redux/tools/regression/lib/libc/gen/test-wordexp.c projects/release-arm-redux/tools/regression/sockets/accept_fd_leak/Makefile projects/release-arm-redux/tools/regression/sockets/accept_fd_leak/accept_fd_leak.c projects/release-arm-redux/tools/regression/sockets/accf_data_attach/Makefile projects/release-arm-redux/tools/regression/sockets/accf_data_attach/accf_data_attach.c projects/release-arm-redux/tools/regression/sockets/fstat/Makefile projects/release-arm-redux/tools/regression/sockets/fstat/fstat.c projects/release-arm-redux/tools/regression/sockets/kqueue/Makefile projects/release-arm-redux/tools/regression/sockets/kqueue/kqueue.c projects/release-arm-redux/tools/regression/sockets/listen_backlog/Makefile projects/release-arm-redux/tools/regression/sockets/listen_backlog/listen_backlog.c projects/release-arm-redux/tools/regression/sockets/listenclose/Makefile projects/release-arm-redux/tools/regression/sockets/listenclose/listenclose.c projects/release-arm-redux/tools/regression/sockets/pr_atomic/Makefile projects/release-arm-redux/tools/regression/sockets/pr_atomic/pr_atomic.c projects/release-arm-redux/tools/regression/sockets/reconnect/Makefile projects/release-arm-redux/tools/regression/sockets/reconnect/reconnect.c projects/release-arm-redux/tools/regression/sockets/rtsocket/Makefile projects/release-arm-redux/tools/regression/sockets/rtsocket/rtsocket.c projects/release-arm-redux/tools/regression/sockets/sblock/Makefile projects/release-arm-redux/tools/regression/sockets/sblock/sblock.c projects/release-arm-redux/tools/regression/sockets/sendfile/sendfile.c projects/release-arm-redux/tools/regression/sockets/shutdown/Makefile projects/release-arm-redux/tools/regression/sockets/shutdown/shutdown.c projects/release-arm-redux/tools/regression/sockets/sigpipe/Makefile projects/release-arm-redux/tools/regression/sockets/sigpipe/sigpipe.c projects/release-arm-redux/tools/regression/sockets/so_setfib/Makefile projects/release-arm-redux/tools/regression/sockets/so_setfib/so_setfib.c projects/release-arm-redux/tools/regression/sockets/socketpair/Makefile projects/release-arm-redux/tools/regression/sockets/socketpair/socketpair.c projects/release-arm-redux/tools/regression/sockets/unix_bindconnect/Makefile projects/release-arm-redux/tools/regression/sockets/unix_bindconnect/unix_bindconnect.c projects/release-arm-redux/tools/regression/sockets/unix_close_race/Makefile projects/release-arm-redux/tools/regression/sockets/unix_close_race/unix_close_race.c projects/release-arm-redux/tools/regression/sockets/unix_passfd/Makefile projects/release-arm-redux/tools/regression/sockets/unix_passfd/unix_passfd.c projects/release-arm-redux/tools/regression/sockets/unix_sendtorace/Makefile projects/release-arm-redux/tools/regression/sockets/unix_sendtorace/unix_sendtorace.c projects/release-arm-redux/tools/regression/sockets/unix_socket/Makefile projects/release-arm-redux/tools/regression/sockets/unix_socket/unix_socket.c projects/release-arm-redux/tools/regression/sockets/unix_sorflush/Makefile projects/release-arm-redux/tools/regression/sockets/unix_sorflush/unix_sorflush.c projects/release-arm-redux/tools/regression/sockets/zerosend/zerosend.c projects/release-arm-redux/tools/tools/ath/athratestats/main.c projects/release-arm-redux/tools/tools/ath/athstats/athstats.c projects/release-arm-redux/tools/tools/cxgbtool/cxgbtool.c projects/release-arm-redux/tools/tools/iwn/iwnstats/iwn_ioctl.c projects/release-arm-redux/tools/tools/netmap/pkt-gen.c projects/release-arm-redux/usr.bin/Makefile projects/release-arm-redux/usr.bin/ar/read.c projects/release-arm-redux/usr.bin/bluetooth/bthost/bthost.c projects/release-arm-redux/usr.bin/bluetooth/btsockstat/btsockstat.c projects/release-arm-redux/usr.bin/bluetooth/rfcomm_sppd/rfcomm_sdp.c projects/release-arm-redux/usr.bin/bluetooth/rfcomm_sppd/rfcomm_sppd.c projects/release-arm-redux/usr.bin/bmake/Makefile projects/release-arm-redux/usr.bin/bmake/unit-tests/Makefile projects/release-arm-redux/usr.bin/calendar/io.c projects/release-arm-redux/usr.bin/clang/Makefile projects/release-arm-redux/usr.bin/col/col.c projects/release-arm-redux/usr.bin/column/column.c projects/release-arm-redux/usr.bin/find/find.1 projects/release-arm-redux/usr.bin/gcore/elf32core.c projects/release-arm-redux/usr.bin/gzip/gzip.1 projects/release-arm-redux/usr.bin/gzip/gzip.c projects/release-arm-redux/usr.bin/iconv/iconv.c projects/release-arm-redux/usr.bin/ipcs/Makefile projects/release-arm-redux/usr.bin/ipcs/ipc.c projects/release-arm-redux/usr.bin/ipcs/ipc.h projects/release-arm-redux/usr.bin/ipcs/ipcs.c projects/release-arm-redux/usr.bin/iscsictl/Makefile projects/release-arm-redux/usr.bin/iscsictl/iscsi.conf.5 projects/release-arm-redux/usr.bin/iscsictl/iscsictl.c projects/release-arm-redux/usr.bin/iscsictl/parse.y projects/release-arm-redux/usr.bin/iscsictl/periphs.c projects/release-arm-redux/usr.bin/jot/jot.1 projects/release-arm-redux/usr.bin/kdump/mkioctls projects/release-arm-redux/usr.bin/lam/lam.1 projects/release-arm-redux/usr.bin/lockf/lockf.1 projects/release-arm-redux/usr.bin/lockf/lockf.c projects/release-arm-redux/usr.bin/ministat/ministat.1 projects/release-arm-redux/usr.bin/mt/Makefile projects/release-arm-redux/usr.bin/mt/mt.c projects/release-arm-redux/usr.bin/netstat/bpf.c projects/release-arm-redux/usr.bin/netstat/if.c projects/release-arm-redux/usr.bin/netstat/inet6.c projects/release-arm-redux/usr.bin/netstat/mroute6.c projects/release-arm-redux/usr.bin/netstat/netstat.1 projects/release-arm-redux/usr.bin/netstat/route.c projects/release-arm-redux/usr.bin/nfsstat/nfsstat.c projects/release-arm-redux/usr.bin/patch/inp.c projects/release-arm-redux/usr.bin/patch/pch.c projects/release-arm-redux/usr.bin/patch/util.c projects/release-arm-redux/usr.bin/rpcgen/rpc_sample.c projects/release-arm-redux/usr.bin/rs/rs.1 projects/release-arm-redux/usr.bin/smbutil/Makefile projects/release-arm-redux/usr.bin/sockstat/sockstat.1 projects/release-arm-redux/usr.bin/sort/bwstring.c projects/release-arm-redux/usr.bin/sort/coll.c projects/release-arm-redux/usr.bin/sort/file.c projects/release-arm-redux/usr.bin/sort/file.h projects/release-arm-redux/usr.bin/sort/mem.c projects/release-arm-redux/usr.bin/sort/radixsort.c projects/release-arm-redux/usr.bin/sort/sort.1.in projects/release-arm-redux/usr.bin/sort/sort.c projects/release-arm-redux/usr.bin/top/machine.c projects/release-arm-redux/usr.bin/vi/Makefile projects/release-arm-redux/usr.bin/w/Makefile projects/release-arm-redux/usr.bin/w/w.c projects/release-arm-redux/usr.bin/wc/wc.c projects/release-arm-redux/usr.sbin/acpi/acpiconf/acpiconf.c projects/release-arm-redux/usr.sbin/acpi/acpidump/acpi.c projects/release-arm-redux/usr.sbin/amd/include/config.h projects/release-arm-redux/usr.sbin/ancontrol/ancontrol.c projects/release-arm-redux/usr.sbin/arp/arp.c projects/release-arm-redux/usr.sbin/authpf/Makefile projects/release-arm-redux/usr.sbin/bhyve/Makefile projects/release-arm-redux/usr.sbin/bhyve/bhyverun.c projects/release-arm-redux/usr.sbin/bhyve/block_if.c projects/release-arm-redux/usr.sbin/bhyve/block_if.h projects/release-arm-redux/usr.sbin/bhyve/pci_ahci.c projects/release-arm-redux/usr.sbin/bhyve/pci_virtio_block.c projects/release-arm-redux/usr.sbin/bhyve/pci_virtio_net.c projects/release-arm-redux/usr.sbin/bhyve/virtio.c projects/release-arm-redux/usr.sbin/bhyvectl/Makefile projects/release-arm-redux/usr.sbin/bhyvectl/bhyvectl.c projects/release-arm-redux/usr.sbin/bhyveload/Makefile projects/release-arm-redux/usr.sbin/bluetooth/bthidcontrol/bthidcontrol.c projects/release-arm-redux/usr.sbin/bluetooth/bthidcontrol/hid.c projects/release-arm-redux/usr.sbin/bluetooth/bthidcontrol/sdp.c projects/release-arm-redux/usr.sbin/bluetooth/bthidd/bthidd.c projects/release-arm-redux/usr.sbin/bluetooth/bthidd/client.c projects/release-arm-redux/usr.sbin/bluetooth/bthidd/hid.c projects/release-arm-redux/usr.sbin/bluetooth/bthidd/kbd.c projects/release-arm-redux/usr.sbin/bluetooth/bthidd/lexer.l projects/release-arm-redux/usr.sbin/bluetooth/bthidd/parser.y projects/release-arm-redux/usr.sbin/bluetooth/bthidd/server.c projects/release-arm-redux/usr.sbin/bluetooth/bthidd/session.c projects/release-arm-redux/usr.sbin/bluetooth/btpand/bnep.c projects/release-arm-redux/usr.sbin/bluetooth/btpand/btpand.c projects/release-arm-redux/usr.sbin/bluetooth/btpand/channel.c projects/release-arm-redux/usr.sbin/bluetooth/btpand/client.c projects/release-arm-redux/usr.sbin/bluetooth/btpand/event.c projects/release-arm-redux/usr.sbin/bluetooth/btpand/packet.c projects/release-arm-redux/usr.sbin/bluetooth/btpand/sdp.c projects/release-arm-redux/usr.sbin/bluetooth/btpand/server.c projects/release-arm-redux/usr.sbin/bluetooth/btpand/tap.c projects/release-arm-redux/usr.sbin/bluetooth/hccontrol/Makefile projects/release-arm-redux/usr.sbin/bluetooth/hccontrol/hccontrol.c projects/release-arm-redux/usr.sbin/bluetooth/hccontrol/hccontrol.h projects/release-arm-redux/usr.sbin/bluetooth/hccontrol/host_controller_baseband.c projects/release-arm-redux/usr.sbin/bluetooth/hccontrol/info.c projects/release-arm-redux/usr.sbin/bluetooth/hccontrol/link_control.c projects/release-arm-redux/usr.sbin/bluetooth/hccontrol/link_policy.c projects/release-arm-redux/usr.sbin/bluetooth/hccontrol/node.c projects/release-arm-redux/usr.sbin/bluetooth/hccontrol/util.c projects/release-arm-redux/usr.sbin/bluetooth/hcsecd/hcsecd.c projects/release-arm-redux/usr.sbin/bluetooth/hcsecd/parser.y projects/release-arm-redux/usr.sbin/bluetooth/l2control/l2cap.c projects/release-arm-redux/usr.sbin/bluetooth/l2control/l2control.c projects/release-arm-redux/usr.sbin/bluetooth/l2ping/l2ping.c projects/release-arm-redux/usr.sbin/bluetooth/rfcomm_pppd/rfcomm_pppd.c projects/release-arm-redux/usr.sbin/bluetooth/sdpcontrol/sdpcontrol.c projects/release-arm-redux/usr.sbin/bluetooth/sdpcontrol/search.c projects/release-arm-redux/usr.sbin/bluetooth/sdpd/bgd.c projects/release-arm-redux/usr.sbin/bluetooth/sdpd/dun.c projects/release-arm-redux/usr.sbin/bluetooth/sdpd/ftrn.c projects/release-arm-redux/usr.sbin/bluetooth/sdpd/gn.c projects/release-arm-redux/usr.sbin/bluetooth/sdpd/irmc.c projects/release-arm-redux/usr.sbin/bluetooth/sdpd/irmc_command.c projects/release-arm-redux/usr.sbin/bluetooth/sdpd/lan.c projects/release-arm-redux/usr.sbin/bluetooth/sdpd/main.c projects/release-arm-redux/usr.sbin/bluetooth/sdpd/nap.c projects/release-arm-redux/usr.sbin/bluetooth/sdpd/opush.c projects/release-arm-redux/usr.sbin/bluetooth/sdpd/panu.c projects/release-arm-redux/usr.sbin/bluetooth/sdpd/profile.c projects/release-arm-redux/usr.sbin/bluetooth/sdpd/provider.c projects/release-arm-redux/usr.sbin/bluetooth/sdpd/sar.c projects/release-arm-redux/usr.sbin/bluetooth/sdpd/scr.c projects/release-arm-redux/usr.sbin/bluetooth/sdpd/sd.c projects/release-arm-redux/usr.sbin/bluetooth/sdpd/server.c projects/release-arm-redux/usr.sbin/bluetooth/sdpd/sp.c projects/release-arm-redux/usr.sbin/bluetooth/sdpd/srr.c projects/release-arm-redux/usr.sbin/bluetooth/sdpd/ssar.c projects/release-arm-redux/usr.sbin/bluetooth/sdpd/ssr.c projects/release-arm-redux/usr.sbin/bluetooth/sdpd/sur.c projects/release-arm-redux/usr.sbin/bluetooth/sdpd/uuid.c projects/release-arm-redux/usr.sbin/bsdconfig/share/geom.subr projects/release-arm-redux/usr.sbin/bsdinstall/scripts/zfsboot projects/release-arm-redux/usr.sbin/bsnmpd/tools/bsnmptools/Makefile projects/release-arm-redux/usr.sbin/config/main.c projects/release-arm-redux/usr.sbin/crashinfo/crashinfo.sh projects/release-arm-redux/usr.sbin/crunch/crunchide/Makefile projects/release-arm-redux/usr.sbin/crunch/crunchide/crunchide.c projects/release-arm-redux/usr.sbin/crunch/crunchide/exec_elf32.c projects/release-arm-redux/usr.sbin/crunch/crunchide/extern.h projects/release-arm-redux/usr.sbin/ctld/ctl.conf.5 projects/release-arm-redux/usr.sbin/ctld/ctld.c projects/release-arm-redux/usr.sbin/ctld/discovery.c projects/release-arm-redux/usr.sbin/ctld/isns.c projects/release-arm-redux/usr.sbin/ctld/keys.c projects/release-arm-redux/usr.sbin/ctld/login.c projects/release-arm-redux/usr.sbin/ctld/parse.y projects/release-arm-redux/usr.sbin/ctld/pdu.c projects/release-arm-redux/usr.sbin/ctld/token.l projects/release-arm-redux/usr.sbin/fifolog/fifolog_reader/Makefile projects/release-arm-redux/usr.sbin/fifolog/fifolog_writer/Makefile projects/release-arm-redux/usr.sbin/freebsd-update/freebsd-update.sh projects/release-arm-redux/usr.sbin/ifmcstat/ifmcstat.c projects/release-arm-redux/usr.sbin/inetd/inetd.c projects/release-arm-redux/usr.sbin/ip6addrctl/ip6addrctl.c projects/release-arm-redux/usr.sbin/mld6query/mld6.c projects/release-arm-redux/usr.sbin/mountd/mountd.c projects/release-arm-redux/usr.sbin/ndp/ndp.c projects/release-arm-redux/usr.sbin/nfsd/nfsd.8 projects/release-arm-redux/usr.sbin/nfsd/nfsd.c projects/release-arm-redux/usr.sbin/ntp/Makefile projects/release-arm-redux/usr.sbin/ntp/config.h projects/release-arm-redux/usr.sbin/ntp/doc/Makefile projects/release-arm-redux/usr.sbin/ntp/doc/ntp-keygen.8 projects/release-arm-redux/usr.sbin/ntp/doc/ntp.conf.5 projects/release-arm-redux/usr.sbin/ntp/doc/ntp.keys.5 projects/release-arm-redux/usr.sbin/ntp/doc/ntpd.8 projects/release-arm-redux/usr.sbin/ntp/doc/ntpdc.8 projects/release-arm-redux/usr.sbin/ntp/doc/ntpq.8 projects/release-arm-redux/usr.sbin/ntp/doc/ntptrace.8 projects/release-arm-redux/usr.sbin/ntp/libntp/Makefile projects/release-arm-redux/usr.sbin/ntp/libopts/Makefile projects/release-arm-redux/usr.sbin/ntp/libparse/Makefile projects/release-arm-redux/usr.sbin/ntp/ntp-keygen/Makefile projects/release-arm-redux/usr.sbin/ntp/ntpd/Makefile projects/release-arm-redux/usr.sbin/ntp/ntpdate/Makefile projects/release-arm-redux/usr.sbin/ntp/ntpdc/Makefile projects/release-arm-redux/usr.sbin/ntp/ntpq/Makefile projects/release-arm-redux/usr.sbin/ntp/ntptime/Makefile projects/release-arm-redux/usr.sbin/ntp/scripts/mkver projects/release-arm-redux/usr.sbin/ntp/sntp/Makefile projects/release-arm-redux/usr.sbin/pkg/pkg.c projects/release-arm-redux/usr.sbin/pmcstat/pmcstat.8 projects/release-arm-redux/usr.sbin/pmcstat/pmcstat.c projects/release-arm-redux/usr.sbin/pmcstudy/Makefile projects/release-arm-redux/usr.sbin/pmcstudy/pmcstudy.c projects/release-arm-redux/usr.sbin/ppp/iface.c projects/release-arm-redux/usr.sbin/rip6query/rip6query.c projects/release-arm-redux/usr.sbin/route6d/route6d.c projects/release-arm-redux/usr.sbin/rpc.lockd/Makefile projects/release-arm-redux/usr.sbin/rrenumd/lexer.l projects/release-arm-redux/usr.sbin/rrenumd/parser.y projects/release-arm-redux/usr.sbin/rtadvctl/rtadvctl.c projects/release-arm-redux/usr.sbin/rtadvd/config.c projects/release-arm-redux/usr.sbin/rtadvd/if.c projects/release-arm-redux/usr.sbin/rtadvd/rrenum.c projects/release-arm-redux/usr.sbin/rtadvd/rtadvd.c projects/release-arm-redux/usr.sbin/rtsold/Makefile projects/release-arm-redux/usr.sbin/rtsold/if.c projects/release-arm-redux/usr.sbin/rtsold/probe.c projects/release-arm-redux/usr.sbin/rtsold/rtsold.c projects/release-arm-redux/usr.sbin/sysrc/sysrc projects/release-arm-redux/usr.sbin/tzsetup/tzsetup.c projects/release-arm-redux/usr.sbin/uhsoctl/uhsoctl.c projects/release-arm-redux/usr.sbin/vidcontrol/vidcontrol.c projects/release-arm-redux/usr.sbin/wpa/Makefile.crypto projects/release-arm-redux/usr.sbin/wpa/hostapd/Makefile projects/release-arm-redux/usr.sbin/wpa/ndis_events/ndis_events.c projects/release-arm-redux/usr.sbin/wpa/wpa_passphrase/Makefile projects/release-arm-redux/usr.sbin/wpa/wpa_supplicant/Makefile projects/release-arm-redux/usr.sbin/wpa/wpa_supplicant/Packet32.c Directory Properties: projects/release-arm-redux/ (props changed) projects/release-arm-redux/cddl/ (props changed) projects/release-arm-redux/cddl/contrib/opensolaris/ (props changed) projects/release-arm-redux/contrib/binutils/ (props changed) projects/release-arm-redux/contrib/bmake/ (props changed) projects/release-arm-redux/contrib/compiler-rt/ (props changed) projects/release-arm-redux/contrib/elftoolchain/ (props changed) projects/release-arm-redux/contrib/gcc/ (props changed) projects/release-arm-redux/contrib/ipfilter/ (props changed) projects/release-arm-redux/contrib/libarchive/ (props changed) projects/release-arm-redux/contrib/libarchive/libarchive/ (props changed) projects/release-arm-redux/contrib/libc++/ (props changed) projects/release-arm-redux/contrib/llvm/ (props changed) projects/release-arm-redux/contrib/llvm/tools/clang/ (props changed) projects/release-arm-redux/contrib/llvm/tools/lldb/ (props changed) projects/release-arm-redux/contrib/ntp/ (props changed) projects/release-arm-redux/contrib/ntp/INSTALL (props changed) projects/release-arm-redux/contrib/ntp/NOTES.y2kfixes (props changed) projects/release-arm-redux/contrib/ntp/README (props changed) projects/release-arm-redux/contrib/ntp/README.bk (props changed) projects/release-arm-redux/contrib/ntp/README.patches (props changed) projects/release-arm-redux/contrib/ntp/README.refclocks (props changed) projects/release-arm-redux/contrib/ntp/README.versions (props changed) projects/release-arm-redux/contrib/ntp/TODO (props changed) projects/release-arm-redux/contrib/ntp/adjtimed/README (props changed) projects/release-arm-redux/contrib/ntp/adjtimed/adjtimed.c (props changed) projects/release-arm-redux/contrib/ntp/compile (props changed) projects/release-arm-redux/contrib/ntp/conf/README (props changed) projects/release-arm-redux/contrib/ntp/conf/baldwin.conf (props changed) projects/release-arm-redux/contrib/ntp/conf/grundoon.conf (props changed) projects/release-arm-redux/contrib/ntp/conf/malarky.conf (props changed) projects/release-arm-redux/contrib/ntp/conf/pogo.conf (props changed) projects/release-arm-redux/contrib/ntp/conf/rackety.conf (props changed) projects/release-arm-redux/contrib/ntp/depcomp (props changed) projects/release-arm-redux/contrib/ntp/include/README (props changed) projects/release-arm-redux/contrib/ntp/include/adjtime.h (props changed) projects/release-arm-redux/contrib/ntp/include/ascii.h (props changed) projects/release-arm-redux/contrib/ntp/include/gps.h (props changed) projects/release-arm-redux/contrib/ntp/include/hopf6039.h (props changed) projects/release-arm-redux/contrib/ntp/include/mx4200.h (props changed) projects/release-arm-redux/contrib/ntp/include/ntif.h (props changed) projects/release-arm-redux/contrib/ntp/include/ntp_datum.h (props changed) projects/release-arm-redux/contrib/ntp/include/ntp_if.h (props changed) projects/release-arm-redux/contrib/ntp/include/parse_conf.h (props changed) projects/release-arm-redux/contrib/ntp/install-sh (props changed) projects/release-arm-redux/contrib/ntp/kernel/sys/README (props changed) projects/release-arm-redux/contrib/ntp/kernel/sys/bsd_audioirig.h (props changed) projects/release-arm-redux/contrib/ntp/kernel/sys/i8253.h (props changed) projects/release-arm-redux/contrib/ntp/kernel/sys/parsestreams.h (props changed) projects/release-arm-redux/contrib/ntp/kernel/sys/pcl720.h (props changed) projects/release-arm-redux/contrib/ntp/kernel/sys/ppsclock.h (props changed) projects/release-arm-redux/contrib/ntp/kernel/sys/timex.h (props changed) projects/release-arm-redux/contrib/ntp/kernel/sys/tpro.h (props changed) projects/release-arm-redux/contrib/ntp/kernel/sys/tt560_api.h (props changed) projects/release-arm-redux/contrib/ntp/libntp/README (props changed) projects/release-arm-redux/contrib/ntp/libntp/adjtime.c (props changed) projects/release-arm-redux/contrib/ntp/libntp/adjtimex.c (props changed) projects/release-arm-redux/contrib/ntp/libntp/systime_s.c (props changed) projects/release-arm-redux/contrib/ntp/libparse/README (props changed) projects/release-arm-redux/contrib/ntp/missing (props changed) projects/release-arm-redux/contrib/ntp/ntpd/jupiter.h (props changed) projects/release-arm-redux/contrib/ntp/ntpdate/README (props changed) projects/release-arm-redux/contrib/ntp/ntpdc/README (props changed) projects/release-arm-redux/contrib/ntp/ntpdc/nl_in.c (props changed) projects/release-arm-redux/contrib/ntp/ntpq/README (props changed) projects/release-arm-redux/contrib/ntp/parseutil/README (props changed) projects/release-arm-redux/contrib/ntp/results.y2kfixes (props changed) projects/release-arm-redux/contrib/ntp/scripts/monitoring/README (props changed) projects/release-arm-redux/contrib/ntp/scripts/monitoring/loopwatch.config.SAMPLE (props changed) projects/release-arm-redux/contrib/ntp/scripts/monitoring/lr.pl (props changed) projects/release-arm-redux/contrib/ntp/scripts/monitoring/ntploopstat (props changed) projects/release-arm-redux/contrib/ntp/scripts/monitoring/ntploopwatch (props changed) projects/release-arm-redux/contrib/ntp/scripts/monitoring/timelocal.pl (props changed) projects/release-arm-redux/contrib/ntp/scripts/stats/README (props changed) projects/release-arm-redux/contrib/ntp/scripts/stats/README.stats (props changed) projects/release-arm-redux/contrib/ntp/scripts/stats/README.timecodes (props changed) projects/release-arm-redux/contrib/ntp/scripts/stats/clock.awk (props changed) projects/release-arm-redux/contrib/ntp/scripts/stats/dupe.awk (props changed) projects/release-arm-redux/contrib/ntp/scripts/stats/ensemble.S (props changed) projects/release-arm-redux/contrib/ntp/scripts/stats/ensemble.awk (props changed) projects/release-arm-redux/contrib/ntp/scripts/stats/etf.S (props changed) projects/release-arm-redux/contrib/ntp/scripts/stats/etf.awk (props changed) projects/release-arm-redux/contrib/ntp/scripts/stats/itf.S (props changed) projects/release-arm-redux/contrib/ntp/scripts/stats/itf.awk (props changed) projects/release-arm-redux/contrib/ntp/scripts/stats/loop.S (props changed) projects/release-arm-redux/contrib/ntp/scripts/stats/loop.awk (props changed) projects/release-arm-redux/contrib/ntp/scripts/stats/loop_summary (props changed) projects/release-arm-redux/contrib/ntp/scripts/stats/peer.awk (props changed) projects/release-arm-redux/contrib/ntp/scripts/stats/psummary.awk (props changed) projects/release-arm-redux/contrib/ntp/scripts/stats/summary.sh (props changed) projects/release-arm-redux/contrib/ntp/scripts/stats/tdata.S (props changed) projects/release-arm-redux/contrib/ntp/scripts/stats/tdata.awk (props changed) projects/release-arm-redux/contrib/ntp/sntp/depcomp (props changed) projects/release-arm-redux/contrib/ntp/sntp/install-sh (props changed) projects/release-arm-redux/contrib/ntp/sntp/missing (props changed) projects/release-arm-redux/contrib/ntp/util/ansi2knr.1 (props changed) projects/release-arm-redux/contrib/ntp/util/ansi2knr.c (props changed) projects/release-arm-redux/contrib/ntp/util/byteorder.c (props changed) projects/release-arm-redux/contrib/ntp/util/kern.c (props changed) projects/release-arm-redux/contrib/ntp/util/longsize.c (props changed) projects/release-arm-redux/contrib/ntp/util/pps-api.c (props changed) projects/release-arm-redux/contrib/ntp/util/precision.c (props changed) projects/release-arm-redux/contrib/ntp/util/testrs6000.c (props changed) projects/release-arm-redux/contrib/ntp/util/timetrim.c (props changed) projects/release-arm-redux/contrib/nvi/ (props changed) projects/release-arm-redux/contrib/wpa/ (props changed) projects/release-arm-redux/contrib/xz/ (props changed) projects/release-arm-redux/crypto/openssh/ (props changed) projects/release-arm-redux/etc/ (props changed) projects/release-arm-redux/gnu/lib/ (props changed) projects/release-arm-redux/gnu/usr.bin/binutils/ (props changed) projects/release-arm-redux/include/ (props changed) projects/release-arm-redux/lib/libc/ (props changed) projects/release-arm-redux/lib/libvmmapi/ (props changed) projects/release-arm-redux/sbin/ (props changed) projects/release-arm-redux/sbin/ipfw/ (props changed) projects/release-arm-redux/share/ (props changed) projects/release-arm-redux/share/man/man4/ (props changed) projects/release-arm-redux/sys/ (props changed) projects/release-arm-redux/sys/amd64/vmm/ (props changed) projects/release-arm-redux/sys/boot/ (props changed) projects/release-arm-redux/sys/boot/powerpc/kboot/ (props changed) projects/release-arm-redux/sys/boot/powerpc/ofw/ (props changed) projects/release-arm-redux/sys/cddl/contrib/opensolaris/ (props changed) projects/release-arm-redux/sys/conf/ (props changed) projects/release-arm-redux/sys/contrib/dev/acpica/ (props changed) projects/release-arm-redux/sys/contrib/ipfilter/ (props changed) projects/release-arm-redux/sys/contrib/x86emu/ (props changed) projects/release-arm-redux/sys/gnu/dts/ (props changed) projects/release-arm-redux/sys/gnu/dts/arm/ (props changed) projects/release-arm-redux/usr.bin/calendar/ (props changed) projects/release-arm-redux/usr.sbin/bhyve/ (props changed) projects/release-arm-redux/usr.sbin/bhyvectl/ (props changed) projects/release-arm-redux/usr.sbin/bhyveload/ (props changed) projects/release-arm-redux/usr.sbin/rtadvctl/ (props changed) projects/release-arm-redux/usr.sbin/rtadvd/ (props changed) projects/release-arm-redux/usr.sbin/rtsold/ (props changed) Modified: projects/release-arm-redux/.arcconfig ============================================================================== --- projects/release-arm-redux/.arcconfig Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/.arcconfig Wed Apr 22 12:58:16 2015 (r281853) @@ -1,5 +1,4 @@ { "project.name": "S", - "phabricator.uri" : "https://reviews.freebsd.org/", - "history.immutable" : true + "phabricator.uri" : "https://reviews.freebsd.org/" } Modified: projects/release-arm-redux/.arclint ============================================================================== --- projects/release-arm-redux/.arclint Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/.arclint Wed Apr 22 12:58:16 2015 (r281853) @@ -1,9 +1,25 @@ { + "exclude": "(contrib|crypto)", "linters": { "python": { "type": "pep8", - "exclude": "(contrib)", "include": "(\\.py$)" + }, + "spelling": { + "type": "spelling" + }, + "chmod": { + "type": "chmod" + }, + "merge-conflict": { + "type": "merge-conflict" + }, + "filename": { + "type": "filename" + }, + "json": { + "type": "json", + "include": "(\\.arclint|\\.json$)" } } } Modified: projects/release-arm-redux/Makefile ============================================================================== --- projects/release-arm-redux/Makefile Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/Makefile Wed Apr 22 12:58:16 2015 (r281853) @@ -374,6 +374,17 @@ kernel-toolchains: # .if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets) TARGETS?=amd64 arm i386 mips pc98 powerpc sparc64 +# XXX Add arm64 to universe only if we have an external binutils installed. +# It does not build with the in-tree linnker. +.if exists(/usr/local/aarch64-freebsd/bin/ld) +TARGETS+=arm64 +TARGET_ARCHES_arm64?= aarch64 +.else +universe: universe_arm64_skip +universe_epilogue: universe_arm64_skip +universe_arm64_skip: universe_prologue + @echo ">> arm64 skipped - install aarch64-binutils port or package to build" +.endif TARGET_ARCHES_arm?= arm armeb armv6 armv6hf TARGET_ARCHES_mips?= mipsel mips mips64el mips64 mipsn32 TARGET_ARCHES_powerpc?= powerpc powerpc64 Modified: projects/release-arm-redux/Makefile.inc1 ============================================================================== --- projects/release-arm-redux/Makefile.inc1 Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/Makefile.inc1 Wed Apr 22 12:58:16 2015 (r281853) @@ -344,7 +344,8 @@ X${COMPILER}?= ${${COMPILER}} .endfor XBINUTILS= AS AR LD NM OBJCOPY OBJDUMP RANLIB SIZE STRINGS .for BINUTIL in ${XBINUTILS} -.if defined(CROSS_BINUTILS_PREFIX) +.if defined(CROSS_BINUTILS_PREFIX) && \ + exists(${CROSS_BINUTILS_PREFIX}${${BINUTIL}}) X${BINUTIL}?= ${CROSS_BINUTILS_PREFIX}${${BINUTIL}} .else X${BINUTIL}?= ${${BINUTIL}} @@ -384,9 +385,9 @@ DEPFLAGS+= -I${WORLDTMP}/usr/include/c++ TARGET_ABI?= unknown TARGET_TRIPLE?= ${TARGET_ARCH:C/amd64/x86_64/}-${TARGET_ABI}-freebsd11.0 XCFLAGS+= -target ${TARGET_TRIPLE} +.endif XCFLAGS+= --sysroot=${WORLDTMP} ${BFLAGS} XCXXFLAGS+= --sysroot=${WORLDTMP} ${BFLAGS} -.endif .else .if defined(CROSS_BINUTILS_PREFIX) && exists(${CROSS_BINUTILS_PREFIX}) BFLAGS+= -B${CROSS_BINUTILS_PREFIX} @@ -411,8 +412,9 @@ LIB32CPUFLAGS= -march=${TARGET_CPUTYPE} LIB32WMAKEENV= MACHINE=i386 MACHINE_ARCH=i386 \ MACHINE_CPU="i686 mmx sse sse2" LIB32WMAKEFLAGS= \ - AS="${AS} --32" \ - LD="${LD} -m elf_i386_fbsd -Y P,${LIB32TMP}/usr/lib32" + AS="${XAS} --32" \ + LD="${XLD} -m elf_i386_fbsd -Y P,${LIB32TMP}/usr/lib32" \ + OBJCOPY="${XOBJCOPY}" .elif ${TARGET_ARCH} == "powerpc64" .if empty(TARGET_CPUTYPE) @@ -422,7 +424,8 @@ LIB32CPUFLAGS= -mcpu=${TARGET_CPUTYPE} .endif LIB32WMAKEENV= MACHINE=powerpc MACHINE_ARCH=powerpc LIB32WMAKEFLAGS= \ - LD="${LD} -m elf32ppc_fbsd" + LD="${XLD} -m elf32ppc_fbsd" \ + OBJCOPY="${XOBJCOPY}" .endif @@ -1278,10 +1281,6 @@ _m4= lib/libohash \ ${_bt}-usr.bin/m4: ${_bt}-lib/libohash .endif -.if ${BOOTSTRAPPING} < 1000014 -_crunch= usr.sbin/crunch -.endif - .if ${BOOTSTRAPPING} < 1000026 _nmtree= lib/libnetbsd \ usr.sbin/nmtree @@ -1297,16 +1296,18 @@ _cat= bin/cat _lex= usr.bin/lex .endif +.if ${BOOTSTRAPPING} < 1001507 +_crunch= usr.sbin/crunch +.endif + .if ${BOOTSTRAPPING} >= 900040 && ${BOOTSTRAPPING} < 900041 _awk= usr.bin/awk .endif -.if ${BOOTSTRAPPING} < 1001506 _yacc= lib/liby \ usr.bin/yacc ${_bt}-usr.bin/yacc: ${_bt}-lib/liby -.endif .if ${MK_BSNMP} != "no" _gensnmptree= usr.sbin/bsnmpd/gensnmptree @@ -1356,8 +1357,7 @@ _kerberos5_bootstrap_tools= \ kerberos5/tools/slc \ usr.bin/compile_et -${_bt}-kerberos5/tools/slc: ${_bt}-kerberos5/lib/libroken -${_bt}-kerberos5/tools/asn1_compile: ${_bt}-kerberos5/lib/libroken +.ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g} .endif bootstrap-tools: .PHONY @@ -1463,12 +1463,9 @@ _btxld= usr.sbin/btxld .endif .endif .if ${TARGET_ARCH} != ${MACHINE_ARCH} -.if ${MK_RESCUE} != "no" || defined(RELEASEDIR) +.if ${MK_RESCUE} != "no" _crunchide= usr.sbin/crunch/crunchide .endif -.if ${TARGET_ARCH} == "i386" && defined(RELEASEDIR) -_kgzip= usr.sbin/kgzip -.endif .endif # If we're given an XAS, don't build binutils. @@ -1514,7 +1511,6 @@ cross-tools: .MAKE ${_cc} \ ${_btxld} \ ${_crunchide} \ - ${_kgzip} \ sys/boot/usb/tools ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \ cd ${.CURDIR}/${_tool} && \ Modified: projects/release-arm-redux/ObsoleteFiles.inc ============================================================================== --- projects/release-arm-redux/ObsoleteFiles.inc Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/ObsoleteFiles.inc Wed Apr 22 12:58:16 2015 (r281853) @@ -38,6 +38,42 @@ # xargs -n1 | sort | uniq -d; # done +# 20150418 +OLD_FILES+=sbin/mount_oldnfs +OLD_FILES+=usr/share/man/man8/mount_oldnfs.8.gz +# 20150416: ALTQ moved to net/altq +OLD_FILES+=usr/include/altq/altq_rmclass_debug.h +OLD_FILES+=usr/include/altq/altq.h +OLD_FILES+=usr/include/altq/altq_cdnr.h +OLD_FILES+=usr/include/altq/altq_hfsc.h +OLD_FILES+=usr/include/altq/altq_priq.h +OLD_FILES+=usr/include/altq/altqconf.h +OLD_FILES+=usr/include/altq/altq_classq.h +OLD_FILES+=usr/include/altq/altq_red.h +OLD_FILES+=usr/include/altq/if_altq.h +OLD_FILES+=usr/include/altq/altq_var.h +OLD_FILES+=usr/include/altq/altq_rmclass.h +OLD_FILES+=usr/include/altq/altq_cbq.h +OLD_FILES+=usr/include/altq/altq_rio.h +OLD_DIRS+=usr/include/altq +# 20150410 +OLD_FILES+=usr/share/doc/usd/10.exref/paper.ascii.gz +OLD_FILES+=usr/share/doc/usd/10.exref/summary.ascii.gz +OLD_DIRS+=usr/share/doc/usd/10.exref +OLD_FILES+=usr/share/doc/usd/11.edit/paper.ascii.gz +OLD_DIRS+=usr/share/doc/usd/11.edit +OLD_FILES+=usr/share/doc/usd/12.vi/paper.ascii.gz +OLD_FILES+=usr/share/doc/usd/12.vi/summary.ascii.gz +OLD_FILES+=usr/share/doc/usd/12.vi/viapwh.ascii.gz +OLD_DIRS+=usr/share/doc/usd/12.vi +OLD_FILES+=usr/share/doc/usd/13.viref/paper.ascii.gz +OLD_DIRS+=usr/share/doc/usd/13.viref +# 20150329 +.if ${TARGET_ARCH} == "arm" +OLD_FILES+=usr/include/bootconfig.h +.endif +# 20150326 +OLD_FILES+=usr/share/man/man1/pmcstudy.1.gz # 20150315: new clang import which bumps version from 3.5.1 to 3.6.0. OLD_FILES+=usr/include/clang/3.5.1/__wmmintrin_aes.h OLD_FILES+=usr/include/clang/3.5.1/__wmmintrin_pclmul.h Modified: projects/release-arm-redux/README ============================================================================== --- projects/release-arm-redux/README Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/README Wed Apr 22 12:58:16 2015 (r281853) @@ -8,39 +8,32 @@ sources in this tree - please see the sp more information). The Makefile in this directory supports a number of targets for -building components (or all) of the FreeBSD source tree, the most -commonly used one being ``world'', which rebuilds and installs -everything in the FreeBSD system from the source tree except the -kernel, the kernel-modules and the contents of /etc. The ``world'' -target should only be used in cases where the source tree has not -changed from the currently running version. See: -http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html +building components (or all) of the FreeBSD source tree. See build(7) +and http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html for more information, including setting make(1) variables. -The ``buildkernel'' and ``installkernel'' targets build and install +The `buildkernel` and `installkernel` targets build and install the kernel and the modules (see below). Please see the top of the Makefile in this directory for more information on the standard build targets and compile-time flags. -Building a kernel is a somewhat more involved process, documentation -for which can be found at: - http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html -And in the config(8) man page. +Building a kernel is a somewhat more involved process. See build(7), config(8), +and http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html +for more information. + Note: If you want to build and install the kernel with the -``buildkernel'' and ``installkernel'' targets, you might need to build +`buildkernel` and `installkernel` targets, you might need to build world before. More information is available in the handbook. -The sample kernel configuration files reside in the sys//conf -sub-directory (assuming that you've installed the kernel sources), the -file named GENERIC being the one used to build your initial installation -kernel. The file NOTES contains entries and documentation for all possible -devices, not just those commonly used. It is the successor of the ancient -LINT file, but in contrast to LINT, it is not buildable as a kernel but a -pure reference and documentation file. +The kernel configuration files reside in the sys//conf +sub-directory. GENERIC is the default configuration used in release builds. +NOTES contains entries and documentation for all possible +devices, not just those commonly used. Source Roadmap: --------------- + bin System/user commands. cddl Various commands and libraries under the Common Development @@ -77,6 +70,9 @@ share Shared resources. sys Kernel sources. +tests Regression tests which can be run by Kyua. See tests/README + for additional information. + tools Utilities for regression testing and miscellaneous tasks. usr.bin User commands. Modified: projects/release-arm-redux/UPDATING ============================================================================== --- projects/release-arm-redux/UPDATING Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/UPDATING Wed Apr 22 12:58:16 2015 (r281853) @@ -31,6 +31,15 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 11 disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20150415: + The const qualifier has been removed from iconv(3) to comply with + POSIX. The ports tree is aware of this from r384038 onwards. + +20150416: + Libraries specified by LIBADD in Makefiles must have a corresponding + DPADD_ variable to ensure correct dependencies. This is now + enforced in src.libnames.mk. + 20150324: From legacy ata(4) driver was removed support for SATA controllers supported by more functional drivers ahci(4), siis(4) and mvs(4). Modified: projects/release-arm-redux/bin/csh/config.h ============================================================================== --- projects/release-arm-redux/bin/csh/config.h Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/bin/csh/config.h Wed Apr 22 12:58:16 2015 (r281853) @@ -198,7 +198,7 @@ #define HAVE_WCWIDTH 1 /* Define as const if the declaration of iconv() needs const. */ -#define ICONV_CONST const +#define ICONV_CONST /* Support NLS. */ #define NLS 1 Modified: projects/release-arm-redux/bin/csh/iconv_stub.h ============================================================================== --- projects/release-arm-redux/bin/csh/iconv_stub.h Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/bin/csh/iconv_stub.h Wed Apr 22 12:58:16 2015 (r281853) @@ -30,7 +30,7 @@ #define _ICONV_H_ typedef void *iconv_t; -typedef size_t dl_iconv_t(iconv_t, const char **, size_t *, char **, size_t *); +typedef size_t dl_iconv_t(iconv_t, char **, size_t *, char **, size_t *); typedef int dl_iconv_close_t(iconv_t); extern iconv_t dl_iconv_open(const char *, const char *); Modified: projects/release-arm-redux/bin/ed/glbl.c ============================================================================== --- projects/release-arm-redux/bin/ed/glbl.c Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/bin/ed/glbl.c Wed Apr 22 12:58:16 2015 (r281853) @@ -60,7 +60,7 @@ build_active_list(int isgcmd) return ERR; if (isbinary) NUL_TO_NEWLINE(s, lp->len); - if (!regexec(pat, s, 0, NULL, 0) == isgcmd && + if (!(regexec(pat, s, 0, NULL, 0) == isgcmd) && set_active_node(lp) < 0) return ERR; } @@ -153,7 +153,7 @@ set_active_node(line_t *lp) if (active_list != NULL) { #endif if ((ts = (line_t **) realloc(active_list, - (ti += MINBUFSZ) * sizeof(line_t **))) == NULL) { + (ti += MINBUFSZ) * sizeof(line_t *))) == NULL) { fprintf(stderr, "%s\n", strerror(errno)); errmsg = "out of memory"; SPL0(); Modified: projects/release-arm-redux/bin/sh/sh.1 ============================================================================== --- projects/release-arm-redux/bin/sh/sh.1 Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/bin/sh/sh.1 Wed Apr 22 12:58:16 2015 (r281853) @@ -32,7 +32,7 @@ .\" from: @(#)sh.1 8.6 (Berkeley) 5/4/95 .\" $FreeBSD$ .\" -.Dd February 22, 2015 +.Dd April 18, 2015 .Dt SH 1 .Os .Sh NAME @@ -2574,8 +2574,7 @@ the former causes the specified signal t and the latter causes the default action to be taken. Omitting the .Ar action -is another way to request the default action, for compatibility reasons this -usage is not recommended though. +and using only signal numbers is another way to request the default action. In a subshell or utility environment, the shell resets trapped (but not ignored) signals to the default action. The Modified: projects/release-arm-redux/bin/sh/tests/builtins/Makefile ============================================================================== --- projects/release-arm-redux/bin/sh/tests/builtins/Makefile Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/bin/sh/tests/builtins/Makefile Wed Apr 22 12:58:16 2015 (r281853) @@ -137,6 +137,8 @@ FILES+= trap11.0 FILES+= trap12.0 FILES+= trap13.0 FILES+= trap14.0 +FILES+= trap15.0 +FILES+= trap16.0 FILES+= trap2.0 FILES+= trap3.0 FILES+= trap4.0 Copied: projects/release-arm-redux/bin/sh/tests/builtins/trap15.0 (from r281852, head/bin/sh/tests/builtins/trap15.0) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/release-arm-redux/bin/sh/tests/builtins/trap15.0 Wed Apr 22 12:58:16 2015 (r281853, copy of r281852, head/bin/sh/tests/builtins/trap15.0) @@ -0,0 +1,5 @@ +# $FreeBSD$ + +(${SH} -c 'term(){ exit 5;}; trap term TERM; kill -TERM $$') & +wait >/dev/null 2>&1 $! +[ $? -eq 5 ] Copied: projects/release-arm-redux/bin/sh/tests/builtins/trap16.0 (from r281852, head/bin/sh/tests/builtins/trap16.0) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/release-arm-redux/bin/sh/tests/builtins/trap16.0 Wed Apr 22 12:58:16 2015 (r281853, copy of r281852, head/bin/sh/tests/builtins/trap16.0) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +traps=$(${SH} -c 'trap "echo bad" 0; trap - 0; trap') +[ -z "$traps" ] || exit 1 +traps=$(${SH} -c 'trap "echo bad" 0; trap "" 0; trap') +expected_traps=$(${SH} -c 'trap "" EXIT; trap') +[ "$traps" = "$expected_traps" ] || exit 2 +traps=$(${SH} -c 'trap "echo bad" 0; trap 0; trap') +[ -z "$traps" ] || exit 3 +traps=$(${SH} -c 'trap "echo bad" 0; trap -- 0; trap') +[ -z "$traps" ] || exit 4 +traps=$(${SH} -c 'trap "echo bad" 0 1 2; trap - 0 1 2; trap') +[ -z "$traps" ] || exit 5 +traps=$(${SH} -c 'trap "echo bad" 0 1 2; trap "" 0 1 2; trap') +expected_traps=$(${SH} -c 'trap "" EXIT HUP INT; trap') +[ "$traps" = "$expected_traps" ] || exit 6 +traps=$(${SH} -c 'trap "echo bad" 0 1 2; trap 0 1 2; trap') +[ -z "$traps" ] || exit 7 +traps=$(${SH} -c 'trap "echo bad" 0 1 2; trap -- 0 1 2; trap') +[ -z "$traps" ] || exit 8 Modified: projects/release-arm-redux/bin/sh/tests/expansion/Makefile ============================================================================== --- projects/release-arm-redux/bin/sh/tests/expansion/Makefile Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/bin/sh/tests/expansion/Makefile Wed Apr 22 12:58:16 2015 (r281853) @@ -49,6 +49,8 @@ FILES+= ifs2.0 FILES+= ifs3.0 FILES+= ifs4.0 FILES+= ifs5.0 +FILES+= ifs6.0 +FILES+= ifs7.0 FILES+= length1.0 FILES+= length2.0 FILES+= length3.0 Copied: projects/release-arm-redux/bin/sh/tests/expansion/ifs6.0 (from r281852, head/bin/sh/tests/expansion/ifs6.0) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/release-arm-redux/bin/sh/tests/expansion/ifs6.0 Wed Apr 22 12:58:16 2015 (r281853, copy of r281852, head/bin/sh/tests/expansion/ifs6.0) @@ -0,0 +1,6 @@ +# $FreeBSD$ + +IFS=': ' +x=': :' +set -- $x +[ "$#|$1|$2|$3" = "2|||" ] Copied: projects/release-arm-redux/bin/sh/tests/expansion/ifs7.0 (from r281852, head/bin/sh/tests/expansion/ifs7.0) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/release-arm-redux/bin/sh/tests/expansion/ifs7.0 Wed Apr 22 12:58:16 2015 (r281853, copy of r281852, head/bin/sh/tests/expansion/ifs7.0) @@ -0,0 +1,5 @@ +# $FreeBSD$ + +IFS=2 +set -- $((123)) +[ "$#|$1|$2|$3" = "2|1|3|" ] Modified: projects/release-arm-redux/bin/sh/trap.c ============================================================================== --- projects/release-arm-redux/bin/sh/trap.c Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/bin/sh/trap.c Wed Apr 22 12:58:16 2015 (r281853) @@ -183,7 +183,7 @@ trapcmd(int argc __unused, char **argv) return 0; } action = NULL; - if (*argv && sigstring_to_signum(*argv) == -1) { + if (*argv && !is_number(*argv)) { if (strcmp(*argv, "-") == 0) argv++; else { Modified: projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/dtrace.1 ============================================================================== --- projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/dtrace.1 Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/dtrace.1 Wed Apr 22 12:58:16 2015 (r281853) @@ -21,7 +21,7 @@ .\" .\" $FreeBSD$ .\" -.Dd October 5, 2013 +.Dd April 18, 2015 .Dt DTRACE 1 .Os .Sh NAME @@ -670,7 +670,8 @@ Invalid command line options or argument .Sh SEE ALSO .Xr cpp 1 , .Xr dtruss 1 , -.Xr elf 5 +.Xr elf 5 , +.Xr SDT 9 .Rs .%T Solaris Dynamic Tracing Guide .Re Modified: projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.system.d ============================================================================== --- projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.system.d Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.system.d Wed Apr 22 12:58:16 2015 (r281853) @@ -35,11 +35,11 @@ BEGIN this->b = -2; system("echo %s %d %d", "foo", this->a, this->b); - system("ping localhost"); + system("ping -q -c 1 localhost 2>/dev/null | grep -v '^round-trip '"); system("echo %d", ++this->a); - system("ping localhost"); + system("ping -q -c 1 localhost 2>/dev/null | grep -v '^round-trip '"); system("echo %d", ++this->a); - system("ping localhost"); + system("ping -q -c 1 localhost 2>/dev/null | grep -v '^round-trip '"); system("echo %d", ++this->a); exit(0); } Modified: projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.system.d.out ============================================================================== --- projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.system.d.out Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.system.d.out Wed Apr 22 12:58:16 2015 (r281853) @@ -1,8 +1,17 @@ foo 9 -2 -localhost is alive +PING localhost (127.0.0.1): 56 data bytes + +--- localhost ping statistics --- +1 packets transmitted, 1 packets received, 0.0% packet loss 10 -localhost is alive +PING localhost (127.0.0.1): 56 data bytes + +--- localhost ping statistics --- +1 packets transmitted, 1 packets received, 0.0% packet loss 11 -localhost is alive +PING localhost (127.0.0.1): 56 data bytes + +--- localhost ping statistics --- +1 packets transmitted, 1 packets received, 0.0% packet loss 12 Modified: projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4localicmp.ksh ============================================================================== --- projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4localicmp.ksh Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4localicmp.ksh Wed Apr 22 12:58:16 2015 (r281853) @@ -45,12 +45,13 @@ fi dtrace=$1 local=127.0.0.1 -$dtrace -c "/sbin/ping $local 3" -qs /dev/stdin <ip_saddr == "$local" && args[2]->ip_daddr == "$local" && args[4]->ipv4_protocol == IPPROTO_ICMP/ { - printf("1 ip:::send ("); + printf("2 ip:::send ("); printf("args[2]: %d %d, ", args[2]->ip_ver, args[2]->ip_plength); printf("args[4]: %d %d %d %d %d)\n", args[4]->ipv4_ver, args[4]->ipv4_length, args[4]->ipv4_flags, @@ -61,7 +62,7 @@ ip:::receive /args[2]->ip_saddr == "$local" && args[2]->ip_daddr == "$local" && args[4]->ipv4_protocol == IPPROTO_ICMP/ { - printf("2 ip:::receive ("); + printf("3 ip:::receive ("); printf("args[2]: %d %d, ", args[2]->ip_ver, args[2]->ip_plength); printf("args[4]: %d %d %d %d %d)\n", args[4]->ipv4_ver, args[4]->ipv4_length, args[4]->ipv4_flags, Modified: projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4localicmp.ksh.out ============================================================================== --- projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4localicmp.ksh.out Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4localicmp.ksh.out Wed Apr 22 12:58:16 2015 (r281853) @@ -1,6 +1,8 @@ -1 ip:::send (args[2]: 4 64, args[4]: 4 84 0 0 255) -1 ip:::send (args[2]: 4 64, args[4]: 4 84 0 0 255) -2 ip:::receive (args[2]: 4 64, args[4]: 4 84 0 0 255) -2 ip:::receive (args[2]: 4 64, args[4]: 4 84 0 0 255) -127.0.0.1 is alive + +PING 127.0.0.1 (127.0.0.1): 56 data bytes +1 packets transmitted, 1 packets received, 0.0% packet loss +2 ip:::send (args[2]: 4 64, args[4]: 4 84 0 0 64) +2 ip:::send (args[2]: 4 64, args[4]: 4 84 0 0 64) +3 ip:::receive (args[2]: 4 64, args[4]: 4 84 0 0 64) +3 ip:::receive (args[2]: 4 64, args[4]: 4 84 0 0 64) Modified: projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4localtcp.ksh ============================================================================== --- projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4localtcp.ksh Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv4localtcp.ksh Wed Apr 22 12:58:16 2015 (r281853) @@ -73,6 +73,7 @@ cat > test.pl <<-EOPERL Timeout => 3); die "Could not connect to host $local port $tcpport" unless \$s; close \$s; + sleep(2); EOPERL $dtrace -c '/usr/bin/perl test.pl' -qs /dev/stdin < test.pl <<-EOPERL Timeout => 3); die "Could not connect to host $dest port $tcpport" unless \$s; close \$s; + sleep(2); EOPERL $dtrace -c '/usr/bin/perl test.pl' -qs /dev/stdin <ip_saddr == "$local" && args[2]->ip_daddr == "$local" && args[5]->ipv6_nexthdr == IPPROTO_ICMPV6/ { - printf("1 ip:::send ("); + printf("2 ip:::send ("); printf("args[2]: %d %d, ", args[2]->ip_ver, args[2]->ip_plength); printf("args[5]: %d %d %d)\n", args[5]->ipv6_ver, args[5]->ipv6_tclass, args[5]->ipv6_plen); @@ -70,7 +71,7 @@ ip:::receive /args[2]->ip_saddr == "$local" && args[2]->ip_daddr == "$local" && args[5]->ipv6_nexthdr == IPPROTO_ICMPV6/ { - printf("2 ip:::receive ("); + printf("3 ip:::receive ("); printf("args[2]: %d %d, ", args[2]->ip_ver, args[2]->ip_plength); printf("args[5]: %d %d %d)\n", args[5]->ipv6_ver, args[5]->ipv6_tclass, args[5]->ipv6_plen); Modified: projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv6localicmp.ksh.out ============================================================================== --- projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv6localicmp.ksh.out Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.ipv6localicmp.ksh.out Wed Apr 22 12:58:16 2015 (r281853) @@ -1,6 +1,8 @@ -::1 is alive -1 ip:::send (args[2]: 6 64, args[5]: 6 0 64) -1 ip:::send (args[2]: 6 64, args[5]: 6 0 64) -2 ip:::receive (args[2]: 6 64, args[5]: 6 0 64) -2 ip:::receive (args[2]: 6 64, args[5]: 6 0 64) + +PING6(56=40+8+8 bytes) ::1 --> ::1 +1 packets transmitted, 1 packets received, 0.0% packet loss +2 ip:::send (args[2]: 6 16, args[5]: 6 0 16) +2 ip:::send (args[2]: 6 16, args[5]: 6 0 16) +3 ip:::receive (args[2]: 6 16, args[5]: 6 0 16) +3 ip:::receive (args[2]: 6 16, args[5]: 6 0 16) Modified: projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.localtcpstate.ksh ============================================================================== --- projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.localtcpstate.ksh Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/tst.localtcpstate.ksh Wed Apr 22 12:58:16 2015 (r281853) @@ -79,6 +79,7 @@ cat > test.pl <<-EOPERL die "Could not connect to host $local port $tcpport" unless \$s; print \$s "testing state machine transitions"; close \$s; + sleep(2); EOPERL $dtrace -c '/usr/bin/perl test.pl' -qs /dev/stdin < test.pl <<-EOPERL die "Could not connect to host $dest port $tcpport" unless \$s; print \$s "testing state machine transitions"; close \$s; + sleep(2); EOPERL $dtrace -c '/usr/bin/perl test.pl' -qs /dev/stdin <e_type == ET_DYN ? (uintptr_t) lmp->l_addr : 0; +#ifdef __FreeBSD__ + dh.dofhp_pid = getpid(); +#endif if (lmid == 0) { (void) snprintf(dh.dofhp_mod, sizeof (dh.dofhp_mod), @@ -184,7 +187,7 @@ dtrace_dof_init(void) else { dprintf(1, "DTrace ioctl succeeded for DOF at %p\n", dof); #ifdef __FreeBSD__ - gen = dh.gen; + gen = dh.dofhp_gen; #endif } Modified: projects/release-arm-redux/cddl/contrib/opensolaris/lib/libdtrace/common/dt_consume.c ============================================================================== --- projects/release-arm-redux/cddl/contrib/opensolaris/lib/libdtrace/common/dt_consume.c Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/cddl/contrib/opensolaris/lib/libdtrace/common/dt_consume.c Wed Apr 22 12:58:16 2015 (r281853) @@ -727,8 +727,8 @@ dt_print_packed(dtrace_hdl_t *dtp, FILE utf8 = B_TRUE; } else if ((term = getenv("TERM")) != NULL && (strcmp(term, "sun") == 0 || - strcmp(term, "sun-color") == 0) || - strcmp(term, "dumb") == 0) { + strcmp(term, "sun-color") == 0 || + strcmp(term, "dumb") == 0)) { utf8 = B_FALSE; } else { utf8 = B_TRUE; Modified: projects/release-arm-redux/cddl/contrib/opensolaris/lib/libdtrace/common/dt_link.c ============================================================================== --- projects/release-arm-redux/cddl/contrib/opensolaris/lib/libdtrace/common/dt_link.c Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/cddl/contrib/opensolaris/lib/libdtrace/common/dt_link.c Wed Apr 22 12:58:16 2015 (r281853) @@ -1785,11 +1785,17 @@ dtrace_program_link(dtrace_hdl_t *dtp, d "failed to open %s: %s", file, strerror(errno))); } #else - snprintf(tfile, sizeof(tfile), "%s.XXXXXX", file); - if ((fd = mkstemp(tfile)) == -1) - return (dt_link_error(dtp, NULL, -1, NULL, - "failed to create temporary file %s: %s", - tfile, strerror(errno))); + if (dtp->dt_lazyload) { + if ((fd = open(file, O_RDWR | O_CREAT | O_TRUNC, 0666)) < 0) + return (dt_link_error(dtp, NULL, -1, NULL, + "failed to open %s: %s", file, strerror(errno))); + } else { + snprintf(tfile, sizeof(tfile), "%s.XXXXXX", file); + if ((fd = mkstemp(tfile)) == -1) + return (dt_link_error(dtp, NULL, -1, NULL, + "failed to create temporary file %s: %s", + tfile, strerror(errno))); + } #endif /* Modified: projects/release-arm-redux/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pid.c ============================================================================== --- projects/release-arm-redux/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pid.c Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pid.c Wed Apr 22 12:58:16 2015 (r281853) @@ -44,10 +44,15 @@ #include #include #include +#include + #ifndef illumos +#include +#include #include +#include +#include #endif -#include typedef struct dt_pid_probe { dtrace_hdl_t *dpp_dtp; @@ -566,6 +571,12 @@ dt_pid_usdt_mapping(void *data, const pr prsyminfo_t sip; dof_helper_t dh; GElf_Half e_type; +#ifdef __FreeBSD__ + dof_hdr_t hdr; + size_t sz; + uint64_t dofmax; + void *dof; +#endif const char *mname; const char *syms[] = { "___SUNW_dof", "__SUNW_dof" }; int i, fd = -1; @@ -595,17 +606,61 @@ dt_pid_usdt_mapping(void *data, const pr continue; } - dh.dofhp_dof = sym.st_value; +#ifdef __FreeBSD__ dh.dofhp_addr = (e_type == ET_EXEC) ? 0 : pmp->pr_vaddr; + if (Pread(P, &hdr, sizeof (hdr), sym.st_value) != + sizeof (hdr)) { + dt_dprintf("read of DOF header failed\n"); + continue; + } + + sz = sizeof(dofmax); + if (sysctlbyname("kern.dtrace.dof_maxsize", &dofmax, &sz, + NULL, 0) != 0) { + dt_dprintf("failed to read dof_maxsize: %s\n", + strerror(errno)); + continue; + } + if (dofmax < hdr.dofh_loadsz) { + dt_dprintf("DOF load size exceeds maximum\n"); + continue; + } + + if ((dof = malloc(hdr.dofh_loadsz)) == NULL) + return (-1); + + if (Pread(P, dof, hdr.dofh_loadsz, sym.st_value) != + hdr.dofh_loadsz) { + free(dof); + dt_dprintf("read of DOF section failed\n"); + continue; + } + + dh.dofhp_dof = (uintptr_t)dof; + dh.dofhp_pid = proc_getpid(P); dt_pid_objname(dh.dofhp_mod, sizeof (dh.dofhp_mod), -#ifdef illumos sip.prs_lmid, mname); + + if (fd == -1 && + (fd = open("/dev/dtrace/helper", O_RDWR, 0)) < 0) { + dt_dprintf("open of helper device failed: %s\n", + strerror(errno)); + free(dof); + return (-1); /* errno is set for us */ + } + + if (ioctl(fd, DTRACEHIOC_ADDDOF, &dh, sizeof (dh)) < 0) + dt_dprintf("DOF was rejected for %s\n", dh.dofhp_mod); + + free(dof); #else - 0, mname); -#endif + dh.dofhp_dof = sym.st_value; + dh.dofhp_addr = (e_type == ET_EXEC) ? 0 : pmp->pr_vaddr; + + dt_pid_objname(dh.dofhp_mod, sizeof (dh.dofhp_mod), + sip.prs_lmid, mname); -#ifdef illumos if (fd == -1 && (fd = pr_open(P, "/dev/dtrace/helper", O_RDWR, 0)) < 0) { dt_dprintf("pr_open of helper device failed: %s\n", @@ -618,8 +673,10 @@ dt_pid_usdt_mapping(void *data, const pr #endif } -#ifdef illumos if (fd != -1) +#ifdef __FreeBSD__ + (void) close(fd); +#else (void) pr_close(P, fd); #endif @@ -634,7 +691,6 @@ dt_pid_create_usdt_probes(dtrace_probede int ret = 0; assert(DT_MUTEX_HELD(&dpr->dpr_lock)); -#ifdef illumos (void) Pupdate_maps(P); if (Pobject_iter(P, dt_pid_usdt_mapping, P) != 0) { ret = -1; @@ -646,9 +702,6 @@ dt_pid_create_usdt_probes(dtrace_probede (int)proc_getpid(P), strerror(errno)); #endif } -#else - ret = 0; -#endif /* * Put the module name in its canonical form. Modified: projects/release-arm-redux/cddl/lib/libdtrace/libproc_compat.h ============================================================================== --- projects/release-arm-redux/cddl/lib/libdtrace/libproc_compat.h Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/cddl/lib/libdtrace/libproc_compat.h Wed Apr 22 12:58:16 2015 (r281853) @@ -59,6 +59,6 @@ #define Pstate proc_state #define Psymbol_iter_by_addr proc_iter_symbyaddr #define Punsetflags proc_clearflags -#define Pupdate_maps(p) do { } while (0) +#define Pupdate_maps proc_rdagent #define Pupdate_syms proc_updatesyms #define Pxecbkpt proc_bkptexec Modified: projects/release-arm-redux/cddl/usr.bin/ctfmerge/Makefile ============================================================================== --- projects/release-arm-redux/cddl/usr.bin/ctfmerge/Makefile Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/cddl/usr.bin/ctfmerge/Makefile Wed Apr 22 12:58:16 2015 (r281853) @@ -33,7 +33,6 @@ CFLAGS+= -I${.CURDIR}/../../../sys/cddl/ -I${OPENSOLARIS_USR_DISTDIR}/tools/ctf/cvt \ -I${OPENSOLARIS_SYS_DISTDIR}/uts/common -DPADD= ${LIBDWARF} ${LIBELF} ${LIBZ} ${LIBPTHREAD} -LDADD= -ldwarf -lelf -lz -lpthread +LIBADD= elf z pthread .include Modified: projects/release-arm-redux/cddl/usr.sbin/dtrace/tests/Makefile ============================================================================== --- projects/release-arm-redux/cddl/usr.sbin/dtrace/tests/Makefile Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/cddl/usr.sbin/dtrace/tests/Makefile Wed Apr 22 12:58:16 2015 (r281853) @@ -8,10 +8,8 @@ TESTS_SUBDIRS+= common .PATH: ${.CURDIR:H:H:H:H}/tests KYUAFILE= YES -.PATH: ${.CURDIR:H:H:H}/contrib/opensolaris/cmd/dtrace/test/cmd/scripts +.PATH: ${.CURDIR}/tools SCRIPTSDIR= ${TESTSDIR} -SCRIPTS= dtest.pl - -SUBDIR_PARALLEL= +SCRIPTS= dtest.sh .include Modified: projects/release-arm-redux/cddl/usr.sbin/dtrace/tests/Makefile.inc1 ============================================================================== --- projects/release-arm-redux/cddl/usr.sbin/dtrace/tests/Makefile.inc1 Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/cddl/usr.sbin/dtrace/tests/Makefile.inc1 Wed Apr 22 12:58:16 2015 (r281853) @@ -16,7 +16,6 @@ ${TESTGROUP}EXEDIR= ${TESTSDIR} TESTWRAPPER= t_dtrace_contrib ATF_TESTS_SH+= ${TESTWRAPPER} -TEST_METADATA.t_dtrace_contrib+= required_files="/usr/local/bin/perl" TEST_METADATA.t_dtrace_contrib+= required_files="/usr/local/bin/ksh" TEST_METADATA.t_dtrace_contrib+= required_user="root" Copied: projects/release-arm-redux/cddl/usr.sbin/dtrace/tests/tools/dtest.sh (from r281852, head/cddl/usr.sbin/dtrace/tests/tools/dtest.sh) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/release-arm-redux/cddl/usr.sbin/dtrace/tests/tools/dtest.sh Wed Apr 22 12:58:16 2015 (r281853, copy of r281852, head/cddl/usr.sbin/dtrace/tests/tools/dtest.sh) @@ -0,0 +1,129 @@ +# $FreeBSD$ + +usage() +{ + cat >&2 <<__EOF__ +A harness for test cases in the DTrace test suite. + +usage: $(basename $0) +__EOF__ + exit 1 +} + +gettag() +{ + local tag + + tag=$(basename $1) + tag=${tag#*.} + tag=${tag%%[a-z.]*} + echo $tag +} + +runtest() +{ + local dflags exe exstatus pid retval status + + exstatus=0 + retval=0 + + case $TFILE in + drp.DTRACEDROP_*.d|err.*.d|tst.*.d) + case $TFILE in + drp.DTRACEDROP_*.d) + dflags="-x droptags" + tag=$(gettag "$TFILE") + ;; + err.D_*.d) + exstatus=1 + dflags="-x errtags" + tag=$(gettag "$TFILE") + ;; + err.*.d) + exstatus=1 + ;; + esac + + exe=${TFILE%.*}.exe + if [ -f "$exe" -a -x "$exe" ]; then + ./$exe & + pid=$! + dflags="$dflags ${pid}" + fi + + dtrace -C -s "${TFILE}" $dflags >$STDOUT 2>$STDERR + status=$? + + if [ $status -ne $exstatus ]; then + ERRMSG="dtrace exited with status ${status}, expected ${exstatus}" + retval=1 + elif [ -n "${tag}" ] && ! grep -Fq " [${tag}] " ${STDERR}; then + ERRMSG="dtrace's error output did not contain expected tag ${tag}" + retval=1 + fi + + if [ -n "$pid" ]; then + kill -0 $pid >/dev/null 2>&1 && kill -9 $pid >/dev/null 2>&1 + wait + fi + ;; + err.*.ksh|tst.*.ksh) + expr "$TFILE" : 'err.*' >/dev/null && exstatus=1 + + ksh "$TFILE" /usr/sbin/dtrace >$STDOUT 2>$STDERR + status=$? + + if [ $status -ne $exstatus ]; then + ERRMSG="script exited with status ${status}, expected ${exstatus}" + retval=1 + fi + ;; + *) + ERRMSG="unexpected test file name $TFILE" + retval=1 + ;; + esac + + return $retval +} + +[ $# -eq 1 ] || usage + +readonly STDERR=$(mktemp) +readonly STDOUT=$(mktemp) +readonly TFILE=$(basename $1) +readonly EXOUT=${TFILE}.out + +kldstat -q -m dtrace_test || kldload dtrace_test +cd $(dirname $1) +runtest +RESULT=$? + +if [ $RESULT -eq 0 -a -f $EXOUT -a -r $EXOUT ] && \ + ! cmp $STDOUT $EXOUT >/dev/null 2>&1; then + ERRMSG="test output mismatch" + RESULT=1 +fi + +if [ $RESULT -ne 0 ]; then + echo "test $TFILE failed: $ERRMSG" >&2 + if [ $(stat -f '%z' $STDOUT) -gt 0 ]; then + cat >&2 <<__EOF__ +test stdout: +-- +$(cat $STDOUT) +-- +__EOF__ + fi + if [ $(stat -f '%z' $STDERR) -gt 0 ]; then + cat >&2 <<__EOF__ +test stderr: +-- +$(cat $STDERR) +-- +__EOF__ + fi +fi + +rm -f $STDERR $STDOUT +exit $RESULT Modified: projects/release-arm-redux/cddl/usr.sbin/dtrace/tests/tools/gentest.sh ============================================================================== --- projects/release-arm-redux/cddl/usr.sbin/dtrace/tests/tools/gentest.sh Wed Apr 22 12:39:19 2015 (r281852) +++ projects/release-arm-redux/cddl/usr.sbin/dtrace/tests/tools/gentest.sh Wed Apr 22 12:58:16 2015 (r281853) @@ -33,8 +33,8 @@ ${tcase}_head() ${tcase}_body() { $mod - atf_check -s exit:0 -o ignore -e ignore \\ - "\$(atf_get_srcdir)/../../dtest" -n "\$(atf_get_srcdir)/${tfile}" *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Wed Apr 22 18:46:30 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CC4A97F3; Wed, 22 Apr 2015 18:46:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BADCE1560; Wed, 22 Apr 2015 18:46:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3MIkU69025455; Wed, 22 Apr 2015 18:46:30 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3MIkUc4025453; Wed, 22 Apr 2015 18:46:30 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201504221846.t3MIkUc4025453@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Wed, 22 Apr 2015 18:46:30 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r281864 - projects/release-install-debug/usr.sbin/bsdinstall/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.20 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: Wed, 22 Apr 2015 18:46:30 -0000 Author: gjb Date: Wed Apr 22 18:46:29 2015 New Revision: 281864 URL: https://svnweb.freebsd.org/changeset/base/281864 Log: Fix mapping the distribution package name in the MANIFEST to what is available on-disk to fix installing distribution sets that are available locally, but do not directly match what is shown on the distribution selection menu. Instead of doing any further string manipulation to create the menu, just use the distribution set name without the '.txz' suffix. At this point, the fourth column in the MANIFEST is likely not needed anymore, but it won't be removed yet until I am certain. Sponsored by: The FreeBSD Foundation Modified: projects/release-install-debug/usr.sbin/bsdinstall/scripts/auto Modified: projects/release-install-debug/usr.sbin/bsdinstall/scripts/auto ============================================================================== --- projects/release-install-debug/usr.sbin/bsdinstall/scripts/auto Wed Apr 22 18:35:02 2015 (r281863) +++ projects/release-install-debug/usr.sbin/bsdinstall/scripts/auto Wed Apr 22 18:46:29 2015 (r281864) @@ -66,8 +66,8 @@ bsdinstall hostname || error "Set hostna export DISTRIBUTIONS="base.txz kernel.txz" if [ -f $BSDINSTALL_DISTDIR/MANIFEST ]; then - DISTMENU=`awk -F'\t' '!/^(kernel\.txz|base\.txz)/{print $4,$5,$6}' $BSDINSTALL_DISTDIR/MANIFEST` - DISTMENU="$(echo ${DISTMENU} | tr '_' '-')" + DISTMENU=`awk -F'\t' '!/^(kernel\.txz|base\.txz)/{print $1,$5,$6}' $BSDINSTALL_DISTDIR/MANIFEST` + DISTMENU="$(echo ${DISTMENU} | sed -E 's/\.txz//g')" exec 3>&1 EXTRA_DISTS=$( eval dialog \ From owner-svn-src-projects@FreeBSD.ORG Fri Apr 24 19:51:05 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E6889FB7; Fri, 24 Apr 2015 19:51:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BCABD1ABF; Fri, 24 Apr 2015 19:51:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3OJp5ZU080441; Fri, 24 Apr 2015 19:51:05 GMT (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3OJp4Lw080429; Fri, 24 Apr 2015 19:51:04 GMT (envelope-from glebius@FreeBSD.org) Message-Id: <201504241951.t3OJp4Lw080429@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: glebius set sender to glebius@FreeBSD.org using -f From: Gleb Smirnoff Date: Fri, 24 Apr 2015 19:51:04 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r281948 - in projects/ifnet/sys/dev: alc bge msk re 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.20 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: Fri, 24 Apr 2015 19:51:06 -0000 Author: glebius Date: Fri Apr 24 19:51:04 2015 New Revision: 281948 URL: https://svnweb.freebsd.org/changeset/base/281948 Log: Followup on r281227. If we put the mbuf on queue, we must not return an error, even of link is down. Returning an error now means give the mbuf back to stack. Sponsored by: Netflix Sponsored by: Nginx, Inc. Modified: projects/ifnet/sys/dev/alc/if_alc.c projects/ifnet/sys/dev/bge/if_bge.c projects/ifnet/sys/dev/msk/if_msk.c projects/ifnet/sys/dev/re/if_re.c Modified: projects/ifnet/sys/dev/alc/if_alc.c ============================================================================== --- projects/ifnet/sys/dev/alc/if_alc.c Fri Apr 24 19:26:01 2015 (r281947) +++ projects/ifnet/sys/dev/alc/if_alc.c Fri Apr 24 19:51:04 2015 (r281948) @@ -2881,9 +2881,9 @@ alc_transmit(if_t ifp, struct mbuf *m) sc = if_getsoftc(ifp, IF_DRIVER_SOFTC); ALC_LOCK(sc); - error = alc_start(sc); + (void )alc_start(sc); ALC_UNLOCK(sc); - return (error); + return (0); } static int Modified: projects/ifnet/sys/dev/bge/if_bge.c ============================================================================== --- projects/ifnet/sys/dev/bge/if_bge.c Fri Apr 24 19:26:01 2015 (r281947) +++ projects/ifnet/sys/dev/bge/if_bge.c Fri Apr 24 19:51:04 2015 (r281948) @@ -5398,9 +5398,9 @@ bge_transmit(if_t ifp, struct mbuf *m) sc = if_getsoftc(ifp, IF_DRIVER_SOFTC); BGE_LOCK(sc); - error = bge_start_locked(sc); + (void )bge_start_locked(sc); BGE_UNLOCK(sc); - return (error); + return (0); } static void Modified: projects/ifnet/sys/dev/msk/if_msk.c ============================================================================== --- projects/ifnet/sys/dev/msk/if_msk.c Fri Apr 24 19:26:01 2015 (r281947) +++ projects/ifnet/sys/dev/msk/if_msk.c Fri Apr 24 19:51:04 2015 (r281948) @@ -2894,9 +2894,9 @@ msk_transmit(if_t ifp, struct mbuf *m) sc_if = if_getsoftc(ifp, IF_DRIVER_SOFTC); MSK_IF_LOCK(sc_if); - error = msk_start(sc_if); + (void )msk_start(sc_if); MSK_IF_UNLOCK(sc_if); - return (error); + return (0); } static int Modified: projects/ifnet/sys/dev/re/if_re.c ============================================================================== --- projects/ifnet/sys/dev/re/if_re.c Fri Apr 24 19:26:01 2015 (r281947) +++ projects/ifnet/sys/dev/re/if_re.c Fri Apr 24 19:51:04 2015 (r281948) @@ -2918,9 +2918,9 @@ re_transmit(if_t ifp, struct mbuf *m) sc = if_getsoftc(ifp, IF_DRIVER_SOFTC); RL_LOCK(sc); - error = re_start(sc); + (void )re_start(sc); RL_UNLOCK(sc); - return (error); + return (0); } static int From owner-svn-src-projects@FreeBSD.ORG Fri Apr 24 20:09:55 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 30E43677; Fri, 24 Apr 2015 20:09:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1F37D1C3E; Fri, 24 Apr 2015 20:09:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3OK9sH3090809; Fri, 24 Apr 2015 20:09:54 GMT (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3OK9r58090798; Fri, 24 Apr 2015 20:09:53 GMT (envelope-from glebius@FreeBSD.org) Message-Id: <201504242009.t3OK9r58090798@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: glebius set sender to glebius@FreeBSD.org using -f From: Gleb Smirnoff Date: Fri, 24 Apr 2015 20:09:53 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r281949 - in projects/ifnet/sys/dev: alc bge cadence fxp rl xl 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.20 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: Fri, 24 Apr 2015 20:09:55 -0000 Author: glebius Date: Fri Apr 24 20:09:52 2015 New Revision: 281949 URL: https://svnweb.freebsd.org/changeset/base/281949 Log: Those who use miibus(4) should set IFCAP_LINKSTATE. Modified: projects/ifnet/sys/dev/alc/if_alc.c projects/ifnet/sys/dev/bge/if_bge.c projects/ifnet/sys/dev/cadence/if_cgem.c projects/ifnet/sys/dev/fxp/if_fxp.c projects/ifnet/sys/dev/rl/if_rl.c projects/ifnet/sys/dev/xl/if_xl.c Modified: projects/ifnet/sys/dev/alc/if_alc.c ============================================================================== --- projects/ifnet/sys/dev/alc/if_alc.c Fri Apr 24 19:51:04 2015 (r281948) +++ projects/ifnet/sys/dev/alc/if_alc.c Fri Apr 24 20:09:52 2015 (r281949) @@ -1366,7 +1366,8 @@ alc_attach(device_t dev) .ifat_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST, .ifat_capabilities = IFCAP_TXCSUM | IFCAP_TSO4 | IFCAP_VLAN_MTU | IFCAP_VLAN_HWTAGGING | - IFCAP_VLAN_HWCSUM | IFCAP_VLAN_HWTSO, + IFCAP_VLAN_HWCSUM | IFCAP_VLAN_HWTSO | + IFCAP_LINKSTATE, .ifat_hwassist = ALC_CSUM_FEATURES | CSUM_TSO, }; struct alc_softc *sc; Modified: projects/ifnet/sys/dev/bge/if_bge.c ============================================================================== --- projects/ifnet/sys/dev/bge/if_bge.c Fri Apr 24 19:51:04 2015 (r281948) +++ projects/ifnet/sys/dev/bge/if_bge.c Fri Apr 24 20:09:52 2015 (r281949) @@ -3866,6 +3866,7 @@ again: */ if (sc->bge_asf_mode & ASF_STACKUP) BGE_SETBIT(sc, BGE_MODE_CTL, BGE_MODECTL_STACKUP); + ifat.ifat_capabilities |= IFCAP_LINKSTATE; } /* Modified: projects/ifnet/sys/dev/cadence/if_cgem.c ============================================================================== --- projects/ifnet/sys/dev/cadence/if_cgem.c Fri Apr 24 19:51:04 2015 (r281948) +++ projects/ifnet/sys/dev/cadence/if_cgem.c Fri Apr 24 20:09:52 2015 (r281949) @@ -1605,7 +1605,7 @@ cgem_attach(device_t dev) .ifat_drv = &cgem_ifdrv, .ifat_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST, .ifat_capabilities = IFCAP_HWCSUM | IFCAP_HWCSUM_IPV6 | - IFCAP_VLAN_MTU | IFCAP_VLAN_HWCSUM, + IFCAP_LINKSTATE | IFCAP_VLAN_MTU | IFCAP_VLAN_HWCSUM, }; struct cgem_softc *sc = device_get_softc(dev); phandle_t node; Modified: projects/ifnet/sys/dev/fxp/if_fxp.c ============================================================================== --- projects/ifnet/sys/dev/fxp/if_fxp.c Fri Apr 24 19:51:04 2015 (r281948) +++ projects/ifnet/sys/dev/fxp/if_fxp.c Fri Apr 24 20:09:52 2015 (r281949) @@ -842,6 +842,7 @@ fxp_attach(device_t dev) device_printf(dev, "attaching PHYs failed\n"); goto fail; } + ifat.ifat_capabilities |= IFCAP_LINKSTATE; } /* Modified: projects/ifnet/sys/dev/rl/if_rl.c ============================================================================== --- projects/ifnet/sys/dev/rl/if_rl.c Fri Apr 24 19:51:04 2015 (r281948) +++ projects/ifnet/sys/dev/rl/if_rl.c Fri Apr 24 20:09:52 2015 (r281949) @@ -648,7 +648,7 @@ rl_attach(device_t dev) .ifat_version = IF_ATTACH_VERSION, .ifat_drv = &rl_ifdrv, .ifat_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST, - .ifat_capabilities = IFCAP_VLAN_MTU, + .ifat_capabilities = IFCAP_VLAN_MTU | IFCAP_LINKSTATE, }; uint8_t eaddr[ETHER_ADDR_LEN]; uint16_t as[3]; Modified: projects/ifnet/sys/dev/xl/if_xl.c ============================================================================== --- projects/ifnet/sys/dev/xl/if_xl.c Fri Apr 24 19:51:04 2015 (r281948) +++ projects/ifnet/sys/dev/xl/if_xl.c Fri Apr 24 20:09:52 2015 (r281949) @@ -1381,6 +1381,7 @@ xl_attach(device_t dev) } mii = device_get_softc(sc->xl_miibus); ifat.ifat_baudrate = ifmedia_baudrate(mii->mii_media_active); + ifat.ifat_capabilities |= IFCAP_LINKSTATE; goto media_done; } From owner-svn-src-projects@FreeBSD.ORG Sat Apr 25 01:29:42 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 51FE5492; Sat, 25 Apr 2015 01:29:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3E2BE1C6D; Sat, 25 Apr 2015 01:29:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3P1TgH3054071; Sat, 25 Apr 2015 01:29:42 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3P1Tf3R054066; Sat, 25 Apr 2015 01:29:41 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201504250129.t3P1Tf3R054066@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Sat, 25 Apr 2015 01:29:41 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r281965 - in projects/em_mq: share/man/man4 sys/dev/e1000 sys/dev/netmap 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.20 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: Sat, 25 Apr 2015 01:29:42 -0000 Author: sbruno Date: Sat Apr 25 01:29:40 2015 New Revision: 281965 URL: https://svnweb.freebsd.org/changeset/base/281965 Log: Combine rx/tx queue handling into a single thread. Combine rx/tx msi-x handling into a single interrupt. This was seriously suggested by jhb and scottl during discussions. This rips off much from igb(4) and removes a lock around drbr_enqueue() that needed to be inplace to keep rx handling initiating a tx on the same interrupt. Modified: projects/em_mq/share/man/man4/em.4 projects/em_mq/sys/dev/e1000/if_em.c projects/em_mq/sys/dev/e1000/if_em.h projects/em_mq/sys/dev/netmap/if_em_netmap.h Modified: projects/em_mq/share/man/man4/em.4 ============================================================================== --- projects/em_mq/share/man/man4/em.4 Sat Apr 25 01:23:29 2015 (r281964) +++ projects/em_mq/share/man/man4/em.4 Sat Apr 25 01:29:40 2015 (r281965) @@ -244,7 +244,6 @@ If .Va hw.em.tx_int_delay is non-zero, this tunable limits the maximum delay in which a transmit interrupt is generated. -.It Va hw.em.num_rx_queues .It Va hw.em.num_tx_queues Number of h/w queues that we will run on this adapter. Max 2. Defaults to 1. Only valid with kernel configuration Modified: projects/em_mq/sys/dev/e1000/if_em.c ============================================================================== --- projects/em_mq/sys/dev/e1000/if_em.c Sat Apr 25 01:23:29 2015 (r281964) +++ projects/em_mq/sys/dev/e1000/if_em.c Sat Apr 25 01:29:40 2015 (r281965) @@ -256,7 +256,7 @@ static void em_disable_intr(struct adapt static void em_update_stats_counters(struct adapter *); static void em_add_hw_stats(struct adapter *adapter); static void em_txeof(struct tx_ring *); -static bool em_rxeof(struct rx_ring *, int, int *); +static bool em_rxeof(struct em_queue *, int, int *); #ifndef __NO_STRICT_ALIGNMENT static int em_fixup_rx(struct rx_ring *); #endif @@ -299,17 +299,11 @@ static void em_disable_aspm(struct adapt static int em_irq_fast(void *); /* MSIX handlers */ -static void em_msix_tx(void *); -static void em_msix_rx(void *); +static void em_msix_que(void *); static void em_msix_link(void *); -static void em_handle_tx(void *context, int pending); -static void em_handle_rx(void *context, int pending); +static void em_handle_que(void *context, int pending); static void em_handle_link(void *context, int pending); -#ifdef EM_MULTIQUEUE -static void em_enable_vectors_82574(struct adapter *); -#endif - static void em_set_sysctl_value(struct adapter *, const char *, const char *, int *, int); static int em_set_flowcntl(SYSCTL_HANDLER_ARGS); @@ -400,13 +394,9 @@ SYSCTL_INT(_hw_em, OID_AUTO, enable_msix "Enable MSI-X interrupts"); #ifdef EM_MULTIQUEUE -static int em_num_tx_queues = 1; -SYSCTL_INT(_hw_em, OID_AUTO, num_tx_queues, CTLFLAG_RDTUN, &em_num_tx_queues, 0, - "82574 only: Number of tx queues to configure, 0 indicates autoconfigure"); - -static int em_num_rx_queues = 1; -SYSCTL_INT(_hw_em, OID_AUTO, num_rx_queues, CTLFLAG_RDTUN, &em_num_rx_queues, 0, - "82574 only: Number of rx queues to configure, 0 indicates autoconfigure"); +static int em_num_queues = 1; +SYSCTL_INT(_hw_em, OID_AUTO, num_queues, CTLFLAG_RDTUN, &em_num_queues, 0, + "82574 only: Number of hw queues to configure, 0 indicates autoconfigure"); #endif /* @@ -909,7 +899,7 @@ em_resume(device_t dev) if ((if_getflags(ifp) & IFF_UP) && (if_getdrvflags(ifp) & IFF_DRV_RUNNING) && adapter->link_active) { - for (int i = 0; i < adapter->num_tx_queues; i++, txr++) { + for (int i = 0; i < adapter->num_queues; i++, txr++) { EM_TX_LOCK(txr); #ifdef EM_MULTIQUEUE if (!drbr_empty(ifp, txr->br)) @@ -1005,19 +995,19 @@ static int em_mq_start(if_t ifp, struct mbuf *m) { struct adapter *adapter = if_getsoftc(ifp); - struct tx_ring *txr = adapter->tx_rings; + struct tx_ring *txr; + struct em_queue *que; unsigned int i, error; if (M_HASHTYPE_GET(m) != M_HASHTYPE_NONE) - i = m->m_pkthdr.flowid % adapter->num_tx_queues; + i = m->m_pkthdr.flowid % adapter->num_queues; else - i = curcpu % adapter->num_tx_queues; + i = curcpu % adapter->num_queues; txr = &adapter->tx_rings[i]; + que = &adapter->queues[i]; - EM_TX_LOCK(txr); error = drbr_enqueue(ifp, txr->br, m); - EM_TX_UNLOCK(txr); if (error) return (error); @@ -1025,7 +1015,7 @@ em_mq_start(if_t ifp, struct mbuf *m) em_mq_start_locked(ifp, txr); EM_TX_UNLOCK(txr); } else - taskqueue_enqueue(txr->tq, &txr->tx_task); + taskqueue_enqueue(que->tq, &que->que_task); return (0); } @@ -1094,7 +1084,7 @@ em_qflush(if_t ifp) struct tx_ring *txr = adapter->tx_rings; struct mbuf *m; - for (int i = 0; i < adapter->num_tx_queues; i++, txr++) { + for (int i = 0; i < adapter->num_queues; i++, txr++) { EM_TX_LOCK(txr); while ((m = buf_ring_dequeue_sc(txr->br)) != NULL) m_freem(m); @@ -1518,6 +1508,7 @@ static int em_irq_fast(void *arg) { struct adapter *adapter = arg; + struct em_queue *que = adapter->queues; if_t ifp; u32 reg_icr; @@ -1542,7 +1533,7 @@ em_irq_fast(void *arg) return FILTER_STRAY; em_disable_intr(adapter); - taskqueue_enqueue(adapter->tq, &adapter->que_task); + taskqueue_enqueue(que->tq, &que->que_task); /* Link status change */ if (reg_icr & (E1000_ICR_RXSEQ | E1000_ICR_LSC)) { @@ -1559,13 +1550,13 @@ em_irq_fast(void *arg) static void em_handle_que(void *context, int pending) { - struct adapter *adapter = context; + struct em_queue *que = context; + struct adapter *adapter = que->adapter; if_t ifp = adapter->ifp; - struct tx_ring *txr = adapter->tx_rings; - struct rx_ring *rxr = adapter->rx_rings; + struct tx_ring *txr = que->txr; if (if_getdrvflags(ifp) & IFF_DRV_RUNNING) { - bool more = em_rxeof(rxr, adapter->rx_process_limit, NULL); + bool more = em_rxeof(que, adapter->rx_process_limit, NULL); EM_TX_LOCK(txr); em_txeof(txr); @@ -1578,7 +1569,7 @@ em_handle_que(void *context, int pending #endif EM_TX_UNLOCK(txr); if (more) { - taskqueue_enqueue(adapter->tq, &adapter->que_task); + taskqueue_enqueue(que->tq, &que->que_task); return; } } @@ -1594,13 +1585,20 @@ em_handle_que(void *context, int pending * **********************************************************************/ static void -em_msix_tx(void *arg) +em_msix_que(void *arg) { - struct tx_ring *txr = arg; - struct adapter *adapter = txr->adapter; + struct em_queue *que = arg; + struct adapter *adapter = que->adapter; + struct tx_ring *txr = que->txr; + bool more; if_t ifp = adapter->ifp; - ++txr->tx_irq; + if (!(if_getdrvflags(adapter->ifp) & IFF_DRV_RUNNING)) + return; + + E1000_WRITE_REG(&adapter->hw, E1000_IMS, que->ims); + ++que->irqs; + EM_TX_LOCK(txr); em_txeof(txr); #ifdef EM_MULTIQUEUE @@ -1610,35 +1608,14 @@ em_msix_tx(void *arg) if (!if_sendq_empty(ifp)) em_start_locked(ifp, txr); #endif - - /* Reenable this interrupt */ - E1000_WRITE_REG(&adapter->hw, E1000_IMS, txr->ims); EM_TX_UNLOCK(txr); - return; -} - -/********************************************************************* - * - * MSIX RX Interrupt Service routine - * - **********************************************************************/ -static void -em_msix_rx(void *arg) -{ - struct rx_ring *rxr = arg; - struct adapter *adapter = rxr->adapter; - bool more; - - ++rxr->rx_irq; - if (!(if_getdrvflags(adapter->ifp) & IFF_DRV_RUNNING)) - return; - more = em_rxeof(rxr, adapter->rx_process_limit, NULL); + more = em_rxeof(que, adapter->rx_process_limit, NULL); if (more) - taskqueue_enqueue(rxr->tq, &rxr->rx_task); + taskqueue_enqueue(que->tq, &que->que_task); else { /* Reenable this interrupt */ - E1000_WRITE_REG(&adapter->hw, E1000_IMS, rxr->ims); + E1000_WRITE_REG(&adapter->hw, E1000_IMS, que->ims); } return; } @@ -1667,42 +1644,6 @@ em_msix_link(void *arg) } static void -em_handle_rx(void *context, int pending) -{ - struct rx_ring *rxr = context; - struct adapter *adapter = rxr->adapter; - bool more; - - more = em_rxeof(rxr, adapter->rx_process_limit, NULL); - if (more) - taskqueue_enqueue(rxr->tq, &rxr->rx_task); - else { - /* Reenable this interrupt */ - E1000_WRITE_REG(&adapter->hw, E1000_IMS, rxr->ims); - } -} - -static void -em_handle_tx(void *context, int pending) -{ - struct tx_ring *txr = context; - struct adapter *adapter = txr->adapter; - if_t ifp = adapter->ifp; - - EM_TX_LOCK(txr); - em_txeof(txr); -#ifdef EM_MULTIQUEUE - if (!drbr_empty(ifp, txr->br)) - em_mq_start_locked(ifp, txr); -#else - if (!if_sendq_empty(ifp)) - em_start_locked(ifp, txr); -#endif - E1000_WRITE_REG(&adapter->hw, E1000_IMS, txr->ims); - EM_TX_UNLOCK(txr); -} - -static void em_handle_link(void *context, int pending) { struct adapter *adapter = context; @@ -1719,7 +1660,7 @@ em_handle_link(void *context, int pendin E1000_WRITE_REG(&adapter->hw, E1000_IMS, EM_MSIX_LINK | E1000_IMS_LSC); if (adapter->link_active) { - for (int i = 0; i < adapter->num_tx_queues; i++, txr++) { + for (int i = 0; i < adapter->num_queues; i++, txr++) { EM_TX_LOCK(txr); #ifdef EM_MULTIQUEUE if (!drbr_empty(ifp, txr->br)) @@ -2267,8 +2208,8 @@ em_local_timer(void *arg) { struct adapter *adapter = arg; if_t ifp = adapter->ifp; + struct em_queue *que = adapter->queues; struct tx_ring *txr = adapter->tx_rings; - struct rx_ring *rxr = adapter->rx_rings; u32 trigger; EM_CORE_LOCK_ASSERT(adapter); @@ -2283,7 +2224,7 @@ em_local_timer(void *arg) /* Mask to use in the irq trigger */ if (adapter->msix_mem) - trigger = rxr->ims; + trigger = adapter->que_mask; else trigger = E1000_ICS_RXDMT0; @@ -2292,7 +2233,7 @@ em_local_timer(void *arg) ** can be done without the lock because its RO ** and the HUNG state will be static if set. */ - for (int i = 0; i < adapter->num_tx_queues; i++, txr++) { + for (int i = 0; i < adapter->num_queues; i++, que++, txr++) { if ((txr->queue_status == EM_QUEUE_HUNG) && (adapter->pause_frames == 0)) { em_print_debug_info(adapter); @@ -2300,7 +2241,7 @@ em_local_timer(void *arg) } /* Schedule a TX tasklet if needed */ if (txr->tx_avail <= EM_MAX_SCATTER) - taskqueue_enqueue(txr->tq, &txr->tx_task); + taskqueue_enqueue(que->tq, &que->que_task); } adapter->pause_frames = 0; @@ -2387,7 +2328,7 @@ em_update_link_status(struct adapter *ad device_printf(dev, "Link is Down\n"); adapter->link_active = 0; /* Link down, disable watchdog */ - for (int i = 0; i < adapter->num_tx_queues; i++, txr++) + for (int i = 0; i < adapter->num_queues; i++, txr++) txr->queue_status = EM_QUEUE_IDLE; if_link_state_change(ifp, LINK_STATE_DOWN); } @@ -2420,7 +2361,7 @@ em_stop(void *arg) if_setdrvflagbits(ifp, IFF_DRV_OACTIVE, IFF_DRV_RUNNING); /* Unarm watchdog timer. */ - for (int i = 0; i < adapter->num_tx_queues; i++, txr++) { + for (int i = 0; i < adapter->num_queues; i++, txr++) { EM_TX_LOCK(txr); txr->queue_status = EM_QUEUE_IDLE; EM_TX_UNLOCK(txr); @@ -2497,7 +2438,7 @@ int em_allocate_legacy(struct adapter *adapter) { device_t dev = adapter->dev; - struct tx_ring *txr = adapter->tx_rings; + struct em_queue *que = adapter->queues; int error, rid = 0; /* Manually turn off all interrupts */ @@ -2518,17 +2459,11 @@ em_allocate_legacy(struct adapter *adapt * Allocate a fast interrupt and the associated * deferred processing contexts. */ - TASK_INIT(&adapter->que_task, 0, em_handle_que, adapter); + TASK_INIT(&adapter->que_task, 0, em_handle_que, que); adapter->tq = taskqueue_create_fast("em_taskq", M_NOWAIT, taskqueue_thread_enqueue, &adapter->tq); taskqueue_start_threads(&adapter->tq, 1, PI_NET, "%s que", device_get_nameunit(adapter->dev)); - /* Use a TX only tasklet for local timer */ - TASK_INIT(&txr->tx_task, 0, em_handle_tx, txr); - txr->tq = taskqueue_create_fast("em_txq", M_NOWAIT, - taskqueue_thread_enqueue, &txr->tq); - taskqueue_start_threads(&txr->tq, 1, PI_NET, "%s txq", - device_get_nameunit(adapter->dev)); TASK_INIT(&adapter->link_task, 0, em_handle_link, adapter); if ((error = bus_setup_intr(dev, adapter->res, INTR_TYPE_NET, em_irq_fast, NULL, adapter, &adapter->tag)) != 0) { @@ -2554,8 +2489,7 @@ int em_allocate_msix(struct adapter *adapter) { device_t dev = adapter->dev; - struct tx_ring *txr = adapter->tx_rings; - struct rx_ring *rxr = adapter->rx_rings; + struct em_queue *que = adapter->queues; int error, rid, vector = 0; int cpu_id = 0; @@ -2564,92 +2498,51 @@ em_allocate_msix(struct adapter *adapter E1000_WRITE_REG(&adapter->hw, E1000_IMC, 0xffffffff); /* First set up ring resources */ - for (int i = 0; i < adapter->num_rx_queues; i++, rxr++, vector++) { + for (int i = 0; i < adapter->num_queues; i++, vector++, que++) { /* RX ring */ rid = vector + 1; - rxr->res = bus_alloc_resource_any(dev, - SYS_RES_IRQ, &rid, RF_ACTIVE); - if (rxr->res == NULL) { + que->res = bus_alloc_resource_any(dev, + SYS_RES_IRQ, &rid, RF_SHAREABLE | RF_ACTIVE); + if (que->res == NULL) { device_printf(dev, "Unable to allocate bus resource: " - "RX MSIX Interrupt %d\n", i); + "MSIX QUEUE Interrupt %d\n", i); return (ENXIO); } - if ((error = bus_setup_intr(dev, rxr->res, - INTR_TYPE_NET | INTR_MPSAFE, NULL, em_msix_rx, - rxr, &rxr->tag)) != 0) { - device_printf(dev, "Failed to register RX handler"); + if ((error = bus_setup_intr(dev, que->res, + INTR_TYPE_NET | INTR_MPSAFE, NULL, em_msix_que, + que, &que->tag)) != 0) { + device_printf(dev, "Failed to register QUEUE handler"); return (error); } #if __FreeBSD_version >= 800504 - bus_describe_intr(dev, rxr->res, rxr->tag, "rx %d", i); + bus_describe_intr(dev, que->res, que->tag, "que %d", i); #endif - rxr->msix = vector; + que->msix = vector; if (em_last_bind_cpu < 0) em_last_bind_cpu = CPU_FIRST(); cpu_id = em_last_bind_cpu; - bus_bind_intr(dev, rxr->res, cpu_id); + bus_bind_intr(dev, que->res, cpu_id); - TASK_INIT(&rxr->rx_task, 0, em_handle_rx, rxr); - rxr->tq = taskqueue_create_fast("em_rxq", M_NOWAIT, - taskqueue_thread_enqueue, &rxr->tq); - taskqueue_start_threads(&rxr->tq, 1, PI_NET, "%s rxq (qid %d)", + TASK_INIT(&que->que_task, 0, em_handle_que, que); + que->tq = taskqueue_create_fast("em_queue", M_NOWAIT, + taskqueue_thread_enqueue, &que->tq); + taskqueue_start_threads(&que->tq, 1, PI_NET, "%s que (qid %d)", device_get_nameunit(adapter->dev), cpu_id); /* ** Set the bit to enable interrupt ** in E1000_IMS -- bits 20 and 21 - ** are for RX0 and RX1, note this has + ** are for RX0 and RX1, bits 22 and 23 + ** are for TX0 and TX1. note this has ** NOTHING to do with the MSIX vector */ - rxr->ims = 1 << (20 + i); - adapter->ivars |= (8 | rxr->msix) << (i * 4); - - em_last_bind_cpu = CPU_NEXT(em_last_bind_cpu); - } - - for (int i = 0; i < adapter->num_tx_queues; i++, txr++, vector++) { - /* TX ring */ - rid = vector + 1; - txr->res = bus_alloc_resource_any(dev, - SYS_RES_IRQ, &rid, RF_ACTIVE); - if (txr->res == NULL) { - device_printf(dev, - "Unable to allocate bus resource: " - "TX MSIX Interrupt %d\n", i); - return (ENXIO); - } - if ((error = bus_setup_intr(dev, txr->res, - INTR_TYPE_NET | INTR_MPSAFE, NULL, em_msix_tx, - txr, &txr->tag)) != 0) { - device_printf(dev, "Failed to register TX handler"); - return (error); - } -#if __FreeBSD_version >= 800504 - bus_describe_intr(dev, txr->res, txr->tag, "tx %d", i); -#endif - txr->msix = vector; - - if (em_last_bind_cpu < 0) - em_last_bind_cpu = CPU_FIRST(); - cpu_id = em_last_bind_cpu; - bus_bind_intr(dev, txr->res, cpu_id); - - TASK_INIT(&txr->tx_task, 0, em_handle_tx, txr); - txr->tq = taskqueue_create_fast("em_txq", M_NOWAIT, - taskqueue_thread_enqueue, &txr->tq); - taskqueue_start_threads(&txr->tq, 1, PI_NET, "%s txq (qid %d)", - device_get_nameunit(adapter->dev), cpu_id); - /* - ** Set the bit to enable interrupt - ** in E1000_IMS -- bits 22 and 23 - ** are for TX0 and TX1, note this has - ** NOTHING to do with the MSIX vector - */ - txr->ims = 1 << (22 + i); - adapter->ivars |= (8 | txr->msix) << (8 + (i * 4)); + que->ims = (1 << (20 + i)) | (1 << (22 + i)); + adapter->ivars |= (8 | que->msix) << (i * 4); + adapter->ivars |= (8 | que->msix) << (8 + (i * 4)); + adapter->que_mask |= que->ims; em_last_bind_cpu = CPU_NEXT(em_last_bind_cpu); } @@ -2686,43 +2579,23 @@ em_allocate_msix(struct adapter *adapter static void em_free_pci_resources(struct adapter *adapter) { + struct em_queue *que = adapter->queues; device_t dev = adapter->dev; - struct tx_ring *txr; - struct rx_ring *rxr; int rid; /* ** Release all the queue interrupt resources: */ - for (int i = 0; i < adapter->num_tx_queues; i++) { - txr = &adapter->tx_rings[i]; - /* an early abort? */ - if (txr == NULL) - break; - rid = txr->msix +1; - if (txr->tag != NULL) { - bus_teardown_intr(dev, txr->res, txr->tag); - txr->tag = NULL; + for (int i = 0; i < adapter->num_queues; i++, que++) { + rid = que->msix +1; + if (que->tag != NULL) { + bus_teardown_intr(dev, que->res, que->tag); + que->tag = NULL; } - if (txr->res != NULL) + if (que->res != NULL) bus_release_resource(dev, SYS_RES_IRQ, - rid, txr->res); - } - - for (int i = 0; i < adapter->num_tx_queues; i++) { - rxr = &adapter->rx_rings[i]; - /* an early abort? */ - if (rxr == NULL) - break; - rid = rxr->msix +1; - if (rxr->tag != NULL) { - bus_teardown_intr(dev, rxr->res, rxr->tag); - rxr->tag = NULL; - } - if (rxr->res != NULL) - bus_release_resource(dev, SYS_RES_IRQ, - rid, rxr->res); + rid, que->res); } if (adapter->linkvec) /* we are doing MSIX */ @@ -2765,19 +2638,14 @@ em_setup_msix(struct adapter *adapter) int val; /* Nearly always going to use one queue */ - adapter->num_rx_queues = 1; - adapter->num_tx_queues = 1; + adapter->num_queues = 1; /* ** Try using MSI-X for Hartwell adapters */ - if ((adapter->hw.mac.type == e1000_82574) && - (em_enable_msix == TRUE)) { + if (em_enable_msix == TRUE) { #ifdef EM_MULTIQUEUE - adapter->num_tx_queues = (em_num_tx_queues == 1) ? 1 : 2; - adapter->num_rx_queues = (em_num_rx_queues == 1) ? 1 : 2; - if (adapter->num_rx_queues > 1 || adapter->num_tx_queues > 1) - em_enable_vectors_82574(adapter); + adapter->num_queues = (em_num_queues == 1) ? 1 : 2; #endif /* Map the MSIX BAR */ int rid = PCIR_BAR(EM_MSIX_BAR); @@ -2793,12 +2661,11 @@ em_setup_msix(struct adapter *adapter) #ifdef EM_MULTIQUEUE /* We need 5 vectors in the multiqueue case */ - if (adapter->num_rx_queues > 1 || adapter->num_tx_queues > 1) { - if (val >= 5) - val = 5; + if (adapter->num_queues > 1 || adapter->num_queues > 1) { + if (val >= 3) + val = 3; else { - adapter->num_tx_queues = 1; - adapter->num_rx_queues = 1; + adapter->num_queues = 1; device_printf(adapter->dev, "Insufficient MSIX vectors for >1 queue, " "using single queue...\n"); @@ -3210,25 +3077,35 @@ static int em_allocate_queues(struct adapter *adapter) { device_t dev = adapter->dev; + struct em_queue *que = NULL; struct tx_ring *txr = NULL; struct rx_ring *rxr = NULL; int rsize, tsize, error = E1000_SUCCESS; int txconf = 0, rxconf = 0; + /* First allocate the top level queue structs */ + if (!(adapter->queues = + (struct em_queue *) malloc(sizeof(struct em_queue) * + adapter->num_queues, M_DEVBUF, M_NOWAIT | M_ZERO))) { + device_printf(dev, "Unable to allocate queue memory\n"); + error = ENOMEM; + goto fail; + } + /* Allocate the TX ring struct memory */ if (!(adapter->tx_rings = (struct tx_ring *) malloc(sizeof(struct tx_ring) * - adapter->num_tx_queues, M_DEVBUF, M_NOWAIT | M_ZERO))) { + adapter->num_queues, M_DEVBUF, M_NOWAIT | M_ZERO))) { device_printf(dev, "Unable to allocate TX ring memory\n"); error = ENOMEM; - goto fail; + goto tx_fail; } /* Now allocate the RX */ if (!(adapter->rx_rings = (struct rx_ring *) malloc(sizeof(struct rx_ring) * - adapter->num_rx_queues, M_DEVBUF, M_NOWAIT | M_ZERO))) { + adapter->num_queues, M_DEVBUF, M_NOWAIT | M_ZERO))) { device_printf(dev, "Unable to allocate RX ring memory\n"); error = ENOMEM; goto rx_fail; @@ -3241,7 +3118,7 @@ em_allocate_queues(struct adapter *adapt * possibility that things fail midcourse and we need to * undo memory gracefully */ - for (int i = 0; i < adapter->num_tx_queues; i++, txconf++) { + for (int i = 0; i < adapter->num_queues; i++, txconf++) { /* Set up some basics */ txr = &adapter->tx_rings[i]; txr->adapter = adapter; @@ -3280,7 +3157,7 @@ em_allocate_queues(struct adapter *adapt */ rsize = roundup2(adapter->num_rx_desc * sizeof(struct e1000_rx_desc), EM_DBA_ALIGN); - for (int i = 0; i < adapter->num_rx_queues; i++, rxconf++) { + for (int i = 0; i < adapter->num_queues; i++, rxconf++) { rxr = &adapter->rx_rings[i]; rxr->adapter = adapter; rxr->me = i; @@ -3309,6 +3186,16 @@ em_allocate_queues(struct adapter *adapt } } + /* + ** Finally set up the queue holding structs + */ + for (int i = 0; i < adapter->num_queues; i++) { + que = &adapter->queues[i]; + que->adapter = adapter; + que->txr = &adapter->tx_rings[i]; + que->rxr = &adapter->rx_rings[i]; + } + return (0); err_rx_desc: @@ -3323,6 +3210,8 @@ rx_fail: buf_ring_free(txr->br, M_DEVBUF); #endif free(adapter->tx_rings, M_DEVBUF); +tx_fail: + free(adapter->queues, M_DEVBUF); fail: return (error); } @@ -3468,7 +3357,7 @@ em_setup_transmit_structures(struct adap { struct tx_ring *txr = adapter->tx_rings; - for (int i = 0; i < adapter->num_tx_queues; i++, txr++) + for (int i = 0; i < adapter->num_queues; i++, txr++) em_setup_transmit_ring(txr); return; @@ -3488,7 +3377,7 @@ em_initialize_transmit_unit(struct adapt INIT_DEBUGOUT("em_initialize_transmit_unit: begin"); - for (int i = 0; i < adapter->num_tx_queues; i++, txr++) { + for (int i = 0; i < adapter->num_queues; i++, txr++) { u64 bus_addr = txr->txdma.dma_paddr; /* Base and Len of TX Ring */ E1000_WRITE_REG(hw, E1000_TDLEN(i), @@ -3585,7 +3474,7 @@ em_free_transmit_structures(struct adapt { struct tx_ring *txr = adapter->tx_rings; - for (int i = 0; i < adapter->num_tx_queues; i++, txr++) { + for (int i = 0; i < adapter->num_queues; i++, txr++) { EM_TX_LOCK(txr); em_free_transmit_buffers(txr); em_dma_free(adapter, &txr->txdma); @@ -4236,7 +4125,7 @@ em_setup_receive_structures(struct adapt struct rx_ring *rxr = adapter->rx_rings; int q; - for (q = 0; q < adapter->num_rx_queues; q++, rxr++) + for (q = 0; q < adapter->num_queues; q++, rxr++) if (em_setup_receive_ring(rxr)) goto fail; @@ -4277,7 +4166,7 @@ em_free_receive_structures(struct adapte { struct rx_ring *rxr = adapter->rx_rings; - for (int i = 0; i < adapter->num_rx_queues; i++, rxr++) { + for (int i = 0; i < adapter->num_queues; i++, rxr++) { em_free_receive_buffers(rxr); /* Free the ring memory as well */ em_dma_free(adapter, &rxr->rxdma); @@ -4397,7 +4286,7 @@ em_initialize_receive_unit(struct adapte E1000_WRITE_REG(hw, E1000_RXCSUM, rxcsum); #ifdef EM_MULTIQUEUE - if (adapter->num_rx_queues > 1) { + if (adapter->num_queues > 1) { uint32_t rss_key[10]; uint32_t reta; int i; @@ -4416,7 +4305,7 @@ em_initialize_receive_unit(struct adapte reta = 0; for (i = 0; i < 4; ++i) { uint32_t q; - q = (i % adapter->num_rx_queues) << 7; + q = (i % adapter->num_queues) << 7; reta |= q << (8 * i); } for (i = 0; i < 32; ++i) @@ -4441,7 +4330,7 @@ em_initialize_receive_unit(struct adapte if (hw->mac.type == e1000_82573) E1000_WRITE_REG(hw, E1000_RDTR, 0x20); - for (int i = 0; i < adapter->num_rx_queues; i++, rxr++) { + for (int i = 0; i < adapter->num_queues; i++, rxr++) { /* Setup the Base and Length of the Rx Descriptor Ring */ u32 rdt = adapter->num_rx_desc - 1; /* default */ @@ -4480,7 +4369,7 @@ em_initialize_receive_unit(struct adapte E1000_WRITE_REG(hw, E1000_RXDCTL(0), rxdctl | 3); } else if ((adapter->hw.mac.type == e1000_82574) && (if_getmtu(ifp) > ETHERMTU)) { - for (int i = 0; i < adapter->num_rx_queues; i++) { + for (int i = 0; i < adapter->num_queues; i++) { u32 rxdctl = E1000_READ_REG(hw, E1000_RXDCTL(i)); rxdctl |= 0x20; /* PTHRESH */ @@ -4542,9 +4431,10 @@ em_initialize_receive_unit(struct adapte * For polling we also now return the number of cleaned packets *********************************************************************/ static bool -em_rxeof(struct rx_ring *rxr, int count, int *done) +em_rxeof(struct em_queue *que, int count, int *done) { - struct adapter *adapter = rxr->adapter; + struct adapter *adapter = que->adapter; + struct rx_ring *rxr = que->rxr; if_t ifp = adapter->ifp; struct mbuf *mp, *sendmp; u8 status = 0; @@ -5411,6 +5301,7 @@ em_add_hw_stats(struct adapter *adapter) struct tx_ring *txr = adapter->tx_rings; struct rx_ring *rxr = adapter->rx_rings; + struct em_queue *que = adapter->queues; struct sysctl_ctx_list *ctx = device_get_sysctl_ctx(dev); struct sysctl_oid *tree = device_get_sysctl_tree(dev); @@ -5461,7 +5352,7 @@ em_add_hw_stats(struct adapter *adapter) CTLFLAG_RD, &adapter->hw.fc.low_water, 0, "Flow Control Low Watermark"); - for (int i = 0; i < adapter->num_tx_queues; i++, txr++) { + for (int i = 0; i < adapter->num_queues; i++, txr++, rxr++, que++) { snprintf(namebuf, QUEUE_NAME_LEN, "queue_tx_%d", i); queue_node = SYSCTL_ADD_NODE(ctx, child, OID_AUTO, namebuf, CTLFLAG_RD, NULL, "TX Queue Name"); @@ -5477,14 +5368,13 @@ em_add_hw_stats(struct adapter *adapter) E1000_TDT(txr->me), em_sysctl_reg_handler, "IU", "Transmit Descriptor Tail"); - SYSCTL_ADD_ULONG(ctx, queue_list, OID_AUTO, "tx_irq", - CTLFLAG_RD, &txr->tx_irq, + SYSCTL_ADD_ULONG(ctx, queue_list, OID_AUTO, "queue_irq", + CTLFLAG_RD, &que->irqs, "Queue MSI-X Transmit Interrupts"); SYSCTL_ADD_ULONG(ctx, queue_list, OID_AUTO, "no_desc_avail", CTLFLAG_RD, &txr->no_desc_avail, "Queue No Descriptor Available"); - } - for (int i = 0; i < adapter->num_rx_queues; i++, rxr++) { + snprintf(namebuf, QUEUE_NAME_LEN, "queue_rx_%d", i); queue_node = SYSCTL_ADD_NODE(ctx, child, OID_AUTO, namebuf, CTLFLAG_RD, NULL, "RX Queue Name"); @@ -5500,9 +5390,6 @@ em_add_hw_stats(struct adapter *adapter) E1000_RDT(rxr->me), em_sysctl_reg_handler, "IU", "Receive Descriptor Tail"); - SYSCTL_ADD_ULONG(ctx, queue_list, OID_AUTO, "rx_irq", - CTLFLAG_RD, &rxr->rx_irq, - "Queue MSI-X Receive Interrupts"); } /* MAC stats get their own sub node */ @@ -5923,7 +5810,7 @@ em_print_debug_info(struct adapter *adap else printf("and ACTIVE\n"); - for (int i = 0; i < adapter->num_tx_queues; i++, txr++) { + for (int i = 0; i < adapter->num_queues; i++, rxr++, txr++) { device_printf(dev, "TX Queue %d ------\n", i); device_printf(dev, "hw tdh = %d, hw tdt = %d\n", E1000_READ_REG(&adapter->hw, E1000_TDH(i)), @@ -5933,8 +5820,6 @@ em_print_debug_info(struct adapter *adap txr->tx_avail); device_printf(dev, "Tx Descriptors avail failure = %ld\n", txr->no_desc_avail); - } - for (int i = 0; i < adapter->num_rx_queues; i++, rxr++) { device_printf(dev, "RX Queue %d ------\n", i); device_printf(dev, "hw rdh = %d, hw rdt = %d\n", E1000_READ_REG(&adapter->hw, E1000_RDH(i)), @@ -5946,33 +5831,6 @@ em_print_debug_info(struct adapter *adap } } -#ifdef EM_MULTIQUEUE -/* - * 82574 only: - * Write a new value to the EEPROM increasing the number of MSIX - * vectors from 3 to 5, for proper multiqueue support. - */ -static void -em_enable_vectors_82574(struct adapter *adapter) -{ - struct e1000_hw *hw = &adapter->hw; - device_t dev = adapter->dev; - u16 edata; - - e1000_read_nvm(hw, EM_NVM_PCIE_CTRL, 1, &edata); - printf("Current cap: %#06x\n", edata); - if (((edata & EM_NVM_MSIX_N_MASK) >> EM_NVM_MSIX_N_SHIFT) != 4) { - device_printf(dev, "Writing to eeprom: increasing " - "reported MSIX vectors from 3 to 5...\n"); - edata &= ~(EM_NVM_MSIX_N_MASK); - edata |= 4 << EM_NVM_MSIX_N_SHIFT; - e1000_write_nvm(hw, EM_NVM_PCIE_CTRL, 1, &edata); - e1000_update_nvm_checksum(hw); - device_printf(dev, "Writing to eeprom: done\n"); - } -} -#endif - #ifdef DDB DB_COMMAND(em_dump_queue, em_ddb_dump_queue) { Modified: projects/em_mq/sys/dev/e1000/if_em.h ============================================================================== --- projects/em_mq/sys/dev/e1000/if_em.h Sat Apr 25 01:23:29 2015 (r281964) +++ projects/em_mq/sys/dev/e1000/if_em.h Sat Apr 25 01:29:40 2015 (r281965) @@ -265,14 +265,6 @@ * solve it just using this define. */ #define EM_EIAC 0x000DC -/* - * 82574 only reports 3 MSI-X vectors by default; - * defines assisting with making it report 5 are - * located here. - */ -#define EM_NVM_PCIE_CTRL 0x1B -#define EM_NVM_MSIX_N_MASK (0x7 << EM_NVM_MSIX_N_SHIFT) -#define EM_NVM_MSIX_N_SHIFT 7 /* * Bus dma allocation structure used by @@ -296,6 +288,24 @@ struct em_int_delay_info { }; /* +** Driver queue struct: this is the interrupt container +** for the associated tx and rx ring. +*/ +struct em_queue { + struct adapter *adapter; + u32 msix; /* This queue's MSIX vector */ + u32 ims; /* This queue's EIMS bit */ + u32 eitr_setting; + struct resource *res; + void *tag; + struct tx_ring *txr; + struct rx_ring *rxr; + struct task que_task; + struct taskqueue *tq; + u64 irqs; +}; + +/* * The transmit ring, one per tx queue */ struct tx_ring { @@ -303,14 +313,10 @@ struct tx_ring { struct mtx tx_mtx; char mtx_name[16]; u32 me; - u32 msix; - u32 ims; int queue_status; int watchdog_time; struct em_dma_alloc txdma; struct e1000_tx_desc *tx_base; - struct task tx_task; - struct taskqueue *tq; u32 next_avail_desc; u32 next_to_clean; struct em_buffer *tx_buffers; @@ -326,9 +332,6 @@ struct tx_ring { #endif /* Interrupt resources */ bus_dma_tag_t txtag; - void *tag; - struct resource *res; - unsigned long tx_irq; unsigned long no_desc_avail; }; @@ -338,13 +341,9 @@ struct tx_ring { struct rx_ring { struct adapter *adapter; u32 me; - u32 msix; - u32 ims; struct mtx rx_mtx; char mtx_name[16]; u32 payload; - struct task rx_task; - struct taskqueue *tq; struct e1000_rx_desc *rx_base; struct em_dma_alloc rxdma; u32 next_to_refresh; @@ -354,13 +353,10 @@ struct rx_ring { struct mbuf *lmp; /* Interrupt resources */ - void *tag; - struct resource *res; bus_dma_tag_t rxtag; bool discard; /* Soft stats */ - unsigned long rx_irq; unsigned long rx_discarded; unsigned long rx_packets; unsigned long rx_bytes; @@ -407,10 +403,10 @@ struct adapter { eventhandler_tag vlan_detach; u16 num_vlans; - /* Allow number of tx queues != num of rx_queues */ - u8 num_tx_queues; - u8 num_rx_queues; + u8 num_queues; + /* Interface queues */ + struct em_queue *queues; /* * Transmit rings: * Allocated at run time, an array of rings. @@ -428,6 +424,8 @@ struct adapter { u32 rx_process_limit; u32 rx_mbuf_sz; + u64 que_mask; + /* Management and WOL features */ u32 wol; bool has_manage; Modified: projects/em_mq/sys/dev/netmap/if_em_netmap.h ============================================================================== --- projects/em_mq/sys/dev/netmap/if_em_netmap.h Sat Apr 25 01:23:29 2015 (r281964) +++ projects/em_mq/sys/dev/netmap/if_em_netmap.h Sat Apr 25 01:29:40 2015 (r281965) @@ -45,16 +45,11 @@ em_netmap_block_tasks(struct adapter *ad { if (adapter->msix > 1) { /* MSIX */ int i; - struct tx_ring *txr = adapter->tx_rings; - struct rx_ring *rxr = adapter->rx_rings; + struct em_queue *que = adapter->queues; - for (i = 0; i < adapter->num_tx_queues; i++, txr++) { - taskqueue_block(txr->tq); - taskqueue_drain(txr->tq, &txr->tx_task); - } - for (i = 0; i < adapter->num_rx_queues; i++, rxr++) { - taskqueue_block(rxr->tq); - taskqueue_drain(rxr->tq, &rxr->rx_task); + for (i = 0; i < adapter->num_queues; i++, que++) { + taskqueue_block(que->tq); + taskqueue_drain(que->tq, &que->que_task); } } else { /* legacy */ taskqueue_block(adapter->tq); @@ -68,15 +63,11 @@ static void em_netmap_unblock_tasks(struct adapter *adapter) { if (adapter->msix > 1) { - struct tx_ring *txr = adapter->tx_rings; - struct rx_ring *rxr = adapter->rx_rings; + struct em_queue *que = adapter->queues; int i; - for (i = 0; i < adapter->num_tx_queues; i++) { - taskqueue_unblock(txr->tq); - } - for (i = 0; i < adapter->num_rx_queues; i++) { - taskqueue_unblock(rxr->tq); + for (i = 0; i < adapter->num_queues; i++) { *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Sat Apr 25 22:05:59 2015 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 14BE3C67; Sat, 25 Apr 2015 22:05:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F353B1FFF; Sat, 25 Apr 2015 22:05:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3PM5wf6074023; Sat, 25 Apr 2015 22:05:58 GMT (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3PM5n0F073860; Sat, 25 Apr 2015 22:05:49 GMT (envelope-from glebius@FreeBSD.org) Message-Id: <201504252205.t3PM5n0F073860@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: glebius set sender to glebius@FreeBSD.org using -f From: Gleb Smirnoff Date: Sat, 25 Apr 2015 22:05:49 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r281990 - in projects/ifnet: . bin/sh contrib/netbsd-tests/lib/libpthread contrib/tcpdump lib/libc/gen lib/libc/include lib/libc/locale lib/libc/net lib/libc/regex lib/libc/stdio lib/li... 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.20 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: Sat, 25 Apr 2015 22:05:59 -0000 Author: glebius Date: Sat Apr 25 22:05:48 2015 New Revision: 281990 URL: https://svnweb.freebsd.org/changeset/base/281990 Log: Merge head r257698 through r281987. Added: projects/ifnet/sys/arm/conf/AML8726 - copied unchanged from r281987, head/sys/arm/conf/AML8726 projects/ifnet/sys/arm/freescale/imx/files.imx5 - copied unchanged from r281987, head/sys/arm/freescale/imx/files.imx5 projects/ifnet/sys/libkern/zlib.c - copied unchanged from r281987, head/sys/libkern/zlib.c projects/ifnet/sys/sys/zlib.h - copied unchanged from r281987, head/sys/sys/zlib.h projects/ifnet/sys/sys/zutil.h - copied unchanged from r281987, head/sys/sys/zutil.h projects/ifnet/sys/x86/x86/cpu_machdep.c - copied unchanged from r281987, head/sys/x86/x86/cpu_machdep.c projects/ifnet/sys/x86/x86/mp_x86.c - copied unchanged from r281987, head/sys/x86/x86/mp_x86.c Deleted: projects/ifnet/sys/arm/amlogic/aml8726/files.smp projects/ifnet/sys/arm/amlogic/aml8726/std.odroidc1 projects/ifnet/sys/arm/amlogic/aml8726/std.vsatv102-m6 projects/ifnet/sys/arm/freescale/imx/files.imx51 projects/ifnet/sys/arm/freescale/imx/files.imx53 projects/ifnet/sys/net/zlib.c projects/ifnet/sys/net/zlib.h projects/ifnet/sys/net/zutil.h Modified: projects/ifnet/Makefile.inc1 projects/ifnet/bin/sh/jobs.c projects/ifnet/contrib/netbsd-tests/lib/libpthread/t_swapcontext.c projects/ifnet/contrib/tcpdump/interface.h projects/ifnet/contrib/tcpdump/netdissect.h projects/ifnet/contrib/tcpdump/print-ip.c projects/ifnet/contrib/tcpdump/print-pfsync.c projects/ifnet/lib/libc/gen/_once_stub.c projects/ifnet/lib/libc/include/compat.h projects/ifnet/lib/libc/locale/duplocale.3 projects/ifnet/lib/libc/locale/freelocale.3 projects/ifnet/lib/libc/locale/newlocale.3 projects/ifnet/lib/libc/locale/none.c projects/ifnet/lib/libc/locale/querylocale.3 projects/ifnet/lib/libc/locale/uselocale.3 projects/ifnet/lib/libc/net/sctp_recvmsg.3 projects/ifnet/lib/libc/regex/regcomp.c projects/ifnet/lib/libc/stdio/flags.c projects/ifnet/lib/libc/stdio/open_memstream.3 projects/ifnet/lib/libc/stdio/open_memstream.c projects/ifnet/lib/libc/stdio/open_wmemstream.c projects/ifnet/lib/libc/sys/closefrom.2 projects/ifnet/lib/libc/sys/procctl.2 projects/ifnet/lib/libc/tests/db/Makefile projects/ifnet/lib/libgeom/geom_xml2tree.c projects/ifnet/lib/libmd/mdXhl.c projects/ifnet/lib/libstand/Makefile projects/ifnet/lib/libthr/thread/thr_clean.c projects/ifnet/libexec/rtld-elf/rtld.c projects/ifnet/release/arm64/make-memstick.sh projects/ifnet/release/scripts/mk-vmimage.sh projects/ifnet/release/tools/vmimage.subr projects/ifnet/sbin/camcontrol/camcontrol.8 projects/ifnet/sbin/growfs/Makefile projects/ifnet/sbin/growfs/growfs.c projects/ifnet/share/man/man4/ada.4 projects/ifnet/share/man/man4/smb.4 projects/ifnet/share/man/man4/urtwn.4 projects/ifnet/share/man/man9/BUS_BIND_INTR.9 projects/ifnet/share/man/man9/BUS_CHILD_DELETED.9 projects/ifnet/share/man/man9/BUS_CHILD_DETACHED.9 projects/ifnet/share/man/man9/BUS_DESCRIBE_INTR.9 projects/ifnet/share/man/man9/BUS_NEW_PASS.9 projects/ifnet/share/man/man9/Makefile projects/ifnet/share/man/man9/VOP_ADVISE.9 projects/ifnet/share/man/man9/VOP_ALLOCATE.9 projects/ifnet/share/man/man9/bus_adjust_resource.9 projects/ifnet/share/man/man9/bus_generic_new_pass.9 projects/ifnet/share/man/man9/bus_set_pass.9 projects/ifnet/share/man/man9/getenv.9 projects/ifnet/share/man/man9/panic.9 projects/ifnet/share/man/man9/refcount.9 projects/ifnet/share/man/man9/sglist.9 projects/ifnet/share/man/man9/shm_map.9 projects/ifnet/share/mk/src.opts.mk projects/ifnet/sys/amd64/amd64/machdep.c projects/ifnet/sys/amd64/amd64/mp_machdep.c projects/ifnet/sys/amd64/include/md_var.h projects/ifnet/sys/amd64/include/smp.h projects/ifnet/sys/amd64/include/vm.h projects/ifnet/sys/amd64/vmm/amd/svm.c projects/ifnet/sys/amd64/vmm/vmm_instruction_emul.c projects/ifnet/sys/arm/amlogic/aml8726/files.aml8726 projects/ifnet/sys/arm/amlogic/aml8726/std.aml8726 projects/ifnet/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c projects/ifnet/sys/arm/conf/EFIKA_MX projects/ifnet/sys/arm/conf/IMX53 projects/ifnet/sys/arm/conf/IMX6 projects/ifnet/sys/arm/conf/ODROIDC1 projects/ifnet/sys/arm/conf/RPI2 projects/ifnet/sys/arm/conf/VSATV102 projects/ifnet/sys/arm/freescale/imx/std.imx51 projects/ifnet/sys/arm/freescale/imx/std.imx53 projects/ifnet/sys/arm64/arm64/pmap.c projects/ifnet/sys/arm64/arm64/stack_machdep.c projects/ifnet/sys/boot/fdt/dts/arm/bcm2836.dtsi projects/ifnet/sys/boot/fdt/dts/arm/rpi2.dts projects/ifnet/sys/boot/i386/common/edd.h projects/ifnet/sys/boot/libstand32/Makefile projects/ifnet/sys/boot/userboot/libstand/Makefile projects/ifnet/sys/cam/scsi/scsi_da.c projects/ifnet/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c projects/ifnet/sys/cddl/dev/dtrace/amd64/dtrace_asm.S projects/ifnet/sys/cddl/dev/dtrace/arm/dtrace_asm.S projects/ifnet/sys/cddl/dev/dtrace/dtrace_hacks.c projects/ifnet/sys/cddl/dev/dtrace/i386/dtrace_asm.S projects/ifnet/sys/cddl/dev/dtrace/mips/dtrace_asm.S projects/ifnet/sys/cddl/dev/dtrace/powerpc/dtrace_asm.S projects/ifnet/sys/cddl/dev/profile/profile.c projects/ifnet/sys/compat/linux/linux_getcwd.c projects/ifnet/sys/compat/linux/linux_misc.h projects/ifnet/sys/conf/NOTES projects/ifnet/sys/conf/files projects/ifnet/sys/conf/files.amd64 projects/ifnet/sys/conf/files.i386 projects/ifnet/sys/conf/files.pc98 projects/ifnet/sys/conf/options projects/ifnet/sys/conf/options.arm projects/ifnet/sys/dev/bxe/bxe.h projects/ifnet/sys/dev/e1000/if_igb.c projects/ifnet/sys/dev/ichsmb/ichsmb_pci.c projects/ifnet/sys/dev/iicbus/iic.c projects/ifnet/sys/dev/iicbus/iic.h projects/ifnet/sys/dev/iicbus/iicbus_if.m projects/ifnet/sys/dev/iicbus/iiconf.c projects/ifnet/sys/dev/ipmi/ipmi.c projects/ifnet/sys/dev/ipmi/ipmi_kcs.c projects/ifnet/sys/dev/ipmi/ipmi_smic.c projects/ifnet/sys/dev/ipmi/ipmivars.h projects/ifnet/sys/dev/mii/brgphy.c projects/ifnet/sys/dev/mxge/if_mxge.c projects/ifnet/sys/dev/pccbb/pccbb_pci.c projects/ifnet/sys/dev/pci/pci.c projects/ifnet/sys/dev/pci/pci_pci.c projects/ifnet/sys/dev/pci/pci_subr.c projects/ifnet/sys/dev/pci/pcib_private.h projects/ifnet/sys/dev/pci/pcivar.h projects/ifnet/sys/dev/smbus/smb.c projects/ifnet/sys/dev/smbus/smb.h projects/ifnet/sys/dev/smbus/smbconf.h projects/ifnet/sys/dev/smbus/smbus.c projects/ifnet/sys/dev/smbus/smbus.h projects/ifnet/sys/dev/smbus/smbus_if.m projects/ifnet/sys/dev/usb/controller/dwc_otg.c projects/ifnet/sys/dev/usb/wlan/if_urtwn.c projects/ifnet/sys/dev/vt/vt_core.c projects/ifnet/sys/fs/nfs/nfsport.h projects/ifnet/sys/fs/nfsclient/nfs_clvfsops.c projects/ifnet/sys/fs/nfsserver/nfs_nfsdkrpc.c projects/ifnet/sys/geom/uncompress/g_uncompress.c projects/ifnet/sys/geom/uzip/g_uzip.c projects/ifnet/sys/i386/i386/machdep.c projects/ifnet/sys/i386/i386/mp_machdep.c projects/ifnet/sys/i386/include/md_var.h projects/ifnet/sys/i386/include/smp.h projects/ifnet/sys/i386/include/vm.h projects/ifnet/sys/i386/xen/mp_machdep.c projects/ifnet/sys/kern/kern_exec.c projects/ifnet/sys/kern/kern_gzio.c projects/ifnet/sys/kern/kern_physio.c projects/ifnet/sys/kern/kern_shutdown.c projects/ifnet/sys/kern/link_elf.c projects/ifnet/sys/kern/link_elf_obj.c projects/ifnet/sys/kern/uipc_shm.c projects/ifnet/sys/kern/vfs_aio.c projects/ifnet/sys/kern/vfs_bio.c projects/ifnet/sys/kern/vfs_cache.c projects/ifnet/sys/kern/vfs_vnops.c projects/ifnet/sys/modules/oce/Makefile projects/ifnet/sys/modules/zlib/Makefile projects/ifnet/sys/net/if_media.c projects/ifnet/sys/net/netisr.c projects/ifnet/sys/netgraph/ng_deflate.c projects/ifnet/sys/netinet/ip_carp.c projects/ifnet/sys/netinet/tcp_subr.c projects/ifnet/sys/opencrypto/cryptodeflate.c projects/ifnet/sys/opencrypto/deflate.h projects/ifnet/sys/sparc64/pci/apb.c projects/ifnet/sys/sys/cdefs.h projects/ifnet/sys/sys/fcntl.h projects/ifnet/sys/sys/mbuf.h projects/ifnet/sys/sys/param.h projects/ifnet/sys/sys/procctl.h projects/ifnet/sys/sys/syscallsubr.h projects/ifnet/sys/sys/systm.h projects/ifnet/sys/sys/vnode.h projects/ifnet/sys/ufs/ffs/ffs_alloc.c projects/ifnet/sys/ufs/ffs/ffs_vfsops.c projects/ifnet/sys/ufs/ufs/inode.h projects/ifnet/sys/vm/sg_pager.c projects/ifnet/sys/vm/uma_int.h projects/ifnet/sys/x86/acpica/srat.c projects/ifnet/sys/x86/include/mca.h projects/ifnet/sys/x86/pci/qpi.c projects/ifnet/sys/x86/x86/mca.c projects/ifnet/tools/regression/file/closefrom/closefrom.c projects/ifnet/tools/regression/lib/libc/stdio/test-open_memstream.c projects/ifnet/tools/regression/lib/libc/stdio/test-open_wmemstream.c projects/ifnet/tools/regression/netinet/arphold/arphold.c projects/ifnet/tools/tools/tscdrift/tscdrift.c projects/ifnet/usr.bin/kdump/kdump.c projects/ifnet/usr.bin/nfsstat/Makefile projects/ifnet/usr.bin/nfsstat/nfsstat.1 projects/ifnet/usr.bin/nfsstat/nfsstat.c projects/ifnet/usr.bin/perror/perror.1 projects/ifnet/usr.bin/perror/perror.c projects/ifnet/usr.bin/procstat/procstat_rusage.c projects/ifnet/usr.bin/protect/protect.1 projects/ifnet/usr.bin/protect/protect.c projects/ifnet/usr.bin/whois/whois.c projects/ifnet/usr.sbin/bhyve/ioapic.c projects/ifnet/usr.sbin/bhyve/ioapic.h projects/ifnet/usr.sbin/bhyve/pci_emul.c projects/ifnet/usr.sbin/bhyve/pci_irq.c projects/ifnet/usr.sbin/bhyve/pci_irq.h projects/ifnet/usr.sbin/bhyve/pm.c projects/ifnet/usr.sbin/etcupdate/etcupdate.8 projects/ifnet/usr.sbin/etcupdate/etcupdate.sh projects/ifnet/usr.sbin/etcupdate/tests/always_test.sh projects/ifnet/usr.sbin/etcupdate/tests/conflicts_test.sh projects/ifnet/usr.sbin/etcupdate/tests/fbsdid_test.sh projects/ifnet/usr.sbin/etcupdate/tests/ignore_test.sh projects/ifnet/usr.sbin/etcupdate/tests/preworld_test.sh projects/ifnet/usr.sbin/etcupdate/tests/tests_test.sh projects/ifnet/usr.sbin/etcupdate/tests/tzsetup_test.sh projects/ifnet/usr.sbin/iovctl/iovctl.conf.5 projects/ifnet/usr.sbin/jail/jail.8 projects/ifnet/usr.sbin/pciconf/err.c projects/ifnet/usr.sbin/smbmsg/smbmsg.c Directory Properties: projects/ifnet/ (props changed) projects/ifnet/contrib/tcpdump/ (props changed) projects/ifnet/lib/libc/ (props changed) projects/ifnet/sbin/ (props changed) projects/ifnet/share/ (props changed) projects/ifnet/share/man/man4/ (props changed) projects/ifnet/sys/ (props changed) projects/ifnet/sys/amd64/vmm/ (props changed) projects/ifnet/sys/boot/ (props changed) projects/ifnet/sys/cddl/contrib/opensolaris/ (props changed) projects/ifnet/sys/conf/ (props changed) projects/ifnet/sys/x86/include/acpica_machdep.h (props changed) projects/ifnet/usr.bin/procstat/ (props changed) projects/ifnet/usr.sbin/bhyve/ (props changed) projects/ifnet/usr.sbin/jail/ (props changed) Modified: projects/ifnet/Makefile.inc1 ============================================================================== --- projects/ifnet/Makefile.inc1 Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/Makefile.inc1 Sat Apr 25 22:05:48 2015 (r281990) @@ -1357,13 +1357,7 @@ _kerberos5_bootstrap_tools= \ kerberos5/tools/slc \ usr.bin/compile_et -${_bt}-kerberos5/lib/libroken: ${_bt}-kerberos5/tools/make-roken -${_bt}-kerberos5/tools/asn1_compile: \ - ${_bt}-kerberos5/lib/libroken ${_bt}-kerberos5/lib/libvers -${_bt}-kerberos5/tools/slc: \ - ${_bt}-kerberos5/lib/libroken ${_bt}-kerberos5/lib/libvers -${_bt}-usr.bin/compile_et: \ - ${_bt}-kerberos5/lib/libroken ${_bt}-kerberos5/lib/libvers +.ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g} .endif bootstrap-tools: .PHONY Modified: projects/ifnet/bin/sh/jobs.c ============================================================================== --- projects/ifnet/bin/sh/jobs.c Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/bin/sh/jobs.c Sat Apr 25 22:05:48 2015 (r281990) @@ -1057,7 +1057,7 @@ waitforjob(struct job *jp, int *origstat CLEAR_PENDING_INT; } #if JOBS - else if (rootshell && iflag && propagate_int && + else if (rootshell && propagate_int && WIFSIGNALED(status) && WTERMSIG(status) == SIGINT) kill(getpid(), SIGINT); #endif Modified: projects/ifnet/contrib/netbsd-tests/lib/libpthread/t_swapcontext.c ============================================================================== --- projects/ifnet/contrib/netbsd-tests/lib/libpthread/t_swapcontext.c Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/contrib/netbsd-tests/lib/libpthread/t_swapcontext.c Sat Apr 25 22:05:48 2015 (r281990) @@ -28,6 +28,9 @@ #include __RCSID("$NetBSD"); +#ifdef __FreeBSD__ +#include +#endif #include #include #include Modified: projects/ifnet/contrib/tcpdump/interface.h ============================================================================== --- projects/ifnet/contrib/tcpdump/interface.h Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/contrib/tcpdump/interface.h Sat Apr 25 22:05:48 2015 (r281990) @@ -148,8 +148,6 @@ extern uint16_t create_osi_cksum(const u #include -extern void pfsync_ip_print(const u_char *, u_int); - extern char *q922_string(const u_char *); extern char *smb_errstr(int, int); extern const char *nt_errstr(uint32_t); Modified: projects/ifnet/contrib/tcpdump/netdissect.h ============================================================================== --- projects/ifnet/contrib/tcpdump/netdissect.h Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/contrib/tcpdump/netdissect.h Sat Apr 25 22:05:48 2015 (r281990) @@ -540,6 +540,8 @@ extern void timed_print(netdissect_optio extern void m3ua_print(netdissect_options *, const u_char *, const u_int); extern void aoe_print(netdissect_options *, const u_char *, const u_int); +extern void pfsync_ip_print(netdissect_options *, const u_char *, u_int); + /* stuff that has not yet been rototiled */ #if 0 Modified: projects/ifnet/contrib/tcpdump/print-ip.c ============================================================================== --- projects/ifnet/contrib/tcpdump/print-ip.c Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/contrib/tcpdump/print-ip.c Sat Apr 25 22:05:48 2015 (r281990) @@ -487,7 +487,7 @@ again: #if defined(HAVE_NET_PFVAR_H) case IPPROTO_PFSYNC: - pfsync_ip_print(ipds->cp, ipds->len); + pfsync_ip_print(ndo, ipds->cp, ipds->len); break; #endif Modified: projects/ifnet/contrib/tcpdump/print-pfsync.c ============================================================================== --- projects/ifnet/contrib/tcpdump/print-pfsync.c Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/contrib/tcpdump/print-pfsync.c Sat Apr 25 22:05:48 2015 (r281990) @@ -47,10 +47,12 @@ #include "interface.h" #include "addrtoname.h" -static void pfsync_print(struct pfsync_header *, const u_char *, u_int); -static void print_src_dst(const struct pfsync_state_peer *, +static void pfsync_print(netdissect_options *, struct pfsync_header *, + const u_char *, u_int); +static void print_src_dst(netdissect_options *, + const struct pfsync_state_peer *, const struct pfsync_state_peer *, uint8_t); -static void print_state(struct pfsync_state *); +static void print_state(netdissect_options *, struct pfsync_state *); #ifdef notyet void @@ -62,7 +64,7 @@ pfsync_if_print(u_char *user, const stru ts_print(&h->ts); if (caplen < PFSYNC_HDRLEN) { - printf("[|pfsync]"); + ND_PRINT((ndo, "[|pfsync]")); goto out; } @@ -73,36 +75,36 @@ out: if (xflag) { default_print((const u_char *)p, caplen); } - putchar('\n'); + safeputchar(ndo, '\n'); } #endif /* notyet */ void -pfsync_ip_print(const u_char *bp, u_int len) +pfsync_ip_print(netdissect_options *ndo , const u_char *bp, u_int len) { struct pfsync_header *hdr = (struct pfsync_header *)bp; if (len < PFSYNC_HDRLEN) - printf("[|pfsync]"); + ND_PRINT((ndo, "[|pfsync]")); else - pfsync_print(hdr, bp + sizeof(struct pfsync_header), + pfsync_print(ndo, hdr, bp + sizeof(struct pfsync_header), len - sizeof(struct pfsync_header)); } struct pfsync_actions { const char *name; size_t len; - void (*print)(const void *); + void (*print)(netdissect_options *, const void *); }; -static void pfsync_print_clr(const void *); -static void pfsync_print_state(const void *); -static void pfsync_print_ins_ack(const void *); -static void pfsync_print_upd_c(const void *); -static void pfsync_print_upd_req(const void *); -static void pfsync_print_del_c(const void *); -static void pfsync_print_bus(const void *); -static void pfsync_print_tdb(const void *); +static void pfsync_print_clr(netdissect_options *, const void *); +static void pfsync_print_state(netdissect_options *, const void *); +static void pfsync_print_ins_ack(netdissect_options *, const void *); +static void pfsync_print_upd_c(netdissect_options *, const void *); +static void pfsync_print_upd_req(netdissect_options *, const void *); +static void pfsync_print_del_c(netdissect_options *, const void *); +static void pfsync_print_bus(netdissect_options *, const void *); +static void pfsync_print_tdb(netdissect_options *, const void *); struct pfsync_actions actions[] = { { "clear all", sizeof(struct pfsync_clr), pfsync_print_clr }, @@ -125,7 +127,8 @@ struct pfsync_actions actions[] = { }; static void -pfsync_print(struct pfsync_header *hdr, const u_char *bp, u_int len) +pfsync_print(netdissect_options *ndo, struct pfsync_header *hdr, + const u_char *bp, u_int len) { struct pfsync_subheader *subh; int count, plen, i; @@ -133,7 +136,7 @@ pfsync_print(struct pfsync_header *hdr, plen = ntohs(hdr->len); - printf("PFSYNCv%d len %d", hdr->version, plen); + ND_PRINT((ndo, "PFSYNCv%d len %d", hdr->version, plen)); if (hdr->version != PFSYNC_VERSION) return; @@ -150,19 +153,22 @@ pfsync_print(struct pfsync_header *hdr, plen -= sizeof(*subh); if (subh->action >= PFSYNC_ACT_MAX) { - printf("\n act UNKNOWN id %d", subh->action); + ND_PRINT((ndo, "\n act UNKNOWN id %d", + subh->action)); return; } count = ntohs(subh->count); - printf("\n %s count %d", actions[subh->action].name, count); + ND_PRINT((ndo, "\n %s count %d", actions[subh->action].name, + count)); alen = actions[subh->action].len; if (subh->action == PFSYNC_ACT_EOF) return; if (actions[subh->action].print == NULL) { - printf("\n unimplemented action %hhu", subh->action); + ND_PRINT((ndo, "\n unimplemented action %hhu", + subh->action)); return; } @@ -173,7 +179,7 @@ pfsync_print(struct pfsync_header *hdr, } if (vflag) - actions[subh->action].print(bp); + actions[subh->action].print(ndo, bp); bp += alen; len -= alen; @@ -182,78 +188,78 @@ pfsync_print(struct pfsync_header *hdr, } if (plen > 0) { - printf("\n ..."); + ND_PRINT((ndo, "\n ...")); return; } if (plen < 0) { - printf("\n invalid header length"); + ND_PRINT((ndo, "\n invalid header length")); return; } if (len > 0) - printf("\n invalid packet length"); + ND_PRINT((ndo, "\n invalid packet length")); } static void -pfsync_print_clr(const void *bp) +pfsync_print_clr(netdissect_options *ndo, const void *bp) { const struct pfsync_clr *clr = bp; - printf("\n\tcreatorid: %08x", htonl(clr->creatorid)); + ND_PRINT((ndo, "\n\tcreatorid: %08x", htonl(clr->creatorid))); if (clr->ifname[0] != '\0') - printf(" interface: %s", clr->ifname); + ND_PRINT((ndo, " interface: %s", clr->ifname)); } static void -pfsync_print_state(const void *bp) +pfsync_print_state(netdissect_options *ndo, const void *bp) { struct pfsync_state *st = (struct pfsync_state *)bp; - putchar('\n'); - print_state(st); + safeputchar(ndo, '\n'); + print_state(ndo, st); } static void -pfsync_print_ins_ack(const void *bp) +pfsync_print_ins_ack(netdissect_options *ndo, const void *bp) { const struct pfsync_ins_ack *iack = bp; - printf("\n\tid: %016jx creatorid: %08x", (uintmax_t )be64toh(iack->id), - ntohl(iack->creatorid)); + ND_PRINT((ndo, "\n\tid: %016jx creatorid: %08x", + (uintmax_t)be64toh(iack->id), ntohl(iack->creatorid))); } static void -pfsync_print_upd_c(const void *bp) +pfsync_print_upd_c(netdissect_options *ndo, const void *bp) { const struct pfsync_upd_c *u = bp; - printf("\n\tid: %016jx creatorid: %08x", (uintmax_t )be64toh(u->id), - ntohl(u->creatorid)); + ND_PRINT((ndo, "\n\tid: %016jx creatorid: %08x", + (uintmax_t)be64toh(u->id), ntohl(u->creatorid))); if (vflag > 2) { - printf("\n\tTCP? :"); - print_src_dst(&u->src, &u->dst, IPPROTO_TCP); + ND_PRINT((ndo, "\n\tTCP? :")); + print_src_dst(ndo, &u->src, &u->dst, IPPROTO_TCP); } } static void -pfsync_print_upd_req(const void *bp) +pfsync_print_upd_req(netdissect_options *ndo, const void *bp) { const struct pfsync_upd_req *ur = bp; - printf("\n\tid: %016jx creatorid: %08x", (uintmax_t )be64toh(ur->id), - ntohl(ur->creatorid)); + ND_PRINT((ndo, "\n\tid: %016jx creatorid: %08x", + (uintmax_t)be64toh(ur->id), ntohl(ur->creatorid))); } static void -pfsync_print_del_c(const void *bp) +pfsync_print_del_c(netdissect_options *ndo, const void *bp) { const struct pfsync_del_c *d = bp; - printf("\n\tid: %016jx creatorid: %08x", (uintmax_t )be64toh(d->id), - ntohl(d->creatorid)); + ND_PRINT((ndo, "\n\tid: %016jx creatorid: %08x", + (uintmax_t)be64toh(d->id), ntohl(d->creatorid))); } static void -pfsync_print_bus(const void *bp) +pfsync_print_bus(netdissect_options *ndo, const void *bp) { const struct pfsync_bus *b = bp; uint32_t endtime; @@ -278,95 +284,95 @@ pfsync_print_bus(const void *bp) break; } - printf("\n\tcreatorid: %08x age: %.2u:%.2u:%.2u status: %s", - htonl(b->creatorid), endtime, min, sec, status); + ND_PRINT((ndo, "\n\tcreatorid: %08x age: %.2u:%.2u:%.2u status: %s", + htonl(b->creatorid), endtime, min, sec, status)); } static void -pfsync_print_tdb(const void *bp) +pfsync_print_tdb(netdissect_options *ndo, const void *bp) { const struct pfsync_tdb *t = bp; - printf("\n\tspi: 0x%08x rpl: %ju cur_bytes: %ju", + ND_PRINT((ndo, "\n\tspi: 0x%08x rpl: %ju cur_bytes: %ju", ntohl(t->spi), (uintmax_t )be64toh(t->rpl), - (uintmax_t )be64toh(t->cur_bytes)); + (uintmax_t )be64toh(t->cur_bytes))); } static void -print_host(struct pf_addr *addr, uint16_t port, sa_family_t af, - const char *proto) +print_host(netdissect_options *ndo, struct pf_addr *addr, uint16_t port, + sa_family_t af, const char *proto) { char buf[48]; if (inet_ntop(af, addr, buf, sizeof(buf)) == NULL) - printf("?"); + ND_PRINT((ndo, "?")); else - printf("%s", buf); + ND_PRINT((ndo, "%s", buf)); if (port) - printf(".%hu", ntohs(port)); + ND_PRINT((ndo, ".%hu", ntohs(port))); } static void -print_seq(const struct pfsync_state_peer *p) +print_seq(netdissect_options *ndo, const struct pfsync_state_peer *p) { if (p->seqdiff) - printf("[%u + %u](+%u)", ntohl(p->seqlo), - ntohl(p->seqhi) - ntohl(p->seqlo), ntohl(p->seqdiff)); + ND_PRINT((ndo, "[%u + %u](+%u)", ntohl(p->seqlo), + ntohl(p->seqhi) - ntohl(p->seqlo), ntohl(p->seqdiff))); else - printf("[%u + %u]", ntohl(p->seqlo), - ntohl(p->seqhi) - ntohl(p->seqlo)); + ND_PRINT((ndo, "[%u + %u]", ntohl(p->seqlo), + ntohl(p->seqhi) - ntohl(p->seqlo))); } static void -print_src_dst(const struct pfsync_state_peer *src, +print_src_dst(netdissect_options *ndo, const struct pfsync_state_peer *src, const struct pfsync_state_peer *dst, uint8_t proto) { if (proto == IPPROTO_TCP) { if (src->state <= TCPS_TIME_WAIT && dst->state <= TCPS_TIME_WAIT) - printf(" %s:%s", tcpstates[src->state], - tcpstates[dst->state]); + ND_PRINT((ndo, " %s:%s", tcpstates[src->state], + tcpstates[dst->state])); else if (src->state == PF_TCPS_PROXY_SRC || dst->state == PF_TCPS_PROXY_SRC) - printf(" PROXY:SRC"); + ND_PRINT((ndo, " PROXY:SRC")); else if (src->state == PF_TCPS_PROXY_DST || dst->state == PF_TCPS_PROXY_DST) - printf(" PROXY:DST"); + ND_PRINT((ndo, " PROXY:DST")); else - printf(" ", - src->state, dst->state); + ND_PRINT((ndo, " ", + src->state, dst->state)); if (vflag > 1) { - printf("\n\t"); - print_seq(src); + ND_PRINT((ndo, "\n\t")); + print_seq(ndo, src); if (src->wscale && dst->wscale) - printf(" wscale %u", - src->wscale & PF_WSCALE_MASK); - printf(" "); - print_seq(dst); + ND_PRINT((ndo, " wscale %u", + src->wscale & PF_WSCALE_MASK)); + ND_PRINT((ndo, " ")); + print_seq(ndo, dst); if (src->wscale && dst->wscale) - printf(" wscale %u", - dst->wscale & PF_WSCALE_MASK); + ND_PRINT((ndo, " wscale %u", + dst->wscale & PF_WSCALE_MASK)); } } else if (proto == IPPROTO_UDP && src->state < PFUDPS_NSTATES && dst->state < PFUDPS_NSTATES) { const char *states[] = PFUDPS_NAMES; - printf(" %s:%s", states[src->state], states[dst->state]); + ND_PRINT((ndo, " %s:%s", states[src->state], states[dst->state])); } else if (proto != IPPROTO_ICMP && src->state < PFOTHERS_NSTATES && dst->state < PFOTHERS_NSTATES) { /* XXX ICMP doesn't really have state levels */ const char *states[] = PFOTHERS_NAMES; - printf(" %s:%s", states[src->state], states[dst->state]); + ND_PRINT((ndo, " %s:%s", states[src->state], states[dst->state])); } else { - printf(" %u:%u", src->state, dst->state); + ND_PRINT((ndo, " %u:%u", src->state, dst->state)); } } static void -print_state(struct pfsync_state *s) +print_state(netdissect_options *ndo, struct pfsync_state *s) { struct pfsync_state_peer *src, *dst; struct pfsync_state_key *sk, *nk; @@ -387,29 +393,29 @@ print_state(struct pfsync_state *s) if (s->proto == IPPROTO_ICMP || s->proto == IPPROTO_ICMPV6) sk->port[1] = nk->port[1]; } - printf("\t%s ", s->ifname); - printf("proto %u ", s->proto); + ND_PRINT((ndo, "\t%s ", s->ifname)); + ND_PRINT((ndo, "proto %u ", s->proto)); - print_host(&nk->addr[1], nk->port[1], s->af, NULL); + print_host(ndo, &nk->addr[1], nk->port[1], s->af, NULL); if (PF_ANEQ(&nk->addr[1], &sk->addr[1], s->af) || nk->port[1] != sk->port[1]) { - printf(" ("); - print_host(&sk->addr[1], sk->port[1], s->af, NULL); - printf(")"); + ND_PRINT((ndo, " (")); + print_host(ndo, &sk->addr[1], sk->port[1], s->af, NULL); + ND_PRINT((ndo, ")")); } if (s->direction == PF_OUT) - printf(" -> "); + ND_PRINT((ndo, " -> ")); else - printf(" <- "); - print_host(&nk->addr[0], nk->port[0], s->af, NULL); + ND_PRINT((ndo, " <- ")); + print_host(ndo, &nk->addr[0], nk->port[0], s->af, NULL); if (PF_ANEQ(&nk->addr[0], &sk->addr[0], s->af) || nk->port[0] != sk->port[0]) { - printf(" ("); - print_host(&sk->addr[0], sk->port[0], s->af, NULL); - printf(")"); + ND_PRINT((ndo, " (")); + print_host(ndo, &sk->addr[0], sk->port[0], s->af, NULL); + ND_PRINT((ndo, ")")); } - print_src_dst(src, dst, s->proto); + print_src_dst(ndo, src, dst, s->proto); if (vflag > 1) { uint64_t packets[2]; @@ -421,30 +427,30 @@ print_state(struct pfsync_state *s) creation /= 60; min = creation % 60; creation /= 60; - printf("\n\tage %.2u:%.2u:%.2u", creation, min, sec); + ND_PRINT((ndo, "\n\tage %.2u:%.2u:%.2u", creation, min, sec)); sec = expire % 60; expire /= 60; min = expire % 60; expire /= 60; - printf(", expires in %.2u:%.2u:%.2u", expire, min, sec); + ND_PRINT((ndo, ", expires in %.2u:%.2u:%.2u", expire, min, sec)); bcopy(s->packets[0], &packets[0], sizeof(uint64_t)); bcopy(s->packets[1], &packets[1], sizeof(uint64_t)); bcopy(s->bytes[0], &bytes[0], sizeof(uint64_t)); bcopy(s->bytes[1], &bytes[1], sizeof(uint64_t)); - printf(", %ju:%ju pkts, %ju:%ju bytes", + ND_PRINT((ndo, ", %ju:%ju pkts, %ju:%ju bytes", be64toh(packets[0]), be64toh(packets[1]), - be64toh(bytes[0]), be64toh(bytes[1])); + be64toh(bytes[0]), be64toh(bytes[1]))); if (s->anchor != ntohl(-1)) - printf(", anchor %u", ntohl(s->anchor)); + ND_PRINT((ndo, ", anchor %u", ntohl(s->anchor))); if (s->rule != ntohl(-1)) - printf(", rule %u", ntohl(s->rule)); + ND_PRINT((ndo, ", rule %u", ntohl(s->rule))); } if (vflag > 1) { uint64_t id; bcopy(&s->id, &id, sizeof(uint64_t)); - printf("\n\tid: %016jx creatorid: %08x", - (uintmax_t )be64toh(id), ntohl(s->creatorid)); + ND_PRINT((ndo, "\n\tid: %016jx creatorid: %08x", + (uintmax_t )be64toh(id), ntohl(s->creatorid))); } } Modified: projects/ifnet/lib/libc/gen/_once_stub.c ============================================================================== --- projects/ifnet/lib/libc/gen/_once_stub.c Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/lib/libc/gen/_once_stub.c Sat Apr 25 22:05:48 2015 (r281990) @@ -1,5 +1,5 @@ /*- - * Copyright (c) 2009 Advanced Computing Technologies LLC + * Copyright (c) 2009 Hudson River Trading LLC * Written by: John H. Baldwin * All rights reserved. * Modified: projects/ifnet/lib/libc/include/compat.h ============================================================================== --- projects/ifnet/lib/libc/include/compat.h Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/lib/libc/include/compat.h Sat Apr 25 22:05:48 2015 (r281990) @@ -1,5 +1,5 @@ /*- - * Copyright (c) 2009 Advanced Computing Technologies LLC + * Copyright (c) 2009 Hudson River Trading LLC * Written by: John H. Baldwin * All rights reserved. * Modified: projects/ifnet/lib/libc/locale/duplocale.3 ============================================================================== --- projects/ifnet/lib/libc/locale/duplocale.3 Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/lib/libc/locale/duplocale.3 Sat Apr 25 22:05:48 2015 (r281990) @@ -36,7 +36,7 @@ .Sh LIBRARY .Lb libc .Sh SYNOPSIS -.In xlocale.h +.In locale.h .Ft locale_t .Fn duplocale "locale_t locale" .Sh DESCRIPTION Modified: projects/ifnet/lib/libc/locale/freelocale.3 ============================================================================== --- projects/ifnet/lib/libc/locale/freelocale.3 Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/lib/libc/locale/freelocale.3 Sat Apr 25 22:05:48 2015 (r281990) @@ -38,7 +38,7 @@ or .Sh LIBRARY .Lb libc .Sh SYNOPSIS -.In xlocale.h +.In locale.h .Ft int .Fn freelocale "locale_t locale" .Sh DESCRIPTION Modified: projects/ifnet/lib/libc/locale/newlocale.3 ============================================================================== --- projects/ifnet/lib/libc/locale/newlocale.3 Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/lib/libc/locale/newlocale.3 Sat Apr 25 22:05:48 2015 (r281990) @@ -35,7 +35,7 @@ .Sh LIBRARY .Lb libc .Sh SYNOPSIS -.In xlocale +.In locale.h .Ft locale_t .Fn newlocale "int mask" "const char * locale" "locale_t base" .Sh DESCRIPTION Modified: projects/ifnet/lib/libc/locale/none.c ============================================================================== --- projects/ifnet/lib/libc/locale/none.c Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/lib/libc/locale/none.c Sat Apr 25 22:05:48 2015 (r281990) @@ -209,7 +209,7 @@ struct xlocale_ctype __xlocale_global_ct 256 /* __mb_sb_limit */ }; -const struct xlocale_ctype __xlocale_C_ctype = { +struct xlocale_ctype __xlocale_C_ctype = { {{0}, "C"}, (_RuneLocale*)&_DefaultRuneLocale, _none_mbrtowc, Modified: projects/ifnet/lib/libc/locale/querylocale.3 ============================================================================== --- projects/ifnet/lib/libc/locale/querylocale.3 Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/lib/libc/locale/querylocale.3 Sat Apr 25 22:05:48 2015 (r281990) @@ -36,7 +36,7 @@ .Sh LIBRARY .Lb libc .Sh SYNOPSIS -.In xlocale.h +.In locale.h .Ft const char * .Fn querylocale "int mask" "locale_t locale" .Sh DESCRIPTION Modified: projects/ifnet/lib/libc/locale/uselocale.3 ============================================================================== --- projects/ifnet/lib/libc/locale/uselocale.3 Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/lib/libc/locale/uselocale.3 Sat Apr 25 22:05:48 2015 (r281990) @@ -36,7 +36,7 @@ .Sh LIBRARY .Lb libc .Sh SYNOPSIS -.In xlocale.h +.In locale.h .Ft locale_t .Fn uselocale "locale_t locale" .Sh DESCRIPTION Modified: projects/ifnet/lib/libc/net/sctp_recvmsg.3 ============================================================================== --- projects/ifnet/lib/libc/net/sctp_recvmsg.3 Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/lib/libc/net/sctp_recvmsg.3 Sat Apr 25 22:05:48 2015 (r281990) @@ -27,7 +27,7 @@ .\" .\" $FreeBSD$ .\" -.Dd August 13, 2007 +.Dd April 23, 2015 .Dt SCTP_RECVMSG 3 .Os .Sh NAME @@ -98,13 +98,13 @@ receive buffer, then the argument will .Em not have the -.Dv MSG_EOF +.Dv MSG_EOR flag applied. If the message is a complete message then the .Fa flags argument will have -.Dv MSG_EOF +.Dv MSG_EOR set. Locally detected errors are indicated by a return value of -1 with Modified: projects/ifnet/lib/libc/regex/regcomp.c ============================================================================== --- projects/ifnet/lib/libc/regex/regcomp.c Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/lib/libc/regex/regcomp.c Sat Apr 25 22:05:48 2015 (r281990) @@ -1726,13 +1726,13 @@ computematchjumps(struct parse *p, struc if (p->error != 0) return; - pmatches = (int*) malloc(g->mlen * sizeof(unsigned int)); + pmatches = (int*) malloc(g->mlen * sizeof(int)); if (pmatches == NULL) { g->matchjump = NULL; return; } - g->matchjump = (int*) malloc(g->mlen * sizeof(unsigned int)); + g->matchjump = (int*) malloc(g->mlen * sizeof(int)); if (g->matchjump == NULL) { /* Not a fatal error */ free(pmatches); return; Modified: projects/ifnet/lib/libc/stdio/flags.c ============================================================================== --- projects/ifnet/lib/libc/stdio/flags.c Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/lib/libc/stdio/flags.c Sat Apr 25 22:05:48 2015 (r281990) @@ -97,6 +97,10 @@ __sflags(const char *mode, int *optr) /* set close-on-exec */ o |= O_CLOEXEC; break; + case 'v': + /* verify */ + o |= O_VERIFY; + break; default: known = 0; break; Modified: projects/ifnet/lib/libc/stdio/open_memstream.3 ============================================================================== --- projects/ifnet/lib/libc/stdio/open_memstream.3 Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/lib/libc/stdio/open_memstream.3 Sat Apr 25 22:05:48 2015 (r281990) @@ -1,4 +1,4 @@ -.\" Copyright (c) 2013 Advanced Computing Technologies LLC +.\" Copyright (c) 2013 Hudson River Trading LLC .\" Written by: John H. Baldwin .\" All rights reserved. .\" Modified: projects/ifnet/lib/libc/stdio/open_memstream.c ============================================================================== --- projects/ifnet/lib/libc/stdio/open_memstream.c Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/lib/libc/stdio/open_memstream.c Sat Apr 25 22:05:48 2015 (r281990) @@ -1,5 +1,5 @@ /*- - * Copyright (c) 2013 Advanced Computing Technologies LLC + * Copyright (c) 2013 Hudson River Trading LLC * Written by: John H. Baldwin * All rights reserved. * Modified: projects/ifnet/lib/libc/stdio/open_wmemstream.c ============================================================================== --- projects/ifnet/lib/libc/stdio/open_wmemstream.c Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/lib/libc/stdio/open_wmemstream.c Sat Apr 25 22:05:48 2015 (r281990) @@ -1,5 +1,5 @@ /*- - * Copyright (c) 2013 Advanced Computing Technologies LLC + * Copyright (c) 2013 Hudson River Trading LLC * Written by: John H. Baldwin * All rights reserved. * Modified: projects/ifnet/lib/libc/sys/closefrom.2 ============================================================================== --- projects/ifnet/lib/libc/sys/closefrom.2 Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/lib/libc/sys/closefrom.2 Sat Apr 25 22:05:48 2015 (r281990) @@ -1,4 +1,4 @@ -.\" Copyright (c) 2009 Advanced Computing Technologies LLC +.\" Copyright (c) 2009 Hudson River Trading LLC .\" Written by: John H. Baldwin .\" All rights reserved. .\" Modified: projects/ifnet/lib/libc/sys/procctl.2 ============================================================================== --- projects/ifnet/lib/libc/sys/procctl.2 Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/lib/libc/sys/procctl.2 Sat Apr 25 22:05:48 2015 (r281990) @@ -1,4 +1,4 @@ -.\" Copyright (c) 2013 Advanced Computing Technologies LLC +.\" Copyright (c) 2013 Hudson River Trading LLC .\" Written by: John H. Baldwin .\" All rights reserved. .\" Modified: projects/ifnet/lib/libc/tests/db/Makefile ============================================================================== --- projects/ifnet/lib/libc/tests/db/Makefile Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/lib/libc/tests/db/Makefile Sat Apr 25 22:05:48 2015 (r281990) @@ -11,6 +11,7 @@ FILESDIR= ${TESTSDIR} FILES= README NETBSD_ATF_TESTS_SH+= db_test +ATF_TESTS_SH_SED_db_test= -e 's,/bin/csh,/bin/cat,g' .include "../Makefile.netbsd-tests" Modified: projects/ifnet/lib/libgeom/geom_xml2tree.c ============================================================================== --- projects/ifnet/lib/libgeom/geom_xml2tree.c Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/lib/libgeom/geom_xml2tree.c Sat Apr 25 22:05:48 2015 (r281990) @@ -257,6 +257,7 @@ EndElement(void *userData, const char *n if (!strcmp(name, "config")) { mt->config = NULL; + free(p); return; } Modified: projects/ifnet/lib/libmd/mdXhl.c ============================================================================== --- projects/ifnet/lib/libmd/mdXhl.c Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/lib/libmd/mdXhl.c Sat Apr 25 22:05:48 2015 (r281990) @@ -74,7 +74,7 @@ MDXFileChunk(const char *filename, char i = read(f, buffer, sizeof(buffer)); else i = read(f, buffer, n); - if (i < 0) + if (i <= 0) break; MDXUpdate(&ctx, buffer, i); n -= i; Modified: projects/ifnet/lib/libstand/Makefile ============================================================================== --- projects/ifnet/lib/libstand/Makefile Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/lib/libstand/Makefile Sat Apr 25 22:05:48 2015 (r281990) @@ -11,6 +11,9 @@ MK_SSP= no .include +LIBSTAND_SRC= ${.CURDIR} +LIBC_SRC= ${LIBSTAND_SRC}/../libc + LIB= stand NO_PIC= INCS= stand.h @@ -19,7 +22,7 @@ MAN= libstand.3 WARNS?= 0 CFLAGS+= -ffreestanding -Wformat -CFLAGS+= -I${.CURDIR} +CFLAGS+= -I${LIBSTAND_SRC} .if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" CFLAGS+= -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float @@ -54,54 +57,54 @@ SRCS+= gzguts.h zutil.h __main.c assert. # private (pruned) versions of libc string functions SRCS+= strcasecmp.c -.PATH: ${.CURDIR}/../libc/net +.PATH: ${LIBC_SRC}/net SRCS+= ntoh.c # string functions from libc -.PATH: ${.CURDIR}/../libc/string +.PATH: ${LIBC_SRC}/string SRCS+= bcmp.c bcopy.c bzero.c ffs.c memccpy.c memchr.c memcmp.c memcpy.c \ memmove.c memset.c qdivrem.c strcat.c strchr.c strcmp.c strcpy.c \ strcspn.c strlen.c strncat.c strncmp.c strncpy.c strpbrk.c \ strrchr.c strsep.c strspn.c strstr.c strtok.c swab.c .if ${MACHINE_CPUARCH} == "arm" -.PATH: ${.CURDIR}/../libc/arm/gen +.PATH: ${LIBC_SRC}/arm/gen # Compiler support functions -.PATH: ${.CURDIR}/../../contrib/compiler-rt/lib/builtins/ +.PATH: ${LIBSTAND_SRC}/../../contrib/compiler-rt/lib/builtins/ # __clzsi2 and ctzsi2 for various builtin functions SRCS+= clzsi2.c ctzsi2.c # Divide and modulus functions called by the compiler SRCS+= divmoddi4.c divmodsi4.c divdi3.c divsi3.c moddi3.c modsi3.c SRCS+= udivmoddi4.c udivmodsi4.c udivdi3.c udivsi3.c umoddi3.c umodsi3.c -.PATH: ${.CURDIR}/../../contrib/compiler-rt/lib/builtins/arm/ +.PATH: ${LIBSTAND_SRC}/../../contrib/compiler-rt/lib/builtins/arm/ SRCS+= aeabi_idivmod.S aeabi_ldivmod.S aeabi_uidivmod.S aeabi_uldivmod.S SRCS+= aeabi_memcmp.S aeabi_memcpy.S aeabi_memmove.S aeabi_memset.S .endif .if ${MACHINE_CPUARCH} == "aarch64" -.PATH: ${.CURDIR}/../libc/aarch64/gen +.PATH: ${LIBC_SRC}/aarch64/gen .endif .if ${MACHINE_CPUARCH} == "powerpc" -.PATH: ${.CURDIR}/../libc/quad +.PATH: ${LIBC_SRC}/quad SRCS+= ashldi3.c ashrdi3.c SRCS+= syncicache.c .endif # uuid functions from libc -.PATH: ${.CURDIR}/../libc/uuid +.PATH: ${LIBC_SRC}/uuid SRCS+= uuid_equal.c uuid_is_nil.c # _setjmp/_longjmp -.PATH: ${.CURDIR}/${MACHINE_CPUARCH} +.PATH: ${LIBSTAND_SRC}/${MACHINE_CPUARCH} SRCS+= _setjmp.S # decompression functionality from libbz2 # NOTE: to actually test this functionality after libbz2 upgrade compile # loader(8) with LOADER_BZIP2_SUPPORT defined -.PATH: ${.CURDIR}/../../contrib/bzip2 +.PATH: ${LIBSTAND_SRC}/../../contrib/bzip2 CFLAGS+= -DBZ_NO_STDIO -DBZ_NO_COMPRESS SRCS+= libstand_bzlib_private.h @@ -110,7 +113,8 @@ SRCS+= _${file} CLEANFILES+= _${file} _${file}: ${file} - sed "s|bzlib_private\.h|libstand_bzlib_private.h|" ${.ALLSRC} > ${.TARGET} + sed "s|bzlib_private\.h|libstand_bzlib_private.h|" \ + ${.ALLSRC} > ${.TARGET} .endfor CLEANFILES+= libstand_bzlib_private.h @@ -119,8 +123,8 @@ libstand_bzlib_private.h: bzlib_private. ${.ALLSRC} > ${.TARGET} # decompression functionality from libz -.PATH: ${.CURDIR}/../libz -CFLAGS+=-DHAVE_MEMCPY -I${.CURDIR}/../libz +.PATH: ${LIBSTAND_SRC}/../libz +CFLAGS+=-DHAVE_MEMCPY -I${LIBSTAND_SRC}/../libz SRCS+= adler32.c crc32.c libstand_zutil.h libstand_gzguts.h .for file in infback.c inffast.c inflate.c inftrees.c zutil.c @@ -165,4 +169,3 @@ SRCS+= nandfs.c .endif .include - Modified: projects/ifnet/lib/libthr/thread/thr_clean.c ============================================================================== --- projects/ifnet/lib/libthr/thread/thr_clean.c Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/lib/libthr/thread/thr_clean.c Sat Apr 25 22:05:48 2015 (r281990) @@ -84,7 +84,7 @@ _pthread_cleanup_push(void (*routine) (v curthread->unwind_disabled = 1; #endif if ((newbuf = (struct pthread_cleanup *) - malloc(sizeof(struct _pthread_cleanup_info))) != NULL) { + malloc(sizeof(struct pthread_cleanup))) != NULL) { newbuf->routine = routine; newbuf->routine_arg = arg; newbuf->onheap = 1; Modified: projects/ifnet/libexec/rtld-elf/rtld.c ============================================================================== --- projects/ifnet/libexec/rtld-elf/rtld.c Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/libexec/rtld-elf/rtld.c Sat Apr 25 22:05:48 2015 (r281990) @@ -2165,7 +2165,7 @@ load_object(const char *name, int fd_u, * To avoid a race, we open the file and use fstat() rather than * using stat(). */ - if ((fd = open(path, O_RDONLY | O_CLOEXEC)) == -1) { + if ((fd = open(path, O_RDONLY | O_CLOEXEC | O_VERIFY)) == -1) { _rtld_error("Cannot open \"%s\"", path); free(path); return (NULL); @@ -2855,7 +2855,7 @@ search_library_pathfds(const char *name, dirfd = parse_libdir(fdstr); if (dirfd < 0) break; - fd = __sys_openat(dirfd, name, O_RDONLY | O_CLOEXEC); + fd = __sys_openat(dirfd, name, O_RDONLY | O_CLOEXEC | O_VERIFY); if (fd >= 0) { *fdp = fd; len = strlen(fdstr) + strlen(name) + 3; Modified: projects/ifnet/release/arm64/make-memstick.sh ============================================================================== --- projects/ifnet/release/arm64/make-memstick.sh Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/release/arm64/make-memstick.sh Sat Apr 25 22:05:48 2015 (r281990) @@ -36,6 +36,6 @@ if [ $? -ne 0 ]; then fi rm ${1}/etc/fstab -mkimg -s gpt -p efi:=${1}/boot/boot1.efifat -p freebsd-boot:=${1}/boot/gptboot -p freebsd-ufs:=${2}.part -p freebsd-swap::1M -o ${2} +mkimg -s gpt -p efi:=${1}/boot/boot1.efifat -p freebsd-ufs:=${2}.part -p freebsd-swap::1M -o ${2} rm ${2}.part Modified: projects/ifnet/release/scripts/mk-vmimage.sh ============================================================================== --- projects/ifnet/release/scripts/mk-vmimage.sh Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/release/scripts/mk-vmimage.sh Sat Apr 25 22:05:48 2015 (r281990) @@ -93,6 +93,16 @@ main() { . "${VMCONFIG}" fi + case ${TARGET}:${TARGET_ARCH} in + arm64:aarch64) + ROOTLABEL="ufs" + NOSWAP=1 + ;; + *) + ROOTLABEL="gpt" + ;; + esac + vm_create_base vm_install_base vm_extra_install_base Modified: projects/ifnet/release/tools/vmimage.subr ============================================================================== --- projects/ifnet/release/tools/vmimage.subr Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/release/tools/vmimage.subr Sat Apr 25 22:05:48 2015 (r281990) @@ -14,11 +14,11 @@ write_partition_layout() { SWAPOPT="-p freebsd-swap/swapfs::1G" fi - _OBJDIR="$(make -C ${WORLDDIR} -V .OBJDIR | tr -d '/usr/src')" - if [ -d "${_OBJDIR}/${TARGET}.${TARGET_ARCH}" ]; then - BOOTFILES="${_OBJDIR}/${TARGET}.${TARGET_ARCH}/usr/src/sys/boot" + _OBJDIR="$(make -C ${WORLDDIR} -V .OBJDIR)" + if [ -d "${_OBJDIR%%/usr/src}/${TARGET}.${TARGET_ARCH}" ]; then + BOOTFILES="/${_OBJDIR%%/usr/src}/${TARGET}.${TARGET_ARCH}/usr/src/sys/boot" else - BOOTFILES="${_OBJDIR}/usr/src/sys/boot" + BOOTFILES="/${_OBJDIR}/sys/boot" fi case "${TARGET}:${TARGET_ARCH}" in @@ -30,10 +30,9 @@ write_partition_layout() { -o ${VMIMAGE} ;; arm64:aarch64) - mkimg -s gpt \ - -p efi/efiboot:=${BOOTFILES}/efi/boot1/boot1.efifat \ - ${SWAPOPT} \ - -p freebsd-ufs/rootfs:=${VMBASE} \ + mkimg -s mbr \ + -p efi:=${BOOTFILES}/efi/boot1/boot1.efifat \ + -p freebsd:=${VMBASE} \ -o ${VMIMAGE} ;; powerpc:powerpc*) @@ -77,7 +76,7 @@ vm_create_base() { mkdir -p ${DESTDIR} truncate -s ${VMSIZE} ${VMBASE} mddev=$(mdconfig -f ${VMBASE}) - newfs /dev/${mddev} + newfs -L rootfs /dev/${mddev} mount /dev/${mddev} ${DESTDIR} return 0 @@ -97,7 +96,7 @@ vm_copy_base() { truncate -s ${VMSIZE} ${VMBASE}.tmp mkdir -p ${DESTDIR}/new mdnew=$(mdconfig -f ${VMBASE}.tmp) - newfs /dev/${mdnew} + newfs -L rootfs /dev/${mdnew} mount /dev/${mdnew} ${DESTDIR}/new tar -cf- -C ${DESTDIR}/old . | tar -xUf- -C ${DESTDIR}/new @@ -123,7 +122,7 @@ vm_install_base() { echo '# Custom /etc/fstab for FreeBSD VM images' \ > ${DESTDIR}/etc/fstab - echo '/dev/gpt/rootfs / ufs rw 1 1' \ + echo "/dev/${ROOTLABEL}/rootfs / ufs rw 1 1" \ >> ${DESTDIR}/etc/fstab if [ -z "${NOSWAP}" ]; then echo '/dev/gpt/swapfs none swap sw 0 0' \ Modified: projects/ifnet/sbin/camcontrol/camcontrol.8 ============================================================================== --- projects/ifnet/sbin/camcontrol/camcontrol.8 Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/sbin/camcontrol/camcontrol.8 Sat Apr 25 22:05:48 2015 (r281990) @@ -575,7 +575,6 @@ Most drives support this format. Print out the list in extended physical sector format. The extended format allows for ranges of blocks to be printed. .El -.Pp .It Fl G Print out the grown defect list. This is a list of bad blocks that have Modified: projects/ifnet/sbin/growfs/Makefile ============================================================================== --- projects/ifnet/sbin/growfs/Makefile Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/sbin/growfs/Makefile Sat Apr 25 22:05:48 2015 (r281990) @@ -4,8 +4,6 @@ # $FreeBSD$ # -#GFSDBG= - .include .PATH: ${.CURDIR}/../mount @@ -16,7 +14,9 @@ MAN= growfs.8 CFLAGS+=-I${.CURDIR}/../mount .if defined(GFSDBG) -SRCS+= debug.c +SRCS+= debug.c +CFLAGS+= -DFS_DEBUG +NO_WCAST_ALIGN= yes .endif LIBADD= util Modified: projects/ifnet/sbin/growfs/growfs.c ============================================================================== --- projects/ifnet/sbin/growfs/growfs.c Sat Apr 25 21:43:29 2015 (r281989) +++ projects/ifnet/sbin/growfs/growfs.c Sat Apr 25 22:05:48 2015 (r281990) @@ -161,7 +161,7 @@ growfs(int fsi, int fso, unsigned int Nf *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***