From owner-svn-src-projects@freebsd.org  Tue Feb 28 21:18:24 2017
Return-Path: <owner-svn-src-projects@freebsd.org>
Delivered-To: svn-src-projects@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id E2517CF2399
 for <svn-src-projects@mailman.ysv.freebsd.org>;
 Tue, 28 Feb 2017 21:18:24 +0000 (UTC) (envelope-from dim@FreeBSD.org)
Received: from repo.freebsd.org (repo.freebsd.org
 [IPv6:2610:1c1:1:6068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id A47F3CEE;
 Tue, 28 Feb 2017 21:18:24 +0000 (UTC) (envelope-from dim@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1SLIN7i044249;
 Tue, 28 Feb 2017 21:18:23 GMT (envelope-from dim@FreeBSD.org)
Received: (from dim@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1SLINFd044244;
 Tue, 28 Feb 2017 21:18:23 GMT (envelope-from dim@FreeBSD.org)
Message-Id: <201702282118.v1SLINFd044244@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org
 using -f
From: Dimitry Andric <dim@FreeBSD.org>
Date: Tue, 28 Feb 2017 21:18:23 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject: svn commit: r314418 - in projects/clang400-import:
 contrib/llvm/lib/CodeGen contrib/llvm/tools/llvm-xray
 lib/clang/include/clang/Basic lib/clang/include/lld/Config
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.23
Precedence: list
List-Id: "SVN commit messages for the src &quot; projects&quot;
 tree" <svn-src-projects.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/svn-src-projects>, 
 <mailto:svn-src-projects-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/svn-src-projects/>
List-Post: <mailto:svn-src-projects@freebsd.org>
List-Help: <mailto:svn-src-projects-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/svn-src-projects>, 
 <mailto:svn-src-projects-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 28 Feb 2017 21:18:25 -0000

Author: dim
Date: Tue Feb 28 21:18:23 2017
New Revision: 314418
URL: https://svnweb.freebsd.org/changeset/base/314418

Log:
  Merge llvm, clang, compiler-rt, libc++, lld and lldb release_40 branch
  r296509, and update build glue.

Modified:
  projects/clang400-import/contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp
  projects/clang400-import/contrib/llvm/tools/llvm-xray/xray-converter.cc
  projects/clang400-import/contrib/llvm/tools/llvm-xray/xray-extract.cc
  projects/clang400-import/lib/clang/include/clang/Basic/Version.inc
  projects/clang400-import/lib/clang/include/lld/Config/Version.inc
Directory Properties:
  projects/clang400-import/contrib/compiler-rt/   (props changed)
  projects/clang400-import/contrib/libc++/   (props changed)
  projects/clang400-import/contrib/llvm/   (props changed)
  projects/clang400-import/contrib/llvm/tools/clang/   (props changed)
  projects/clang400-import/contrib/llvm/tools/lld/   (props changed)
  projects/clang400-import/contrib/llvm/tools/lldb/   (props changed)

Modified: projects/clang400-import/contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp
==============================================================================
--- projects/clang400-import/contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp	Tue Feb 28 21:07:46 2017	(r314417)
+++ projects/clang400-import/contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp	Tue Feb 28 21:18:23 2017	(r314418)
@@ -707,9 +707,8 @@ void ExeDepsFix::visitSoftInstr(MachineI
 
   // Kill off any remaining uses that don't match available, and build a list of
   // incoming DomainValues that we want to merge.
-  SmallVector<LiveReg, 4> Regs;
-  for (SmallVectorImpl<int>::iterator i=used.begin(), e=used.end(); i!=e; ++i) {
-    int rx = *i;
+  SmallVector<const LiveReg *, 4> Regs;
+  for (int rx : used) {
     assert(LiveRegs && "no space allocated for live registers");
     const LiveReg &LR = LiveRegs[rx];
     // This useless DomainValue could have been missed above.
@@ -718,16 +717,11 @@ void ExeDepsFix::visitSoftInstr(MachineI
       continue;
     }
     // Sorted insertion.
-    bool Inserted = false;
-    for (SmallVectorImpl<LiveReg>::iterator i = Regs.begin(), e = Regs.end();
-           i != e && !Inserted; ++i) {
-      if (LR.Def < i->Def) {
-        Inserted = true;
-        Regs.insert(i, LR);
-      }
-    }
-    if (!Inserted)
-      Regs.push_back(LR);
+    auto I = std::upper_bound(Regs.begin(), Regs.end(), &LR,
+                              [](const LiveReg *LHS, const LiveReg *RHS) {
+                                return LHS->Def < RHS->Def;
+                              });
+    Regs.insert(I, &LR);
   }
 
   // doms are now sorted in order of appearance. Try to merge them all, giving
@@ -735,14 +729,14 @@ void ExeDepsFix::visitSoftInstr(MachineI
   DomainValue *dv = nullptr;
   while (!Regs.empty()) {
     if (!dv) {
-      dv = Regs.pop_back_val().Value;
+      dv = Regs.pop_back_val()->Value;
       // Force the first dv to match the current instruction.
       dv->AvailableDomains = dv->getCommonDomains(available);
       assert(dv->AvailableDomains && "Domain should have been filtered");
       continue;
     }
 
-    DomainValue *Latest = Regs.pop_back_val().Value;
+    DomainValue *Latest = Regs.pop_back_val()->Value;
     // Skip already merged values.
     if (Latest == dv || Latest->Next)
       continue;

Modified: projects/clang400-import/contrib/llvm/tools/llvm-xray/xray-converter.cc
==============================================================================
--- projects/clang400-import/contrib/llvm/tools/llvm-xray/xray-converter.cc	Tue Feb 28 21:07:46 2017	(r314417)
+++ projects/clang400-import/contrib/llvm/tools/llvm-xray/xray-converter.cc	Tue Feb 28 21:18:23 2017	(r314418)
@@ -98,7 +98,7 @@ void TraceConverter::exportAsYAML(const 
                                        : std::to_string(R.FuncId),
                              R.TSC, R.TId});
   }
-  Output Out(OS);
+  Output Out(OS, nullptr, 0);
   Out << Trace;
 }
 

Modified: projects/clang400-import/contrib/llvm/tools/llvm-xray/xray-extract.cc
==============================================================================
--- projects/clang400-import/contrib/llvm/tools/llvm-xray/xray-extract.cc	Tue Feb 28 21:07:46 2017	(r314417)
+++ projects/clang400-import/contrib/llvm/tools/llvm-xray/xray-extract.cc	Tue Feb 28 21:18:23 2017	(r314418)
@@ -270,7 +270,7 @@ void InstrumentationMapExtractor::export
     YAMLSleds.push_back({FunctionIds[Sled.Function], Sled.Address,
                          Sled.Function, Sled.Kind, Sled.AlwaysInstrument});
   }
-  Output Out(OS);
+  Output Out(OS, nullptr, 0);
   Out << YAMLSleds;
 }
 

Modified: projects/clang400-import/lib/clang/include/clang/Basic/Version.inc
==============================================================================
--- projects/clang400-import/lib/clang/include/clang/Basic/Version.inc	Tue Feb 28 21:07:46 2017	(r314417)
+++ projects/clang400-import/lib/clang/include/clang/Basic/Version.inc	Tue Feb 28 21:18:23 2017	(r314418)
@@ -8,4 +8,4 @@
 
 #define	CLANG_VENDOR			"FreeBSD "
 
-#define	SVN_REVISION			"296202"
+#define	SVN_REVISION			"296509"

Modified: projects/clang400-import/lib/clang/include/lld/Config/Version.inc
==============================================================================
--- projects/clang400-import/lib/clang/include/lld/Config/Version.inc	Tue Feb 28 21:07:46 2017	(r314417)
+++ projects/clang400-import/lib/clang/include/lld/Config/Version.inc	Tue Feb 28 21:18:23 2017	(r314418)
@@ -4,5 +4,5 @@
 #define LLD_VERSION_STRING "4.0.0"
 #define LLD_VERSION_MAJOR 4
 #define LLD_VERSION_MINOR 0
-#define LLD_REVISION_STRING "296202"
+#define LLD_REVISION_STRING "296509"
 #define LLD_REPOSITORY_STRING "FreeBSD"

From owner-svn-src-projects@freebsd.org  Tue Feb 28 21:30:32 2017
Return-Path: <owner-svn-src-projects@freebsd.org>
Delivered-To: svn-src-projects@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 10267CF26B5
 for <svn-src-projects@mailman.ysv.freebsd.org>;
 Tue, 28 Feb 2017 21:30:32 +0000 (UTC) (envelope-from dim@FreeBSD.org)
Received: from repo.freebsd.org (repo.freebsd.org
 [IPv6:2610:1c1:1:6068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id A2103864;
 Tue, 28 Feb 2017 21:30:31 +0000 (UTC) (envelope-from dim@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1SLUU1k048535;
 Tue, 28 Feb 2017 21:30:30 GMT (envelope-from dim@FreeBSD.org)
Received: (from dim@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1SLUROX048499;
 Tue, 28 Feb 2017 21:30:27 GMT (envelope-from dim@FreeBSD.org)
Message-Id: <201702282130.v1SLUROX048499@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org
 using -f
From: Dimitry Andric <dim@FreeBSD.org>
Date: Tue, 28 Feb 2017 21:30:27 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject: svn commit: r314421 - in projects/clang400-import: . crypto/openssh
 etc etc/defaults etc/rc.d include/arpa lib/libc/regex lib/libc/x86/sys
 lib/libfetch lib/librss sbin/geom/class/part sbin/setkey 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.23
Precedence: list
List-Id: "SVN commit messages for the src &quot; projects&quot;
 tree" <svn-src-projects.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/svn-src-projects>, 
 <mailto:svn-src-projects-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/svn-src-projects/>
List-Post: <mailto:svn-src-projects@freebsd.org>
List-Help: <mailto:svn-src-projects-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/svn-src-projects>, 
 <mailto:svn-src-projects-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 28 Feb 2017 21:30:32 -0000

Author: dim
Date: Tue Feb 28 21:30:26 2017
New Revision: 314421
URL: https://svnweb.freebsd.org/changeset/base/314421

Log:
  Merge ^/head r314270 through r314419.

Added:
  projects/clang400-import/sys/arm/allwinner/clkng/
     - copied from r314419, head/sys/arm/allwinner/clkng/
  projects/clang400-import/sys/arm/conf/SOCDK
     - copied unchanged from r314419, head/sys/arm/conf/SOCDK
  projects/clang400-import/sys/arm/conf/SOCFPGA
     - copied unchanged from r314419, head/sys/arm/conf/SOCFPGA
  projects/clang400-import/sys/boot/fdt/dts/arm/socfpga_arria10_socdk_sdmmc.dts
     - copied unchanged from r314419, head/sys/boot/fdt/dts/arm/socfpga_arria10_socdk_sdmmc.dts
  projects/clang400-import/sys/boot/fdt/dts/arm/socfpga_cyclone5_sockit_beri_sdmmc.dts
     - copied unchanged from r314419, head/sys/boot/fdt/dts/arm/socfpga_cyclone5_sockit_beri_sdmmc.dts
  projects/clang400-import/sys/boot/fdt/dts/arm/socfpga_cyclone5_sockit_sdmmc.dts
     - copied unchanged from r314419, head/sys/boot/fdt/dts/arm/socfpga_cyclone5_sockit_sdmmc.dts
Deleted:
  projects/clang400-import/share/man/man4/man4.i386/streams.4
  projects/clang400-import/share/man/man4/man4.i386/svr4.4
  projects/clang400-import/sys/arm/conf/SOCKIT.common
  projects/clang400-import/sys/boot/fdt/dts/arm/socfpga-sockit-beri.dts
  projects/clang400-import/sys/boot/fdt/dts/arm/socfpga-sockit.dts
  projects/clang400-import/sys/boot/fdt/dts/arm/socfpga.dtsi
  projects/clang400-import/sys/compat/svr4/
  projects/clang400-import/sys/dev/streams/
  projects/clang400-import/sys/i386/svr4/
  projects/clang400-import/sys/modules/streams/
  projects/clang400-import/sys/modules/svr4/
Modified:
  projects/clang400-import/ObsoleteFiles.inc
  projects/clang400-import/crypto/openssh/freebsd-configure.sh
  projects/clang400-import/crypto/openssh/readconf.c
  projects/clang400-import/etc/defaults/rc.conf
  projects/clang400-import/etc/devd.conf
  projects/clang400-import/etc/rc.d/abi
  projects/clang400-import/include/arpa/nameser_compat.h
  projects/clang400-import/lib/libc/regex/re_format.7
  projects/clang400-import/lib/libc/x86/sys/__vdso_gettc.c
  projects/clang400-import/lib/libfetch/common.c
  projects/clang400-import/lib/librss/librss.c
  projects/clang400-import/sbin/geom/class/part/gpart.8
  projects/clang400-import/sbin/setkey/setkey.8
  projects/clang400-import/share/man/man4/man4.i386/Makefile
  projects/clang400-import/share/man/man5/rc.conf.5
  projects/clang400-import/share/man/man9/sbuf.9
  projects/clang400-import/sys/amd64/amd64/pmap.c
  projects/clang400-import/sys/amd64/conf/NOTES
  projects/clang400-import/sys/amd64/include/pmap.h
  projects/clang400-import/sys/amd64/linux/linux_dummy.c
  projects/clang400-import/sys/amd64/linux/linux_proto.h
  projects/clang400-import/sys/amd64/linux/linux_sysent.c
  projects/clang400-import/sys/amd64/linux/linux_systrace_args.c
  projects/clang400-import/sys/amd64/linux/syscalls.master
  projects/clang400-import/sys/amd64/linux32/linux.h
  projects/clang400-import/sys/amd64/linux32/linux32_dummy.c
  projects/clang400-import/sys/amd64/linux32/linux32_proto.h
  projects/clang400-import/sys/amd64/linux32/linux32_sysent.c
  projects/clang400-import/sys/amd64/linux32/linux32_systrace_args.c
  projects/clang400-import/sys/amd64/linux32/syscalls.master
  projects/clang400-import/sys/arm/allwinner/a31/files.a31
  projects/clang400-import/sys/arm/allwinner/files.allwinner
  projects/clang400-import/sys/arm/allwinner/h3/files.h3
  projects/clang400-import/sys/arm/altera/socfpga/socfpga_machdep.c
  projects/clang400-import/sys/arm/altera/socfpga/socfpga_manager.c
  projects/clang400-import/sys/arm/altera/socfpga/socfpga_mp.c
  projects/clang400-import/sys/arm/altera/socfpga/socfpga_mp.h
  projects/clang400-import/sys/arm/altera/socfpga/socfpga_rstmgr.c
  projects/clang400-import/sys/arm/altera/socfpga/socfpga_rstmgr.h
  projects/clang400-import/sys/arm/at91/uart_bus_at91usart.c
  projects/clang400-import/sys/arm/cavium/cns11xx/uart_bus_ec.c
  projects/clang400-import/sys/arm/conf/SOCKIT
  projects/clang400-import/sys/arm/conf/SOCKIT-BERI
  projects/clang400-import/sys/arm/nvidia/tegra_uart.c
  projects/clang400-import/sys/arm/xscale/i8134x/uart_bus_i81342.c
  projects/clang400-import/sys/arm/xscale/ixp425/uart_bus_ixp425.c
  projects/clang400-import/sys/arm/xscale/pxa/uart_bus_pxa.c
  projects/clang400-import/sys/boot/forth/loader.conf
  projects/clang400-import/sys/boot/i386/boot2/Makefile
  projects/clang400-import/sys/boot/i386/common/drv.c
  projects/clang400-import/sys/cam/cam_xpt.c
  projects/clang400-import/sys/cam/cam_xpt.h
  projects/clang400-import/sys/cam/ctl/ctl.c
  projects/clang400-import/sys/cam/ctl/ctl_private.h
  projects/clang400-import/sys/cam/ctl/ctl_tpc.c
  projects/clang400-import/sys/cam/ctl/scsi_ctl.c
  projects/clang400-import/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c
  projects/clang400-import/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c
  projects/clang400-import/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c
  projects/clang400-import/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa_impl.h
  projects/clang400-import/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c
  projects/clang400-import/sys/compat/linux/linux_event.c
  projects/clang400-import/sys/compat/linux/linux_event.h
  projects/clang400-import/sys/compat/linux/linux_misc.c
  projects/clang400-import/sys/compat/linux/linux_stats.c
  projects/clang400-import/sys/compat/linux/linux_time.c
  projects/clang400-import/sys/compat/linux/linux_timer.h
  projects/clang400-import/sys/compat/linuxkpi/common/include/linux/bitops.h
  projects/clang400-import/sys/compat/linuxkpi/common/include/linux/types.h
  projects/clang400-import/sys/conf/config.mk
  projects/clang400-import/sys/conf/files
  projects/clang400-import/sys/conf/files.i386
  projects/clang400-import/sys/conf/kern.post.mk
  projects/clang400-import/sys/conf/options.amd64
  projects/clang400-import/sys/conf/options.arm
  projects/clang400-import/sys/conf/options.i386
  projects/clang400-import/sys/dev/acpica/acpi_cmbat.c
  projects/clang400-import/sys/dev/aic7xxx/aic79xx.c
  projects/clang400-import/sys/dev/aic7xxx/aic7xxx.c
  projects/clang400-import/sys/dev/bnxt/bnxt.h
  projects/clang400-import/sys/dev/bnxt/bnxt_txrx.c
  projects/clang400-import/sys/dev/bwi/if_bwi.c
  projects/clang400-import/sys/dev/bwn/if_bwn.c
  projects/clang400-import/sys/dev/bxe/bxe.c
  projects/clang400-import/sys/dev/bxe/bxe.h
  projects/clang400-import/sys/dev/bxe/bxe_elink.c
  projects/clang400-import/sys/dev/bxe/bxe_stats.c
  projects/clang400-import/sys/dev/bxe/bxe_stats.h
  projects/clang400-import/sys/dev/chromebook_platform/chromebook_platform.c
  projects/clang400-import/sys/dev/cxgbe/iw_cxgbe/cm.c
  projects/clang400-import/sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
  projects/clang400-import/sys/dev/firewire/sbp.c
  projects/clang400-import/sys/dev/firewire/sbp_targ.c
  projects/clang400-import/sys/dev/hyperv/netvsc/if_hn.c
  projects/clang400-import/sys/dev/isp/isp.c
  projects/clang400-import/sys/dev/isp/isp_freebsd.c
  projects/clang400-import/sys/dev/isp/isp_freebsd.h
  projects/clang400-import/sys/dev/isp/isp_target.c
  projects/clang400-import/sys/dev/iwm/if_iwm.c
  projects/clang400-import/sys/dev/iwn/if_iwn.c
  projects/clang400-import/sys/dev/otus/if_otus.c
  projects/clang400-import/sys/dev/ral/rt2560.c
  projects/clang400-import/sys/dev/ral/rt2661.c
  projects/clang400-import/sys/dev/ral/rt2860.c
  projects/clang400-import/sys/dev/rtwn/if_rtwn_tx.c
  projects/clang400-import/sys/dev/uart/uart.h
  projects/clang400-import/sys/dev/uart/uart_bus.h
  projects/clang400-import/sys/dev/uart/uart_bus_acpi.c
  projects/clang400-import/sys/dev/uart/uart_bus_ebus.c
  projects/clang400-import/sys/dev/uart/uart_bus_fdt.c
  projects/clang400-import/sys/dev/uart/uart_bus_isa.c
  projects/clang400-import/sys/dev/uart/uart_bus_pccard.c
  projects/clang400-import/sys/dev/uart/uart_bus_pci.c
  projects/clang400-import/sys/dev/uart/uart_bus_puc.c
  projects/clang400-import/sys/dev/uart/uart_bus_scc.c
  projects/clang400-import/sys/dev/uart/uart_core.c
  projects/clang400-import/sys/dev/uart/uart_cpu.h
  projects/clang400-import/sys/dev/uart/uart_cpu_arm64.c
  projects/clang400-import/sys/dev/uart/uart_cpu_fdt.c
  projects/clang400-import/sys/dev/uart/uart_cpu_fdt.h
  projects/clang400-import/sys/dev/uart/uart_dev_pl011.c
  projects/clang400-import/sys/dev/uart/uart_dev_snps.c
  projects/clang400-import/sys/dev/usb/controller/dwc_otg_fdt.c
  projects/clang400-import/sys/dev/usb/controller/xhci_pci.c
  projects/clang400-import/sys/dev/usb/serial/u3g.c
  projects/clang400-import/sys/dev/usb/storage/cfumass.c
  projects/clang400-import/sys/dev/usb/usbdevs
  projects/clang400-import/sys/dev/usb/wlan/if_rum.c
  projects/clang400-import/sys/dev/usb/wlan/if_run.c
  projects/clang400-import/sys/dev/usb/wlan/if_ural.c
  projects/clang400-import/sys/dev/usb/wlan/if_urtw.c
  projects/clang400-import/sys/dev/usb/wlan/if_zyd.c
  projects/clang400-import/sys/dev/wpi/if_wpi.c
  projects/clang400-import/sys/dev/xen/gntdev/gntdev.c
  projects/clang400-import/sys/geom/part/g_part.c
  projects/clang400-import/sys/i386/conf/NOTES
  projects/clang400-import/sys/i386/i386/pmap.c
  projects/clang400-import/sys/i386/include/pmap.h
  projects/clang400-import/sys/i386/linux/linux.h
  projects/clang400-import/sys/i386/linux/linux_dummy.c
  projects/clang400-import/sys/i386/linux/linux_proto.h
  projects/clang400-import/sys/i386/linux/linux_sysent.c
  projects/clang400-import/sys/i386/linux/linux_systrace_args.c
  projects/clang400-import/sys/i386/linux/syscalls.master
  projects/clang400-import/sys/kern/makesyscalls.sh
  projects/clang400-import/sys/kern/subr_prf.c
  projects/clang400-import/sys/mips/adm5120/uart_bus_adm5120.c
  projects/clang400-import/sys/mips/alchemy/uart_bus_alchemy.c
  projects/clang400-import/sys/mips/atheros/ar531x/uart_bus_ar5315.c
  projects/clang400-import/sys/mips/atheros/uart_bus_ar71xx.c
  projects/clang400-import/sys/mips/atheros/uart_bus_ar933x.c
  projects/clang400-import/sys/mips/broadcom/uart_bus_chipc.c
  projects/clang400-import/sys/mips/cavium/uart_bus_octeonusart.c
  projects/clang400-import/sys/mips/idt/uart_bus_rc32434.c
  projects/clang400-import/sys/mips/ingenic/jz4780_uart.c
  projects/clang400-import/sys/mips/malta/uart_bus_maltausart.c
  projects/clang400-import/sys/mips/nlm/xlp_pci.c
  projects/clang400-import/sys/mips/rmi/uart_bus_xlr_iodi.c
  projects/clang400-import/sys/mips/rmi/xlr_pci.c
  projects/clang400-import/sys/mips/rt305x/uart_bus_rt305x.c
  projects/clang400-import/sys/modules/Makefile
  projects/clang400-import/sys/modules/cam/Makefile
  projects/clang400-import/sys/net/ieee8023ad_lacp.c
  projects/clang400-import/sys/net/if.c
  projects/clang400-import/sys/ofed/drivers/infiniband/core/cma.c
  projects/clang400-import/sys/ofed/drivers/infiniband/core/iwcm.c
  projects/clang400-import/sys/powerpc/include/trap.h
  projects/clang400-import/sys/powerpc/powermac/cpcht.c
  projects/clang400-import/sys/powerpc/powerpc/trap.c
  projects/clang400-import/sys/powerpc/psim/uart_iobus.c
  projects/clang400-import/sys/sparc64/pci/fire.c
  projects/clang400-import/sys/sparc64/pci/psycho.c
  projects/clang400-import/sys/sparc64/pci/sbbc.c
  projects/clang400-import/sys/sparc64/pci/schizo.c
  projects/clang400-import/sys/sys/file.h
  projects/clang400-import/sys/sys/sbuf.h
  projects/clang400-import/sys/vm/uma_core.c
  projects/clang400-import/sys/vm/vm_kern.c
  projects/clang400-import/sys/vm/vm_pageout.c
  projects/clang400-import/sys/vm/vm_pageout.h
  projects/clang400-import/sys/x86/include/apicreg.h
  projects/clang400-import/sys/x86/include/apicvar.h
  projects/clang400-import/sys/x86/x86/cpu_machdep.c
  projects/clang400-import/sys/x86/x86/local_apic.c
  projects/clang400-import/usr.bin/dc/bcode.c
  projects/clang400-import/usr.bin/dc/dc.1
  projects/clang400-import/usr.bin/dc/dc.c
  projects/clang400-import/usr.bin/dc/stack.c
  projects/clang400-import/usr.bin/fortune/datfiles/freebsd-tips
  projects/clang400-import/usr.sbin/bhyve/bhyve.8
  projects/clang400-import/usr.sbin/bsdconfig/startup/include/messages.subr
  projects/clang400-import/usr.sbin/bsdconfig/startup/misc
Directory Properties:
  projects/clang400-import/   (props changed)
  projects/clang400-import/crypto/openssh/   (props changed)
  projects/clang400-import/sys/cddl/contrib/opensolaris/   (props changed)

Modified: projects/clang400-import/ObsoleteFiles.inc
==============================================================================
--- projects/clang400-import/ObsoleteFiles.inc	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/ObsoleteFiles.inc	Tue Feb 28 21:30:26 2017	(r314421)
@@ -151,6 +151,11 @@ OLD_FILES+=usr/lib/clang/3.9.1/lib/freeb
 OLD_DIRS+=usr/lib/clang/3.9.1/lib/freebsd
 OLD_DIRS+=usr/lib/clang/3.9.1/lib
 OLD_DIRS+=usr/lib/clang/3.9.1
+# 20170226: SVR4 compatibility removed
+.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386"
+OLD_FILES+=usr/share/man/man4/streams.4
+OLD_FILES+=usr/share/man/man4/svr4.4
+.endif
 # 20170219: OpenPAM RADULA upgrade removed the libpam tests
 OLD_FILES+=usr/tests/lib/libpam/Kyuafile
 OLD_FILES+=usr/tests/lib/libpam/t_openpam_ctype
@@ -8454,7 +8459,7 @@ OLD_FILES+=usr/share/man/man8/boot_i386.
 .endif
 .if ${TARGET_ARCH} != "aarch64" && ${TARGET} != "arm" && \
     ${TARGET_ARCH} != "powerpc" && ${TARGET_ARCH} != "powerpc64" && \
-    ${TARGET_ARCH} != "sparc64"
+    ${TARGET_ARCH} != "sparc64" && ${TARGET} != "mips"
 OLD_FILES+=usr/share/man/man8/ofwdump.8.gz
 .endif
 OLD_FILES+=usr/share/man/man8/mount_reiserfs.8.gz

Modified: projects/clang400-import/crypto/openssh/freebsd-configure.sh
==============================================================================
--- projects/clang400-import/crypto/openssh/freebsd-configure.sh	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/crypto/openssh/freebsd-configure.sh	Tue Feb 28 21:30:26 2017	(r314421)
@@ -30,7 +30,7 @@ export PATH=/bin:/sbin:/usr/bin:/usr/sbi
 unset LD_LIBRARY_PATH
 
 # generate config.h with krb5 and stash it
-sh configure $configure_args --with-kerberos5
+sh configure $configure_args --with-kerberos5=/usr
 mv config.log config.log.orig
 mv config.h config.h.orig
 

Modified: projects/clang400-import/crypto/openssh/readconf.c
==============================================================================
--- projects/clang400-import/crypto/openssh/readconf.c	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/crypto/openssh/readconf.c	Tue Feb 28 21:30:26 2017	(r314421)
@@ -319,7 +319,6 @@ add_local_forward(Options *options, cons
 #else
 	ipport_reserved = IPPORT_RESERVED;
 #endif
-	if (newfwd->listen_port < ipport_reserved && original_real_uid != 0)
 	if (newfwd->listen_port < ipport_reserved && original_real_uid != 0 &&
 	    newfwd->listen_path == NULL)
 		fatal("Privileged ports can only be forwarded by root.");

Modified: projects/clang400-import/etc/defaults/rc.conf
==============================================================================
--- projects/clang400-import/etc/defaults/rc.conf	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/etc/defaults/rc.conf	Tue Feb 28 21:30:26 2017	(r314421)
@@ -630,7 +630,6 @@ firstboot_sentinel="/firstboot"	# Script
 # Emulation/compatibility services provided by /etc/rc.d/abi
 sysvipc_enable="NO"	# Load System V IPC primitives at startup (or NO).
 linux_enable="NO"	# Linux binary compatibility loaded at startup (or NO).
-svr4_enable="NO"	# SysVR4 emulation loaded at startup (or NO).
 clear_tmp_enable="NO"	# Clear /tmp at startup.
 clear_tmp_X="YES" 	# Clear and recreate X11-related directories in /tmp
 ldconfig_insecure="NO"	# Set to YES to disable ldconfig security checks

Modified: projects/clang400-import/etc/devd.conf
==============================================================================
--- projects/clang400-import/etc/devd.conf	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/etc/devd.conf	Tue Feb 28 21:30:26 2017	(r314421)
@@ -312,10 +312,10 @@ notify 10 {
 };
 
 # This example works around a memory leak in PostgreSQL, restarting
-# it when the "user:pgsql:swap:devctl=1G" rctl(8) rule gets triggered.
+# it when the "user:postgres:swap:devctl=1G" rctl(8) rule gets triggered.
 notify 0 {
 	match "system"		"RCTL";
-	match "rule"		"user:70:swap:.*";
+	match "rule"		"user:770:swap:.*";
 	action			"/usr/local/etc/rc.d/postgresql restart";
 };
 

Modified: projects/clang400-import/etc/rc.d/abi
==============================================================================
--- projects/clang400-import/etc/rc.d/abi	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/etc/rc.d/abi	Tue Feb 28 21:30:26 2017	(r314421)
@@ -43,25 +43,18 @@ linux_start()
 	fi
 }
 
-svr4_start()
-{
-	echo -n ' svr4'
-	load_kld -m svr4elf svr4
-}
-
 abi_start()
 {
 	local _echostop
 
 	_echostop=
-	if checkyesno sysvipc_enable || checkyesno linux_enable || checkyesno svr4_enable; then
+	if checkyesno sysvipc_enable || checkyesno linux_enable; then
 		echo -n 'Additional ABI support:'
 		_echostop=yes
 	fi
 
 	checkyesno sysvipc_enable && sysv_start
 	checkyesno linux_enable && linux_start
-	checkyesno svr4_enable && svr4_start
 
 	[ -n "${_echostop}" ] && echo '.'
 }

Modified: projects/clang400-import/include/arpa/nameser_compat.h
==============================================================================
--- projects/clang400-import/include/arpa/nameser_compat.h	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/include/arpa/nameser_compat.h	Tue Feb 28 21:30:26 2017	(r314421)
@@ -175,6 +175,7 @@ typedef struct {
 #define T_ATMA		ns_t_atma
 #define T_NAPTR		ns_t_naptr
 #define T_A6		ns_t_a6
+#define T_DNAME		ns_t_dname
 #define T_OPT		ns_t_opt
 #define	T_TSIG		ns_t_tsig
 #define	T_IXFR		ns_t_ixfr

Modified: projects/clang400-import/lib/libc/regex/re_format.7
==============================================================================
--- projects/clang400-import/lib/libc/regex/re_format.7	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/lib/libc/regex/re_format.7	Tue Feb 28 21:30:26 2017	(r314421)
@@ -319,7 +319,7 @@ The additional word delimiters
 and
 .Ql \e>
 are provided to ease compatibility with traditional
-.Xr svr4 4
+SVR4
 systems but are not portable and should be avoided.
 .Pp
 In the event that an RE could match more than one substring of a given

Modified: projects/clang400-import/lib/libc/x86/sys/__vdso_gettc.c
==============================================================================
--- projects/clang400-import/lib/libc/x86/sys/__vdso_gettc.c	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/lib/libc/x86/sys/__vdso_gettc.c	Tue Feb 28 21:30:26 2017	(r314421)
@@ -33,6 +33,7 @@ __FBSDID("$FreeBSD$");
 
 #include <sys/param.h>
 #include "namespace.h"
+#include <sys/capsicum.h>
 #include <sys/elf.h>
 #include <sys/fcntl.h>
 #include <sys/mman.h>
@@ -124,6 +125,7 @@ __vdso_init_hpet(uint32_t u)
 	static const char devprefix[] = "/dev/hpet";
 	char devname[64], *c, *c1, t;
 	volatile char *new_map, *old_map;
+	unsigned int mode;
 	uint32_t u1;
 	int fd;
 
@@ -144,18 +146,25 @@ __vdso_init_hpet(uint32_t u)
 	if (old_map != NULL)
 		return;
 
+	if (cap_getmode(&mode) == 0 && mode != 0)
+		goto fail;
+
 	fd = _open(devname, O_RDONLY);
-	if (fd == -1) {
-		atomic_cmpset_rel_ptr((volatile uintptr_t *)&hpet_dev_map[u],
-		    (uintptr_t)old_map, (uintptr_t)MAP_FAILED);
-		return;
-	}
+	if (fd == -1)
+		goto fail;
+
 	new_map = mmap(NULL, PAGE_SIZE, PROT_READ, MAP_SHARED, fd, 0);
 	_close(fd);
 	if (atomic_cmpset_rel_ptr((volatile uintptr_t *)&hpet_dev_map[u],
 	    (uintptr_t)old_map, (uintptr_t)new_map) == 0 &&
 	    new_map != MAP_FAILED)
-		munmap((void *)new_map, PAGE_SIZE);
+	munmap((void *)new_map, PAGE_SIZE);
+
+	return;
+fail:
+	/* Prevent the caller from re-entering. */
+	atomic_cmpset_rel_ptr((volatile uintptr_t *)&hpet_dev_map[u],
+	    (uintptr_t)old_map, (uintptr_t)MAP_FAILED);
 }
 
 #ifdef WANT_HYPERV
@@ -174,16 +183,22 @@ static void
 __vdso_init_hyperv_tsc(void)
 {
 	int fd;
+	unsigned int mode;
+
+	if (cap_getmode(&mode) == 0 && mode != 0)
+		goto fail;
 
 	fd = _open(HYPERV_REFTSC_DEVPATH, O_RDONLY);
-	if (fd < 0) {
-		/* Prevent the caller from re-entering. */
-		hyperv_ref_tsc = MAP_FAILED;
-		return;
-	}
+	if (fd < 0)
+		goto fail;
 	hyperv_ref_tsc = mmap(NULL, sizeof(*hyperv_ref_tsc), PROT_READ,
 	    MAP_SHARED, fd, 0);
 	_close(fd);
+
+	return;
+fail:
+	/* Prevent the caller from re-entering. */
+	hyperv_ref_tsc = MAP_FAILED;
 }
 
 static int

Modified: projects/clang400-import/lib/libfetch/common.c
==============================================================================
--- projects/clang400-import/lib/libfetch/common.c	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/lib/libfetch/common.c	Tue Feb 28 21:30:26 2017	(r314421)
@@ -153,7 +153,7 @@ fetch_syserr(void)
 	case EHOSTDOWN:
 		fetchLastErrCode = FETCH_DOWN;
 		break;
-default:
+	default:
 		fetchLastErrCode = FETCH_UNKNOWN;
 	}
 	snprintf(fetchLastErrString, MAXERRSTRING, "%s", strerror(errno));
@@ -371,7 +371,7 @@ fetch_connect(const char *host, int port
 	}
 	if (err != 0) {
 		if (verbose)
-			fetch_info("failed to connect to %s:%s", host, port);
+			fetch_info("failed to connect to %s:%d", host, port);
 		goto syserr;
 	}
 

Modified: projects/clang400-import/lib/librss/librss.c
==============================================================================
--- projects/clang400-import/lib/librss/librss.c	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/lib/librss/librss.c	Tue Feb 28 21:30:26 2017	(r314421)
@@ -244,10 +244,10 @@ rss_config_get(void)
 	return (rc);
 
 error:
-	if ((rc != NULL) && rc->rss_bucket_map)
+	if (rc != NULL) {
 		free(rc->rss_bucket_map);
-	if (rc != NULL)
 		free(rc);
+	}
 	return (NULL);
 }
 

Modified: projects/clang400-import/sbin/geom/class/part/gpart.8
==============================================================================
--- projects/clang400-import/sbin/geom/class/part/gpart.8	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/sbin/geom/class/part/gpart.8	Tue Feb 28 21:30:26 2017	(r314421)
@@ -1146,6 +1146,18 @@ variables can be used to control the beh
 GEOM class.
 The default value is shown next to each variable.
 .Bl -tag -width indent
+.It Va kern.geom.part.auto_resize: No 1
+This variable controls automatic resize behavior of
+.Nm
+GEOM class.
+When this variable is enable and new size of provider is detected, the schema
+metadata is resized but all changes are not saved to disk, until
+.Cm gpart commit
+is run to confirm changes.
+This behavior is also reported with diagnostic message:
+.Sy "GEOM_PART: (provider) was automatically resized."
+.Sy "Use `gpart commit (provider)` to save changes or `gpart undo (provider)`"
+.Sy "to revert them."
 .It Va kern.geom.part.check_integrity : No 1
 This variable controls the behaviour of metadata integrity checks.
 When integrity checks are enabled, the

Modified: projects/clang400-import/sbin/setkey/setkey.8
==============================================================================
--- projects/clang400-import/sbin/setkey/setkey.8	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/sbin/setkey/setkey.8	Tue Feb 28 21:30:26 2017	(r314421)
@@ -29,7 +29,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd February 6, 2017
+.Dd February 27, 2017
 .Dt SETKEY 8
 .Os
 .\"
@@ -593,12 +593,11 @@ keyed-md5	128		ah: 96bit ICV (no documen
 keyed-sha1	160		ah: 96bit ICV (no document)
 		160		ah-old: 128bit ICV (no document)
 null		0 to 2048	for debugging
-hmac-sha2-256	256		ah: 96bit ICV
-				(draft-ietf-ipsec-ciph-sha-256-00)
+hmac-sha2-256	256		ah: 128bit ICV (RFC4868)
 		256		ah-old: 128bit ICV (no document)
-hmac-sha2-384	384		ah: 96bit ICV (no document)
+hmac-sha2-384	384		ah: 192bit ICV (RFC4868)
 		384		ah-old: 128bit ICV (no document)
-hmac-sha2-512	512		ah: 96bit ICV (no document)
+hmac-sha2-512	512		ah: 256bit ICV (RFC4868)
 		512		ah-old: 128bit ICV (no document)
 hmac-ripemd160	160		ah: 96bit ICV (RFC2857)
 				ah-old: 128bit ICV (no document)

Modified: projects/clang400-import/share/man/man4/man4.i386/Makefile
==============================================================================
--- projects/clang400-import/share/man/man4/man4.i386/Makefile	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/share/man/man4/man4.i386/Makefile	Tue Feb 28 21:30:26 2017	(r314421)
@@ -25,8 +25,6 @@ MAN=	aic.4 \
 	pnpbios.4 \
 	sbni.4 \
 	smapi.4 \
-	streams.4 \
-	svr4.4 \
 	vpd.4 \
 	vx.4
 

Modified: projects/clang400-import/share/man/man5/rc.conf.5
==============================================================================
--- projects/clang400-import/share/man/man5/rc.conf.5	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/share/man/man5/rc.conf.5	Tue Feb 28 21:30:26 2017	(r314421)
@@ -24,7 +24,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd December 10, 2016
+.Dd February 26, 2017
 .Dt RC.CONF 5
 .Os
 .Sh NAME
@@ -3631,11 +3631,6 @@ Set to
 .Dq Li YES
 to enable Linux/ELF binary emulation at system initial
 boot time.
-.It Va svr4_enable
-.Pq Vt bool
-If set to
-.Dq Li YES ,
-enable SysVR4 emulation at boot time.
 .It Va sysvipc_enable
 .Pq Vt bool
 If set to

Modified: projects/clang400-import/share/man/man9/sbuf.9
==============================================================================
--- projects/clang400-import/share/man/man9/sbuf.9	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/share/man/man9/sbuf.9	Tue Feb 28 21:30:26 2017	(r314421)
@@ -57,7 +57,8 @@
 .Nm sbuf_delete ,
 .Nm sbuf_start_section ,
 .Nm sbuf_end_section ,
-.Nm sbuf_hexdump
+.Nm sbuf_hexdump ,
+.Nm sbuf_putbuf
 .Nd safe string composition
 .Sh SYNOPSIS
 .In sys/types.h
@@ -124,6 +125,8 @@
 .Fa "const char *hdr"
 .Fa "int flags"
 .Fc
+.Ft void
+.Fn sbuf_putbuf "struct sbuf *s"
 .In sys/sysctl.h
 .Ft struct sbuf *
 .Fn sbuf_new_for_sysctl "struct sbuf *s" "char *buf" "int length" "struct sysctl_req *req"
@@ -472,6 +475,12 @@ representation of the bytes if possible.
 See the
 .Xr hexdump 3
 man page for more details on the interface.
+.Pp
+The
+.Fn sbuf_putbuf
+function printfs the sbuf to stdout if in userland, and to the console
+and log if in the kernel.
+It does not drain the buffer or update any pointers.
 .Sh NOTES
 If an operation caused an
 .Fa sbuf

Modified: projects/clang400-import/sys/amd64/amd64/pmap.c
==============================================================================
--- projects/clang400-import/sys/amd64/amd64/pmap.c	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/sys/amd64/amd64/pmap.c	Tue Feb 28 21:30:26 2017	(r314421)
@@ -613,6 +613,8 @@ static vm_page_t pmap_enter_quick_locked
     vm_page_t m, vm_prot_t prot, vm_page_t mpte, struct rwlock **lockp);
 static void pmap_fill_ptp(pt_entry_t *firstpte, pt_entry_t newpte);
 static int pmap_insert_pt_page(pmap_t pmap, vm_page_t mpte);
+static void pmap_invalidate_pde_page(pmap_t pmap, vm_offset_t va,
+		    pd_entry_t pde);
 static void pmap_kenter_attr(vm_offset_t va, vm_paddr_t pa, int mode);
 static void pmap_pde_attr(pd_entry_t *pde, int cache_bits, int mask);
 static void pmap_promote_pde(pmap_t pmap, pd_entry_t *pde, vm_offset_t va,
@@ -1838,6 +1840,27 @@ pmap_update_pde(pmap_t pmap, vm_offset_t
 }
 #endif /* !SMP */
 
+static void
+pmap_invalidate_pde_page(pmap_t pmap, vm_offset_t va, pd_entry_t pde)
+{
+
+	/*
+	 * When the PDE has PG_PROMOTED set, the 2MB page mapping was created
+	 * by a promotion that did not invalidate the 512 4KB page mappings
+	 * that might exist in the TLB.  Consequently, at this point, the TLB
+	 * may hold both 4KB and 2MB page mappings for the address range [va,
+	 * va + NBPDR).  Therefore, the entire range must be invalidated here.
+	 * In contrast, when PG_PROMOTED is clear, the TLB will not hold any
+	 * 4KB page mappings for the address range [va, va + NBPDR), and so a
+	 * single INVLPG suffices to invalidate the 2MB page mapping from the
+	 * TLB.
+	 */
+	if ((pde & PG_PROMOTED) != 0)
+		pmap_invalidate_range(pmap, va, va + NBPDR - 1);
+	else
+		pmap_invalidate_page(pmap, va);
+}
+
 #define PMAP_CLFLUSH_THRESHOLD   (2 * 1024 * 1024)
 
 void
@@ -3472,7 +3495,8 @@ pmap_demote_pde_locked(pmap_t pmap, pd_e
 			SLIST_INIT(&free);
 			sva = trunc_2mpage(va);
 			pmap_remove_pde(pmap, pde, sva, &free, lockp);
-			pmap_invalidate_range(pmap, sva, sva + NBPDR - 1);
+			if ((oldpde & PG_G) == 0)
+				pmap_invalidate_pde_page(pmap, sva, oldpde);
 			pmap_free_zero_pages(&free);
 			CTR2(KTR_PMAP, "pmap_demote_pde: failure for va %#lx"
 			    " in pmap %p", va, pmap);
@@ -3612,25 +3636,8 @@ pmap_remove_pde(pmap_t pmap, pd_entry_t 
 	oldpde = pte_load_clear(pdq);
 	if (oldpde & PG_W)
 		pmap->pm_stats.wired_count -= NBPDR / PAGE_SIZE;
-
-	/*
-	 * When workaround_erratum383 is false, a promotion to a 2M
-	 * page mapping does not invalidate the 512 4K page mappings
-	 * from the TLB.  Consequently, at this point, the TLB may
-	 * hold both 4K and 2M page mappings.  Therefore, the entire
-	 * range of addresses must be invalidated here.  In contrast,
-	 * when workaround_erratum383 is true, a promotion does
-	 * invalidate the 512 4K page mappings, and so a single INVLPG
-	 * suffices to invalidate the 2M page mapping.
-	 */
-	if ((oldpde & PG_G) != 0) {
-		if (workaround_erratum383)
-			pmap_invalidate_page(kernel_pmap, sva);
-		else
-			pmap_invalidate_range(kernel_pmap, sva,
-			    sva + NBPDR - 1);
-	}
-
+	if ((oldpde & PG_G) != 0)
+		pmap_invalidate_pde_page(kernel_pmap, sva, oldpde);
 	pmap_resident_count_dec(pmap, NBPDR / PAGE_SIZE);
 	if (oldpde & PG_MANAGED) {
 		CHANGE_PV_LIST_LOCK_TO_PHYS(lockp, oldpde & PG_PS_FRAME);
@@ -4010,16 +4017,16 @@ retry:
 	if ((prot & VM_PROT_EXECUTE) == 0)
 		newpde |= pg_nx;
 	if (newpde != oldpde) {
-		if (!atomic_cmpset_long(pde, oldpde, newpde))
+		/*
+		 * As an optimization to future operations on this PDE, clear
+		 * PG_PROMOTED.  The impending invalidation will remove any
+		 * lingering 4KB page mappings from the TLB.
+		 */
+		if (!atomic_cmpset_long(pde, oldpde, newpde & ~PG_PROMOTED))
 			goto retry;
-		if (oldpde & PG_G) {
-			/* See pmap_remove_pde() for explanation. */
-			if (workaround_erratum383)
-				pmap_invalidate_page(kernel_pmap, sva);
-			else
-				pmap_invalidate_range(kernel_pmap, sva,
-				    sva + NBPDR - 1);
-		} else
+		if ((oldpde & PG_G) != 0)
+			pmap_invalidate_pde_page(kernel_pmap, sva, oldpde);
+		else
 			anychanged = TRUE;
 	}
 	return (anychanged);
@@ -4272,7 +4279,7 @@ setpte:
 	if (workaround_erratum383)
 		pmap_update_pde(pmap, va, pde, PG_PS | newpde);
 	else
-		pde_store(pde, PG_PS | newpde);
+		pde_store(pde, PG_PROMOTED | PG_PS | newpde);
 
 	atomic_add_long(&pmap_pde_promotions, 1);
 	CTR2(KTR_PMAP, "pmap_promote_pde: success for va %#lx"
@@ -4585,7 +4592,8 @@ pmap_enter_pde(pmap_t pmap, vm_offset_t 
 	pmap_resident_count_inc(pmap, NBPDR / PAGE_SIZE);
 
 	/*
-	 * Map the superpage.
+	 * Map the superpage.  (This is not a promoted mapping; there will not
+	 * be any lingering 4KB page mappings in the TLB.)
 	 */
 	pde_store(pde, newpde);
 

Modified: projects/clang400-import/sys/amd64/conf/NOTES
==============================================================================
--- projects/clang400-import/sys/amd64/conf/NOTES	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/sys/amd64/conf/NOTES	Tue Feb 28 21:30:26 2017	(r314421)
@@ -633,27 +633,6 @@ options 	LINPROCFS
 # and PSEUDOFS)
 options 	LINSYSFS
 
-#
-# SysVR4 ABI emulation
-#
-# The svr4 ABI emulator can be statically compiled into the kernel or loaded as
-# a KLD module.
-# The STREAMS network emulation code can also be compiled statically or as a
-# module.  If loaded as a module, it must be loaded before the svr4 module
-# (the /usr/sbin/svr4 script does this for you).  If compiling statically,
-# the `streams' device must be configured into any kernel which also
-# specifies COMPAT_SVR4.  It is possible to have a statically-configured
-# STREAMS device and a dynamically loadable svr4 emulator;  the /usr/sbin/svr4
-# script understands that it doesn't need to load the `streams' module under
-# those circumstances.
-# Caveat:  At this time, `options KTRACE' is required for the svr4 emulator
-# (whether static or dynamic).
-#
-#XXX#options 	COMPAT_SVR4	# build emulator statically
-#XXX#options 	DEBUG_SVR4	# enable verbose debugging
-#XXX#device	streams		# STREAMS network driver (required for svr4).
-
-
 #####################################################################
 # VM OPTIONS
 

Modified: projects/clang400-import/sys/amd64/include/pmap.h
==============================================================================
--- projects/clang400-import/sys/amd64/include/pmap.h	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/sys/amd64/include/pmap.h	Tue Feb 28 21:30:26 2017	(r314421)
@@ -109,6 +109,7 @@
 #define	PG_MANAGED	X86_PG_AVAIL2
 #define	EPT_PG_EMUL_V	X86_PG_AVAIL(52)
 #define	EPT_PG_EMUL_RW	X86_PG_AVAIL(53)
+#define	PG_PROMOTED	X86_PG_AVAIL(54)	/* PDE only */
 #define	PG_FRAME	(0x000ffffffffff000ul)
 #define	PG_PS_FRAME	(0x000fffffffe00000ul)
 

Modified: projects/clang400-import/sys/amd64/linux/linux_dummy.c
==============================================================================
--- projects/clang400-import/sys/amd64/linux/linux_dummy.c	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/sys/amd64/linux/linux_dummy.c	Tue Feb 28 21:30:26 2017	(r314421)
@@ -103,10 +103,6 @@ DUMMY(vmsplice);
 DUMMY(move_pages);
 /* linux 2.6.22: */
 DUMMY(signalfd);
-DUMMY(timerfd_create);
-/* linux 2.6.25: */
-DUMMY(timerfd_settime);
-DUMMY(timerfd_gettime);
 /* linux 2.6.27: */
 DUMMY(signalfd4);
 DUMMY(inotify_init1);

Modified: projects/clang400-import/sys/amd64/linux/linux_proto.h
==============================================================================
--- projects/clang400-import/sys/amd64/linux/linux_proto.h	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/sys/amd64/linux/linux_proto.h	Tue Feb 28 21:30:26 2017	(r314421)
@@ -995,12 +995,14 @@ struct linux_epoll_pwait_args {
 	char maxevents_l_[PADL_(l_int)]; l_int maxevents; char maxevents_r_[PADR_(l_int)];
 	char timeout_l_[PADL_(l_int)]; l_int timeout; char timeout_r_[PADR_(l_int)];
 	char mask_l_[PADL_(l_sigset_t *)]; l_sigset_t * mask; char mask_r_[PADR_(l_sigset_t *)];
+	char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)];
 };
 struct linux_signalfd_args {
 	register_t dummy;
 };
 struct linux_timerfd_create_args {
-	register_t dummy;
+	char clockid_l_[PADL_(l_int)]; l_int clockid; char clockid_r_[PADR_(l_int)];
+	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
 };
 struct linux_eventfd_args {
 	char initval_l_[PADL_(l_uint)]; l_uint initval; char initval_r_[PADR_(l_uint)];
@@ -1012,10 +1014,14 @@ struct linux_fallocate_args {
 	char len_l_[PADL_(l_loff_t)]; l_loff_t len; char len_r_[PADR_(l_loff_t)];
 };
 struct linux_timerfd_settime_args {
-	register_t dummy;
+	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
+	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
+	char new_value_l_[PADL_(const struct l_itimerspec *)]; const struct l_itimerspec * new_value; char new_value_r_[PADR_(const struct l_itimerspec *)];
+	char old_value_l_[PADL_(struct l_itimerspec *)]; struct l_itimerspec * old_value; char old_value_r_[PADR_(struct l_itimerspec *)];
 };
 struct linux_timerfd_gettime_args {
-	register_t dummy;
+	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
+	char old_value_l_[PADL_(struct l_itimerspec *)]; struct l_itimerspec * old_value; char old_value_r_[PADR_(struct l_itimerspec *)];
 };
 struct linux_accept4_args {
 	char s_l_[PADL_(l_int)]; l_int s; char s_r_[PADR_(l_int)];

Modified: projects/clang400-import/sys/amd64/linux/linux_sysent.c
==============================================================================
--- projects/clang400-import/sys/amd64/linux/linux_sysent.c	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/sys/amd64/linux/linux_sysent.c	Tue Feb 28 21:30:26 2017	(r314421)
@@ -300,11 +300,11 @@ struct sysent linux_sysent[] = {
 	{ AS(linux_utimensat_args), (sy_call_t *)linux_utimensat, AUE_FUTIMESAT, NULL, 0, 0, 0, SY_THR_STATIC },	/* 280 = linux_utimensat */
 	{ AS(linux_epoll_pwait_args), (sy_call_t *)linux_epoll_pwait, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 281 = linux_epoll_pwait */
 	{ 0, (sy_call_t *)linux_signalfd, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 282 = linux_signalfd */
-	{ 0, (sy_call_t *)linux_timerfd_create, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 283 = linux_timerfd_create */
+	{ AS(linux_timerfd_create_args), (sy_call_t *)linux_timerfd_create, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 283 = linux_timerfd_create */
 	{ AS(linux_eventfd_args), (sy_call_t *)linux_eventfd, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 284 = linux_eventfd */
 	{ AS(linux_fallocate_args), (sy_call_t *)linux_fallocate, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 285 = linux_fallocate */
-	{ 0, (sy_call_t *)linux_timerfd_settime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 286 = linux_timerfd_settime */
-	{ 0, (sy_call_t *)linux_timerfd_gettime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 287 = linux_timerfd_gettime */
+	{ AS(linux_timerfd_settime_args), (sy_call_t *)linux_timerfd_settime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 286 = linux_timerfd_settime */
+	{ AS(linux_timerfd_gettime_args), (sy_call_t *)linux_timerfd_gettime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 287 = linux_timerfd_gettime */
 	{ AS(linux_accept4_args), (sy_call_t *)linux_accept4, AUE_ACCEPT, NULL, 0, 0, 0, SY_THR_STATIC },	/* 288 = linux_accept4 */
 	{ 0, (sy_call_t *)linux_signalfd4, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 289 = linux_signalfd4 */
 	{ AS(linux_eventfd2_args), (sy_call_t *)linux_eventfd2, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 290 = linux_eventfd2 */

Modified: projects/clang400-import/sys/amd64/linux/linux_systrace_args.c
==============================================================================
--- projects/clang400-import/sys/amd64/linux/linux_systrace_args.c	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/sys/amd64/linux/linux_systrace_args.c	Tue Feb 28 21:30:26 2017	(r314421)
@@ -2068,7 +2068,8 @@ systrace_args(int sysnum, void *params, 
 		iarg[2] = p->maxevents; /* l_int */
 		iarg[3] = p->timeout; /* l_int */
 		uarg[4] = (intptr_t) p->mask; /* l_sigset_t * */
-		*n_args = 5;
+		iarg[5] = p->sigsetsize; /* l_size_t */
+		*n_args = 6;
 		break;
 	}
 	/* linux_signalfd */
@@ -2078,7 +2079,10 @@ systrace_args(int sysnum, void *params, 
 	}
 	/* linux_timerfd_create */
 	case 283: {
-		*n_args = 0;
+		struct linux_timerfd_create_args *p = params;
+		iarg[0] = p->clockid; /* l_int */
+		iarg[1] = p->flags; /* l_int */
+		*n_args = 2;
 		break;
 	}
 	/* linux_eventfd */
@@ -2100,12 +2104,20 @@ systrace_args(int sysnum, void *params, 
 	}
 	/* linux_timerfd_settime */
 	case 286: {
-		*n_args = 0;
+		struct linux_timerfd_settime_args *p = params;
+		iarg[0] = p->fd; /* l_int */
+		iarg[1] = p->flags; /* l_int */
+		uarg[2] = (intptr_t) p->new_value; /* const struct l_itimerspec * */
+		uarg[3] = (intptr_t) p->old_value; /* struct l_itimerspec * */
+		*n_args = 4;
 		break;
 	}
 	/* linux_timerfd_gettime */
 	case 287: {
-		*n_args = 0;
+		struct linux_timerfd_gettime_args *p = params;
+		iarg[0] = p->fd; /* l_int */
+		uarg[1] = (intptr_t) p->old_value; /* struct l_itimerspec * */
+		*n_args = 2;
 		break;
 	}
 	/* linux_accept4 */
@@ -5635,6 +5647,9 @@ systrace_entry_setargdesc(int sysnum, in
 		case 4:
 			p = "userland l_sigset_t *";
 			break;
+		case 5:
+			p = "l_size_t";
+			break;
 		default:
 			break;
 		};
@@ -5644,6 +5659,16 @@ systrace_entry_setargdesc(int sysnum, in
 		break;
 	/* linux_timerfd_create */
 	case 283:
+		switch(ndx) {
+		case 0:
+			p = "l_int";
+			break;
+		case 1:
+			p = "l_int";
+			break;
+		default:
+			break;
+		};
 		break;
 	/* linux_eventfd */
 	case 284:
@@ -5676,9 +5701,35 @@ systrace_entry_setargdesc(int sysnum, in
 		break;
 	/* linux_timerfd_settime */
 	case 286:
+		switch(ndx) {
+		case 0:
+			p = "l_int";
+			break;
+		case 1:
+			p = "l_int";
+			break;
+		case 2:
+			p = "userland const struct l_itimerspec *";
+			break;
+		case 3:
+			p = "userland struct l_itimerspec *";
+			break;
+		default:
+			break;
+		};
 		break;
 	/* linux_timerfd_gettime */
 	case 287:
+		switch(ndx) {
+		case 0:
+			p = "l_int";
+			break;
+		case 1:
+			p = "userland struct l_itimerspec *";
+			break;
+		default:
+			break;
+		};
 		break;
 	/* linux_accept4 */
 	case 288:
@@ -7494,6 +7545,9 @@ systrace_return_setargdesc(int sysnum, i
 	case 282:
 	/* linux_timerfd_create */
 	case 283:
+		if (ndx == 0 || ndx == 1)
+			p = "int";
+		break;
 	/* linux_eventfd */
 	case 284:
 		if (ndx == 0 || ndx == 1)
@@ -7506,8 +7560,14 @@ systrace_return_setargdesc(int sysnum, i
 		break;
 	/* linux_timerfd_settime */
 	case 286:
+		if (ndx == 0 || ndx == 1)
+			p = "int";
+		break;
 	/* linux_timerfd_gettime */
 	case 287:
+		if (ndx == 0 || ndx == 1)
+			p = "int";
+		break;
 	/* linux_accept4 */
 	case 288:
 		if (ndx == 0 || ndx == 1)

Modified: projects/clang400-import/sys/amd64/linux/syscalls.master
==============================================================================
--- projects/clang400-import/sys/amd64/linux/syscalls.master	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/sys/amd64/linux/syscalls.master	Tue Feb 28 21:30:26 2017	(r314421)
@@ -473,14 +473,18 @@
 280	AUE_FUTIMESAT	STD	{ int linux_utimensat(l_int dfd, const char *pathname, \
 					const struct l_timespec *times, l_int flags); }
 281     AUE_NULL        STD     { int linux_epoll_pwait(l_int epfd, struct epoll_event *events, \
-                                        l_int maxevents, l_int timeout, l_sigset_t *mask); }
+                                        l_int maxevents, l_int timeout, l_sigset_t *mask, \
+                                        l_size_t sigsetsize); }
 282	AUE_NULL	STD	{ int linux_signalfd(void); }
-283	AUE_NULL	STD	{ int linux_timerfd_create(void); }
+283	AUE_NULL	STD	{ int linux_timerfd_create(l_int clockid, l_int flags); }
 284	AUE_NULL	STD	{ int linux_eventfd(l_uint initval); }
 285	AUE_NULL	STD	{ int linux_fallocate(l_int fd, l_int mode, \
 				    l_loff_t offset, l_loff_t len); }
-286	AUE_NULL	STD	{ int linux_timerfd_settime(void); }
-287	AUE_NULL	STD	{ int linux_timerfd_gettime(void); }
+286	AUE_NULL	STD	{ int linux_timerfd_settime(l_int fd, l_int flags,	\
+				    const struct l_itimerspec *new_value,		\
+				    struct l_itimerspec *old_value); }
+287	AUE_NULL	STD	{ int linux_timerfd_gettime(l_int fd,	\
+				    struct l_itimerspec *old_value); }
 288	AUE_ACCEPT	STD	{ int linux_accept4(l_int s, l_uintptr_t addr, \
 				    l_uintptr_t namelen, int flags); }
 ; linux 2.6.27:

Modified: projects/clang400-import/sys/amd64/linux32/linux.h
==============================================================================
--- projects/clang400-import/sys/amd64/linux32/linux.h	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/sys/amd64/linux32/linux.h	Tue Feb 28 21:30:26 2017	(r314421)
@@ -250,7 +250,9 @@ struct l_statfs64 { 
         uint64_t        f_ffree; 
         l_fsid_t        f_fsid;
         l_int           f_namelen;
-        l_int           f_spare[6];
+        l_int           f_frsize;
+        l_int           f_flags;
+        l_int           f_spare[4];
 } __packed;
 
 /* sigaction flags */

Modified: projects/clang400-import/sys/amd64/linux32/linux32_dummy.c
==============================================================================
--- projects/clang400-import/sys/amd64/linux32/linux32_dummy.c	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/sys/amd64/linux32/linux32_dummy.c	Tue Feb 28 21:30:26 2017	(r314421)
@@ -103,10 +103,6 @@ DUMMY(move_pages);
 DUMMY(getcpu);
 /* linux 2.6.22: */
 DUMMY(signalfd);
-DUMMY(timerfd_create);
-/* linux 2.6.25: */
-DUMMY(timerfd_settime);
-DUMMY(timerfd_gettime);
 /* linux 2.6.27: */
 DUMMY(signalfd4);
 DUMMY(inotify_init1);

Modified: projects/clang400-import/sys/amd64/linux32/linux32_proto.h
==============================================================================
--- projects/clang400-import/sys/amd64/linux32/linux32_proto.h	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/sys/amd64/linux32/linux32_proto.h	Tue Feb 28 21:30:26 2017	(r314421)
@@ -1051,6 +1051,7 @@ struct linux_epoll_pwait_args {
 	char maxevents_l_[PADL_(l_int)]; l_int maxevents; char maxevents_r_[PADR_(l_int)];
 	char timeout_l_[PADL_(l_int)]; l_int timeout; char timeout_r_[PADR_(l_int)];
 	char mask_l_[PADL_(l_sigset_t *)]; l_sigset_t * mask; char mask_r_[PADR_(l_sigset_t *)];
+	char sigsetsize_l_[PADL_(l_size_t)]; l_size_t sigsetsize; char sigsetsize_r_[PADR_(l_size_t)];
 };
 struct linux_utimensat_args {
 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
@@ -1062,7 +1063,8 @@ struct linux_signalfd_args {
 	register_t dummy;
 };
 struct linux_timerfd_create_args {
-	register_t dummy;
+	char clockid_l_[PADL_(l_int)]; l_int clockid; char clockid_r_[PADR_(l_int)];
+	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
 };
 struct linux_eventfd_args {
 	char initval_l_[PADL_(l_uint)]; l_uint initval; char initval_r_[PADR_(l_uint)];
@@ -1074,10 +1076,14 @@ struct linux_fallocate_args {
 	char len_l_[PADL_(l_loff_t)]; l_loff_t len; char len_r_[PADR_(l_loff_t)];
 };
 struct linux_timerfd_settime_args {
-	register_t dummy;
+	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
+	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
+	char new_value_l_[PADL_(const struct l_itimerspec *)]; const struct l_itimerspec * new_value; char new_value_r_[PADR_(const struct l_itimerspec *)];
+	char old_value_l_[PADL_(struct l_itimerspec *)]; struct l_itimerspec * old_value; char old_value_r_[PADR_(struct l_itimerspec *)];
 };
 struct linux_timerfd_gettime_args {
-	register_t dummy;
+	char fd_l_[PADL_(l_int)]; l_int fd; char fd_r_[PADR_(l_int)];
+	char old_value_l_[PADL_(struct l_itimerspec *)]; struct l_itimerspec * old_value; char old_value_r_[PADR_(struct l_itimerspec *)];
 };
 struct linux_signalfd4_args {
 	register_t dummy;

Modified: projects/clang400-import/sys/amd64/linux32/linux32_sysent.c
==============================================================================
--- projects/clang400-import/sys/amd64/linux32/linux32_sysent.c	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/sys/amd64/linux32/linux32_sysent.c	Tue Feb 28 21:30:26 2017	(r314421)
@@ -340,11 +340,11 @@ struct sysent linux32_sysent[] = {
 	{ AS(linux_epoll_pwait_args), (sy_call_t *)linux_epoll_pwait, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 319 = linux_epoll_pwait */
 	{ AS(linux_utimensat_args), (sy_call_t *)linux_utimensat, AUE_FUTIMESAT, NULL, 0, 0, 0, SY_THR_STATIC },	/* 320 = linux_utimensat */
 	{ 0, (sy_call_t *)linux_signalfd, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 321 = linux_signalfd */
-	{ 0, (sy_call_t *)linux_timerfd_create, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 322 = linux_timerfd_create */
+	{ AS(linux_timerfd_create_args), (sy_call_t *)linux_timerfd_create, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 322 = linux_timerfd_create */
 	{ AS(linux_eventfd_args), (sy_call_t *)linux_eventfd, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 323 = linux_eventfd */
 	{ AS(linux_fallocate_args), (sy_call_t *)linux_fallocate, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 324 = linux_fallocate */
-	{ 0, (sy_call_t *)linux_timerfd_settime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 325 = linux_timerfd_settime */
-	{ 0, (sy_call_t *)linux_timerfd_gettime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 326 = linux_timerfd_gettime */
+	{ AS(linux_timerfd_settime_args), (sy_call_t *)linux_timerfd_settime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 325 = linux_timerfd_settime */
+	{ AS(linux_timerfd_gettime_args), (sy_call_t *)linux_timerfd_gettime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 326 = linux_timerfd_gettime */
 	{ 0, (sy_call_t *)linux_signalfd4, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 327 = linux_signalfd4 */
 	{ AS(linux_eventfd2_args), (sy_call_t *)linux_eventfd2, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 328 = linux_eventfd2 */
 	{ AS(linux_epoll_create1_args), (sy_call_t *)linux_epoll_create1, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 329 = linux_epoll_create1 */

Modified: projects/clang400-import/sys/amd64/linux32/linux32_systrace_args.c
==============================================================================
--- projects/clang400-import/sys/amd64/linux32/linux32_systrace_args.c	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/sys/amd64/linux32/linux32_systrace_args.c	Tue Feb 28 21:30:26 2017	(r314421)
@@ -2169,7 +2169,8 @@ systrace_args(int sysnum, void *params, 
 		iarg[2] = p->maxevents; /* l_int */
 		iarg[3] = p->timeout; /* l_int */
 		uarg[4] = (intptr_t) p->mask; /* l_sigset_t * */
-		*n_args = 5;
+		iarg[5] = p->sigsetsize; /* l_size_t */
+		*n_args = 6;
 		break;
 	}
 	/* linux_utimensat */
@@ -2189,7 +2190,10 @@ systrace_args(int sysnum, void *params, 
 	}
 	/* linux_timerfd_create */
 	case 322: {
-		*n_args = 0;
+		struct linux_timerfd_create_args *p = params;
+		iarg[0] = p->clockid; /* l_int */
+		iarg[1] = p->flags; /* l_int */
+		*n_args = 2;
 		break;
 	}
 	/* linux_eventfd */
@@ -2211,12 +2215,20 @@ systrace_args(int sysnum, void *params, 
 	}
 	/* linux_timerfd_settime */
 	case 325: {
-		*n_args = 0;
+		struct linux_timerfd_settime_args *p = params;
+		iarg[0] = p->fd; /* l_int */
+		iarg[1] = p->flags; /* l_int */
+		uarg[2] = (intptr_t) p->new_value; /* const struct l_itimerspec * */
+		uarg[3] = (intptr_t) p->old_value; /* struct l_itimerspec * */
+		*n_args = 4;
 		break;
 	}
 	/* linux_timerfd_gettime */
 	case 326: {
-		*n_args = 0;
+		struct linux_timerfd_gettime_args *p = params;
+		iarg[0] = p->fd; /* l_int */
+		uarg[1] = (intptr_t) p->old_value; /* struct l_itimerspec * */
+		*n_args = 2;
 		break;
 	}
 	/* linux_signalfd4 */
@@ -5970,6 +5982,9 @@ systrace_entry_setargdesc(int sysnum, in
 		case 4:
 			p = "userland l_sigset_t *";
 			break;
+		case 5:
+			p = "l_size_t";
+			break;
 		default:
 			break;
 		};
@@ -5998,6 +6013,16 @@ systrace_entry_setargdesc(int sysnum, in
 		break;
 	/* linux_timerfd_create */
 	case 322:
+		switch(ndx) {
+		case 0:
+			p = "l_int";
+			break;
+		case 1:
+			p = "l_int";
+			break;
+		default:
+			break;
+		};
 		break;
 	/* linux_eventfd */
 	case 323:
@@ -6030,9 +6055,35 @@ systrace_entry_setargdesc(int sysnum, in
 		break;
 	/* linux_timerfd_settime */
 	case 325:
+		switch(ndx) {
+		case 0:
+			p = "l_int";
+			break;
+		case 1:
+			p = "l_int";
+			break;
+		case 2:
+			p = "userland const struct l_itimerspec *";
+			break;
+		case 3:
+			p = "userland struct l_itimerspec *";
+			break;
+		default:
+			break;
+		};
 		break;
 	/* linux_timerfd_gettime */
 	case 326:
+		switch(ndx) {
+		case 0:
+			p = "l_int";
+			break;
+		case 1:
+			p = "userland struct l_itimerspec *";
+			break;
+		default:
+			break;
+		};
 		break;
 	/* linux_signalfd4 */
 	case 327:
@@ -8128,6 +8179,9 @@ systrace_return_setargdesc(int sysnum, i
 	case 321:
 	/* linux_timerfd_create */
 	case 322:
+		if (ndx == 0 || ndx == 1)
+			p = "int";
+		break;
 	/* linux_eventfd */
 	case 323:
 		if (ndx == 0 || ndx == 1)
@@ -8140,8 +8194,14 @@ systrace_return_setargdesc(int sysnum, i
 		break;
 	/* linux_timerfd_settime */
 	case 325:
+		if (ndx == 0 || ndx == 1)
+			p = "int";
+		break;
 	/* linux_timerfd_gettime */
 	case 326:
+		if (ndx == 0 || ndx == 1)
+			p = "int";
+		break;
 	/* linux_signalfd4 */
 	case 327:
 	/* linux_eventfd2 */

Modified: projects/clang400-import/sys/amd64/linux32/syscalls.master
==============================================================================
--- projects/clang400-import/sys/amd64/linux32/syscalls.master	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/sys/amd64/linux32/syscalls.master	Tue Feb 28 21:30:26 2017	(r314421)
@@ -533,19 +533,23 @@
 ; linux 2.6.19:
 318	AUE_NULL	STD	{ int linux_getcpu(void); }
 319     AUE_NULL        STD     { int linux_epoll_pwait(l_int epfd, struct epoll_event *events, \
-                                        l_int maxevents, l_int timeout, l_sigset_t *mask); }
+                                        l_int maxevents, l_int timeout, l_sigset_t *mask, \
+                                        l_size_t sigsetsize); }
 ; linux 2.6.22:
 320	AUE_FUTIMESAT	STD	{ int linux_utimensat(l_int dfd, const char *pathname, \
 					const struct l_timespec *times, l_int flags); }
 321	AUE_NULL	STD	{ int linux_signalfd(void); }
-322	AUE_NULL	STD	{ int linux_timerfd_create(void); }
+322	AUE_NULL	STD	{ int linux_timerfd_create(l_int clockid, l_int flags); }
 323	AUE_NULL	STD	{ int linux_eventfd(l_uint initval); }
 ; linux 2.6.23:
 324	AUE_NULL	STD	{ int linux_fallocate(l_int fd, l_int mode, \
 				    l_loff_t offset, l_loff_t len); }
 ; linux 2.6.25:
-325	AUE_NULL	STD	{ int linux_timerfd_settime(void); }
-326	AUE_NULL	STD	{ int linux_timerfd_gettime(void); }
+325	AUE_NULL	STD	{ int linux_timerfd_settime(l_int fd, l_int flags,	\
+				    const struct l_itimerspec *new_value,		\
+				    struct l_itimerspec *old_value); }
+326	AUE_NULL	STD	{ int linux_timerfd_gettime(l_int fd,	\
+				    struct l_itimerspec *old_value); }
 ; linux 2.6.27:
 327	AUE_NULL	STD	{ int linux_signalfd4(void); }
 328	AUE_NULL	STD	{ int linux_eventfd2(l_uint initval, l_int flags); }

Modified: projects/clang400-import/sys/arm/allwinner/a31/files.a31
==============================================================================
--- projects/clang400-import/sys/arm/allwinner/a31/files.a31	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/sys/arm/allwinner/a31/files.a31	Tue Feb 28 21:30:26 2017	(r314421)
@@ -1,5 +1,6 @@
 # $FreeBSD$
 
+arm/allwinner/clkng/ccu_a31.c		standard
 arm/allwinner/a31/a31_padconf.c		standard
 arm/allwinner/a31/a31_r_padconf.c	standard
 arm/allwinner/a31/a31s_padconf.c	standard

Modified: projects/clang400-import/sys/arm/allwinner/files.allwinner
==============================================================================
--- projects/clang400-import/sys/arm/allwinner/files.allwinner	Tue Feb 28 21:27:51 2017	(r314420)
+++ projects/clang400-import/sys/arm/allwinner/files.allwinner	Tue Feb 28 21:30:26 2017	(r314421)
@@ -56,3 +56,8 @@ arm/allwinner/clk/aw_oscclk.c		standard
 arm/allwinner/clk/aw_pll.c		standard
 arm/allwinner/clk/aw_thsclk.c		standard
 arm/allwinner/clk/aw_usbclk.c		standard
+
+arm/allwinner/clkng/aw_ccung.c		standard
+arm/allwinner/clkng/aw_clk_nkmp.c	standard
+arm/allwinner/clkng/aw_clk_nm.c		standard
+arm/allwinner/clkng/aw_clk_prediv_mux.c	standard

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***

From owner-svn-src-projects@freebsd.org  Wed Mar  1 08:23:04 2017
Return-Path: <owner-svn-src-projects@freebsd.org>
Delivered-To: svn-src-projects@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0EABACF2E9E
 for <svn-src-projects@mailman.ysv.freebsd.org>;
 Wed,  1 Mar 2017 08:23:04 +0000 (UTC) (envelope-from dim@FreeBSD.org)
Received: from repo.freebsd.org (repo.freebsd.org
 [IPv6:2610:1c1:1:6068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 4C14737F;
 Wed,  1 Mar 2017 08:23:03 +0000 (UTC) (envelope-from dim@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v218N2rh012509;
 Wed, 1 Mar 2017 08:23:02 GMT (envelope-from dim@FreeBSD.org)
Received: (from dim@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id v218MrD7012418;
 Wed, 1 Mar 2017 08:22:53 GMT (envelope-from dim@FreeBSD.org)
Message-Id: <201703010822.v218MrD7012418@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org
 using -f
From: Dimitry Andric <dim@FreeBSD.org>
Date: Wed, 1 Mar 2017 08:22:53 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject: svn commit: r314482 - in projects/clang400-import: . bin/cat
 bin/chflags bin/chmod bin/cp bin/date bin/dd bin/df bin/domainname bin/echo
 bin/ed bin/hostname bin/kill bin/ln bin/ls bin/mkdir bin/mv ...
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.23
Precedence: list
List-Id: "SVN commit messages for the src &quot; projects&quot;
 tree" <svn-src-projects.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/svn-src-projects>, 
 <mailto:svn-src-projects-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/svn-src-projects/>
List-Post: <mailto:svn-src-projects@freebsd.org>
List-Help: <mailto:svn-src-projects-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/svn-src-projects>, 
 <mailto:svn-src-projects-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 01 Mar 2017 08:23:04 -0000

Author: dim
Date: Wed Mar  1 08:22:51 2017
New Revision: 314482
URL: https://svnweb.freebsd.org/changeset/base/314482

Log:
  Merge ^/head r314420 through r314481.

Added:
  projects/clang400-import/README.md
     - copied unchanged from r314481, head/README.md
  projects/clang400-import/sys/mips/conf/ROCKET_M2HP
     - copied unchanged from r314481, head/sys/mips/conf/ROCKET_M2HP
  projects/clang400-import/sys/mips/conf/ROCKET_M2HP.hints
     - copied unchanged from r314481, head/sys/mips/conf/ROCKET_M2HP.hints
  projects/clang400-import/sys/mips/conf/TP-MR3040
     - copied unchanged from r314481, head/sys/mips/conf/TP-MR3040
  projects/clang400-import/sys/mips/conf/TP-MR3040.hints
     - copied unchanged from r314481, head/sys/mips/conf/TP-MR3040.hints
Modified:
  projects/clang400-import/bin/cat/cat.1
  projects/clang400-import/bin/cat/cat.c
  projects/clang400-import/bin/chflags/chflags.1
  projects/clang400-import/bin/chflags/chflags.c
  projects/clang400-import/bin/chmod/chmod.1
  projects/clang400-import/bin/chmod/chmod.c
  projects/clang400-import/bin/cp/cp.1
  projects/clang400-import/bin/cp/cp.c
  projects/clang400-import/bin/cp/extern.h
  projects/clang400-import/bin/cp/utils.c
  projects/clang400-import/bin/date/date.1
  projects/clang400-import/bin/date/date.c
  projects/clang400-import/bin/date/extern.h
  projects/clang400-import/bin/date/netdate.c
  projects/clang400-import/bin/dd/args.c
  projects/clang400-import/bin/dd/conv.c
  projects/clang400-import/bin/dd/conv_tab.c
  projects/clang400-import/bin/dd/dd.1
  projects/clang400-import/bin/dd/dd.c
  projects/clang400-import/bin/dd/dd.h
  projects/clang400-import/bin/dd/extern.h
  projects/clang400-import/bin/dd/misc.c
  projects/clang400-import/bin/dd/position.c
  projects/clang400-import/bin/df/df.1
  projects/clang400-import/bin/df/df.c
  projects/clang400-import/bin/domainname/domainname.1
  projects/clang400-import/bin/domainname/domainname.c
  projects/clang400-import/bin/echo/echo.1
  projects/clang400-import/bin/echo/echo.c
  projects/clang400-import/bin/ed/cbc.c
  projects/clang400-import/bin/hostname/hostname.1
  projects/clang400-import/bin/hostname/hostname.c
  projects/clang400-import/bin/kill/kill.1
  projects/clang400-import/bin/kill/kill.c
  projects/clang400-import/bin/ln/ln.1
  projects/clang400-import/bin/ln/ln.c
  projects/clang400-import/bin/ln/symlink.7
  projects/clang400-import/bin/ls/cmp.c
  projects/clang400-import/bin/ls/extern.h
  projects/clang400-import/bin/ls/ls.1
  projects/clang400-import/bin/ls/ls.c
  projects/clang400-import/bin/ls/ls.h
  projects/clang400-import/bin/ls/print.c
  projects/clang400-import/bin/ls/util.c
  projects/clang400-import/bin/mkdir/mkdir.1
  projects/clang400-import/bin/mkdir/mkdir.c
  projects/clang400-import/bin/mv/mv.1
  projects/clang400-import/bin/mv/mv.c
  projects/clang400-import/bin/pax/ar_io.c
  projects/clang400-import/bin/pax/ar_subs.c
  projects/clang400-import/bin/pax/buf_subs.c
  projects/clang400-import/bin/pax/cache.c
  projects/clang400-import/bin/pax/cache.h
  projects/clang400-import/bin/pax/cpio.c
  projects/clang400-import/bin/pax/cpio.h
  projects/clang400-import/bin/pax/extern.h
  projects/clang400-import/bin/pax/file_subs.c
  projects/clang400-import/bin/pax/ftree.c
  projects/clang400-import/bin/pax/ftree.h
  projects/clang400-import/bin/pax/gen_subs.c
  projects/clang400-import/bin/pax/options.c
  projects/clang400-import/bin/pax/options.h
  projects/clang400-import/bin/pax/pat_rep.c
  projects/clang400-import/bin/pax/pat_rep.h
  projects/clang400-import/bin/pax/pax.1
  projects/clang400-import/bin/pax/pax.c
  projects/clang400-import/bin/pax/pax.h
  projects/clang400-import/bin/pax/sel_subs.c
  projects/clang400-import/bin/pax/sel_subs.h
  projects/clang400-import/bin/pax/tables.c
  projects/clang400-import/bin/pax/tables.h
  projects/clang400-import/bin/pax/tar.c
  projects/clang400-import/bin/pax/tar.h
  projects/clang400-import/bin/pax/tty_subs.c
  projects/clang400-import/bin/ps/extern.h
  projects/clang400-import/bin/ps/fmt.c
  projects/clang400-import/bin/ps/keyword.c
  projects/clang400-import/bin/ps/nlist.c
  projects/clang400-import/bin/ps/print.c
  projects/clang400-import/bin/ps/ps.1
  projects/clang400-import/bin/ps/ps.c
  projects/clang400-import/bin/ps/ps.h
  projects/clang400-import/bin/pwd/pwd.1
  projects/clang400-import/bin/pwd/pwd.c
  projects/clang400-import/bin/rcp/extern.h
  projects/clang400-import/bin/rcp/rcp.1
  projects/clang400-import/bin/rcp/rcp.c
  projects/clang400-import/bin/rcp/util.c
  projects/clang400-import/bin/realpath/realpath.1
  projects/clang400-import/bin/realpath/realpath.c
  projects/clang400-import/bin/rm/rm.1
  projects/clang400-import/bin/rm/rm.c
  projects/clang400-import/bin/rmdir/rmdir.1
  projects/clang400-import/bin/rmdir/rmdir.c
  projects/clang400-import/bin/sh/alias.c
  projects/clang400-import/bin/sh/alias.h
  projects/clang400-import/bin/sh/arith.h
  projects/clang400-import/bin/sh/bltin/bltin.h
  projects/clang400-import/bin/sh/bltin/echo.c
  projects/clang400-import/bin/sh/builtins.def
  projects/clang400-import/bin/sh/cd.c
  projects/clang400-import/bin/sh/cd.h
  projects/clang400-import/bin/sh/error.c
  projects/clang400-import/bin/sh/error.h
  projects/clang400-import/bin/sh/eval.c
  projects/clang400-import/bin/sh/eval.h
  projects/clang400-import/bin/sh/exec.c
  projects/clang400-import/bin/sh/exec.h
  projects/clang400-import/bin/sh/expand.c
  projects/clang400-import/bin/sh/expand.h
  projects/clang400-import/bin/sh/funcs/cmv
  projects/clang400-import/bin/sh/funcs/dirs
  projects/clang400-import/bin/sh/funcs/login
  projects/clang400-import/bin/sh/funcs/newgrp
  projects/clang400-import/bin/sh/funcs/popd
  projects/clang400-import/bin/sh/funcs/pushd
  projects/clang400-import/bin/sh/funcs/suspend
  projects/clang400-import/bin/sh/histedit.c
  projects/clang400-import/bin/sh/input.c
  projects/clang400-import/bin/sh/input.h
  projects/clang400-import/bin/sh/jobs.c
  projects/clang400-import/bin/sh/jobs.h
  projects/clang400-import/bin/sh/mail.c
  projects/clang400-import/bin/sh/mail.h
  projects/clang400-import/bin/sh/main.c
  projects/clang400-import/bin/sh/main.h
  projects/clang400-import/bin/sh/memalloc.c
  projects/clang400-import/bin/sh/memalloc.h
  projects/clang400-import/bin/sh/miscbltin.c
  projects/clang400-import/bin/sh/mkbuiltins
  projects/clang400-import/bin/sh/mknodes.c
  projects/clang400-import/bin/sh/mksyntax.c
  projects/clang400-import/bin/sh/mktokens
  projects/clang400-import/bin/sh/myhistedit.h
  projects/clang400-import/bin/sh/mystring.c
  projects/clang400-import/bin/sh/mystring.h
  projects/clang400-import/bin/sh/nodes.c.pat
  projects/clang400-import/bin/sh/nodetypes
  projects/clang400-import/bin/sh/options.c
  projects/clang400-import/bin/sh/options.h
  projects/clang400-import/bin/sh/output.c
  projects/clang400-import/bin/sh/output.h
  projects/clang400-import/bin/sh/parser.c
  projects/clang400-import/bin/sh/parser.h
  projects/clang400-import/bin/sh/redir.c
  projects/clang400-import/bin/sh/redir.h
  projects/clang400-import/bin/sh/sh.1
  projects/clang400-import/bin/sh/shell.h
  projects/clang400-import/bin/sh/show.c
  projects/clang400-import/bin/sh/show.h
  projects/clang400-import/bin/sh/trap.c
  projects/clang400-import/bin/sh/trap.h
  projects/clang400-import/bin/sh/var.c
  projects/clang400-import/bin/sh/var.h
  projects/clang400-import/bin/sleep/sleep.1
  projects/clang400-import/bin/sleep/sleep.c
  projects/clang400-import/bin/stty/cchar.c
  projects/clang400-import/bin/stty/extern.h
  projects/clang400-import/bin/stty/gfmt.c
  projects/clang400-import/bin/stty/key.c
  projects/clang400-import/bin/stty/modes.c
  projects/clang400-import/bin/stty/print.c
  projects/clang400-import/bin/stty/stty.1
  projects/clang400-import/bin/stty/stty.c
  projects/clang400-import/bin/stty/stty.h
  projects/clang400-import/bin/stty/util.c
  projects/clang400-import/bin/sync/sync.8
  projects/clang400-import/bin/sync/sync.c
  projects/clang400-import/bin/test/test.1
  projects/clang400-import/contrib/libarchive/libarchive/archive_entry.c
  projects/clang400-import/contrib/libarchive/libarchive/archive_read_support_filter_compress.c
  projects/clang400-import/contrib/libxo/libxo/xo_syslog.c
  projects/clang400-import/contrib/libxo/tests/gettext/po/pig_latin/strerror.po
  projects/clang400-import/contrib/libxo/tests/gettext/strerror.pot
  projects/clang400-import/contrib/netbsd-tests/lib/libc/stdlib/t_hsearch.c
  projects/clang400-import/contrib/ofed/libcxgb4/src/queue.h
  projects/clang400-import/contrib/openbsm/compat/queue.h
  projects/clang400-import/contrib/openbsm/compat/vis.h
  projects/clang400-import/contrib/sendmail/LICENSE
  projects/clang400-import/contrib/tzcode/stdtime/ctime.3
  projects/clang400-import/crypto/heimdal/lib/roken/qsort.c
  projects/clang400-import/include/semaphore.h
  projects/clang400-import/lib/libc/amd64/SYS.h
  projects/clang400-import/lib/libc/amd64/gen/_setjmp.S
  projects/clang400-import/lib/libc/amd64/gen/setjmp.S
  projects/clang400-import/lib/libc/amd64/gen/sigsetjmp.S
  projects/clang400-import/lib/libc/amd64/sys/brk.S
  projects/clang400-import/lib/libc/amd64/sys/cerror.S
  projects/clang400-import/lib/libc/amd64/sys/exect.S
  projects/clang400-import/lib/libc/amd64/sys/sbrk.S
  projects/clang400-import/lib/libc/amd64/sys/setlogin.S
  projects/clang400-import/lib/libc/amd64/sys/sigreturn.S
  projects/clang400-import/lib/libc/amd64/sys/vfork.S
  projects/clang400-import/lib/libc/compat-43/creat.2
  projects/clang400-import/lib/libc/compat-43/creat.c
  projects/clang400-import/lib/libc/compat-43/gethostid.3
  projects/clang400-import/lib/libc/compat-43/gethostid.c
  projects/clang400-import/lib/libc/compat-43/getwd.c
  projects/clang400-import/lib/libc/compat-43/killpg.2
  projects/clang400-import/lib/libc/compat-43/killpg.c
  projects/clang400-import/lib/libc/compat-43/sethostid.c
  projects/clang400-import/lib/libc/compat-43/setpgrp.c
  projects/clang400-import/lib/libc/compat-43/setrgid.c
  projects/clang400-import/lib/libc/compat-43/setruid.3
  projects/clang400-import/lib/libc/compat-43/setruid.c
  projects/clang400-import/lib/libc/compat-43/sigcompat.c
  projects/clang400-import/lib/libc/compat-43/sigpause.2
  projects/clang400-import/lib/libc/compat-43/sigsetmask.2
  projects/clang400-import/lib/libc/compat-43/sigvec.2
  projects/clang400-import/lib/libc/db/btree/bt_close.c
  projects/clang400-import/lib/libc/db/btree/bt_conv.c
  projects/clang400-import/lib/libc/db/btree/bt_debug.c
  projects/clang400-import/lib/libc/db/btree/bt_delete.c
  projects/clang400-import/lib/libc/db/btree/bt_get.c
  projects/clang400-import/lib/libc/db/btree/bt_open.c
  projects/clang400-import/lib/libc/db/btree/bt_overflow.c
  projects/clang400-import/lib/libc/db/btree/bt_page.c
  projects/clang400-import/lib/libc/db/btree/bt_put.c
  projects/clang400-import/lib/libc/db/btree/bt_search.c
  projects/clang400-import/lib/libc/db/btree/bt_seq.c
  projects/clang400-import/lib/libc/db/btree/bt_split.c
  projects/clang400-import/lib/libc/db/btree/bt_utils.c
  projects/clang400-import/lib/libc/db/btree/btree.h
  projects/clang400-import/lib/libc/db/btree/extern.h
  projects/clang400-import/lib/libc/db/db/db.c
  projects/clang400-import/lib/libc/db/hash/extern.h
  projects/clang400-import/lib/libc/db/hash/hash.c
  projects/clang400-import/lib/libc/db/hash/hash.h
  projects/clang400-import/lib/libc/db/hash/hash_bigkey.c
  projects/clang400-import/lib/libc/db/hash/hash_buf.c
  projects/clang400-import/lib/libc/db/hash/hash_func.c
  projects/clang400-import/lib/libc/db/hash/hash_log2.c
  projects/clang400-import/lib/libc/db/hash/hash_page.c
  projects/clang400-import/lib/libc/db/hash/ndbm.c
  projects/clang400-import/lib/libc/db/hash/page.h
  projects/clang400-import/lib/libc/db/man/btree.3
  projects/clang400-import/lib/libc/db/man/dbopen.3
  projects/clang400-import/lib/libc/db/man/hash.3
  projects/clang400-import/lib/libc/db/man/mpool.3
  projects/clang400-import/lib/libc/db/man/recno.3
  projects/clang400-import/lib/libc/db/mpool/mpool.c
  projects/clang400-import/lib/libc/db/recno/extern.h
  projects/clang400-import/lib/libc/db/recno/rec_close.c
  projects/clang400-import/lib/libc/db/recno/rec_delete.c
  projects/clang400-import/lib/libc/db/recno/rec_get.c
  projects/clang400-import/lib/libc/db/recno/rec_open.c
  projects/clang400-import/lib/libc/db/recno/rec_put.c
  projects/clang400-import/lib/libc/db/recno/rec_search.c
  projects/clang400-import/lib/libc/db/recno/rec_seq.c
  projects/clang400-import/lib/libc/db/recno/rec_utils.c
  projects/clang400-import/lib/libc/db/recno/recno.h
  projects/clang400-import/lib/libc/db/test/btree.tests/main.c
  projects/clang400-import/lib/libc/db/test/dbtest.c
  projects/clang400-import/lib/libc/db/test/hash.tests/driver2.c
  projects/clang400-import/lib/libc/db/test/hash.tests/tcreat3.c
  projects/clang400-import/lib/libc/db/test/hash.tests/tdel.c
  projects/clang400-import/lib/libc/db/test/hash.tests/thash4.c
  projects/clang400-import/lib/libc/db/test/hash.tests/tread2.c
  projects/clang400-import/lib/libc/db/test/hash.tests/tseq.c
  projects/clang400-import/lib/libc/db/test/hash.tests/tverify.c
  projects/clang400-import/lib/libc/gen/__xuname.c
  projects/clang400-import/lib/libc/gen/alarm.3
  projects/clang400-import/lib/libc/gen/alarm.c
  projects/clang400-import/lib/libc/gen/assert.c
  projects/clang400-import/lib/libc/gen/clock.3
  projects/clang400-import/lib/libc/gen/clock.c
  projects/clang400-import/lib/libc/gen/closedir.c
  projects/clang400-import/lib/libc/gen/confstr.3
  projects/clang400-import/lib/libc/gen/confstr.c
  projects/clang400-import/lib/libc/gen/crypt.c
  projects/clang400-import/lib/libc/gen/ctermid.3
  projects/clang400-import/lib/libc/gen/daemon.3
  projects/clang400-import/lib/libc/gen/daemon.c
  projects/clang400-import/lib/libc/gen/devname.3
  projects/clang400-import/lib/libc/gen/devname.c
  projects/clang400-import/lib/libc/gen/directory.3
  projects/clang400-import/lib/libc/gen/disklabel.c
  projects/clang400-import/lib/libc/gen/err.3
  projects/clang400-import/lib/libc/gen/err.c
  projects/clang400-import/lib/libc/gen/errlst.c
  projects/clang400-import/lib/libc/gen/exec.3
  projects/clang400-import/lib/libc/gen/exec.c
  projects/clang400-import/lib/libc/gen/fnmatch.3
  projects/clang400-import/lib/libc/gen/fnmatch.c
  projects/clang400-import/lib/libc/gen/frexp.3
  projects/clang400-import/lib/libc/gen/fstab.c
  projects/clang400-import/lib/libc/gen/fts-compat.c
  projects/clang400-import/lib/libc/gen/fts.3
  projects/clang400-import/lib/libc/gen/fts.c
  projects/clang400-import/lib/libc/gen/getbootfile.3
  projects/clang400-import/lib/libc/gen/getbootfile.c
  projects/clang400-import/lib/libc/gen/getbsize.3
  projects/clang400-import/lib/libc/gen/getbsize.c
  projects/clang400-import/lib/libc/gen/getcap.3
  projects/clang400-import/lib/libc/gen/getcap.c
  projects/clang400-import/lib/libc/gen/getcwd.3
  projects/clang400-import/lib/libc/gen/getcwd.c
  projects/clang400-import/lib/libc/gen/getdiskbyname.3
  projects/clang400-import/lib/libc/gen/getdomainname.3
  projects/clang400-import/lib/libc/gen/getdomainname.c
  projects/clang400-import/lib/libc/gen/getfsent.3
  projects/clang400-import/lib/libc/gen/getgrent.3
  projects/clang400-import/lib/libc/gen/getgrouplist.3
  projects/clang400-import/lib/libc/gen/getgrouplist.c
  projects/clang400-import/lib/libc/gen/gethostname.3
  projects/clang400-import/lib/libc/gen/gethostname.c
  projects/clang400-import/lib/libc/gen/getloadavg.3
  projects/clang400-import/lib/libc/gen/getloadavg.c
  projects/clang400-import/lib/libc/gen/getlogin.c
  projects/clang400-import/lib/libc/gen/getmntinfo.3
  projects/clang400-import/lib/libc/gen/getmntinfo.c
  projects/clang400-import/lib/libc/gen/getnetgrent.3
  projects/clang400-import/lib/libc/gen/getnetgrent.c
  projects/clang400-import/lib/libc/gen/getosreldate.c
  projects/clang400-import/lib/libc/gen/getpagesize.3
  projects/clang400-import/lib/libc/gen/getpagesize.c
  projects/clang400-import/lib/libc/gen/getpass.3
  projects/clang400-import/lib/libc/gen/getpwent.3
  projects/clang400-import/lib/libc/gen/getttyent.3
  projects/clang400-import/lib/libc/gen/getttyent.c
  projects/clang400-import/lib/libc/gen/getusershell.3
  projects/clang400-import/lib/libc/gen/getusershell.c
  projects/clang400-import/lib/libc/gen/getvfsbyname.3
  projects/clang400-import/lib/libc/gen/getvfsbyname.c
  projects/clang400-import/lib/libc/gen/glob.3
  projects/clang400-import/lib/libc/gen/glob.c
  projects/clang400-import/lib/libc/gen/initgroups.3
  projects/clang400-import/lib/libc/gen/initgroups.c
  projects/clang400-import/lib/libc/gen/isatty.c
  projects/clang400-import/lib/libc/gen/ldexp.3
  projects/clang400-import/lib/libc/gen/modf.3
  projects/clang400-import/lib/libc/gen/nice.3
  projects/clang400-import/lib/libc/gen/nice.c
  projects/clang400-import/lib/libc/gen/nlist.3
  projects/clang400-import/lib/libc/gen/nlist.c
  projects/clang400-import/lib/libc/gen/opendir.c
  projects/clang400-import/lib/libc/gen/pause.3
  projects/clang400-import/lib/libc/gen/pause.c
  projects/clang400-import/lib/libc/gen/popen.3
  projects/clang400-import/lib/libc/gen/popen.c
  projects/clang400-import/lib/libc/gen/psignal.3
  projects/clang400-import/lib/libc/gen/psignal.c
  projects/clang400-import/lib/libc/gen/pw_scan.c
  projects/clang400-import/lib/libc/gen/pw_scan.h
  projects/clang400-import/lib/libc/gen/raise.3
  projects/clang400-import/lib/libc/gen/raise.c
  projects/clang400-import/lib/libc/gen/readdir.c
  projects/clang400-import/lib/libc/gen/rewinddir.c
  projects/clang400-import/lib/libc/gen/scandir.3
  projects/clang400-import/lib/libc/gen/scandir.c
  projects/clang400-import/lib/libc/gen/seekdir.c
  projects/clang400-import/lib/libc/gen/sem_timedwait.3
  projects/clang400-import/lib/libc/gen/setdomainname.c
  projects/clang400-import/lib/libc/gen/sethostname.c
  projects/clang400-import/lib/libc/gen/setjmp.3
  projects/clang400-import/lib/libc/gen/setjmperr.c
  projects/clang400-import/lib/libc/gen/setmode.3
  projects/clang400-import/lib/libc/gen/setmode.c
  projects/clang400-import/lib/libc/gen/siginterrupt.3
  projects/clang400-import/lib/libc/gen/siginterrupt.c
  projects/clang400-import/lib/libc/gen/siglist.c
  projects/clang400-import/lib/libc/gen/signal.3
  projects/clang400-import/lib/libc/gen/signal.c
  projects/clang400-import/lib/libc/gen/sigsetops.3
  projects/clang400-import/lib/libc/gen/sigsetops.c
  projects/clang400-import/lib/libc/gen/sleep.3
  projects/clang400-import/lib/libc/gen/sleep.c
  projects/clang400-import/lib/libc/gen/strtofflags.3
  projects/clang400-import/lib/libc/gen/strtofflags.c
  projects/clang400-import/lib/libc/gen/sysconf.3
  projects/clang400-import/lib/libc/gen/sysconf.c
  projects/clang400-import/lib/libc/gen/sysctl.3
  projects/clang400-import/lib/libc/gen/sysctl.c
  projects/clang400-import/lib/libc/gen/syslog.3
  projects/clang400-import/lib/libc/gen/syslog.c
  projects/clang400-import/lib/libc/gen/tcgetpgrp.3
  projects/clang400-import/lib/libc/gen/tcsendbreak.3
  projects/clang400-import/lib/libc/gen/tcsetattr.3
  projects/clang400-import/lib/libc/gen/tcsetpgrp.3
  projects/clang400-import/lib/libc/gen/telldir.c
  projects/clang400-import/lib/libc/gen/termios.c
  projects/clang400-import/lib/libc/gen/time.3
  projects/clang400-import/lib/libc/gen/time.c
  projects/clang400-import/lib/libc/gen/times.3
  projects/clang400-import/lib/libc/gen/times.c
  projects/clang400-import/lib/libc/gen/timezone.3
  projects/clang400-import/lib/libc/gen/timezone.c
  projects/clang400-import/lib/libc/gen/ttyname.3
  projects/clang400-import/lib/libc/gen/ttyname.c
  projects/clang400-import/lib/libc/gen/ttyslot.c
  projects/clang400-import/lib/libc/gen/tzset.3
  projects/clang400-import/lib/libc/gen/ualarm.3
  projects/clang400-import/lib/libc/gen/ualarm.c
  projects/clang400-import/lib/libc/gen/uname.3
  projects/clang400-import/lib/libc/gen/uname.c
  projects/clang400-import/lib/libc/gen/usleep.3
  projects/clang400-import/lib/libc/gen/usleep.c
  projects/clang400-import/lib/libc/gen/utime.3
  projects/clang400-import/lib/libc/gen/utime.c
  projects/clang400-import/lib/libc/gen/valloc.3
  projects/clang400-import/lib/libc/gen/valloc.c
  projects/clang400-import/lib/libc/gen/wait.c
  projects/clang400-import/lib/libc/gen/wait3.c
  projects/clang400-import/lib/libc/gen/waitpid.c
  projects/clang400-import/lib/libc/gmon/gmon.c
  projects/clang400-import/lib/libc/gmon/mcount.c
  projects/clang400-import/lib/libc/gmon/moncontrol.3
  projects/clang400-import/lib/libc/i386/SYS.h
  projects/clang400-import/lib/libc/i386/gen/_setjmp.S
  projects/clang400-import/lib/libc/i386/gen/fabs.S
  projects/clang400-import/lib/libc/i386/gen/setjmp.S
  projects/clang400-import/lib/libc/i386/gen/sigsetjmp.S
  projects/clang400-import/lib/libc/i386/string/bcopy.S
  projects/clang400-import/lib/libc/i386/sys/Ovfork.S
  projects/clang400-import/lib/libc/i386/sys/brk.S
  projects/clang400-import/lib/libc/i386/sys/cerror.S
  projects/clang400-import/lib/libc/i386/sys/exect.S
  projects/clang400-import/lib/libc/i386/sys/i386_get_ldt.2
  projects/clang400-import/lib/libc/i386/sys/sbrk.S
  projects/clang400-import/lib/libc/i386/sys/setlogin.S
  projects/clang400-import/lib/libc/i386/sys/sigreturn.S
  projects/clang400-import/lib/libc/i386/sys/syscall.S
  projects/clang400-import/lib/libc/inet/inet_addr.c
  projects/clang400-import/lib/libc/inet/inet_lnaof.c
  projects/clang400-import/lib/libc/inet/inet_makeaddr.c
  projects/clang400-import/lib/libc/inet/inet_netof.c
  projects/clang400-import/lib/libc/inet/inet_network.c
  projects/clang400-import/lib/libc/inet/inet_ntoa.c
  projects/clang400-import/lib/libc/locale/ascii.c   (contents, props changed)
  projects/clang400-import/lib/libc/locale/ctype.3
  projects/clang400-import/lib/libc/locale/digittoint.3
  projects/clang400-import/lib/libc/locale/euc.5
  projects/clang400-import/lib/libc/locale/gbk.c
  projects/clang400-import/lib/libc/locale/isalnum.3
  projects/clang400-import/lib/libc/locale/isalpha.3
  projects/clang400-import/lib/libc/locale/isascii.3
  projects/clang400-import/lib/libc/locale/isblank.3
  projects/clang400-import/lib/libc/locale/iscntrl.3
  projects/clang400-import/lib/libc/locale/isctype.c
  projects/clang400-import/lib/libc/locale/isdigit.3
  projects/clang400-import/lib/libc/locale/isgraph.3
  projects/clang400-import/lib/libc/locale/islower.3
  projects/clang400-import/lib/libc/locale/isprint.3
  projects/clang400-import/lib/libc/locale/ispunct.3
  projects/clang400-import/lib/libc/locale/isspace.3
  projects/clang400-import/lib/libc/locale/isupper.3
  projects/clang400-import/lib/libc/locale/iswalnum.3
  projects/clang400-import/lib/libc/locale/iswctype.c
  projects/clang400-import/lib/libc/locale/isxdigit.3
  projects/clang400-import/lib/libc/locale/localeconv.3
  projects/clang400-import/lib/libc/locale/localeconv.c
  projects/clang400-import/lib/libc/locale/mblen.3
  projects/clang400-import/lib/libc/locale/mbstowcs.3
  projects/clang400-import/lib/libc/locale/mbtowc.3
  projects/clang400-import/lib/libc/locale/multibyte.3
  projects/clang400-import/lib/libc/locale/none.c
  projects/clang400-import/lib/libc/locale/rune.c
  projects/clang400-import/lib/libc/locale/runetype.c
  projects/clang400-import/lib/libc/locale/setlocale.3
  projects/clang400-import/lib/libc/locale/setlocale.c
  projects/clang400-import/lib/libc/locale/setrunelocale.c
  projects/clang400-import/lib/libc/locale/table.c
  projects/clang400-import/lib/libc/locale/toascii.3
  projects/clang400-import/lib/libc/locale/tolower.3
  projects/clang400-import/lib/libc/locale/tolower.c
  projects/clang400-import/lib/libc/locale/toupper.3
  projects/clang400-import/lib/libc/locale/toupper.c
  projects/clang400-import/lib/libc/locale/towlower.3
  projects/clang400-import/lib/libc/locale/towupper.3
  projects/clang400-import/lib/libc/locale/utf8.5
  projects/clang400-import/lib/libc/locale/wcstoimax.c
  projects/clang400-import/lib/libc/locale/wcstol.c
  projects/clang400-import/lib/libc/locale/wcstoll.c
  projects/clang400-import/lib/libc/locale/wcstombs.3
  projects/clang400-import/lib/libc/locale/wcstoul.c
  projects/clang400-import/lib/libc/locale/wcstoull.c
  projects/clang400-import/lib/libc/locale/wcstoumax.c
  projects/clang400-import/lib/libc/locale/wctomb.3
  projects/clang400-import/lib/libc/locale/wcwidth.c
  projects/clang400-import/lib/libc/net/byteorder.3
  projects/clang400-import/lib/libc/net/gethostbydns.c
  projects/clang400-import/lib/libc/net/gethostbyht.c
  projects/clang400-import/lib/libc/net/gethostbyname.3
  projects/clang400-import/lib/libc/net/getipnodebyname.3
  projects/clang400-import/lib/libc/net/getnetbydns.c
  projects/clang400-import/lib/libc/net/getnetbyht.c
  projects/clang400-import/lib/libc/net/getnetent.3
  projects/clang400-import/lib/libc/net/getproto.c
  projects/clang400-import/lib/libc/net/getprotoent.3
  projects/clang400-import/lib/libc/net/getprotoent.c
  projects/clang400-import/lib/libc/net/getprotoname.c
  projects/clang400-import/lib/libc/net/getservent.3
  projects/clang400-import/lib/libc/net/getservent.c
  projects/clang400-import/lib/libc/net/inet.3
  projects/clang400-import/lib/libc/net/inet_net.3
  projects/clang400-import/lib/libc/net/linkaddr.3
  projects/clang400-import/lib/libc/net/linkaddr.c
  projects/clang400-import/lib/libc/net/map_v4v6.c
  projects/clang400-import/lib/libc/net/nsdispatch.3
  projects/clang400-import/lib/libc/net/rcmd.3
  projects/clang400-import/lib/libc/net/rcmd.c
  projects/clang400-import/lib/libc/net/rcmdsh.3
  projects/clang400-import/lib/libc/net/recv.c
  projects/clang400-import/lib/libc/net/resolver.3
  projects/clang400-import/lib/libc/net/send.c
  projects/clang400-import/lib/libc/quad/TESTS/divrem.c
  projects/clang400-import/lib/libc/quad/TESTS/mul.c
  projects/clang400-import/lib/libc/quad/adddi3.c
  projects/clang400-import/lib/libc/quad/anddi3.c
  projects/clang400-import/lib/libc/quad/ashldi3.c
  projects/clang400-import/lib/libc/quad/ashrdi3.c
  projects/clang400-import/lib/libc/quad/cmpdi2.c
  projects/clang400-import/lib/libc/quad/divdi3.c
  projects/clang400-import/lib/libc/quad/fixdfdi.c
  projects/clang400-import/lib/libc/quad/fixsfdi.c
  projects/clang400-import/lib/libc/quad/fixunsdfdi.c
  projects/clang400-import/lib/libc/quad/fixunssfdi.c
  projects/clang400-import/lib/libc/quad/floatdidf.c
  projects/clang400-import/lib/libc/quad/floatdisf.c
  projects/clang400-import/lib/libc/quad/floatunsdidf.c
  projects/clang400-import/lib/libc/quad/iordi3.c
  projects/clang400-import/lib/libc/quad/lshldi3.c
  projects/clang400-import/lib/libc/quad/lshrdi3.c
  projects/clang400-import/lib/libc/quad/moddi3.c
  projects/clang400-import/lib/libc/quad/muldi3.c
  projects/clang400-import/lib/libc/quad/negdi2.c
  projects/clang400-import/lib/libc/quad/notdi2.c
  projects/clang400-import/lib/libc/quad/qdivrem.c
  projects/clang400-import/lib/libc/quad/quad.h
  projects/clang400-import/lib/libc/quad/subdi3.c
  projects/clang400-import/lib/libc/quad/ucmpdi2.c
  projects/clang400-import/lib/libc/quad/udivdi3.c
  projects/clang400-import/lib/libc/quad/umoddi3.c
  projects/clang400-import/lib/libc/quad/xordi3.c
  projects/clang400-import/lib/libc/regex/cname.h
  projects/clang400-import/lib/libc/regex/engine.c
  projects/clang400-import/lib/libc/regex/regcomp.c
  projects/clang400-import/lib/libc/regex/regerror.c
  projects/clang400-import/lib/libc/regex/regex.3
  projects/clang400-import/lib/libc/regex/regex2.h
  projects/clang400-import/lib/libc/regex/regexec.c
  projects/clang400-import/lib/libc/regex/regfree.c
  projects/clang400-import/lib/libc/regex/utils.h
  projects/clang400-import/lib/libc/resolv/herror.c
  projects/clang400-import/lib/libc/resolv/res_comp.c
  projects/clang400-import/lib/libc/resolv/res_debug.c
  projects/clang400-import/lib/libc/resolv/res_init.c
  projects/clang400-import/lib/libc/resolv/res_mkquery.c
  projects/clang400-import/lib/libc/resolv/res_query.c
  projects/clang400-import/lib/libc/resolv/res_send.c
  projects/clang400-import/lib/libc/sparc64/SYS.h
  projects/clang400-import/lib/libc/sparc64/fpu/fpu.c
  projects/clang400-import/lib/libc/sparc64/fpu/fpu_add.c
  projects/clang400-import/lib/libc/sparc64/fpu/fpu_arith.h
  projects/clang400-import/lib/libc/sparc64/fpu/fpu_compare.c
  projects/clang400-import/lib/libc/sparc64/fpu/fpu_div.c
  projects/clang400-import/lib/libc/sparc64/fpu/fpu_emu.h
  projects/clang400-import/lib/libc/sparc64/fpu/fpu_explode.c
  projects/clang400-import/lib/libc/sparc64/fpu/fpu_implode.c
  projects/clang400-import/lib/libc/sparc64/fpu/fpu_mul.c
  projects/clang400-import/lib/libc/sparc64/fpu/fpu_sqrt.c
  projects/clang400-import/lib/libc/sparc64/fpu/fpu_subr.c
  projects/clang400-import/lib/libc/sparc64/gen/_setjmp.S
  projects/clang400-import/lib/libc/sparc64/gen/fixunsdfsi.S
  projects/clang400-import/lib/libc/sparc64/gen/setjmp.S
  projects/clang400-import/lib/libc/sparc64/sys/brk.S
  projects/clang400-import/lib/libc/sparc64/sys/cerror.S
  projects/clang400-import/lib/libc/sparc64/sys/exect.S
  projects/clang400-import/lib/libc/sparc64/sys/sbrk.S
  projects/clang400-import/lib/libc/sparc64/sys/setlogin.S
  projects/clang400-import/lib/libc/stdio/fclose.3
  projects/clang400-import/lib/libc/stdio/ferror.3
  projects/clang400-import/lib/libc/stdio/fflush.3
  projects/clang400-import/lib/libc/stdio/fgetln.3
  projects/clang400-import/lib/libc/stdio/fgets.3
  projects/clang400-import/lib/libc/stdio/fgetwln.3
  projects/clang400-import/lib/libc/stdio/fgetws.3
  projects/clang400-import/lib/libc/stdio/floatio.h
  projects/clang400-import/lib/libc/stdio/fopen.3
  projects/clang400-import/lib/libc/stdio/fputs.3
  projects/clang400-import/lib/libc/stdio/fputws.3
  projects/clang400-import/lib/libc/stdio/fread.3
  projects/clang400-import/lib/libc/stdio/fseek.3
  projects/clang400-import/lib/libc/stdio/funopen.3
  projects/clang400-import/lib/libc/stdio/fvwrite.h
  projects/clang400-import/lib/libc/stdio/getc.3
  projects/clang400-import/lib/libc/stdio/getwc.3
  projects/clang400-import/lib/libc/stdio/glue.h
  projects/clang400-import/lib/libc/stdio/local.h
  projects/clang400-import/lib/libc/stdio/mktemp.3
  projects/clang400-import/lib/libc/stdio/printf.3
  projects/clang400-import/lib/libc/stdio/printfcommon.h
  projects/clang400-import/lib/libc/stdio/printflocal.h
  projects/clang400-import/lib/libc/stdio/putc.3
  projects/clang400-import/lib/libc/stdio/putwc.3
  projects/clang400-import/lib/libc/stdio/remove.3
  projects/clang400-import/lib/libc/stdio/scanf.3
  projects/clang400-import/lib/libc/stdio/setbuf.3
  projects/clang400-import/lib/libc/stdio/stdio.3
  projects/clang400-import/lib/libc/stdio/tmpnam.3
  projects/clang400-import/lib/libc/stdio/ungetc.3
  projects/clang400-import/lib/libc/stdio/ungetwc.3
  projects/clang400-import/lib/libc/stdio/wprintf.3
  projects/clang400-import/lib/libc/stdio/wscanf.3
  projects/clang400-import/lib/libc/stdtime/strftime.3
  projects/clang400-import/lib/libc/sys/_exit.2
  projects/clang400-import/lib/libc/sys/accept.2
  projects/clang400-import/lib/libc/sys/access.2
  projects/clang400-import/lib/libc/sys/acct.2
  projects/clang400-import/lib/libc/sys/adjtime.2
  projects/clang400-import/lib/libc/sys/bind.2
  projects/clang400-import/lib/libc/sys/brk.2
  projects/clang400-import/lib/libc/sys/chdir.2
  projects/clang400-import/lib/libc/sys/chflags.2
  projects/clang400-import/lib/libc/sys/chmod.2
  projects/clang400-import/lib/libc/sys/chown.2
  projects/clang400-import/lib/libc/sys/chroot.2
  projects/clang400-import/lib/libc/sys/clock_gettime.2
  projects/clang400-import/lib/libc/sys/close.2
  projects/clang400-import/lib/libc/sys/connect.2
  projects/clang400-import/lib/libc/sys/dup.2
  projects/clang400-import/lib/libc/sys/execve.2
  projects/clang400-import/lib/libc/sys/fcntl.2
  projects/clang400-import/lib/libc/sys/flock.2
  projects/clang400-import/lib/libc/sys/fork.2
  projects/clang400-import/lib/libc/sys/fsync.2
  projects/clang400-import/lib/libc/sys/getdirentries.2
  projects/clang400-import/lib/libc/sys/getdtablesize.2
  projects/clang400-import/lib/libc/sys/getfh.2
  projects/clang400-import/lib/libc/sys/getfsstat.2
  projects/clang400-import/lib/libc/sys/getgid.2
  projects/clang400-import/lib/libc/sys/getgroups.2
  projects/clang400-import/lib/libc/sys/getitimer.2
  projects/clang400-import/lib/libc/sys/getlogin.2
  projects/clang400-import/lib/libc/sys/getpeername.2
  projects/clang400-import/lib/libc/sys/getpgrp.2
  projects/clang400-import/lib/libc/sys/getpid.2
  projects/clang400-import/lib/libc/sys/getpriority.2
  projects/clang400-import/lib/libc/sys/getrlimit.2
  projects/clang400-import/lib/libc/sys/getrusage.2
  projects/clang400-import/lib/libc/sys/getsockname.2
  projects/clang400-import/lib/libc/sys/getsockopt.2
  projects/clang400-import/lib/libc/sys/gettimeofday.2
  projects/clang400-import/lib/libc/sys/getuid.2
  projects/clang400-import/lib/libc/sys/intro.2
  projects/clang400-import/lib/libc/sys/ioctl.2
  projects/clang400-import/lib/libc/sys/issetugid.2
  projects/clang400-import/lib/libc/sys/kill.2
  projects/clang400-import/lib/libc/sys/ktrace.2
  projects/clang400-import/lib/libc/sys/link.2
  projects/clang400-import/lib/libc/sys/listen.2
  projects/clang400-import/lib/libc/sys/lseek.2
  projects/clang400-import/lib/libc/sys/madvise.2
  projects/clang400-import/lib/libc/sys/mincore.2
  projects/clang400-import/lib/libc/sys/minherit.2
  projects/clang400-import/lib/libc/sys/mkdir.2
  projects/clang400-import/lib/libc/sys/mkfifo.2
  projects/clang400-import/lib/libc/sys/mknod.2
  projects/clang400-import/lib/libc/sys/mlock.2
  projects/clang400-import/lib/libc/sys/mmap.2
  projects/clang400-import/lib/libc/sys/mount.2
  projects/clang400-import/lib/libc/sys/mprotect.2
  projects/clang400-import/lib/libc/sys/msync.2
  projects/clang400-import/lib/libc/sys/munmap.2
  projects/clang400-import/lib/libc/sys/nanosleep.2
  projects/clang400-import/lib/libc/sys/nfssvc.2
  projects/clang400-import/lib/libc/sys/open.2
  projects/clang400-import/lib/libc/sys/pathconf.2
  projects/clang400-import/lib/libc/sys/pipe.2
  projects/clang400-import/lib/libc/sys/posix_fadvise.2
  projects/clang400-import/lib/libc/sys/posix_fallocate.2
  projects/clang400-import/lib/libc/sys/profil.2
  projects/clang400-import/lib/libc/sys/quotactl.2
  projects/clang400-import/lib/libc/sys/read.2
  projects/clang400-import/lib/libc/sys/readlink.2
  projects/clang400-import/lib/libc/sys/reboot.2
  projects/clang400-import/lib/libc/sys/recv.2
  projects/clang400-import/lib/libc/sys/rename.2
  projects/clang400-import/lib/libc/sys/revoke.2
  projects/clang400-import/lib/libc/sys/rmdir.2
  projects/clang400-import/lib/libc/sys/select.2
  projects/clang400-import/lib/libc/sys/send.2
  projects/clang400-import/lib/libc/sys/setgroups.2
  projects/clang400-import/lib/libc/sys/setpgid.2
  projects/clang400-import/lib/libc/sys/setregid.2
  projects/clang400-import/lib/libc/sys/setreuid.2
  projects/clang400-import/lib/libc/sys/setsid.2
  projects/clang400-import/lib/libc/sys/setuid.2
  projects/clang400-import/lib/libc/sys/shutdown.2
  projects/clang400-import/lib/libc/sys/sigaction.2
  projects/clang400-import/lib/libc/sys/sigaltstack.2
  projects/clang400-import/lib/libc/sys/sigpending.2
  projects/clang400-import/lib/libc/sys/sigprocmask.2
  projects/clang400-import/lib/libc/sys/sigreturn.2
  projects/clang400-import/lib/libc/sys/sigstack.2
  projects/clang400-import/lib/libc/sys/sigsuspend.2
  projects/clang400-import/lib/libc/sys/socket.2
  projects/clang400-import/lib/libc/sys/socketpair.2
  projects/clang400-import/lib/libc/sys/stat.2
  projects/clang400-import/lib/libc/sys/statfs.2
  projects/clang400-import/lib/libc/sys/swapon.2
  projects/clang400-import/lib/libc/sys/symlink.2
  projects/clang400-import/lib/libc/sys/sync.2
  projects/clang400-import/lib/libc/sys/sysarch.2
  projects/clang400-import/lib/libc/sys/syscall.2
  projects/clang400-import/lib/libc/sys/truncate.2
  projects/clang400-import/lib/libc/sys/umask.2
  projects/clang400-import/lib/libc/sys/undelete.2
  projects/clang400-import/lib/libc/sys/unlink.2
  projects/clang400-import/lib/libc/sys/utimensat.2
  projects/clang400-import/lib/libc/sys/utimes.2
  projects/clang400-import/lib/libc/sys/vfork.2
  projects/clang400-import/lib/libc/sys/wait.2
  projects/clang400-import/lib/libc/sys/write.2
  projects/clang400-import/lib/libcompat/4.1/ftime.3
  projects/clang400-import/lib/libcompat/4.3/re_comp.3
  projects/clang400-import/lib/libcompat/4.3/re_comp.c
  projects/clang400-import/lib/libcompat/4.3/rexec.3
  projects/clang400-import/lib/libcompat/4.3/rexec.c
  projects/clang400-import/lib/libcompat/4.4/cuserid.c
  projects/clang400-import/lib/libcrypt/crypt.3
  projects/clang400-import/lib/libifconfig/libifconfig.c
  projects/clang400-import/lib/libkvm/kvm.3
  projects/clang400-import/lib/libkvm/kvm.c
  projects/clang400-import/lib/libkvm/kvm.h
  projects/clang400-import/lib/libkvm/kvm_amd64.c
  projects/clang400-import/lib/libkvm/kvm_arm.c
  projects/clang400-import/lib/libkvm/kvm_geterr.3
  projects/clang400-import/lib/libkvm/kvm_getloadavg.3
  projects/clang400-import/lib/libkvm/kvm_getloadavg.c
  projects/clang400-import/lib/libkvm/kvm_getprocs.3
  projects/clang400-import/lib/libkvm/kvm_i386.c
  projects/clang400-import/lib/libkvm/kvm_nlist.3
  projects/clang400-import/lib/libkvm/kvm_open.3
  projects/clang400-import/lib/libkvm/kvm_private.c
  projects/clang400-import/lib/libkvm/kvm_private.h
  projects/clang400-import/lib/libkvm/kvm_proc.c
  projects/clang400-import/lib/libkvm/kvm_read.3
  projects/clang400-import/lib/libkvm/kvm_sparc64.c
  projects/clang400-import/lib/libstand/amd64/_setjmp.S
  projects/clang400-import/lib/libstand/arp.c
  projects/clang400-import/lib/libstand/bootp.c
  projects/clang400-import/lib/libstand/close.c
  projects/clang400-import/lib/libstand/closeall.c
  projects/clang400-import/lib/libstand/dev.c
  projects/clang400-import/lib/libstand/ether.c
  projects/clang400-import/lib/libstand/fstat.c
  projects/clang400-import/lib/libstand/getopt.c
  projects/clang400-import/lib/libstand/gets.c
  projects/clang400-import/lib/libstand/i386/_setjmp.S
  projects/clang400-import/lib/libstand/in_cksum.c
  projects/clang400-import/lib/libstand/inet_ntoa.c
  projects/clang400-import/lib/libstand/ioctl.c
  projects/clang400-import/lib/libstand/iodesc.h
  projects/clang400-import/lib/libstand/lseek.c
  projects/clang400-import/lib/libstand/net.c
  projects/clang400-import/lib/libstand/net.h
  projects/clang400-import/lib/libstand/nfsv2.h
  projects/clang400-import/lib/libstand/nullfs.c
  projects/clang400-import/lib/libstand/open.c
  projects/clang400-import/lib/libstand/printf.c
  projects/clang400-import/lib/libstand/qdivrem.c
  projects/clang400-import/lib/libstand/quad.h
  projects/clang400-import/lib/libstand/random.c
  projects/clang400-import/lib/libstand/rarp.c
  projects/clang400-import/lib/libstand/read.c
  projects/clang400-import/lib/libstand/rpc.c
  projects/clang400-import/lib/libstand/rpc.h
  projects/clang400-import/lib/libstand/rpcv2.h
  projects/clang400-import/lib/libstand/saioctl.h
  projects/clang400-import/lib/libstand/sparc64/_setjmp.S
  projects/clang400-import/lib/libstand/stand.h
  projects/clang400-import/lib/libstand/stat.c
  projects/clang400-import/lib/libstand/strcasecmp.c
  projects/clang400-import/lib/libstand/strdup.c
  projects/clang400-import/lib/libstand/strerror.c
  projects/clang400-import/lib/libstand/strtol.c
  projects/clang400-import/lib/libstand/strtoul.c
  projects/clang400-import/lib/libstand/twiddle.c
  projects/clang400-import/lib/libstand/udp.c
  projects/clang400-import/lib/libstand/write.c
  projects/clang400-import/lib/libsysdecode/utrace.c
  projects/clang400-import/lib/libutil/hexdump.c
  projects/clang400-import/lib/libutil/login_tty.c
  projects/clang400-import/lib/libutil/pty.c
  projects/clang400-import/lib/libutil/pw_util.c
  projects/clang400-import/lib/libutil/uucplock.c
  projects/clang400-import/lib/liby/main.c
  projects/clang400-import/lib/liby/yyerror.c
  projects/clang400-import/lib/msun/man/acos.3
  projects/clang400-import/lib/msun/man/acosh.3
  projects/clang400-import/lib/msun/man/asin.3
  projects/clang400-import/lib/msun/man/asinh.3
  projects/clang400-import/lib/msun/man/atan.3
  projects/clang400-import/lib/msun/man/atan2.3
  projects/clang400-import/lib/msun/man/atanh.3
  projects/clang400-import/lib/msun/man/ceil.3
  projects/clang400-import/lib/msun/man/copysign.3
  projects/clang400-import/lib/msun/man/cos.3
  projects/clang400-import/lib/msun/man/cosh.3
  projects/clang400-import/lib/msun/man/erf.3
  projects/clang400-import/lib/msun/man/exp.3
  projects/clang400-import/lib/msun/man/fabs.3
  projects/clang400-import/lib/msun/man/floor.3
  projects/clang400-import/lib/msun/man/fmod.3
  projects/clang400-import/lib/msun/man/hypot.3
  projects/clang400-import/lib/msun/man/ieee.3
  projects/clang400-import/lib/msun/man/ieee_test.3
  projects/clang400-import/lib/msun/man/ilogb.3
  projects/clang400-import/lib/msun/man/j0.3
  projects/clang400-import/lib/msun/man/lgamma.3
  projects/clang400-import/lib/msun/man/math.3
  projects/clang400-import/lib/msun/man/nextafter.3
  projects/clang400-import/lib/msun/man/remainder.3
  projects/clang400-import/lib/msun/man/rint.3
  projects/clang400-import/lib/msun/man/scalbn.3
  projects/clang400-import/lib/msun/man/sin.3
  projects/clang400-import/lib/msun/man/sinh.3
  projects/clang400-import/lib/msun/man/sqrt.3
  projects/clang400-import/lib/msun/man/tan.3
  projects/clang400-import/lib/msun/man/tanh.3
  projects/clang400-import/lib/ncurses/ncurses/pathnames.h
  projects/clang400-import/lib/ncurses/ncurses/termcap.c
  projects/clang400-import/libexec/rtld-elf/rtld_printf.c
  projects/clang400-import/libexec/rtld-elf/rtld_utrace.h
  projects/clang400-import/sbin/badsect/badsect.8
  projects/clang400-import/sbin/badsect/badsect.c
  projects/clang400-import/sbin/bsdlabel/bsdlabel.8
  projects/clang400-import/sbin/bsdlabel/pathnames.h
  projects/clang400-import/sbin/clri/clri.8
  projects/clang400-import/sbin/clri/clri.c
  projects/clang400-import/sbin/devd/devd.cc
  projects/clang400-import/sbin/dmesg/dmesg.8
  projects/clang400-import/sbin/dmesg/dmesg.c
  projects/clang400-import/sbin/dump/dump.8
  projects/clang400-import/sbin/dump/dump.h
  projects/clang400-import/sbin/dump/dumprmt.c
  projects/clang400-import/sbin/dump/itime.c
  projects/clang400-import/sbin/dump/main.c
  projects/clang400-import/sbin/dump/optr.c
  projects/clang400-import/sbin/dump/pathnames.h
  projects/clang400-import/sbin/dump/tape.c
  projects/clang400-import/sbin/dump/traverse.c
  projects/clang400-import/sbin/dump/unctime.c
  projects/clang400-import/sbin/dumpfs/dumpfs.8
  projects/clang400-import/sbin/dumpfs/dumpfs.c
  projects/clang400-import/sbin/dumpon/dumpon.8
  projects/clang400-import/sbin/dumpon/dumpon.c
  projects/clang400-import/sbin/fsck/preen.c
  projects/clang400-import/sbin/fsck_ffs/dir.c
  projects/clang400-import/sbin/fsck_ffs/fsck.h
  projects/clang400-import/sbin/fsck_ffs/fsck_ffs.8
  projects/clang400-import/sbin/fsck_ffs/fsutil.c
  projects/clang400-import/sbin/fsck_ffs/gjournal.c
  projects/clang400-import/sbin/fsck_ffs/globs.c
  projects/clang400-import/sbin/fsck_ffs/inode.c
  projects/clang400-import/sbin/fsck_ffs/main.c
  projects/clang400-import/sbin/fsck_ffs/pass1.c
  projects/clang400-import/sbin/fsck_ffs/pass1b.c
  projects/clang400-import/sbin/fsck_ffs/pass2.c
  projects/clang400-import/sbin/fsck_ffs/pass3.c
  projects/clang400-import/sbin/fsck_ffs/pass4.c
  projects/clang400-import/sbin/fsck_ffs/pass5.c
  projects/clang400-import/sbin/fsck_ffs/setup.c
  projects/clang400-import/sbin/fsck_ffs/utilities.c
  projects/clang400-import/sbin/ifconfig/af_inet.c
  projects/clang400-import/sbin/ifconfig/af_inet6.c
  projects/clang400-import/sbin/ifconfig/af_link.c
  projects/clang400-import/sbin/ifconfig/ifclone.c
  projects/clang400-import/sbin/ifconfig/ifconfig.8
  projects/clang400-import/sbin/ifconfig/ifconfig.c
  projects/clang400-import/sbin/init/init.8
  projects/clang400-import/sbin/init/init.c
  projects/clang400-import/sbin/init/pathnames.h
  projects/clang400-import/sbin/mknod/mknod.8
  projects/clang400-import/sbin/mknod/mknod.c
  projects/clang400-import/sbin/mount/getmntopts.3
  projects/clang400-import/sbin/mount/getmntopts.c
  projects/clang400-import/sbin/mount/mntopts.h
  projects/clang400-import/sbin/mount/mount.8
  projects/clang400-import/sbin/mount/mount.c
  projects/clang400-import/sbin/mount/mount_fs.c
  projects/clang400-import/sbin/mount/pathnames.h
  projects/clang400-import/sbin/mount/vfslist.c
  projects/clang400-import/sbin/mount_cd9660/mount_cd9660.8
  projects/clang400-import/sbin/mount_cd9660/mount_cd9660.c
  projects/clang400-import/sbin/mount_fusefs/mount_fusefs.8
  projects/clang400-import/sbin/mount_nfs/mount_nfs.8
  projects/clang400-import/sbin/mount_nfs/mount_nfs.c
  projects/clang400-import/sbin/mount_nullfs/mount_nullfs.8
  projects/clang400-import/sbin/mount_nullfs/mount_nullfs.c
  projects/clang400-import/sbin/mount_udf/mount_udf.c
  projects/clang400-import/sbin/mount_unionfs/mount_unionfs.8
  projects/clang400-import/sbin/mount_unionfs/mount_unionfs.c
  projects/clang400-import/sbin/newfs/mkfs.c
  projects/clang400-import/sbin/newfs/newfs.8
  projects/clang400-import/sbin/newfs/newfs.c
  projects/clang400-import/sbin/newfs/newfs.h
  projects/clang400-import/sbin/nfsiod/nfsiod.8
  projects/clang400-import/sbin/nfsiod/nfsiod.c
  projects/clang400-import/sbin/ping/ping.8
  projects/clang400-import/sbin/ping/ping.c
  projects/clang400-import/sbin/ping6/ping6.c
  projects/clang400-import/sbin/quotacheck/preen.c
  projects/clang400-import/sbin/quotacheck/quotacheck.8
  projects/clang400-import/sbin/quotacheck/quotacheck.c
  projects/clang400-import/sbin/quotacheck/quotacheck.h
  projects/clang400-import/sbin/reboot/boot_i386.8
  projects/clang400-import/sbin/reboot/reboot.8
  projects/clang400-import/sbin/reboot/reboot.c
  projects/clang400-import/sbin/restore/dirs.c
  projects/clang400-import/sbin/restore/extern.h
  projects/clang400-import/sbin/restore/interactive.c
  projects/clang400-import/sbin/restore/main.c
  projects/clang400-import/sbin/restore/restore.8
  projects/clang400-import/sbin/restore/restore.c
  projects/clang400-import/sbin/restore/restore.h
  projects/clang400-import/sbin/restore/symtab.c
  projects/clang400-import/sbin/restore/tape.c
  projects/clang400-import/sbin/restore/utilities.c
  projects/clang400-import/sbin/route/route.8
  projects/clang400-import/sbin/route/route.c
  projects/clang400-import/sbin/routed/defs.h
  projects/clang400-import/sbin/routed/if.c
  projects/clang400-import/sbin/routed/input.c
  projects/clang400-import/sbin/routed/main.c
  projects/clang400-import/sbin/routed/output.c
  projects/clang400-import/sbin/routed/parms.c
  projects/clang400-import/sbin/routed/pathnames.h
  projects/clang400-import/sbin/routed/radix.c
  projects/clang400-import/sbin/routed/radix.h
  projects/clang400-import/sbin/routed/rdisc.c
  projects/clang400-import/sbin/routed/routed.8
  projects/clang400-import/sbin/routed/rtquery/rtquery.c
  projects/clang400-import/sbin/routed/table.c
  projects/clang400-import/sbin/routed/trace.c
  projects/clang400-import/sbin/savecore/savecore.8
  projects/clang400-import/sbin/savecore/savecore.c
  projects/clang400-import/sbin/shutdown/shutdown.8
  projects/clang400-import/sbin/shutdown/shutdown.c
  projects/clang400-import/sbin/swapon/swapon.8
  projects/clang400-import/sbin/swapon/swapon.c
  projects/clang400-import/sbin/sysctl/sysctl.8
  projects/clang400-import/sbin/sysctl/sysctl.c
  projects/clang400-import/sbin/tunefs/tunefs.8
  projects/clang400-import/sbin/tunefs/tunefs.c
  projects/clang400-import/sbin/umount/umount.8
  projects/clang400-import/sbin/umount/umount.c
  projects/clang400-import/share/doc/smm/03.fsck/0.t
  projects/clang400-import/share/doc/smm/03.fsck/1.t
  projects/clang400-import/share/doc/smm/03.fsck/2.t
  projects/clang400-import/share/doc/smm/03.fsck/3.t
  projects/clang400-import/share/doc/smm/03.fsck/4.t
  projects/clang400-import/share/doc/usd/04.csh/csh.1
  projects/clang400-import/share/doc/usd/04.csh/csh.2
  projects/clang400-import/share/doc/usd/04.csh/csh.3
  projects/clang400-import/share/doc/usd/04.csh/csh.4
  projects/clang400-import/share/doc/usd/04.csh/csh.a
  projects/clang400-import/share/doc/usd/04.csh/csh.g
  projects/clang400-import/share/doc/usd/04.csh/tabs
  projects/clang400-import/share/man/man4/lo.4
  projects/clang400-import/sys/amd64/amd64/apic_vector.S
  projects/clang400-import/sys/amd64/amd64/atpic_vector.S
  projects/clang400-import/sys/amd64/amd64/cpu_switch.S
  projects/clang400-import/sys/amd64/amd64/exception.S
  projects/clang400-import/sys/amd64/amd64/fpu.c
  projects/clang400-import/sys/amd64/amd64/genassym.c
  projects/clang400-import/sys/amd64/amd64/machdep.c
  projects/clang400-import/sys/amd64/amd64/mem.c
  projects/clang400-import/sys/amd64/amd64/support.S
  projects/clang400-import/sys/amd64/ia32/ia32_signal.c
  projects/clang400-import/sys/amd64/include/asm.h
  projects/clang400-import/sys/amd64/include/asmacros.h
  projects/clang400-import/sys/amd64/include/cpu.h
  projects/clang400-import/sys/amd64/include/cpufunc.h
  projects/clang400-import/sys/amd64/include/exec.h
  projects/clang400-import/sys/amd64/include/fpu.h
  projects/clang400-import/sys/amd64/include/limits.h
  projects/clang400-import/sys/amd64/include/pcb.h
  projects/clang400-import/sys/amd64/include/pmap.h
  projects/clang400-import/sys/amd64/include/proc.h
  projects/clang400-import/sys/amd64/include/profile.h
  projects/clang400-import/sys/amd64/include/reloc.h
  projects/clang400-import/sys/amd64/include/segments.h
  projects/clang400-import/sys/amd64/include/tss.h
  projects/clang400-import/sys/amd64/linux/linux_support.s
  projects/clang400-import/sys/amd64/linux32/linux32_support.s
  projects/clang400-import/sys/amd64/vmm/vmm_stat.h
  projects/clang400-import/sys/arm/arm/mem.c
  projects/clang400-import/sys/arm/include/_limits.h
  projects/clang400-import/sys/arm/include/limits.h
  projects/clang400-import/sys/arm/include/signal.h
  projects/clang400-import/sys/arm/include/stdarg.h
  projects/clang400-import/sys/boot/geli/pwgets.c
  projects/clang400-import/sys/conf/systags.sh
  projects/clang400-import/sys/contrib/ck/include/ck_md.h
  projects/clang400-import/sys/contrib/ck/src/ck_epoch.c
  projects/clang400-import/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_devid.h
  projects/clang400-import/sys/contrib/dev/uath/ar5523.bin.uu
  projects/clang400-import/sys/ddb/db_ps.c
  projects/clang400-import/sys/dev/ath/ath_hal/ar9003/ar9300_devid.h
  projects/clang400-import/sys/dev/fdc/fdc.c
  projects/clang400-import/sys/dev/ic/i8253reg.h
  projects/clang400-import/sys/dev/ic/nec765.h
  projects/clang400-import/sys/dev/ic/ns16550.h
  projects/clang400-import/sys/dev/ichwd/ichwd.c
  projects/clang400-import/sys/dev/ichwd/ichwd.h
  projects/clang400-import/sys/dev/iscsi/icl_soft_proxy.c
  projects/clang400-import/sys/dev/iwn/if_iwn.c
  projects/clang400-import/sys/dev/iwn/if_iwnreg.h
  projects/clang400-import/sys/dev/md/md.c
  projects/clang400-import/sys/dev/nmdm/nmdm.c
  projects/clang400-import/sys/dev/ofw/openfirmio.c
  projects/clang400-import/sys/dev/ofw/openfirmio.h
  projects/clang400-import/sys/dev/pci/pci_pci.c
  projects/clang400-import/sys/dev/sio/sio.c
  projects/clang400-import/sys/dev/sio/sioreg.h
  projects/clang400-import/sys/dev/sio/siovar.h
  projects/clang400-import/sys/dev/twa/tw_cl_share.h
  projects/clang400-import/sys/dev/usb/input/wsp.c
  projects/clang400-import/sys/dev/usb/usb_pf.c
  projects/clang400-import/sys/dev/usb/usb_pf.h
  projects/clang400-import/sys/dev/usb/usbdevs
  projects/clang400-import/sys/fs/autofs/autofs.c
  projects/clang400-import/sys/fs/cd9660/cd9660_bmap.c
  projects/clang400-import/sys/fs/cd9660/cd9660_lookup.c
  projects/clang400-import/sys/fs/cd9660/cd9660_mount.h
  projects/clang400-import/sys/fs/cd9660/cd9660_node.c
  projects/clang400-import/sys/fs/cd9660/cd9660_node.h
  projects/clang400-import/sys/fs/cd9660/cd9660_rrip.c
  projects/clang400-import/sys/fs/cd9660/cd9660_rrip.h
  projects/clang400-import/sys/fs/cd9660/cd9660_util.c
  projects/clang400-import/sys/fs/cd9660/cd9660_vfsops.c
  projects/clang400-import/sys/fs/cd9660/cd9660_vnops.c
  projects/clang400-import/sys/fs/cd9660/iso.h
  projects/clang400-import/sys/fs/cd9660/iso_rrip.h
  projects/clang400-import/sys/fs/deadfs/dead_vnops.c
  projects/clang400-import/sys/fs/fifofs/fifo_vnops.c
  projects/clang400-import/sys/fs/nfs/nfs.h
  projects/clang400-import/sys/fs/nfs/nfs_commonkrpc.c
  projects/clang400-import/sys/fs/nfs/nfs_commonport.c
  projects/clang400-import/sys/fs/nfs/nfs_commonsubs.c
  projects/clang400-import/sys/fs/nfs/nfs_var.h
  projects/clang400-import/sys/fs/nfs/nfsm_subs.h
  projects/clang400-import/sys/fs/nfs/nfsport.h
  projects/clang400-import/sys/fs/nfs/nfsproto.h
  projects/clang400-import/sys/fs/nfs/nfsrvcache.h
  projects/clang400-import/sys/fs/nfs/rpcv2.h
  projects/clang400-import/sys/fs/nfs/xdr_subs.h
  projects/clang400-import/sys/fs/nfsclient/nfs.h
  projects/clang400-import/sys/fs/nfsclient/nfs_clbio.c
  projects/clang400-import/sys/fs/nfsclient/nfs_clcomsubs.c
  projects/clang400-import/sys/fs/nfsclient/nfs_clkrpc.c
  projects/clang400-import/sys/fs/nfsclient/nfs_clnfsiod.c
  projects/clang400-import/sys/fs/nfsclient/nfs_clnode.c
  projects/clang400-import/sys/fs/nfsclient/nfs_clport.c
  projects/clang400-import/sys/fs/nfsclient/nfs_clrpcops.c
  projects/clang400-import/sys/fs/nfsclient/nfs_clsubs.c
  projects/clang400-import/sys/fs/nfsclient/nfs_clvfsops.c
  projects/clang400-import/sys/fs/nfsclient/nfs_clvnops.c
  projects/clang400-import/sys/fs/nfsclient/nfsmount.h
  projects/clang400-import/sys/fs/nfsclient/nfsnode.h
  projects/clang400-import/sys/fs/nfsserver/nfs_nfsdcache.c
  projects/clang400-import/sys/fs/nfsserver/nfs_nfsdkrpc.c
  projects/clang400-import/sys/fs/nfsserver/nfs_nfsdport.c
  projects/clang400-import/sys/fs/nfsserver/nfs_nfsdserv.c
  projects/clang400-import/sys/fs/nfsserver/nfs_nfsdsocket.c
  projects/clang400-import/sys/fs/nfsserver/nfs_nfsdsubs.c
  projects/clang400-import/sys/fs/nullfs/null.h
  projects/clang400-import/sys/fs/nullfs/null_subr.c
  projects/clang400-import/sys/fs/nullfs/null_vfsops.c
  projects/clang400-import/sys/fs/nullfs/null_vnops.c
  projects/clang400-import/sys/fs/procfs/procfs.h
  projects/clang400-import/sys/fs/procfs/procfs_dbregs.c
  projects/clang400-import/sys/fs/procfs/procfs_fpregs.c
  projects/clang400-import/sys/fs/procfs/procfs_map.c
  projects/clang400-import/sys/fs/procfs/procfs_mem.c
  projects/clang400-import/sys/fs/procfs/procfs_note.c
  projects/clang400-import/sys/fs/procfs/procfs_osrel.c
  projects/clang400-import/sys/fs/procfs/procfs_regs.c
  projects/clang400-import/sys/fs/procfs/procfs_status.c
  projects/clang400-import/sys/fs/procfs/procfs_type.c
  projects/clang400-import/sys/fs/unionfs/union.h
  projects/clang400-import/sys/fs/unionfs/union_subr.c
  projects/clang400-import/sys/fs/unionfs/union_vfsops.c
  projects/clang400-import/sys/fs/unionfs/union_vnops.c
  projects/clang400-import/sys/i386/i386/apic_vector.s
  projects/clang400-import/sys/i386/i386/atpic_vector.s
  projects/clang400-import/sys/i386/i386/exception.s
  projects/clang400-import/sys/i386/i386/genassym.c
  projects/clang400-import/sys/i386/i386/in_cksum.c
  projects/clang400-import/sys/i386/i386/locore.s
  projects/clang400-import/sys/i386/i386/machdep.c
  projects/clang400-import/sys/i386/i386/mem.c
  projects/clang400-import/sys/i386/i386/support.s
  projects/clang400-import/sys/i386/i386/swtch.s
  projects/clang400-import/sys/i386/include/asm.h
  projects/clang400-import/sys/i386/include/asmacros.h
  projects/clang400-import/sys/i386/include/cpu.h
  projects/clang400-import/sys/i386/include/cpufunc.h
  projects/clang400-import/sys/i386/include/exec.h
  projects/clang400-import/sys/i386/include/frame.h
  projects/clang400-import/sys/i386/include/limits.h
  projects/clang400-import/sys/i386/include/npx.h
  projects/clang400-import/sys/i386/include/param.h
  projects/clang400-import/sys/i386/include/pcb.h
  projects/clang400-import/sys/i386/include/pmap.h
  projects/clang400-import/sys/i386/include/proc.h
  projects/clang400-import/sys/i386/include/profile.h
  projects/clang400-import/sys/i386/include/reloc.h
  projects/clang400-import/sys/i386/include/segments.h
  projects/clang400-import/sys/i386/include/signal.h
  projects/clang400-import/sys/i386/include/tss.h
  projects/clang400-import/sys/i386/include/varargs.h
  projects/clang400-import/sys/i386/include/vmparam.h
  projects/clang400-import/sys/i386/isa/npx.c
  projects/clang400-import/sys/i386/linux/linux_support.s
  projects/clang400-import/sys/isa/isareg.h
  projects/clang400-import/sys/isa/rtc.h
  projects/clang400-import/sys/kern/kern_rwlock.c
  projects/clang400-import/sys/kern/kern_sx.c
  projects/clang400-import/sys/kern/subr_prf.c
  projects/clang400-import/sys/libkern/ashldi3.c
  projects/clang400-import/sys/libkern/ashrdi3.c
  projects/clang400-import/sys/libkern/bcmp.c
  projects/clang400-import/sys/libkern/bsearch.c
  projects/clang400-import/sys/libkern/cmpdi2.c
  projects/clang400-import/sys/libkern/divdi3.c
  projects/clang400-import/sys/libkern/fnmatch.c
  projects/clang400-import/sys/libkern/lshrdi3.c
  projects/clang400-import/sys/libkern/mcount.c
  projects/clang400-import/sys/libkern/memchr.c
  projects/clang400-import/sys/libkern/memcmp.c
  projects/clang400-import/sys/libkern/moddi3.c
  projects/clang400-import/sys/libkern/qdivrem.c
  projects/clang400-import/sys/libkern/qsort.c
  projects/clang400-import/sys/libkern/quad.h
  projects/clang400-import/sys/libkern/random.c
  projects/clang400-import/sys/libkern/scanc.c
  projects/clang400-import/sys/libkern/strcat.c
  projects/clang400-import/sys/libkern/strchr.c
  projects/clang400-import/sys/libkern/strcmp.c
  projects/clang400-import/sys/libkern/strcpy.c
  projects/clang400-import/sys/libkern/strncpy.c
  projects/clang400-import/sys/libkern/strrchr.c
  projects/clang400-import/sys/libkern/strsep.c
  projects/clang400-import/sys/libkern/strstr.c
  projects/clang400-import/sys/libkern/strtol.c
  projects/clang400-import/sys/libkern/strtoq.c
  projects/clang400-import/sys/libkern/strtoul.c
  projects/clang400-import/sys/libkern/strtouq.c
  projects/clang400-import/sys/libkern/ucmpdi2.c
  projects/clang400-import/sys/libkern/udivdi3.c
  projects/clang400-import/sys/libkern/umoddi3.c
  projects/clang400-import/sys/mips/conf/PICOSTATION_M2HP
  projects/clang400-import/sys/mips/conf/PICOSTATION_M2HP.hints
  projects/clang400-import/sys/mips/include/_align.h
  projects/clang400-import/sys/mips/include/_limits.h
  projects/clang400-import/sys/mips/include/asm.h
  projects/clang400-import/sys/mips/include/cpu.h
  projects/clang400-import/sys/mips/include/endian.h
  projects/clang400-import/sys/mips/include/exec.h
  projects/clang400-import/sys/mips/include/limits.h
  projects/clang400-import/sys/mips/include/mips_opcode.h
  projects/clang400-import/sys/mips/include/param.h
  projects/clang400-import/sys/mips/include/pcb.h
  projects/clang400-import/sys/mips/include/pmap.h
  projects/clang400-import/sys/mips/include/proc.h
  projects/clang400-import/sys/mips/include/profile.h
  projects/clang400-import/sys/mips/include/ptrace.h
  projects/clang400-import/sys/mips/include/reg.h
  projects/clang400-import/sys/mips/include/regnum.h
  projects/clang400-import/sys/mips/include/signal.h
  projects/clang400-import/sys/mips/include/sysarch.h
  projects/clang400-import/sys/mips/include/trap.h
  projects/clang400-import/sys/mips/include/ucontext.h
  projects/clang400-import/sys/mips/include/varargs.h
  projects/clang400-import/sys/mips/include/vmparam.h
  projects/clang400-import/sys/mips/mips/autoconf.c
  projects/clang400-import/sys/mips/mips/exception.S
  projects/clang400-import/sys/mips/mips/fp.S
  projects/clang400-import/sys/mips/mips/genassym.c
  projects/clang400-import/sys/mips/mips/locore.S
  projects/clang400-import/sys/mips/mips/machdep.c
  projects/clang400-import/sys/mips/mips/mem.c
  projects/clang400-import/sys/mips/mips/pm_machdep.c
  projects/clang400-import/sys/mips/mips/pmap.c
  projects/clang400-import/sys/mips/mips/swtch.S
  projects/clang400-import/sys/mips/mips/trap.c
  projects/clang400-import/sys/mips/mips/vm_machdep.c
  projects/clang400-import/sys/net/bpf.c
  projects/clang400-import/sys/net/bpf.h
  projects/clang400-import/sys/net/bpf_buffer.c
  projects/clang400-import/sys/net/bpf_filter.c
  projects/clang400-import/sys/net/bpfdesc.h
  projects/clang400-import/sys/net/if.c
  projects/clang400-import/sys/net/if.h
  projects/clang400-import/sys/net/if_arc.h
  projects/clang400-import/sys/net/if_arp.h
  projects/clang400-import/sys/net/if_clone.c
  projects/clang400-import/sys/net/if_clone.h
  projects/clang400-import/sys/net/if_disc.c
  projects/clang400-import/sys/net/if_dl.h
  projects/clang400-import/sys/net/if_edsc.c
  projects/clang400-import/sys/net/if_ethersubr.c
  projects/clang400-import/sys/net/if_fwsubr.c
  projects/clang400-import/sys/net/if_llc.h
  projects/clang400-import/sys/net/if_loop.c
  projects/clang400-import/sys/net/if_types.h
  projects/clang400-import/sys/net/if_var.h
  projects/clang400-import/sys/net/ifq.h
  projects/clang400-import/sys/net/radix.c
  projects/clang400-import/sys/net/radix.h
  projects/clang400-import/sys/net/raw_cb.c
  projects/clang400-import/sys/net/raw_cb.h
  projects/clang400-import/sys/net/raw_usrreq.c
  projects/clang400-import/sys/net/route.c
  projects/clang400-import/sys/net/route.h
  projects/clang400-import/sys/net/route_var.h
  projects/clang400-import/sys/net/rtsock.c
  projects/clang400-import/sys/net/slcompress.c
  projects/clang400-import/sys/net/slcompress.h
  projects/clang400-import/sys/netinet/icmp6.h
  projects/clang400-import/sys/netinet/icmp_var.h
  projects/clang400-import/sys/netinet/if_ether.c
  projects/clang400-import/sys/netinet/if_ether.h
  projects/clang400-import/sys/netinet/igmp.c
  projects/clang400-import/sys/netinet/igmp.h
  projects/clang400-import/sys/netinet/igmp_var.h
  projects/clang400-import/sys/netinet/in.c
  projects/clang400-import/sys/netinet/in.h
  projects/clang400-import/sys/netinet/in_cksum.c
  projects/clang400-import/sys/netinet/in_fib.c
  projects/clang400-import/sys/netinet/in_fib.h
  projects/clang400-import/sys/netinet/in_pcb.c
  projects/clang400-import/sys/netinet/in_pcb.h
  projects/clang400-import/sys/netinet/in_proto.c
  projects/clang400-import/sys/netinet/in_systm.h
  projects/clang400-import/sys/netinet/in_var.h
  projects/clang400-import/sys/netinet/ip.h
  projects/clang400-import/sys/netinet/ip6.h
  projects/clang400-import/sys/netinet/ip_divert.c
  projects/clang400-import/sys/netinet/ip_icmp.c
  projects/clang400-import/sys/netinet/ip_icmp.h
  projects/clang400-import/sys/netinet/ip_input.c
  projects/clang400-import/sys/netinet/ip_mroute.c
  projects/clang400-import/sys/netinet/ip_mroute.h
  projects/clang400-import/sys/netinet/ip_options.c
  projects/clang400-import/sys/netinet/ip_options.h
  projects/clang400-import/sys/netinet/ip_output.c
  projects/clang400-import/sys/netinet/ip_reass.c
  projects/clang400-import/sys/netinet/ip_var.h
  projects/clang400-import/sys/netinet/raw_ip.c
  projects/clang400-import/sys/netinet/sctp_syscalls.c
  projects/clang400-import/sys/netinet/tcp.h
  projects/clang400-import/sys/netinet/tcp_debug.c
  projects/clang400-import/sys/netinet/tcp_debug.h
  projects/clang400-import/sys/netinet/tcp_fsm.h
  projects/clang400-import/sys/netinet/tcp_input.c
  projects/clang400-import/sys/netinet/tcp_output.c
  projects/clang400-import/sys/netinet/tcp_reass.c
  projects/clang400-import/sys/netinet/tcp_seq.h
  projects/clang400-import/sys/netinet/tcp_stacks/fastpath.c
  projects/clang400-import/sys/netinet/tcp_subr.c
  projects/clang400-import/sys/netinet/tcp_syncache.h
  projects/clang400-import/sys/netinet/tcp_timer.c
  projects/clang400-import/sys/netinet/tcp_timer.h
  projects/clang400-import/sys/netinet/tcp_timewait.c
  projects/clang400-import/sys/netinet/tcp_usrreq.c
  projects/clang400-import/sys/netinet/tcp_var.h
  projects/clang400-import/sys/netinet/tcpip.h
  projects/clang400-import/sys/netinet/udp.h
  projects/clang400-import/sys/netinet/udp_usrreq.c
  projects/clang400-import/sys/netinet/udp_var.h
  projects/clang400-import/sys/netinet6/frag6.c
  projects/clang400-import/sys/netinet6/icmp6.c
  projects/clang400-import/sys/netinet6/in6.c
  projects/clang400-import/sys/netinet6/in6.h
  projects/clang400-import/sys/netinet6/in6_cksum.c
  projects/clang400-import/sys/netinet6/in6_fib.c
  projects/clang400-import/sys/netinet6/in6_fib.h
  projects/clang400-import/sys/netinet6/in6_pcb.c
  projects/clang400-import/sys/netinet6/in6_pcb.h
  projects/clang400-import/sys/netinet6/in6_proto.c
  projects/clang400-import/sys/netinet6/in6_src.c
  projects/clang400-import/sys/netinet6/in6_var.h
  projects/clang400-import/sys/netinet6/ip6_input.c
  projects/clang400-import/sys/netinet6/ip6_mroute.c
  projects/clang400-import/sys/netinet6/ip6_output.c
  projects/clang400-import/sys/netinet6/ip6_var.h
  projects/clang400-import/sys/netinet6/ip6protosw.h
  projects/clang400-import/sys/netinet6/mld6.c
  projects/clang400-import/sys/netinet6/raw_ip6.c
  projects/clang400-import/sys/netinet6/tcp6_var.h
  projects/clang400-import/sys/netinet6/udp6_usrreq.c
  projects/clang400-import/sys/netinet6/udp6_var.h
  projects/clang400-import/sys/nfs/nfs_common.h
  projects/clang400-import/sys/nfs/nfs_diskless.c
  projects/clang400-import/sys/nfs/nfs_nfssvc.c
  projects/clang400-import/sys/nfs/nfsdiskless.h
  projects/clang400-import/sys/nfs/nfsproto.h
  projects/clang400-import/sys/nfs/nfssvc.h
  projects/clang400-import/sys/nfs/xdr_subs.h
  projects/clang400-import/sys/nfsclient/nfs.h
  projects/clang400-import/sys/nfsclient/nfsargs.h
  projects/clang400-import/sys/nfsclient/nfsm_subs.h
  projects/clang400-import/sys/nfsclient/nfsmount.h
  projects/clang400-import/sys/nfsclient/nfsnode.h
  projects/clang400-import/sys/nfsclient/nfsstats.h
  projects/clang400-import/sys/nfsserver/nfs.h
  projects/clang400-import/sys/nfsserver/nfsm_subs.h
  projects/clang400-import/sys/nfsserver/nfsrvcache.h
  projects/clang400-import/sys/nfsserver/nfsrvstats.h
  projects/clang400-import/sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
  projects/clang400-import/sys/powerpc/include/_limits.h
  projects/clang400-import/sys/powerpc/include/endian.h
  projects/clang400-import/sys/powerpc/include/ieee.h
  projects/clang400-import/sys/powerpc/include/limits.h
  projects/clang400-import/sys/powerpc/include/ptrace.h
  projects/clang400-import/sys/powerpc/powerpc/bcopy.c
  projects/clang400-import/sys/powerpc/powerpc/genassym.c
  projects/clang400-import/sys/powerpc/powerpc/intr_machdep.c
  projects/clang400-import/sys/powerpc/powerpc/mem.c
  projects/clang400-import/sys/rpc/rpcm_subs.h
  projects/clang400-import/sys/sparc64/include/_types.h
  projects/clang400-import/sys/sparc64/include/asm.h
  projects/clang400-import/sys/sparc64/include/bus_common.h
  projects/clang400-import/sys/sparc64/include/cpu.h
  projects/clang400-import/sys/sparc64/include/endian.h
  projects/clang400-import/sys/sparc64/include/ieee.h
  projects/clang400-import/sys/sparc64/include/iommureg.h
  projects/clang400-import/sys/sparc64/include/pmap.h
  projects/clang400-import/sys/sparc64/include/proc.h
  projects/clang400-import/sys/sparc64/include/ptrace.h
  projects/clang400-import/sys/sparc64/include/reg.h
  projects/clang400-import/sys/sparc64/include/signal.h
  projects/clang400-import/sys/sparc64/include/sysarch.h
  projects/clang400-import/sys/sparc64/include/varargs.h
  projects/clang400-import/sys/sparc64/include/vmparam.h
  projects/clang400-import/sys/sparc64/sbus/sbusvar.h
  projects/clang400-import/sys/sparc64/sparc64/bus_machdep.c
  projects/clang400-import/sys/sparc64/sparc64/in_cksum.c
  projects/clang400-import/sys/sparc64/sparc64/intr_machdep.c
  projects/clang400-import/sys/sparc64/sparc64/machdep.c
  projects/clang400-import/sys/sparc64/sparc64/mem.c
  projects/clang400-import/sys/sparc64/sparc64/pmap.c
  projects/clang400-import/sys/sparc64/sparc64/trap.c
  projects/clang400-import/sys/sparc64/sparc64/vm_machdep.c
  projects/clang400-import/sys/sys/_callout.h
  projects/clang400-import/sys/sys/_iovec.h
  projects/clang400-import/sys/sys/_kstack_cache.h
  projects/clang400-import/sys/sys/_sigset.h
  projects/clang400-import/sys/sys/_sockaddr_storage.h
  projects/clang400-import/sys/sys/_termios.h
  projects/clang400-import/sys/sys/_timespec.h
  projects/clang400-import/sys/sys/acct.h
  projects/clang400-import/sys/sys/bio.h
  projects/clang400-import/sys/sys/bitstring.h
  projects/clang400-import/sys/sys/blist.h
  projects/clang400-import/sys/sys/buf.h
  projects/clang400-import/sys/sys/callout.h
  projects/clang400-import/sys/sys/cdefs.h
  projects/clang400-import/sys/sys/conf.h
  projects/clang400-import/sys/sys/cons.h
  projects/clang400-import/sys/sys/ctype.h
  projects/clang400-import/sys/sys/dir.h
  projects/clang400-import/sys/sys/dirent.h
  projects/clang400-import/sys/sys/disk/bsd.h
  projects/clang400-import/sys/sys/disk/mbr.h
  projects/clang400-import/sys/sys/disklabel.h
  projects/clang400-import/sys/sys/diskmbr.h
  projects/clang400-import/sys/sys/dkstat.h
  projects/clang400-import/sys/sys/domain.h
  projects/clang400-import/sys/sys/errno.h
  projects/clang400-import/sys/sys/exec.h
  projects/clang400-import/sys/sys/fbio.h
  projects/clang400-import/sys/sys/fcntl.h
  projects/clang400-import/sys/sys/file.h
  projects/clang400-import/sys/sys/filedesc.h
  projects/clang400-import/sys/sys/filio.h
  projects/clang400-import/sys/sys/gmon.h
  projects/clang400-import/sys/sys/imgact.h
  projects/clang400-import/sys/sys/imgact_aout.h
  projects/clang400-import/sys/sys/ioccom.h
  projects/clang400-import/sys/sys/ioctl.h
  projects/clang400-import/sys/sys/ioctl_compat.h
  projects/clang400-import/sys/sys/ipc.h
  projects/clang400-import/sys/sys/ktrace.h
  projects/clang400-import/sys/sys/libkern.h
  projects/clang400-import/sys/sys/limits.h
  projects/clang400-import/sys/sys/lock.h
  projects/clang400-import/sys/sys/lockf.h
  projects/clang400-import/sys/sys/malloc.h
  projects/clang400-import/sys/sys/mdioctl.h
  projects/clang400-import/sys/sys/mman.h
  projects/clang400-import/sys/sys/mount.h
  projects/clang400-import/sys/sys/msgbuf.h
  projects/clang400-import/sys/sys/mtio.h
  projects/clang400-import/sys/sys/mutex.h
  projects/clang400-import/sys/sys/namei.h
  projects/clang400-import/sys/sys/nlist_aout.h
  projects/clang400-import/sys/sys/numa.h
  projects/clang400-import/sys/sys/param.h
  projects/clang400-import/sys/sys/pcpu.h
  projects/clang400-import/sys/sys/proc.h
  projects/clang400-import/sys/sys/protosw.h
  projects/clang400-import/sys/sys/ptrace.h
  projects/clang400-import/sys/sys/queue.h
  projects/clang400-import/sys/sys/reboot.h
  projects/clang400-import/sys/sys/resource.h
  projects/clang400-import/sys/sys/resourcevar.h
  projects/clang400-import/sys/sys/select.h
  projects/clang400-import/sys/sys/selinfo.h
  projects/clang400-import/sys/sys/sigio.h
  projects/clang400-import/sys/sys/signal.h
  projects/clang400-import/sys/sys/signalvar.h
  projects/clang400-import/sys/sys/sockbuf.h
  projects/clang400-import/sys/sys/socket.h
  projects/clang400-import/sys/sys/socketvar.h
  projects/clang400-import/sys/sys/sockio.h
  projects/clang400-import/sys/sys/sockopt.h
  projects/clang400-import/sys/sys/sockstate.h
  projects/clang400-import/sys/sys/stat.h
  projects/clang400-import/sys/sys/sun_disklabel.h
  projects/clang400-import/sys/sys/sysctl.h
  projects/clang400-import/sys/sys/sysent.h
  projects/clang400-import/sys/sys/syslimits.h
  projects/clang400-import/sys/sys/syslog.h
  projects/clang400-import/sys/sys/systm.h
  projects/clang400-import/sys/sys/time.h
  projects/clang400-import/sys/sys/timeb.h
  projects/clang400-import/sys/sys/times.h
  projects/clang400-import/sys/sys/timespec.h
  projects/clang400-import/sys/sys/ttycom.h
  projects/clang400-import/sys/sys/ttydefaults.h
  projects/clang400-import/sys/sys/types.h
  projects/clang400-import/sys/sys/ucred.h
  projects/clang400-import/sys/sys/uio.h
  projects/clang400-import/sys/sys/un.h
  projects/clang400-import/sys/sys/unistd.h
  projects/clang400-import/sys/sys/unpcb.h
  projects/clang400-import/sys/sys/user.h
  projects/clang400-import/sys/sys/utsname.h
  projects/clang400-import/sys/sys/vmmeter.h
  projects/clang400-import/sys/sys/vnode.h
  projects/clang400-import/sys/sys/wait.h
  projects/clang400-import/sys/tools/makeobjops.awk
  projects/clang400-import/sys/tools/vnode_if.awk
  projects/clang400-import/sys/ufs/ffs/ffs_alloc.c
  projects/clang400-import/sys/ufs/ffs/ffs_balloc.c
  projects/clang400-import/sys/ufs/ffs/ffs_extern.h
  projects/clang400-import/sys/ufs/ffs/ffs_inode.c
  projects/clang400-import/sys/ufs/ffs/ffs_tables.c
  projects/clang400-import/sys/ufs/ffs/ffs_vfsops.c
  projects/clang400-import/sys/ufs/ffs/ffs_vnops.c
  projects/clang400-import/sys/ufs/ufs/inode.h
  projects/clang400-import/sys/ufs/ufs/quota.h
  projects/clang400-import/sys/ufs/ufs/ufs_bmap.c
  projects/clang400-import/sys/ufs/ufs/ufs_extern.h
  projects/clang400-import/sys/ufs/ufs/ufs_inode.c
  projects/clang400-import/sys/ufs/ufs/ufs_lookup.c
  projects/clang400-import/sys/ufs/ufs/ufs_quota.c
  projects/clang400-import/sys/ufs/ufs/ufs_vfsops.c
  projects/clang400-import/sys/ufs/ufs/ufs_vnops.c
  projects/clang400-import/sys/ufs/ufs/ufsmount.h
  projects/clang400-import/sys/vm/device_pager.c
  projects/clang400-import/sys/vm/pmap.h
  projects/clang400-import/sys/vm/swap_pager.h
  projects/clang400-import/sys/vm/vm.h
  projects/clang400-import/sys/vm/vm_extern.h
  projects/clang400-import/sys/vm/vm_glue.c
  projects/clang400-import/sys/vm/vm_init.c
  projects/clang400-import/sys/vm/vm_kern.c
  projects/clang400-import/sys/vm/vm_kern.h
  projects/clang400-import/sys/vm/vm_map.c
  projects/clang400-import/sys/vm/vm_map.h
  projects/clang400-import/sys/vm/vm_meter.c
  projects/clang400-import/sys/vm/vm_mmap.c
  projects/clang400-import/sys/vm/vm_object.c
  projects/clang400-import/sys/vm/vm_object.h
  projects/clang400-import/sys/vm/vm_page.c
  projects/clang400-import/sys/vm/vm_page.h
  projects/clang400-import/sys/vm/vm_pageout.h
  projects/clang400-import/sys/vm/vm_pager.c
  projects/clang400-import/sys/vm/vm_pager.h
  projects/clang400-import/sys/vm/vm_param.h
  projects/clang400-import/sys/vm/vm_unix.c
  projects/clang400-import/sys/vm/vnode_pager.h
  projects/clang400-import/sys/x86/include/_limits.h
  projects/clang400-import/sys/x86/include/endian.h
  projects/clang400-import/sys/x86/include/fpu.h
  projects/clang400-import/sys/x86/include/frame.h
  projects/clang400-import/sys/x86/include/psl.h
  projects/clang400-import/sys/x86/include/ptrace.h
  projects/clang400-import/sys/x86/include/reg.h
  projects/clang400-import/sys/x86/include/segments.h
  projects/clang400-import/sys/x86/include/signal.h
  projects/clang400-import/sys/x86/include/specialreg.h
  projects/clang400-import/sys/x86/include/sysarch.h
  projects/clang400-import/sys/x86/include/trap.h
  projects/clang400-import/sys/x86/isa/clock.c
  projects/clang400-import/sys/x86/isa/icu.h
  projects/clang400-import/sys/x86/isa/isa_dma.c
  projects/clang400-import/sys/x86/isa/nmi.c
  projects/clang400-import/sys/x86/x86/autoconf.c
  projects/clang400-import/sys/x86/x86/delay.c
  projects/clang400-import/tests/sys/netinet/fibs_test.sh
  projects/clang400-import/tools/regression/aio/aiop/aiop.c
  projects/clang400-import/usr.bin/apply/apply.1
  projects/clang400-import/usr.bin/apply/apply.c
  projects/clang400-import/usr.bin/banner/banner.6
  projects/clang400-import/usr.bin/banner/banner.c
  projects/clang400-import/usr.bin/basename/basename.1
  projects/clang400-import/usr.bin/basename/basename.c
  projects/clang400-import/usr.bin/biff/biff.1
  projects/clang400-import/usr.bin/biff/biff.c
  projects/clang400-import/usr.bin/calendar/calendar.1
  projects/clang400-import/usr.bin/calendar/calendar.c
  projects/clang400-import/usr.bin/calendar/calendar.h
  projects/clang400-import/usr.bin/calendar/day.c
  projects/clang400-import/usr.bin/calendar/io.c
  projects/clang400-import/usr.bin/calendar/locale.c
  projects/clang400-import/usr.bin/calendar/pathnames.h
  projects/clang400-import/usr.bin/calendar/pom.c
  projects/clang400-import/usr.bin/cap_mkdb/cap_mkdb.1
  projects/clang400-import/usr.bin/cap_mkdb/cap_mkdb.c
  projects/clang400-import/usr.bin/checknr/checknr.1
  projects/clang400-import/usr.bin/checknr/checknr.c
  projects/clang400-import/usr.bin/chpass/chpass.1
  projects/clang400-import/usr.bin/chpass/table.c
  projects/clang400-import/usr.bin/cksum/cksum.1
  projects/clang400-import/usr.bin/cksum/cksum.c
  projects/clang400-import/usr.bin/cksum/crc.c
  projects/clang400-import/usr.bin/cksum/extern.h
  projects/clang400-import/usr.bin/cksum/print.c
  projects/clang400-import/usr.bin/cksum/sum1.c
  projects/clang400-import/usr.bin/cksum/sum2.c
  projects/clang400-import/usr.bin/cmp/cmp.1
  projects/clang400-import/usr.bin/cmp/cmp.c
  projects/clang400-import/usr.bin/cmp/extern.h
  projects/clang400-import/usr.bin/cmp/misc.c
  projects/clang400-import/usr.bin/cmp/regular.c
  projects/clang400-import/usr.bin/cmp/special.c
  projects/clang400-import/usr.bin/col/col.1
  projects/clang400-import/usr.bin/col/col.c
  projects/clang400-import/usr.bin/colcrt/colcrt.1
  projects/clang400-import/usr.bin/colcrt/colcrt.c
  projects/clang400-import/usr.bin/colrm/colrm.1
  projects/clang400-import/usr.bin/colrm/colrm.c
  projects/clang400-import/usr.bin/column/column.1
  projects/clang400-import/usr.bin/column/column.c
  projects/clang400-import/usr.bin/comm/comm.1
  projects/clang400-import/usr.bin/comm/comm.c
  projects/clang400-import/usr.bin/compress/compress.1
  projects/clang400-import/usr.bin/compress/compress.c
  projects/clang400-import/usr.bin/compress/zopen.3
  projects/clang400-import/usr.bin/compress/zopen.c
  projects/clang400-import/usr.bin/ctags/C.c
  projects/clang400-import/usr.bin/ctags/ctags.1
  projects/clang400-import/usr.bin/ctags/ctags.c
  projects/clang400-import/usr.bin/ctags/ctags.h
  projects/clang400-import/usr.bin/ctags/fortran.c
  projects/clang400-import/usr.bin/ctags/lisp.c
  projects/clang400-import/usr.bin/ctags/print.c
  projects/clang400-import/usr.bin/ctags/tree.c
  projects/clang400-import/usr.bin/ctags/yacc.c
  projects/clang400-import/usr.bin/cut/cut.1
  projects/clang400-import/usr.bin/cut/cut.c
  projects/clang400-import/usr.bin/dirname/dirname.c
  projects/clang400-import/usr.bin/du/du.1
  projects/clang400-import/usr.bin/du/du.c
  projects/clang400-import/usr.bin/env/env.1
  projects/clang400-import/usr.bin/env/env.c
  projects/clang400-import/usr.bin/expand/expand.1
  projects/clang400-import/usr.bin/expand/expand.c
  projects/clang400-import/usr.bin/false/false.1
  projects/clang400-import/usr.bin/false/false.c
  projects/clang400-import/usr.bin/find/extern.h
  projects/clang400-import/usr.bin/find/find.1
  projects/clang400-import/usr.bin/find/find.c
  projects/clang400-import/usr.bin/find/find.h
  projects/clang400-import/usr.bin/find/function.c
  projects/clang400-import/usr.bin/find/ls.c
  projects/clang400-import/usr.bin/find/main.c
  projects/clang400-import/usr.bin/find/misc.c
  projects/clang400-import/usr.bin/find/operator.c
  projects/clang400-import/usr.bin/find/option.c
  projects/clang400-import/usr.bin/finger/extern.h
  projects/clang400-import/usr.bin/finger/finger.1
  projects/clang400-import/usr.bin/finger/finger.c
  projects/clang400-import/usr.bin/finger/finger.h
  projects/clang400-import/usr.bin/finger/lprint.c
  projects/clang400-import/usr.bin/finger/net.c
  projects/clang400-import/usr.bin/finger/sprint.c
  projects/clang400-import/usr.bin/finger/util.c
  projects/clang400-import/usr.bin/fmt/fmt.1
  projects/clang400-import/usr.bin/fold/fold.1
  projects/clang400-import/usr.bin/fold/fold.c
  projects/clang400-import/usr.bin/from/from.1
  projects/clang400-import/usr.bin/from/from.c
  projects/clang400-import/usr.bin/fstat/fstat.1
  projects/clang400-import/usr.bin/fstat/fstat.c
  projects/clang400-import/usr.bin/gcore/extern.h
  projects/clang400-import/usr.bin/gcore/gcore.1
  projects/clang400-import/usr.bin/gcore/gcore.c
  projects/clang400-import/usr.bin/gprof/amd64.h
  projects/clang400-import/usr.bin/gprof/aout.c
  projects/clang400-import/usr.bin/gprof/arcs.c
  projects/clang400-import/usr.bin/gprof/arm.h
  projects/clang400-import/usr.bin/gprof/dfn.c
  projects/clang400-import/usr.bin/gprof/elf.c
  projects/clang400-import/usr.bin/gprof/gprof.1
  projects/clang400-import/usr.bin/gprof/gprof.c
  projects/clang400-import/usr.bin/gprof/gprof.h
  projects/clang400-import/usr.bin/gprof/hertz.c
  projects/clang400-import/usr.bin/gprof/i386.h
  projects/clang400-import/usr.bin/gprof/lookup.c
  projects/clang400-import/usr.bin/gprof/mips.h
  projects/clang400-import/usr.bin/gprof/pathnames.h
  projects/clang400-import/usr.bin/gprof/powerpc.h
  projects/clang400-import/usr.bin/gprof/printgprof.c
  projects/clang400-import/usr.bin/gprof/printlist.c
  projects/clang400-import/usr.bin/gprof/sparc64.h
  projects/clang400-import/usr.bin/head/head.1
  projects/clang400-import/usr.bin/head/head.c
  projects/clang400-import/usr.bin/hexdump/conv.c
  projects/clang400-import/usr.bin/hexdump/display.c
  projects/clang400-import/usr.bin/hexdump/hexdump.1
  projects/clang400-import/usr.bin/hexdump/hexdump.c
  projects/clang400-import/usr.bin/hexdump/hexdump.h
  projects/clang400-import/usr.bin/hexdump/hexsyntax.c
  projects/clang400-import/usr.bin/hexdump/od.1
  projects/clang400-import/usr.bin/hexdump/odsyntax.c
  projects/clang400-import/usr.bin/hexdump/parse.c
  projects/clang400-import/usr.bin/id/groups.1
  projects/clang400-import/usr.bin/id/id.1
  projects/clang400-import/usr.bin/id/id.c
  projects/clang400-import/usr.bin/id/whoami.1
  projects/clang400-import/usr.bin/join/join.1
  projects/clang400-import/usr.bin/join/join.c
  projects/clang400-import/usr.bin/jot/jot.1
  projects/clang400-import/usr.bin/jot/jot.c
  projects/clang400-import/usr.bin/kdump/kdump.1
  projects/clang400-import/usr.bin/kdump/kdump.c
  projects/clang400-import/usr.bin/ktrace/ktrace.1
  projects/clang400-import/usr.bin/ktrace/ktrace.c
  projects/clang400-import/usr.bin/ktrace/ktrace.h
  projects/clang400-import/usr.bin/ktrace/subr.c
  projects/clang400-import/usr.bin/lam/lam.1
  projects/clang400-import/usr.bin/lam/lam.c
  projects/clang400-import/usr.bin/last/last.1
  projects/clang400-import/usr.bin/last/last.c
  projects/clang400-import/usr.bin/lastcomm/lastcomm.1
  projects/clang400-import/usr.bin/lastcomm/lastcomm.c
  projects/clang400-import/usr.bin/lastcomm/pathnames.h
  projects/clang400-import/usr.bin/leave/leave.1
  projects/clang400-import/usr.bin/leave/leave.c
  projects/clang400-import/usr.bin/locate/locate/pathnames.h
  projects/clang400-import/usr.bin/lock/lock.1
  projects/clang400-import/usr.bin/lock/lock.c
  projects/clang400-import/usr.bin/logger/logger.1
  projects/clang400-import/usr.bin/logger/logger.c
  projects/clang400-import/usr.bin/login/login.1
  projects/clang400-import/usr.bin/login/pathnames.h
  projects/clang400-import/usr.bin/logname/logname.1
  projects/clang400-import/usr.bin/logname/logname.c
  projects/clang400-import/usr.bin/look/look.1
  projects/clang400-import/usr.bin/look/look.c
  projects/clang400-import/usr.bin/look/pathnames.h
  projects/clang400-import/usr.bin/lorder/lorder.1
  projects/clang400-import/usr.bin/lorder/lorder.sh
  projects/clang400-import/usr.bin/mail/cmd1.c
  projects/clang400-import/usr.bin/mail/cmd2.c
  projects/clang400-import/usr.bin/mail/cmd3.c
  projects/clang400-import/usr.bin/mail/cmdtab.c
  projects/clang400-import/usr.bin/mail/collect.c
  projects/clang400-import/usr.bin/mail/def.h
  projects/clang400-import/usr.bin/mail/edit.c
  projects/clang400-import/usr.bin/mail/extern.h
  projects/clang400-import/usr.bin/mail/fio.c
  projects/clang400-import/usr.bin/mail/getname.c
  projects/clang400-import/usr.bin/mail/glob.h
  projects/clang400-import/usr.bin/mail/head.c
  projects/clang400-import/usr.bin/mail/lex.c
  projects/clang400-import/usr.bin/mail/list.c
  projects/clang400-import/usr.bin/mail/mail.1
  projects/clang400-import/usr.bin/mail/main.c
  projects/clang400-import/usr.bin/mail/names.c
  projects/clang400-import/usr.bin/mail/pathnames.h
  projects/clang400-import/usr.bin/mail/popen.c
  projects/clang400-import/usr.bin/mail/quit.c
  projects/clang400-import/usr.bin/mail/rcv.h
  projects/clang400-import/usr.bin/mail/send.c
  projects/clang400-import/usr.bin/mail/strings.c
  projects/clang400-import/usr.bin/mail/temp.c
  projects/clang400-import/usr.bin/mail/tty.c
  projects/clang400-import/usr.bin/mail/util.c
  projects/clang400-import/usr.bin/mail/v7.local.c
  projects/clang400-import/usr.bin/mail/vars.c
  projects/clang400-import/usr.bin/mail/version.c
  projects/clang400-import/usr.bin/mesg/mesg.1
  projects/clang400-import/usr.bin/mkdep/mkdep.1
  projects/clang400-import/usr.bin/mkdep/mkdep.gcc.sh
  projects/clang400-import/usr.bin/mkdep/mkdep.sh
  projects/clang400-import/usr.bin/mkfifo/mkfifo.1
  projects/clang400-import/usr.bin/mkfifo/mkfifo.c
  projects/clang400-import/usr.bin/mklocale/extern.h
  projects/clang400-import/usr.bin/mklocale/ldef.h
  projects/clang400-import/usr.bin/mklocale/lex.l
  projects/clang400-import/usr.bin/mklocale/mklocale.1
  projects/clang400-import/usr.bin/mklocale/yacc.y
  projects/clang400-import/usr.bin/mkstr/mkstr.1
  projects/clang400-import/usr.bin/mkstr/mkstr.c
  projects/clang400-import/usr.bin/mktemp/mktemp.1
  projects/clang400-import/usr.bin/msgs/msgs.1
  projects/clang400-import/usr.bin/msgs/msgs.c
  projects/clang400-import/usr.bin/msgs/pathnames.h
  projects/clang400-import/usr.bin/mt/mt.1
  projects/clang400-import/usr.bin/mt/mt.c
  projects/clang400-import/usr.bin/netstat/flowtable.c
  projects/clang400-import/usr.bin/netstat/if.c
  projects/clang400-import/usr.bin/netstat/inet.c
  projects/clang400-import/usr.bin/netstat/inet6.c
  projects/clang400-import/usr.bin/netstat/ipsec.c
  projects/clang400-import/usr.bin/netstat/main.c
  projects/clang400-import/usr.bin/netstat/netstat.1
  projects/clang400-import/usr.bin/netstat/netstat.h
  projects/clang400-import/usr.bin/netstat/pfkey.c
  projects/clang400-import/usr.bin/netstat/route.c
  projects/clang400-import/usr.bin/netstat/unix.c
  projects/clang400-import/usr.bin/nfsstat/nfsstat.1
  projects/clang400-import/usr.bin/nfsstat/nfsstat.c
  projects/clang400-import/usr.bin/nice/nice.1
  projects/clang400-import/usr.bin/nice/nice.c
  projects/clang400-import/usr.bin/nohup/nohup.1
  projects/clang400-import/usr.bin/nohup/nohup.c
  projects/clang400-import/usr.bin/pagesize/pagesize.1
  projects/clang400-import/usr.bin/pagesize/pagesize.sh
  projects/clang400-import/usr.bin/passwd/passwd.1
  projects/clang400-import/usr.bin/paste/paste.1
  projects/clang400-import/usr.bin/paste/paste.c
  projects/clang400-import/usr.bin/printenv/printenv.1
  projects/clang400-import/usr.bin/printenv/printenv.c
  projects/clang400-import/usr.bin/printf/printf.1
  projects/clang400-import/usr.bin/printf/printf.c
  projects/clang400-import/usr.bin/quota/quota.1
  projects/clang400-import/usr.bin/quota/quota.c
  projects/clang400-import/usr.bin/renice/renice.8
  projects/clang400-import/usr.bin/renice/renice.c
  projects/clang400-import/usr.bin/rev/rev.1
  projects/clang400-import/usr.bin/rev/rev.c
  projects/clang400-import/usr.bin/rlogin/rlogin.1
  projects/clang400-import/usr.bin/rs/rs.1
  projects/clang400-import/usr.bin/rs/rs.c
  projects/clang400-import/usr.bin/rsh/rsh.1
  projects/clang400-import/usr.bin/rup/rup.1
  projects/clang400-import/usr.bin/ruptime/ruptime.1
  projects/clang400-import/usr.bin/ruptime/ruptime.c
  projects/clang400-import/usr.bin/rusers/rusers.1
  projects/clang400-import/usr.bin/rwall/rwall.1
  projects/clang400-import/usr.bin/rwho/rwho.1
  projects/clang400-import/usr.bin/rwho/rwho.c
  projects/clang400-import/usr.bin/script/script.1
  projects/clang400-import/usr.bin/script/script.c
  projects/clang400-import/usr.bin/sed/compile.c
  projects/clang400-import/usr.bin/sed/defs.h
  projects/clang400-import/usr.bin/sed/extern.h
  projects/clang400-import/usr.bin/sed/main.c
  projects/clang400-import/usr.bin/sed/misc.c
  projects/clang400-import/usr.bin/sed/process.c
  projects/clang400-import/usr.bin/sed/sed.1
  projects/clang400-import/usr.bin/sed/tests/multi_test.sh
  projects/clang400-import/usr.bin/shar/shar.1
  projects/clang400-import/usr.bin/shar/shar.sh
  projects/clang400-import/usr.bin/showmount/showmount.8
  projects/clang400-import/usr.bin/showmount/showmount.c
  projects/clang400-import/usr.bin/split/split.1
  projects/clang400-import/usr.bin/split/split.c
  projects/clang400-import/usr.bin/su/su.1
  projects/clang400-import/usr.bin/su/su.c
  projects/clang400-import/usr.bin/systat/cmds.c
  projects/clang400-import/usr.bin/systat/cmdtab.c
  projects/clang400-import/usr.bin/systat/devs.c
  projects/clang400-import/usr.bin/systat/extern.h
  projects/clang400-import/usr.bin/systat/fetch.c
  projects/clang400-import/usr.bin/systat/icmp.c
  projects/clang400-import/usr.bin/systat/icmp6.c
  projects/clang400-import/usr.bin/systat/iostat.c
  projects/clang400-import/usr.bin/systat/ip.c
  projects/clang400-import/usr.bin/systat/ip6.c
  projects/clang400-import/usr.bin/systat/keyboard.c
  projects/clang400-import/usr.bin/systat/main.c
  projects/clang400-import/usr.bin/systat/netcmds.c
  projects/clang400-import/usr.bin/systat/netstat.c
  projects/clang400-import/usr.bin/systat/pigs.c
  projects/clang400-import/usr.bin/systat/sctp.c
  projects/clang400-import/usr.bin/systat/swap.c
  projects/clang400-import/usr.bin/systat/systat.1
  projects/clang400-import/usr.bin/systat/systat.h
  projects/clang400-import/usr.bin/systat/tcp.c
  projects/clang400-import/usr.bin/systat/vmstat.c
  projects/clang400-import/usr.bin/systat/zarc.c
  projects/clang400-import/usr.bin/tail/extern.h
  projects/clang400-import/usr.bin/tail/forward.c
  projects/clang400-import/usr.bin/tail/misc.c
  projects/clang400-import/usr.bin/tail/read.c
  projects/clang400-import/usr.bin/tail/reverse.c
  projects/clang400-import/usr.bin/tail/tail.1
  projects/clang400-import/usr.bin/tail/tail.c
  projects/clang400-import/usr.bin/talk/ctl.c
  projects/clang400-import/usr.bin/talk/ctl_transact.c
  projects/clang400-import/usr.bin/talk/display.c
  projects/clang400-import/usr.bin/talk/get_addrs.c
  projects/clang400-import/usr.bin/talk/get_names.c
  projects/clang400-import/usr.bin/talk/init_disp.c
  projects/clang400-import/usr.bin/talk/invite.c
  projects/clang400-import/usr.bin/talk/io.c
  projects/clang400-import/usr.bin/talk/look_up.c
  projects/clang400-import/usr.bin/talk/msgs.c
  projects/clang400-import/usr.bin/talk/talk.1
  projects/clang400-import/usr.bin/talk/talk.c
  projects/clang400-import/usr.bin/talk/talk.h
  projects/clang400-import/usr.bin/talk/talk_ctl.h
  projects/clang400-import/usr.bin/tcopy/tcopy.1
  projects/clang400-import/usr.bin/tcopy/tcopy.c
  projects/clang400-import/usr.bin/tee/tee.1
  projects/clang400-import/usr.bin/tee/tee.c
  projects/clang400-import/usr.bin/tftp/main.c
  projects/clang400-import/usr.bin/tftp/tftp.1
  projects/clang400-import/usr.bin/tftp/tftp.c
  projects/clang400-import/usr.bin/tftp/tftp.h
  projects/clang400-import/usr.bin/time/time.1
  projects/clang400-import/usr.bin/time/time.c
  projects/clang400-import/usr.bin/touch/touch.1
  projects/clang400-import/usr.bin/touch/touch.c
  projects/clang400-import/usr.bin/tput/clear.sh
  projects/clang400-import/usr.bin/tput/tput.1
  projects/clang400-import/usr.bin/tput/tput.c
  projects/clang400-import/usr.bin/tr/extern.h
  projects/clang400-import/usr.bin/tr/str.c
  projects/clang400-import/usr.bin/tr/tr.1
  projects/clang400-import/usr.bin/tr/tr.c
  projects/clang400-import/usr.bin/true/true.1
  projects/clang400-import/usr.bin/true/true.c
  projects/clang400-import/usr.bin/tset/extern.h
  projects/clang400-import/usr.bin/tset/map.c
  projects/clang400-import/usr.bin/tset/misc.c
  projects/clang400-import/usr.bin/tset/set.c
  projects/clang400-import/usr.bin/tset/term.c
  projects/clang400-import/usr.bin/tset/tset.1
  projects/clang400-import/usr.bin/tset/tset.c
  projects/clang400-import/usr.bin/tset/wrterm.c
  projects/clang400-import/usr.bin/tsort/tsort.1
  projects/clang400-import/usr.bin/tsort/tsort.c
  projects/clang400-import/usr.bin/tty/tty.1
  projects/clang400-import/usr.bin/tty/tty.c
  projects/clang400-import/usr.bin/uname/uname.1
  projects/clang400-import/usr.bin/unexpand/unexpand.c
  projects/clang400-import/usr.bin/uniq/uniq.1
  projects/clang400-import/usr.bin/uniq/uniq.c
  projects/clang400-import/usr.bin/users/users.1
  projects/clang400-import/usr.bin/users/users.cc
  projects/clang400-import/usr.bin/uudecode/uudecode.c
  projects/clang400-import/usr.bin/uuencode/uuencode.1
  projects/clang400-import/usr.bin/uuencode/uuencode.c
  projects/clang400-import/usr.bin/uuencode/uuencode.format.5
  projects/clang400-import/usr.bin/vgrind/extern.h
  projects/clang400-import/usr.bin/vgrind/pathnames.h
  projects/clang400-import/usr.bin/vgrind/regexp.c
  projects/clang400-import/usr.bin/vgrind/vfontedpr.c
  projects/clang400-import/usr.bin/vgrind/vgrind.1
  projects/clang400-import/usr.bin/vgrind/vgrind.sh
  projects/clang400-import/usr.bin/vgrind/vgrindefs.5
  projects/clang400-import/usr.bin/vgrind/vgrindefs.src
  projects/clang400-import/usr.bin/vmstat/vmstat.8
  projects/clang400-import/usr.bin/vmstat/vmstat.c
  projects/clang400-import/usr.bin/w/extern.h
  projects/clang400-import/usr.bin/w/pr_time.c
  projects/clang400-import/usr.bin/w/proc_compare.c
  projects/clang400-import/usr.bin/w/uptime.1
  projects/clang400-import/usr.bin/w/w.1
  projects/clang400-import/usr.bin/w/w.c
  projects/clang400-import/usr.bin/wall/ttymsg.c
  projects/clang400-import/usr.bin/wall/wall.1
  projects/clang400-import/usr.bin/wall/wall.c
  projects/clang400-import/usr.bin/wc/wc.1
  projects/clang400-import/usr.bin/wc/wc.c
  projects/clang400-import/usr.bin/what/what.1
  projects/clang400-import/usr.bin/what/what.c
  projects/clang400-import/usr.bin/who/who.1
  projects/clang400-import/usr.bin/whois/whois.1
  projects/clang400-import/usr.bin/whois/whois.c
  projects/clang400-import/usr.bin/write/write.1
  projects/clang400-import/usr.bin/write/write.c
  projects/clang400-import/usr.bin/xargs/pathnames.h
  projects/clang400-import/usr.bin/xargs/xargs.1
  projects/clang400-import/usr.bin/xargs/xargs.c
  projects/clang400-import/usr.bin/xstr/pathnames.h
  projects/clang400-import/usr.bin/xstr/xstr.1
  projects/clang400-import/usr.bin/xstr/xstr.c
  projects/clang400-import/usr.bin/yes/yes.1
  projects/clang400-import/usr.bin/yes/yes.c
  projects/clang400-import/usr.sbin/accton/accton.c
  projects/clang400-import/usr.sbin/arp/arp.4
  projects/clang400-import/usr.sbin/arp/arp.8
  projects/clang400-import/usr.sbin/arp/arp.c
  projects/clang400-import/usr.sbin/autofs/popen.c
  projects/clang400-import/usr.sbin/chown/chgrp.1
  projects/clang400-import/usr.sbin/chown/chown.8
  projects/clang400-import/usr.sbin/chown/chown.c
  projects/clang400-import/usr.sbin/chroot/chroot.8
  projects/clang400-import/usr.sbin/chroot/chroot.c
  projects/clang400-import/usr.sbin/config/config.8
  projects/clang400-import/usr.sbin/config/config.h
  projects/clang400-import/usr.sbin/config/config.y
  projects/clang400-import/usr.sbin/config/lang.l
  projects/clang400-import/usr.sbin/config/main.c
  projects/clang400-import/usr.sbin/config/mkheaders.c
  projects/clang400-import/usr.sbin/config/mkmakefile.c
  projects/clang400-import/usr.sbin/config/mkoptions.c
  projects/clang400-import/usr.sbin/edquota/edquota.8
  projects/clang400-import/usr.sbin/edquota/edquota.c
  projects/clang400-import/usr.sbin/edquota/pathnames.h
  projects/clang400-import/usr.sbin/fifolog/fifolog_create/Makefile
  projects/clang400-import/usr.sbin/fifolog/fifolog_reader/Makefile
  projects/clang400-import/usr.sbin/fifolog/fifolog_writer/Makefile
  projects/clang400-import/usr.sbin/fmtree/mtree.8
  projects/clang400-import/usr.sbin/fstyp/Makefile
  projects/clang400-import/usr.sbin/gpioctl/gpioctl.8
  projects/clang400-import/usr.sbin/ifmcstat/printb.c
  projects/clang400-import/usr.sbin/inetd/inetd.8
  projects/clang400-import/usr.sbin/inetd/inetd.c
  projects/clang400-import/usr.sbin/inetd/inetd.h
  projects/clang400-import/usr.sbin/inetd/pathnames.h
  projects/clang400-import/usr.sbin/iostat/iostat.8
  projects/clang400-import/usr.sbin/kgmon/kgmon.8
  projects/clang400-import/usr.sbin/kgmon/kgmon.c
  projects/clang400-import/usr.sbin/lpr/chkprintcap/Makefile
  projects/clang400-import/usr.sbin/lpr/common_source/displayq.c
  projects/clang400-import/usr.sbin/lpr/common_source/lp.h
  projects/clang400-import/usr.sbin/lpr/common_source/lp.local.h
  projects/clang400-import/usr.sbin/lpr/common_source/pathnames.h
  projects/clang400-import/usr.sbin/lpr/common_source/rmjob.c
  projects/clang400-import/usr.sbin/lpr/common_source/startdaemon.c
  projects/clang400-import/usr.sbin/lpr/filters.ru/koi2855/Makefile
  projects/clang400-import/usr.sbin/lpr/filters.ru/koi2alt/Makefile
  projects/clang400-import/usr.sbin/lpr/filters/Makefile
  projects/clang400-import/usr.sbin/lpr/filters/lpf.c
  projects/clang400-import/usr.sbin/lpr/lpc/Makefile
  projects/clang400-import/usr.sbin/lpr/lpc/cmds.c
  projects/clang400-import/usr.sbin/lpr/lpc/cmdtab.c
  projects/clang400-import/usr.sbin/lpr/lpc/extern.h
  projects/clang400-import/usr.sbin/lpr/lpc/lpc.8
  projects/clang400-import/usr.sbin/lpr/lpc/lpc.c
  projects/clang400-import/usr.sbin/lpr/lpc/lpc.h
  projects/clang400-import/usr.sbin/lpr/lpd/Makefile
  projects/clang400-import/usr.sbin/lpr/lpd/extern.h
  projects/clang400-import/usr.sbin/lpr/lpd/lpd.8
  projects/clang400-import/usr.sbin/lpr/lpd/lpd.c
  projects/clang400-import/usr.sbin/lpr/lpd/lpdchar.c
  projects/clang400-import/usr.sbin/lpr/lpd/modes.c
  projects/clang400-import/usr.sbin/lpr/lpd/printjob.c
  projects/clang400-import/usr.sbin/lpr/lpd/recvjob.c
  projects/clang400-import/usr.sbin/lpr/lpq/Makefile
  projects/clang400-import/usr.sbin/lpr/lpq/lpq.1
  projects/clang400-import/usr.sbin/lpr/lpq/lpq.c
  projects/clang400-import/usr.sbin/lpr/lpr/Makefile
  projects/clang400-import/usr.sbin/lpr/lpr/lpr.1
  projects/clang400-import/usr.sbin/lpr/lpr/printcap.5
  projects/clang400-import/usr.sbin/lpr/lprm/Makefile
  projects/clang400-import/usr.sbin/lpr/lprm/lprm.1
  projects/clang400-import/usr.sbin/lpr/lprm/lprm.c
  projects/clang400-import/usr.sbin/lpr/lptest/Makefile
  projects/clang400-import/usr.sbin/lpr/lptest/lptest.1
  projects/clang400-import/usr.sbin/lpr/lptest/lptest.c
  projects/clang400-import/usr.sbin/lpr/pac/Makefile
  projects/clang400-import/usr.sbin/lpr/pac/pac.8
  projects/clang400-import/usr.sbin/lpr/pac/pac.c
  projects/clang400-import/usr.sbin/mountd/exports.5
  projects/clang400-import/usr.sbin/mountd/mountd.8
  projects/clang400-import/usr.sbin/mountd/mountd.c
  projects/clang400-import/usr.sbin/mountd/netgroup.5
  projects/clang400-import/usr.sbin/mountd/pathnames.h
  projects/clang400-import/usr.sbin/ndp/ndp.c
  projects/clang400-import/usr.sbin/nfsd/nfsd.8
  projects/clang400-import/usr.sbin/nfsd/nfsd.c
  projects/clang400-import/usr.sbin/nmtree/mtree.5
  projects/clang400-import/usr.sbin/nologin/nologin.5
  projects/clang400-import/usr.sbin/nologin/nologin.8
  projects/clang400-import/usr.sbin/ntp/doc/Makefile
  projects/clang400-import/usr.sbin/ntp/doc/drivers/Makefile
  projects/clang400-import/usr.sbin/ntp/doc/drivers/icons/Makefile
  projects/clang400-import/usr.sbin/ntp/doc/drivers/scripts/Makefile
  projects/clang400-import/usr.sbin/ntp/doc/hints/Makefile
  projects/clang400-import/usr.sbin/ntp/doc/icons/Makefile
  projects/clang400-import/usr.sbin/ntp/doc/pic/Makefile
  projects/clang400-import/usr.sbin/ntp/doc/scripts/Makefile
  projects/clang400-import/usr.sbin/ntp/libntp/Makefile
  projects/clang400-import/usr.sbin/ntp/libntpevent/Makefile
  projects/clang400-import/usr.sbin/ntp/libopts/Makefile
  projects/clang400-import/usr.sbin/ntp/libparse/Makefile
  projects/clang400-import/usr.sbin/ntp/ntp-keygen/Makefile
  projects/clang400-import/usr.sbin/ntp/ntpd/Makefile
  projects/clang400-import/usr.sbin/ntp/ntpdate/Makefile
  projects/clang400-import/usr.sbin/ntp/ntpdc/Makefile
  projects/clang400-import/usr.sbin/ntp/ntpq/Makefile
  projects/clang400-import/usr.sbin/ntp/ntptime/Makefile
  projects/clang400-import/usr.sbin/ntp/sntp/Makefile
  projects/clang400-import/usr.sbin/pstat/pstat.8
  projects/clang400-import/usr.sbin/pstat/pstat.c
  projects/clang400-import/usr.sbin/pwd_mkdb/pwd_mkdb.8
  projects/clang400-import/usr.sbin/pwd_mkdb/pwd_mkdb.c
  projects/clang400-import/usr.sbin/quotaon/quotaon.8
  projects/clang400-import/usr.sbin/quotaon/quotaon.c
  projects/clang400-import/usr.sbin/repquota/repquota.8
  projects/clang400-import/usr.sbin/repquota/repquota.c
  projects/clang400-import/usr.sbin/rmt/rmt.8
  projects/clang400-import/usr.sbin/rmt/rmt.c
  projects/clang400-import/usr.sbin/rpc.lockd/Makefile
  projects/clang400-import/usr.sbin/rpc.statd/Makefile
  projects/clang400-import/usr.sbin/rpc.yppasswdd/Makefile
  projects/clang400-import/usr.sbin/rpc.ypupdated/Makefile
  projects/clang400-import/usr.sbin/rpc.ypxfrd/Makefile
  projects/clang400-import/usr.sbin/rtadvd/advcap.c
  projects/clang400-import/usr.sbin/rwhod/rwhod.8
  projects/clang400-import/usr.sbin/rwhod/rwhod.c
  projects/clang400-import/usr.sbin/setfib/setfib.c
  projects/clang400-import/usr.sbin/syslogd/pathnames.h
  projects/clang400-import/usr.sbin/syslogd/syslog.conf.5
  projects/clang400-import/usr.sbin/syslogd/syslogd.8
  projects/clang400-import/usr.sbin/syslogd/syslogd.c
  projects/clang400-import/usr.sbin/tcpdchk/Makefile
  projects/clang400-import/usr.sbin/tcpdmatch/Makefile
  projects/clang400-import/usr.sbin/timed/timed/acksend.c
  projects/clang400-import/usr.sbin/timed/timed/byteorder.c
  projects/clang400-import/usr.sbin/timed/timed/candidate.c
  projects/clang400-import/usr.sbin/timed/timed/cksum.c
  projects/clang400-import/usr.sbin/timed/timed/correct.c
  projects/clang400-import/usr.sbin/timed/timed/extern.h
  projects/clang400-import/usr.sbin/timed/timed/globals.h
  projects/clang400-import/usr.sbin/timed/timed/master.c
  projects/clang400-import/usr.sbin/timed/timed/measure.c
  projects/clang400-import/usr.sbin/timed/timed/networkdelta.c
  projects/clang400-import/usr.sbin/timed/timed/pathnames.h
  projects/clang400-import/usr.sbin/timed/timed/readmsg.c
  projects/clang400-import/usr.sbin/timed/timed/slave.c
  projects/clang400-import/usr.sbin/timed/timed/timed.8
  projects/clang400-import/usr.sbin/timed/timed/timed.c
  projects/clang400-import/usr.sbin/timed/timedc/cmds.c
  projects/clang400-import/usr.sbin/timed/timedc/cmdtab.c
  projects/clang400-import/usr.sbin/timed/timedc/extern.h
  projects/clang400-import/usr.sbin/timed/timedc/timedc.8
  projects/clang400-import/usr.sbin/timed/timedc/timedc.c
  projects/clang400-import/usr.sbin/timed/timedc/timedc.h
  projects/clang400-import/usr.sbin/traceroute/Makefile
  projects/clang400-import/usr.sbin/traceroute6/Makefile
  projects/clang400-import/usr.sbin/traceroute6/traceroute6.c
  projects/clang400-import/usr.sbin/trpt/trpt.8
  projects/clang400-import/usr.sbin/trpt/trpt.c
  projects/clang400-import/usr.sbin/tzsetup/Makefile
  projects/clang400-import/usr.sbin/uathload/Makefile
  projects/clang400-import/usr.sbin/unbound/anchor/Makefile
  projects/clang400-import/usr.sbin/unbound/checkconf/Makefile
  projects/clang400-import/usr.sbin/unbound/control/Makefile
  projects/clang400-import/usr.sbin/unbound/daemon/Makefile
  projects/clang400-import/usr.sbin/vipw/vipw.8
  projects/clang400-import/usr.sbin/vipw/vipw.c
  projects/clang400-import/usr.sbin/yp_mkdb/Makefile
  projects/clang400-import/usr.sbin/ypbind/ypbind.8
  projects/clang400-import/usr.sbin/ypldap/Makefile
  projects/clang400-import/usr.sbin/yppush/Makefile
  projects/clang400-import/usr.sbin/yppush/yppush.8
  projects/clang400-import/usr.sbin/ypserv/Makefile
  projects/clang400-import/usr.sbin/zic/Makefile.inc
  projects/clang400-import/usr.sbin/zic/zdump/Makefile
  projects/clang400-import/usr.sbin/zic/zic/Makefile
  projects/clang400-import/usr.sbin/zonectl/Makefile
Directory Properties:
  projects/clang400-import/   (props changed)
  projects/clang400-import/contrib/libarchive/   (props changed)
  projects/clang400-import/contrib/libxo/   (props changed)
  projects/clang400-import/contrib/netbsd-tests/   (props changed)
  projects/clang400-import/contrib/openbsm/   (props changed)
  projects/clang400-import/contrib/sendmail/   (props changed)
  projects/clang400-import/contrib/tzcode/stdtime/   (props changed)
  projects/clang400-import/crypto/heimdal/   (props changed)
  projects/clang400-import/sys/contrib/ck/   (props changed)

Copied: projects/clang400-import/README.md (from r314481, head/README.md)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ projects/clang400-import/README.md	Wed Mar  1 08:22:51 2017	(r314482, copy of r314481, head/README.md)
@@ -0,0 +1,86 @@
+FreeBSD Source:
+---------------
+This is the top level of the FreeBSD source directory.  This file  
+was last revised on:  
+$FreeBSD$
+
+For copyright information, please see the file COPYRIGHT in this  
+directory (additional copyright information also exists for some    
+sources in this tree - please see the specific source directories for  
+more information).
+
+The Makefile in this directory supports a number of targets for  
+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 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.  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  
+world before.  More information is available in the handbook.
+
+The kernel configuration files reside in the `sys/<arch>/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  
+				and Distribution License.
+
+contrib			Packages contributed by 3rd parties.
+
+crypto			Cryptography stuff (see crypto/README).
+
+etc				Template files for /etc.
+
+gnu				Various commands and libraries under the GNU Public License.  
+				Please see gnu/COPYING* for more information.
+
+include			System include files.
+
+kerberos5		Kerberos5 (Heimdal) package.
+
+lib				System libraries.
+
+libexec			System daemons.
+
+release			Release building Makefile & associated tools.
+
+rescue			Build system for statically linked /rescue utilities.
+
+sbin			System commands.
+
+secure			Cryptographic libraries and commands.
+
+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.
+
+usr.sbin		System administration commands.
+```
+
+For information on synchronizing your source tree with one or more of  
+the FreeBSD Project's development branches, please see:
+
+   http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/synching.html

Modified: projects/clang400-import/bin/cat/cat.1
==============================================================================
--- projects/clang400-import/bin/cat/cat.1	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/cat/cat.1	Wed Mar  1 08:22:51 2017	(r314482)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: projects/clang400-import/bin/cat/cat.c
==============================================================================
--- projects/clang400-import/bin/cat/cat.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/cat/cat.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -13,7 +13,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/chflags/chflags.1
==============================================================================
--- projects/clang400-import/bin/chflags/chflags.1	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/chflags/chflags.1	Wed Mar  1 08:22:51 2017	(r314482)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: projects/clang400-import/bin/chflags/chflags.c
==============================================================================
--- projects/clang400-import/bin/chflags/chflags.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/chflags/chflags.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/chmod/chmod.1
==============================================================================
--- projects/clang400-import/bin/chmod/chmod.1	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/chmod/chmod.1	Wed Mar  1 08:22:51 2017	(r314482)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: projects/clang400-import/bin/chmod/chmod.c
==============================================================================
--- projects/clang400-import/bin/chmod/chmod.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/chmod/chmod.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/cp/cp.1
==============================================================================
--- projects/clang400-import/bin/cp/cp.1	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/cp/cp.1	Wed Mar  1 08:22:51 2017	(r314482)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: projects/clang400-import/bin/cp/cp.c
==============================================================================
--- projects/clang400-import/bin/cp/cp.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/cp/cp.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -13,7 +13,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/cp/extern.h
==============================================================================
--- projects/clang400-import/bin/cp/extern.h	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/cp/extern.h	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/cp/utils.c
==============================================================================
--- projects/clang400-import/bin/cp/utils.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/cp/utils.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/date/date.1
==============================================================================
--- projects/clang400-import/bin/date/date.1	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/date/date.1	Wed Mar  1 08:22:51 2017	(r314482)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: projects/clang400-import/bin/date/date.c
==============================================================================
--- projects/clang400-import/bin/date/date.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/date/date.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/date/extern.h
==============================================================================
--- projects/clang400-import/bin/date/extern.h	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/date/extern.h	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/date/netdate.c
==============================================================================
--- projects/clang400-import/bin/date/netdate.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/date/netdate.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/dd/args.c
==============================================================================
--- projects/clang400-import/bin/dd/args.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/dd/args.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/dd/conv.c
==============================================================================
--- projects/clang400-import/bin/dd/conv.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/dd/conv.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/dd/conv_tab.c
==============================================================================
--- projects/clang400-import/bin/dd/conv_tab.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/dd/conv_tab.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/dd/dd.1
==============================================================================
--- projects/clang400-import/bin/dd/dd.1	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/dd/dd.1	Wed Mar  1 08:22:51 2017	(r314482)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: projects/clang400-import/bin/dd/dd.c
==============================================================================
--- projects/clang400-import/bin/dd/dd.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/dd/dd.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/dd/dd.h
==============================================================================
--- projects/clang400-import/bin/dd/dd.h	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/dd/dd.h	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/dd/extern.h
==============================================================================
--- projects/clang400-import/bin/dd/extern.h	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/dd/extern.h	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/dd/misc.c
==============================================================================
--- projects/clang400-import/bin/dd/misc.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/dd/misc.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/dd/position.c
==============================================================================
--- projects/clang400-import/bin/dd/position.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/dd/position.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/df/df.1
==============================================================================
--- projects/clang400-import/bin/df/df.1	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/df/df.1	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: projects/clang400-import/bin/df/df.c
==============================================================================
--- projects/clang400-import/bin/df/df.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/df/df.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -15,7 +15,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/domainname/domainname.1
==============================================================================
--- projects/clang400-import/bin/domainname/domainname.1	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/domainname/domainname.1	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: projects/clang400-import/bin/domainname/domainname.c
==============================================================================
--- projects/clang400-import/bin/domainname/domainname.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/domainname/domainname.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/echo/echo.1
==============================================================================
--- projects/clang400-import/bin/echo/echo.1	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/echo/echo.1	Wed Mar  1 08:22:51 2017	(r314482)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: projects/clang400-import/bin/echo/echo.c
==============================================================================
--- projects/clang400-import/bin/echo/echo.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/echo/echo.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/ed/cbc.c
==============================================================================
--- projects/clang400-import/bin/ed/cbc.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/ed/cbc.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/hostname/hostname.1
==============================================================================
--- projects/clang400-import/bin/hostname/hostname.1	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/hostname/hostname.1	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: projects/clang400-import/bin/hostname/hostname.c
==============================================================================
--- projects/clang400-import/bin/hostname/hostname.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/hostname/hostname.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/kill/kill.1
==============================================================================
--- projects/clang400-import/bin/kill/kill.1	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/kill/kill.1	Wed Mar  1 08:22:51 2017	(r314482)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: projects/clang400-import/bin/kill/kill.c
==============================================================================
--- projects/clang400-import/bin/kill/kill.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/kill/kill.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/ln/ln.1
==============================================================================
--- projects/clang400-import/bin/ln/ln.1	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/ln/ln.1	Wed Mar  1 08:22:51 2017	(r314482)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: projects/clang400-import/bin/ln/ln.c
==============================================================================
--- projects/clang400-import/bin/ln/ln.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/ln/ln.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/ln/symlink.7
==============================================================================
--- projects/clang400-import/bin/ln/symlink.7	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/ln/symlink.7	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: projects/clang400-import/bin/ls/cmp.c
==============================================================================
--- projects/clang400-import/bin/ls/cmp.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/ls/cmp.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -13,7 +13,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/ls/extern.h
==============================================================================
--- projects/clang400-import/bin/ls/extern.h	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/ls/extern.h	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/ls/ls.1
==============================================================================
--- projects/clang400-import/bin/ls/ls.1	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/ls/ls.1	Wed Mar  1 08:22:51 2017	(r314482)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: projects/clang400-import/bin/ls/ls.c
==============================================================================
--- projects/clang400-import/bin/ls/ls.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/ls/ls.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -13,7 +13,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/ls/ls.h
==============================================================================
--- projects/clang400-import/bin/ls/ls.h	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/ls/ls.h	Wed Mar  1 08:22:51 2017	(r314482)
@@ -13,7 +13,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/ls/print.c
==============================================================================
--- projects/clang400-import/bin/ls/print.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/ls/print.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -13,7 +13,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/ls/util.c
==============================================================================
--- projects/clang400-import/bin/ls/util.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/ls/util.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -13,7 +13,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/mkdir/mkdir.1
==============================================================================
--- projects/clang400-import/bin/mkdir/mkdir.1	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/mkdir/mkdir.1	Wed Mar  1 08:22:51 2017	(r314482)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: projects/clang400-import/bin/mkdir/mkdir.c
==============================================================================
--- projects/clang400-import/bin/mkdir/mkdir.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/mkdir/mkdir.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/mv/mv.1
==============================================================================
--- projects/clang400-import/bin/mv/mv.1	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/mv/mv.1	Wed Mar  1 08:22:51 2017	(r314482)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: projects/clang400-import/bin/mv/mv.c
==============================================================================
--- projects/clang400-import/bin/mv/mv.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/mv/mv.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -13,7 +13,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/ar_io.c
==============================================================================
--- projects/clang400-import/bin/pax/ar_io.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/ar_io.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/ar_subs.c
==============================================================================
--- projects/clang400-import/bin/pax/ar_subs.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/ar_subs.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/buf_subs.c
==============================================================================
--- projects/clang400-import/bin/pax/buf_subs.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/buf_subs.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/cache.c
==============================================================================
--- projects/clang400-import/bin/pax/cache.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/cache.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/cache.h
==============================================================================
--- projects/clang400-import/bin/pax/cache.h	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/cache.h	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/cpio.c
==============================================================================
--- projects/clang400-import/bin/pax/cpio.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/cpio.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/cpio.h
==============================================================================
--- projects/clang400-import/bin/pax/cpio.h	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/cpio.h	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/extern.h
==============================================================================
--- projects/clang400-import/bin/pax/extern.h	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/extern.h	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/file_subs.c
==============================================================================
--- projects/clang400-import/bin/pax/file_subs.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/file_subs.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/ftree.c
==============================================================================
--- projects/clang400-import/bin/pax/ftree.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/ftree.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/ftree.h
==============================================================================
--- projects/clang400-import/bin/pax/ftree.h	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/ftree.h	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/gen_subs.c
==============================================================================
--- projects/clang400-import/bin/pax/gen_subs.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/gen_subs.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/options.c
==============================================================================
--- projects/clang400-import/bin/pax/options.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/options.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/options.h
==============================================================================
--- projects/clang400-import/bin/pax/options.h	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/options.h	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/pat_rep.c
==============================================================================
--- projects/clang400-import/bin/pax/pat_rep.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/pat_rep.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/pat_rep.h
==============================================================================
--- projects/clang400-import/bin/pax/pat_rep.h	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/pat_rep.h	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/pax.1
==============================================================================
--- projects/clang400-import/bin/pax/pax.1	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/pax.1	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: projects/clang400-import/bin/pax/pax.c
==============================================================================
--- projects/clang400-import/bin/pax/pax.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/pax.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/pax.h
==============================================================================
--- projects/clang400-import/bin/pax/pax.h	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/pax.h	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/sel_subs.c
==============================================================================
--- projects/clang400-import/bin/pax/sel_subs.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/sel_subs.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/sel_subs.h
==============================================================================
--- projects/clang400-import/bin/pax/sel_subs.h	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/sel_subs.h	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/tables.c
==============================================================================
--- projects/clang400-import/bin/pax/tables.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/tables.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/tables.h
==============================================================================
--- projects/clang400-import/bin/pax/tables.h	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/tables.h	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/tar.c
==============================================================================
--- projects/clang400-import/bin/pax/tar.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/tar.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/tar.h
==============================================================================
--- projects/clang400-import/bin/pax/tar.h	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/tar.h	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pax/tty_subs.c
==============================================================================
--- projects/clang400-import/bin/pax/tty_subs.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pax/tty_subs.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -14,7 +14,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/ps/extern.h
==============================================================================
--- projects/clang400-import/bin/ps/extern.h	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/ps/extern.h	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/ps/fmt.c
==============================================================================
--- projects/clang400-import/bin/ps/fmt.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/ps/fmt.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/ps/keyword.c
==============================================================================
--- projects/clang400-import/bin/ps/keyword.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/ps/keyword.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/ps/nlist.c
==============================================================================
--- projects/clang400-import/bin/ps/nlist.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/ps/nlist.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/ps/print.c
==============================================================================
--- projects/clang400-import/bin/ps/print.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/ps/print.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/ps/ps.1
==============================================================================
--- projects/clang400-import/bin/ps/ps.1	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/ps/ps.1	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"

Modified: projects/clang400-import/bin/ps/ps.c
==============================================================================
--- projects/clang400-import/bin/ps/ps.c	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/ps/ps.c	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/ps/ps.h
==============================================================================
--- projects/clang400-import/bin/ps/ps.h	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/ps/ps.h	Wed Mar  1 08:22:51 2017	(r314482)
@@ -10,7 +10,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *

Modified: projects/clang400-import/bin/pwd/pwd.1
==============================================================================
--- projects/clang400-import/bin/pwd/pwd.1	Wed Mar  1 05:53:53 2017	(r314481)
+++ projects/clang400-import/bin/pwd/pwd.1	Wed Mar  1 08:22:51 2017	(r314482)
@@ -13,7 +13,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***

From owner-svn-src-projects@freebsd.org  Wed Mar  1 21:55:53 2017
Return-Path: <owner-svn-src-projects@freebsd.org>
Delivered-To: svn-src-projects@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 05D81CF3BE9
 for <svn-src-projects@mailman.ysv.freebsd.org>;
 Wed,  1 Mar 2017 21:55:53 +0000 (UTC) (envelope-from dim@FreeBSD.org)
Received: from repo.freebsd.org (repo.freebsd.org
 [IPv6:2610:1c1:1:6068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id C77E1780;
 Wed,  1 Mar 2017 21:55:52 +0000 (UTC) (envelope-from dim@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v21Ltqkt035122;
 Wed, 1 Mar 2017 21:55:52 GMT (envelope-from dim@FreeBSD.org)
Received: (from dim@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id v21LtnHZ035092;
 Wed, 1 Mar 2017 21:55:49 GMT (envelope-from dim@FreeBSD.org)
Message-Id: <201703012155.v21LtnHZ035092@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org
 using -f
From: Dimitry Andric <dim@FreeBSD.org>
Date: Wed, 1 Mar 2017 21:55:49 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject: svn commit: r314523 - in projects/clang400-import: . contrib/dma
 sys/boot/arm/uboot sys/boot/fdt/dts/arm sys/boot/powerpc/kboot
 sys/boot/powerpc/ofw sys/boot/powerpc/ps3 sys/boot/powerpc/uboot sys/...
X-SVN-Group: projects
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-src-projects@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: "SVN commit messages for the src &quot; projects&quot;
 tree" <svn-src-projects.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/svn-src-projects>, 
 <mailto:svn-src-projects-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/svn-src-projects/>
List-Post: <mailto:svn-src-projects@freebsd.org>
List-Help: <mailto:svn-src-projects-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/svn-src-projects>, 
 <mailto:svn-src-projects-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 01 Mar 2017 21:55:53 -0000

Author: dim
Date: Wed Mar  1 21:55:49 2017
New Revision: 314523
URL: https://svnweb.freebsd.org/changeset/base/314523

Log:
  Merge ^/head r314482 through r314522.

Modified:
  projects/clang400-import/README.md
  projects/clang400-import/contrib/dma/dma.c
  projects/clang400-import/sys/boot/arm/uboot/Makefile
  projects/clang400-import/sys/boot/fdt/dts/arm/socfpga_arria10_socdk_sdmmc.dts
  projects/clang400-import/sys/boot/powerpc/kboot/Makefile
  projects/clang400-import/sys/boot/powerpc/ofw/Makefile
  projects/clang400-import/sys/boot/powerpc/ps3/Makefile
  projects/clang400-import/sys/boot/powerpc/uboot/Makefile
  projects/clang400-import/sys/boot/userboot/userboot/Makefile
  projects/clang400-import/sys/boot/zfs/zfsimpl.c
  projects/clang400-import/sys/cam/ctl/ctl.c
  projects/clang400-import/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c
  projects/clang400-import/sys/compat/ia32/ia32_sysvec.c
  projects/clang400-import/sys/dev/cxgbe/iw_cxgbe/mem.c
  projects/clang400-import/sys/dev/hyperv/netvsc/hn_nvs.c
  projects/clang400-import/sys/dev/hyperv/netvsc/hn_rndis.c
  projects/clang400-import/sys/dev/hyperv/netvsc/if_hn.c
  projects/clang400-import/sys/kern/imgact_elf.c
  projects/clang400-import/sys/kern/subr_gtaskqueue.c
  projects/clang400-import/sys/net/iflib.c
  projects/clang400-import/sys/netpfil/ipfw/ip_fw2.c
  projects/clang400-import/sys/netpfil/ipfw/nptv6/nptv6.c
  projects/clang400-import/sys/sys/gtaskqueue.h
  projects/clang400-import/sys/sys/sysent.h
Directory Properties:
  projects/clang400-import/   (props changed)
  projects/clang400-import/contrib/dma/   (props changed)
  projects/clang400-import/sys/cddl/contrib/opensolaris/   (props changed)

Modified: projects/clang400-import/README.md
==============================================================================
--- projects/clang400-import/README.md	Wed Mar  1 21:48:15 2017	(r314522)
+++ projects/clang400-import/README.md	Wed Mar  1 21:55:49 2017	(r314523)
@@ -1,35 +1,35 @@
 FreeBSD Source:
 ---------------
-This is the top level of the FreeBSD source directory.  This file  
-was last revised on:  
+This is the top level of the FreeBSD source directory.  This file
+was last revised on:
 $FreeBSD$
 
-For copyright information, please see the file COPYRIGHT in this  
-directory (additional copyright information also exists for some    
-sources in this tree - please see the specific source directories for  
+For copyright information, please see the file COPYRIGHT in this
+directory (additional copyright information also exists for some
+sources in this tree - please see the specific source directories for
 more information).
 
-The Makefile in this directory supports a number of targets for  
-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 kernel and the modules (see below).  Please see the top of  
-the Makefile in this directory for more information on the  
+The Makefile in this directory supports a number of targets for
+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 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.  See build(7), config(8),  
-and http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html  
+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  
+Note: If you want to build and install the kernel with the
+`buildkernel` and `installkernel` targets, you might need to build
 world before.  More information is available in the handbook.
 
-The kernel configuration files reside in the `sys/<arch>/conf`  
-sub-directory.  GENERIC is the default configuration used in release builds.  
-NOTES contains entries and documentation for all possible  
+The kernel configuration files reside in the `sys/<arch>/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.
 
 
@@ -80,7 +80,7 @@ usr.bin			User commands.
 usr.sbin		System administration commands.
 ```
 
-For information on synchronizing your source tree with one or more of  
+For information on synchronizing your source tree with one or more of
 the FreeBSD Project's development branches, please see:
 
    http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/synching.html

Modified: projects/clang400-import/contrib/dma/dma.c
==============================================================================
--- projects/clang400-import/contrib/dma/dma.c	Wed Mar  1 21:48:15 2017	(r314522)
+++ projects/clang400-import/contrib/dma/dma.c	Wed Mar  1 21:55:49 2017	(r314523)
@@ -47,6 +47,7 @@
 #include <errno.h>
 #include <fcntl.h>
 #include <inttypes.h>
+#include <libgen.h>
 #include <paths.h>
 #include <pwd.h>
 #include <signal.h>
@@ -457,7 +458,7 @@ main(int argc, char **argv)
 	bzero(&queue, sizeof(queue));
 	LIST_INIT(&queue.queue);
 
-	if (strcmp(argv[0], "mailq") == 0) {
+	if (strcmp(basename(argv[0]), "mailq") == 0) {
 		argv++; argc--;
 		showq = 1;
 		if (argc != 0)

Modified: projects/clang400-import/sys/boot/arm/uboot/Makefile
==============================================================================
--- projects/clang400-import/sys/boot/arm/uboot/Makefile	Wed Mar  1 21:48:15 2017	(r314522)
+++ projects/clang400-import/sys/boot/arm/uboot/Makefile	Wed Mar  1 21:55:49 2017	(r314523)
@@ -80,7 +80,8 @@ LIBFDT=		${.OBJDIR}/../../fdt/libfdt.a
 .if ${MK_FORTH} != "no"
 # Enable BootForth
 BOOT_FORTH=	yes
-CFLAGS+=	-DBOOT_FORTH -I${.CURDIR}/../../ficl -I${.CURDIR}/../../ficl/arm
+CFLAGS+=	-DBOOT_FORTH -I${.CURDIR}/../../ficl
+CFLAGS+=	-I${.CURDIR}/../../ficl/arm
 LIBFICL=	${.OBJDIR}/../../ficl/libficl.a
 .endif
 

Modified: projects/clang400-import/sys/boot/fdt/dts/arm/socfpga_arria10_socdk_sdmmc.dts
==============================================================================
--- projects/clang400-import/sys/boot/fdt/dts/arm/socfpga_arria10_socdk_sdmmc.dts	Wed Mar  1 21:48:15 2017	(r314522)
+++ projects/clang400-import/sys/boot/fdt/dts/arm/socfpga_arria10_socdk_sdmmc.dts	Wed Mar  1 21:55:49 2017	(r314523)
@@ -80,3 +80,7 @@
 		reg = <0x28>;
 	};
 };
+
+&usb0 {
+	dr_mode = "host";
+};

Modified: projects/clang400-import/sys/boot/powerpc/kboot/Makefile
==============================================================================
--- projects/clang400-import/sys/boot/powerpc/kboot/Makefile	Wed Mar  1 21:48:15 2017	(r314522)
+++ projects/clang400-import/sys/boot/powerpc/kboot/Makefile	Wed Mar  1 21:55:49 2017	(r314523)
@@ -64,7 +64,8 @@ LIBFDT=		${.OBJDIR}/../../fdt/libfdt.a
 .if ${MK_FORTH} != "no"
 # Enable BootForth
 BOOT_FORTH=	yes
-CFLAGS+=	-DBOOT_FORTH -I${.CURDIR}/../../ficl -I${.CURDIR}/../../ficl/powerpc
+CFLAGS+=	-DBOOT_FORTH -I${.CURDIR}/../../ficl
+CFLAGS+=	-I${.CURDIR}/../../ficl/powerpc
 LIBFICL=	${.OBJDIR}/../../ficl/libficl.a
 .endif
 

Modified: projects/clang400-import/sys/boot/powerpc/ofw/Makefile
==============================================================================
--- projects/clang400-import/sys/boot/powerpc/ofw/Makefile	Wed Mar  1 21:48:15 2017	(r314522)
+++ projects/clang400-import/sys/boot/powerpc/ofw/Makefile	Wed Mar  1 21:55:49 2017	(r314523)
@@ -63,7 +63,8 @@ LIBFDT=		${.OBJDIR}/../../fdt/libfdt.a
 .if ${MK_FORTH} != "no"
 # Enable BootForth
 BOOT_FORTH=	yes
-CFLAGS+=	-DBOOT_FORTH -I${.CURDIR}/../../ficl -I${.CURDIR}/../../ficl/powerpc
+CFLAGS+=	-DBOOT_FORTH -I${.CURDIR}/../../ficl
+CFLAGS+=	-I${.CURDIR}/../../ficl/powerpc
 LIBFICL=	${.OBJDIR}/../../ficl/libficl.a
 .endif
 

Modified: projects/clang400-import/sys/boot/powerpc/ps3/Makefile
==============================================================================
--- projects/clang400-import/sys/boot/powerpc/ps3/Makefile	Wed Mar  1 21:48:15 2017	(r314522)
+++ projects/clang400-import/sys/boot/powerpc/ps3/Makefile	Wed Mar  1 21:55:49 2017	(r314523)
@@ -64,7 +64,8 @@ LIBFDT=		${.OBJDIR}/../../fdt/libfdt.a
 .if ${MK_FORTH} != "no"
 # Enable BootForth
 BOOT_FORTH=	yes
-CFLAGS+=	-DBOOT_FORTH -I${.CURDIR}/../../ficl -I${.CURDIR}/../../ficl/powerpc
+CFLAGS+=	-DBOOT_FORTH -I${.CURDIR}/../../ficl
+CFLAGS+=	-I${.CURDIR}/../../ficl/powerpc
 LIBFICL=	${.OBJDIR}/../../ficl/libficl.a
 .endif
 

Modified: projects/clang400-import/sys/boot/powerpc/uboot/Makefile
==============================================================================
--- projects/clang400-import/sys/boot/powerpc/uboot/Makefile	Wed Mar  1 21:48:15 2017	(r314522)
+++ projects/clang400-import/sys/boot/powerpc/uboot/Makefile	Wed Mar  1 21:55:49 2017	(r314523)
@@ -69,7 +69,8 @@ LIBFDT=		${.OBJDIR}/../../fdt/libfdt.a
 .if ${MK_FORTH} != "no"
 # Enable BootForth
 BOOT_FORTH=	yes
-CFLAGS+=	-DBOOT_FORTH -I${.CURDIR}/../../ficl -I${.CURDIR}/../../ficl/powerpc
+CFLAGS+=	-DBOOT_FORTH -I${.CURDIR}/../../ficl
+CFLAGS+=	-I${.CURDIR}/../../ficl/powerpc
 LIBFICL=	${.OBJDIR}/../../ficl/libficl.a
 .endif
 

Modified: projects/clang400-import/sys/boot/userboot/userboot/Makefile
==============================================================================
--- projects/clang400-import/sys/boot/userboot/userboot/Makefile	Wed Mar  1 21:48:15 2017	(r314522)
+++ projects/clang400-import/sys/boot/userboot/userboot/Makefile	Wed Mar  1 21:55:49 2017	(r314523)
@@ -43,7 +43,8 @@ NEWVERSWHAT=	"User boot" ${MACHINE_CPUAR
 
 .if ${MK_FORTH} != "no"
 BOOT_FORTH=	yes
-CFLAGS+=        -DBOOT_FORTH -I${.CURDIR}/../../ficl -I${.CURDIR}/../../ficl/i386
+CFLAGS+=        -DBOOT_FORTH -I${.CURDIR}/../../ficl
+CFLAGS+=        -I${.CURDIR}/../../ficl/i386
 CFLAGS+=	-DBF_DICTSIZE=15000
 LIBFICL=	${.OBJDIR}/../ficl/libficl.a
 .endif

Modified: projects/clang400-import/sys/boot/zfs/zfsimpl.c
==============================================================================
--- projects/clang400-import/sys/boot/zfs/zfsimpl.c	Wed Mar  1 21:48:15 2017	(r314522)
+++ projects/clang400-import/sys/boot/zfs/zfsimpl.c	Wed Mar  1 21:55:49 2017	(r314523)
@@ -2334,7 +2334,7 @@ zfs_lookup(const struct zfsmount *mount,
 	char path[1024];
 	int symlinks_followed = 0;
 	struct stat sb;
-	struct obj_list *entry;
+	struct obj_list *entry, *tentry;
 	STAILQ_HEAD(, obj_list) on_cache = STAILQ_HEAD_INITIALIZER(on_cache);
 
 	spa = mount->spa;
@@ -2482,7 +2482,7 @@ zfs_lookup(const struct zfsmount *mount,
 
 	*dnode = dn;
 done:
-	STAILQ_FOREACH(entry, &on_cache, entry)
+	STAILQ_FOREACH_SAFE(entry, &on_cache, entry, tentry)
 		free(entry);
 	return (rc);
 }

Modified: projects/clang400-import/sys/cam/ctl/ctl.c
==============================================================================
--- projects/clang400-import/sys/cam/ctl/ctl.c	Wed Mar  1 21:48:15 2017	(r314522)
+++ projects/clang400-import/sys/cam/ctl/ctl.c	Wed Mar  1 21:55:49 2017	(r314523)
@@ -9550,7 +9550,7 @@ ctl_inquiry_evpd_devid(struct ctl_scsiio
 
 	if (port && port->port_type == CTL_PORT_FC)
 		proto = SCSI_PROTO_FC << 4;
-	else if (port->port_type == CTL_PORT_SAS)
+	else if (port && port->port_type == CTL_PORT_SAS)
 		proto = SCSI_PROTO_SAS << 4;
 	else if (port && port->port_type == CTL_PORT_ISCSI)
 		proto = SCSI_PROTO_ISCSI << 4;

Modified: projects/clang400-import/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c
==============================================================================
--- projects/clang400-import/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c	Wed Mar  1 21:48:15 2017	(r314522)
+++ projects/clang400-import/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c	Wed Mar  1 21:55:49 2017	(r314523)
@@ -278,7 +278,16 @@ zvol_size_changed(zvol_state_t *zv, uint
 		if (pp == NULL)
 			return;
 		g_topology_lock();
-		g_resize_provider(pp, zv->zv_volsize);
+
+		/*
+		 * Do not invoke resize event when initial size was zero.
+		 * ZVOL initializes the size on first open, this is not
+		 * real resizing.
+		 */
+		if (pp->mediasize == 0)
+			pp->mediasize = zv->zv_volsize;
+		else
+			g_resize_provider(pp, zv->zv_volsize);
 		g_topology_unlock();
 	}
 #endif	/* illumos */

Modified: projects/clang400-import/sys/compat/ia32/ia32_sysvec.c
==============================================================================
--- projects/clang400-import/sys/compat/ia32/ia32_sysvec.c	Wed Mar  1 21:48:15 2017	(r314522)
+++ projects/clang400-import/sys/compat/ia32/ia32_sysvec.c	Wed Mar  1 21:55:49 2017	(r314523)
@@ -120,11 +120,8 @@ struct sysentvec ia32_freebsd_sysvec = {
 	.sv_setregs	= ia32_setregs,
 	.sv_fixlimit	= ia32_fixlimit,
 	.sv_maxssiz	= &ia32_maxssiz,
-	.sv_flags	=
-#ifdef __amd64__
-			  SV_SHP | SV_TIMEKEEP |
-#endif
-			  SV_ABI_FREEBSD | SV_IA32 | SV_ILP32,
+	.sv_flags	= SV_ABI_FREEBSD | SV_IA32 | SV_ILP32 |
+			    SV_SHP | SV_TIMEKEEP,
 	.sv_set_syscall_retval = ia32_set_syscall_retval,
 	.sv_fetch_syscall_args = ia32_fetch_syscall_args,
 	.sv_syscallnames = freebsd32_syscallnames,

Modified: projects/clang400-import/sys/dev/cxgbe/iw_cxgbe/mem.c
==============================================================================
--- projects/clang400-import/sys/dev/cxgbe/iw_cxgbe/mem.c	Wed Mar  1 21:48:15 2017	(r314522)
+++ projects/clang400-import/sys/dev/cxgbe/iw_cxgbe/mem.c	Wed Mar  1 21:55:49 2017	(r314523)
@@ -341,9 +341,6 @@ static int build_phys_page_list(struct i
 				PAGE_SIZE - 1) & PAGE_MASK;
 	}
 
-	if (*total_size > 0xFFFFFFFFULL)
-		return -ENOMEM;
-
 	/* Find largest page shift we can use to cover buffers */
 	for (*shift = PAGE_SHIFT; *shift < 27; ++(*shift))
 		if ((1ULL << *shift) & mask)

Modified: projects/clang400-import/sys/dev/hyperv/netvsc/hn_nvs.c
==============================================================================
--- projects/clang400-import/sys/dev/hyperv/netvsc/hn_nvs.c	Wed Mar  1 21:48:15 2017	(r314522)
+++ projects/clang400-import/sys/dev/hyperv/netvsc/hn_nvs.c	Wed Mar  1 21:55:49 2017	(r314523)
@@ -272,12 +272,17 @@ hn_nvs_conn_chim(struct hn_softc *sc)
 		error = EIO;
 		goto cleanup;
 	}
-	if (sectsz == 0) {
+	if (sectsz == 0 || sectsz % sizeof(uint32_t) != 0) {
 		/*
 		 * Can't use chimney sending buffer; done!
 		 */
-		if_printf(sc->hn_ifp, "zero chimney sending buffer "
-		    "section size\n");
+		if (sectsz == 0) {
+			if_printf(sc->hn_ifp, "zero chimney sending buffer "
+			    "section size\n");
+		} else {
+			if_printf(sc->hn_ifp, "misaligned chimney sending "
+			    "buffers, section size: %u\n", sectsz);
+		}
 		sc->hn_chim_szmax = 0;
 		sc->hn_chim_cnt = 0;
 		sc->hn_flags |= HN_FLAG_CHIM_CONNECTED;

Modified: projects/clang400-import/sys/dev/hyperv/netvsc/hn_rndis.c
==============================================================================
--- projects/clang400-import/sys/dev/hyperv/netvsc/hn_rndis.c	Wed Mar  1 21:48:15 2017	(r314522)
+++ projects/clang400-import/sys/dev/hyperv/netvsc/hn_rndis.c	Wed Mar  1 21:55:49 2017	(r314523)
@@ -841,9 +841,22 @@ hn_rndis_init(struct hn_softc *sc)
 	sc->hn_rndis_agg_pkts = comp->rm_pktmaxcnt;
 	sc->hn_rndis_agg_align = 1U << comp->rm_align;
 
+	if (sc->hn_rndis_agg_align < sizeof(uint32_t)) {
+		/*
+		 * The RNDIS packet messsage encap assumes that the RNDIS
+		 * packet message is at least 4 bytes aligned.  Fix up the
+		 * alignment here, if the remote side sets the alignment
+		 * too low.
+		 */
+		if_printf(sc->hn_ifp, "fixup RNDIS aggpkt align: %u -> %zu\n",
+		    sc->hn_rndis_agg_align, sizeof(uint32_t));
+		sc->hn_rndis_agg_align = sizeof(uint32_t);
+	}
+
 	if (bootverbose) {
-		if_printf(sc->hn_ifp, "RNDIS ver %u.%u, pktsz %u, pktcnt %u, "
-		    "align %u\n", comp->rm_ver_major, comp->rm_ver_minor,
+		if_printf(sc->hn_ifp, "RNDIS ver %u.%u, "
+		    "aggpkt size %u, aggpkt cnt %u, aggpkt align %u\n",
+		    comp->rm_ver_major, comp->rm_ver_minor,
 		    sc->hn_rndis_agg_size, sc->hn_rndis_agg_pkts,
 		    sc->hn_rndis_agg_align);
 	}

Modified: projects/clang400-import/sys/dev/hyperv/netvsc/if_hn.c
==============================================================================
--- projects/clang400-import/sys/dev/hyperv/netvsc/if_hn.c	Wed Mar  1 21:48:15 2017	(r314522)
+++ projects/clang400-import/sys/dev/hyperv/netvsc/if_hn.c	Wed Mar  1 21:55:49 2017	(r314523)
@@ -1784,9 +1784,6 @@ hn_rndis_pktinfo_append(struct rndis_pac
 	pi->rm_type = pi_type;
 	pi->rm_pktinfooffset = RNDIS_PKTINFO_OFFSET;
 
-	/* Update RNDIS packet msg length */
-	pkt->rm_len += pi_size;
-
 	return (pi->rm_data);
 }
 
@@ -1928,7 +1925,7 @@ hn_encap(struct ifnet *ifp, struct hn_tx
 	}
 
 	pkt->rm_type = REMOTE_NDIS_PACKET_MSG;
-	pkt->rm_len = sizeof(*pkt) + m_head->m_pkthdr.len;
+	pkt->rm_len = m_head->m_pkthdr.len;
 	pkt->rm_dataoffset = 0;
 	pkt->rm_datalen = m_head->m_pkthdr.len;
 	pkt->rm_oobdataoffset = 0;
@@ -1999,6 +1996,8 @@ hn_encap(struct ifnet *ifp, struct hn_tx
 	}
 
 	pkt_hlen = pkt->rm_pktinfooffset + pkt->rm_pktinfolen;
+	/* Fixup RNDIS packet message total length */
+	pkt->rm_len += pkt_hlen;
 	/* Convert RNDIS packet message offsets */
 	pkt->rm_dataoffset = hn_rndis_pktmsg_offset(pkt_hlen);
 	pkt->rm_pktinfooffset = hn_rndis_pktmsg_offset(pkt->rm_pktinfooffset);

Modified: projects/clang400-import/sys/kern/imgact_elf.c
==============================================================================
--- projects/clang400-import/sys/kern/imgact_elf.c	Wed Mar  1 21:48:15 2017	(r314522)
+++ projects/clang400-import/sys/kern/imgact_elf.c	Wed Mar  1 21:55:49 2017	(r314523)
@@ -422,13 +422,14 @@ __elfN(map_partial)(vm_map_t map, vm_obj
 }
 
 static int
-__elfN(map_insert)(vm_map_t map, vm_object_t object, vm_ooffset_t offset,
-    vm_offset_t start, vm_offset_t end, vm_prot_t prot, int cow)
+__elfN(map_insert)(struct image_params *imgp, vm_map_t map, vm_object_t object,
+    vm_ooffset_t offset, vm_offset_t start, vm_offset_t end, vm_prot_t prot,
+    int cow)
 {
 	struct sf_buf *sf;
 	vm_offset_t off;
 	vm_size_t sz;
-	int error, rv;
+	int error, locked, rv;
 
 	if (start != trunc_page(start)) {
 		rv = __elfN(map_partial)(map, object, offset, start,
@@ -451,9 +452,10 @@ __elfN(map_insert)(vm_map_t map, vm_obje
 			 * The mapping is not page aligned. This means we have
 			 * to copy the data. Sigh.
 			 */
-			rv = vm_map_find(map, NULL, 0, &start, end - start, 0,
-			    VMFS_NO_SPACE, prot | VM_PROT_WRITE, VM_PROT_ALL,
-			    0);
+			vm_map_lock(map);
+			rv = vm_map_insert(map, NULL, 0, start, end,
+			    prot | VM_PROT_WRITE, VM_PROT_ALL, 0);
+			vm_map_unlock(map);
 			if (rv != KERN_SUCCESS)
 				return (rv);
 			if (object == NULL)
@@ -480,8 +482,12 @@ __elfN(map_insert)(vm_map_t map, vm_obje
 			rv = vm_map_insert(map, object, offset, start, end,
 			    prot, VM_PROT_ALL, cow);
 			vm_map_unlock(map);
-			if (rv != KERN_SUCCESS)
+			if (rv != KERN_SUCCESS) {
+				locked = VOP_ISLOCKED(imgp->vp);
+				VOP_UNLOCK(imgp->vp, 0);
 				vm_object_deallocate(object);
+				vn_lock(imgp->vp, locked | LK_RETRY);
+			}
 		}
 		return (rv);
 	} else {
@@ -538,7 +544,7 @@ __elfN(load_section)(struct image_params
 		cow = MAP_COPY_ON_WRITE | MAP_PREFAULT |
 		    (prot & VM_PROT_WRITE ? 0 : MAP_DISABLE_COREDUMP);
 
-		rv = __elfN(map_insert)(map,
+		rv = __elfN(map_insert)(imgp, map,
 				      object,
 				      file_addr,	/* file offset */
 				      map_addr,		/* virtual start */
@@ -568,8 +574,8 @@ __elfN(load_section)(struct image_params
 
 	/* This had damn well better be true! */
 	if (map_len != 0) {
-		rv = __elfN(map_insert)(map, NULL, 0, map_addr, map_addr +
-		    map_len, VM_PROT_ALL, 0);
+		rv = __elfN(map_insert)(imgp, map, NULL, 0, map_addr,
+		    map_addr + map_len, VM_PROT_ALL, 0);
 		if (rv != KERN_SUCCESS) {
 			return (EINVAL);
 		}

Modified: projects/clang400-import/sys/kern/subr_gtaskqueue.c
==============================================================================
--- projects/clang400-import/sys/kern/subr_gtaskqueue.c	Wed Mar  1 21:48:15 2017	(r314522)
+++ projects/clang400-import/sys/kern/subr_gtaskqueue.c	Wed Mar  1 21:55:49 2017	(r314523)
@@ -52,6 +52,8 @@ static MALLOC_DEFINE(M_GTASKQUEUE, "task
 static void	gtaskqueue_thread_enqueue(void *);
 static void	gtaskqueue_thread_loop(void *arg);
 
+TASKQGROUP_DEFINE(softirq, mp_ncpus, 1);
+
 struct gtaskqueue_busy {
 	struct gtask	*tb_running;
 	TAILQ_ENTRY(gtaskqueue_busy) tb_link;

Modified: projects/clang400-import/sys/net/iflib.c
==============================================================================
--- projects/clang400-import/sys/net/iflib.c	Wed Mar  1 21:48:15 2017	(r314522)
+++ projects/clang400-import/sys/net/iflib.c	Wed Mar  1 21:55:49 2017	(r314523)
@@ -480,7 +480,6 @@ MODULE_VERSION(iflib, 1);
 MODULE_DEPEND(iflib, pci, 1, 1, 1);
 MODULE_DEPEND(iflib, ether, 1, 1, 1);
 
-TASKQGROUP_DEFINE(if_io_tqg, mp_ncpus, 1);
 TASKQGROUP_DEFINE(if_config_tqg, 1, 1);
 
 #ifndef IFLIB_DEBUG_COUNTERS
@@ -3922,7 +3921,7 @@ iflib_device_deregister(if_ctx_t ctx)
 	if (ctx->ifc_led_dev != NULL)
 		led_destroy(ctx->ifc_led_dev);
 	/* XXX drain any dependent tasks */
-	tqg = qgroup_if_io_tqg;
+	tqg = qgroup_softirq;
 	for (txq = ctx->ifc_txqs, i = 0; i < NTXQSETS(ctx); i++, txq++) {
 		callout_drain(&txq->ift_timer);
 		callout_drain(&txq->ift_db_check);
@@ -4552,7 +4551,7 @@ iflib_irq_alloc_generic(if_ctx_t ctx, if
 		q = &ctx->ifc_txqs[qid];
 		info = &ctx->ifc_txqs[qid].ift_filter_info;
 		gtask = &ctx->ifc_txqs[qid].ift_task;
-		tqg = qgroup_if_io_tqg;
+		tqg = qgroup_softirq;
 		fn = _task_fn_tx;
 		GROUPTASK_INIT(gtask, 0, fn, q);
 		break;
@@ -4560,7 +4559,7 @@ iflib_irq_alloc_generic(if_ctx_t ctx, if
 		q = &ctx->ifc_rxqs[qid];
 		info = &ctx->ifc_rxqs[qid].ifr_filter_info;
 		gtask = &ctx->ifc_rxqs[qid].ifr_task;
-		tqg = qgroup_if_io_tqg;
+		tqg = qgroup_softirq;
 		fn = _task_fn_rx;
 		GROUPTASK_INIT(gtask, 0, fn, q);
 		break;
@@ -4611,13 +4610,13 @@ iflib_softirq_alloc_generic(if_ctx_t ctx
 	case IFLIB_INTR_TX:
 		q = &ctx->ifc_txqs[qid];
 		gtask = &ctx->ifc_txqs[qid].ift_task;
-		tqg = qgroup_if_io_tqg;
+		tqg = qgroup_softirq;
 		fn = _task_fn_tx;
 		break;
 	case IFLIB_INTR_RX:
 		q = &ctx->ifc_rxqs[qid];
 		gtask = &ctx->ifc_rxqs[qid].ifr_task;
-		tqg = qgroup_if_io_tqg;
+		tqg = qgroup_softirq;
 		fn = _task_fn_rx;
 		break;
 	case IFLIB_INTR_IOV:
@@ -4661,7 +4660,7 @@ iflib_legacy_setup(if_ctx_t ctx, driver_
 	q = &ctx->ifc_rxqs[0];
 	info = &rxq[0].ifr_filter_info;
 	gtask = &rxq[0].ifr_task;
-	tqg = qgroup_if_io_tqg;
+	tqg = qgroup_softirq;
 	tqrid = irq->ii_rid = *rid;
 	fn = _task_fn_rx;
 
@@ -4678,7 +4677,7 @@ iflib_legacy_setup(if_ctx_t ctx, driver_
 	taskqgroup_attach(tqg, gtask, q, tqrid, name);
 
 	GROUPTASK_INIT(&txq->ift_task, 0, _task_fn_tx, txq);
-	taskqgroup_attach(qgroup_if_io_tqg, &txq->ift_task, txq, tqrid, "tx");
+	taskqgroup_attach(qgroup_softirq, &txq->ift_task, txq, tqrid, "tx");
 	return (0);
 }
 
@@ -4728,7 +4727,7 @@ void
 iflib_io_tqg_attach(struct grouptask *gt, void *uniq, int cpu, char *name)
 {
 
-	taskqgroup_attach_cpu(qgroup_if_io_tqg, gt, uniq, cpu, -1, name);
+	taskqgroup_attach_cpu(qgroup_softirq, gt, uniq, cpu, -1, name);
 }
 
 void

Modified: projects/clang400-import/sys/netpfil/ipfw/ip_fw2.c
==============================================================================
--- projects/clang400-import/sys/netpfil/ipfw/ip_fw2.c	Wed Mar  1 21:48:15 2017	(r314522)
+++ projects/clang400-import/sys/netpfil/ipfw/ip_fw2.c	Wed Mar  1 21:55:49 2017	(r314523)
@@ -2565,6 +2565,13 @@ do {								\
 				l = 0; /* in any case exit inner loop */
 				retval = ipfw_run_eaction(chain, args,
 				    cmd, &done);
+				/*
+				 * If both @retval and @done are zero,
+				 * consider this as rule matching and
+				 * update counters.
+				 */
+				if (retval == 0 && done == 0)
+					IPFW_INC_RULE_COUNTER(f, pktlen);
 				break;
 
 			default:

Modified: projects/clang400-import/sys/netpfil/ipfw/nptv6/nptv6.c
==============================================================================
--- projects/clang400-import/sys/netpfil/ipfw/nptv6/nptv6.c	Wed Mar  1 21:48:15 2017	(r314522)
+++ projects/clang400-import/sys/netpfil/ipfw/nptv6/nptv6.c	Wed Mar  1 21:55:49 2017	(r314523)
@@ -352,24 +352,24 @@ ipfw_nptv6(struct ip_fw_chain *chain, st
 	int ret;
 
 	*done = 0; /* try next rule if not matched */
+	ret = IP_FW_DENY;
 	icmd = cmd + 1;
 	if (cmd->opcode != O_EXTERNAL_ACTION ||
 	    cmd->arg1 != V_nptv6_eid ||
 	    icmd->opcode != O_EXTERNAL_INSTANCE ||
 	    (cfg = NPTV6_LOOKUP(chain, icmd)) == NULL)
-		return (0);
+		return (ret);
 	/*
 	 * We need act as router, so when forwarding is disabled -
 	 * do nothing.
 	 */
 	if (V_ip6_forwarding == 0 || args->f_id.addr_type != 6)
-		return (0);
+		return (ret);
 	/*
 	 * NOTE: we expect ipfw_chk() did m_pullup() up to upper level
 	 * protocol's headers. Also we skip some checks, that ip6_input(),
 	 * ip6_forward(), ip6_fastfwd() and ipfw_chk() already did.
 	 */
-	ret = IP_FW_DENY;
 	ip6 = mtod(args->m, struct ip6_hdr *);
 	NPTV6_IPDEBUG("eid %u, oid %u, %s -> %s %d",
 	    cmd->arg1, icmd->arg1,
@@ -384,15 +384,15 @@ ipfw_nptv6(struct ip_fw_chain *chain, st
 		 */
 		if (IN6_ARE_MASKED_ADDR_EQUAL(&ip6->ip6_dst,
 		    &cfg->internal, &cfg->mask))
-			return (0);
+			return (ret);
 		ret = nptv6_rewrite_internal(cfg, &args->m, 0);
 	} else if (IN6_ARE_MASKED_ADDR_EQUAL(&ip6->ip6_dst,
 	    &cfg->external, &cfg->mask))
 		ret = nptv6_rewrite_external(cfg, &args->m, 0);
 	else
-		return (0);
+		return (ret);
 	/*
-	 * If address wasn't rewrited - free mbuf.
+	 * If address wasn't rewrited - free mbuf and terminate the search.
 	 */
 	if (ret != 0) {
 		if (args->m != NULL) {
@@ -400,14 +400,16 @@ ipfw_nptv6(struct ip_fw_chain *chain, st
 			args->m = NULL; /* mark mbuf as consumed */
 		}
 		NPTV6STAT_INC(cfg, dropped);
-	}
-	/* Terminate the search if one_pass is set */
-	*done = V_fw_one_pass;
-	/* Update args->f_id when one_pass is off */
-	if (*done == 0 && ret == 0) {
-		ip6 = mtod(args->m, struct ip6_hdr *);
-		args->f_id.src_ip6 = ip6->ip6_src;
-		args->f_id.dst_ip6 = ip6->ip6_dst;
+		*done = 1;
+	} else {
+		/* Terminate the search if one_pass is set */
+		*done = V_fw_one_pass;
+		/* Update args->f_id when one_pass is off */
+		if (*done == 0) {
+			ip6 = mtod(args->m, struct ip6_hdr *);
+			args->f_id.src_ip6 = ip6->ip6_src;
+			args->f_id.dst_ip6 = ip6->ip6_dst;
+		}
 	}
 	return (ret);
 }

Modified: projects/clang400-import/sys/sys/gtaskqueue.h
==============================================================================
--- projects/clang400-import/sys/sys/gtaskqueue.h	Wed Mar  1 21:48:15 2017	(r314522)
+++ projects/clang400-import/sys/sys/gtaskqueue.h	Wed Mar  1 21:55:49 2017	(r314523)
@@ -119,5 +119,6 @@ SYSINIT(taskqgroup_adj_##name, SI_SUB_SM
 #endif /* EARLY_AP_STARTUP */
 
 TASKQGROUP_DECLARE(net);
+TASKQGROUP_DECLARE(softirq);
 
 #endif /* !_SYS_GTASKQUEUE_H_ */

Modified: projects/clang400-import/sys/sys/sysent.h
==============================================================================
--- projects/clang400-import/sys/sys/sysent.h	Wed Mar  1 21:48:15 2017	(r314522)
+++ projects/clang400-import/sys/sys/sysent.h	Wed Mar  1 21:55:49 2017	(r314523)
@@ -138,7 +138,7 @@ struct sysentvec {
 #define	SV_AOUT		0x008000	/* a.out executable. */
 #define	SV_SHP		0x010000	/* Shared page. */
 #define	SV_CAPSICUM	0x020000	/* Force cap_enter() on startup. */
-#define	SV_TIMEKEEP	0x040000
+#define	SV_TIMEKEEP	0x040000	/* Shared page timehands. */
 
 #define	SV_ABI_MASK	0xff
 #define	SV_ABI_ERRNO(p, e)	((p)->p_sysent->sv_errsize <= 0 ? e :	\

From owner-svn-src-projects@freebsd.org  Wed Mar  1 21:58:27 2017
Return-Path: <owner-svn-src-projects@freebsd.org>
Delivered-To: svn-src-projects@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id DDF85CF3C55
 for <svn-src-projects@mailman.ysv.freebsd.org>;
 Wed,  1 Mar 2017 21:58:27 +0000 (UTC) (envelope-from dim@FreeBSD.org)
Received: from repo.freebsd.org (repo.freebsd.org
 [IPv6:2610:1c1:1:6068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 93520899;
 Wed,  1 Mar 2017 21:58:27 +0000 (UTC) (envelope-from dim@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v21LwQpR035273;
 Wed, 1 Mar 2017 21:58:26 GMT (envelope-from dim@FreeBSD.org)
Received: (from dim@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id v21LwQw5035270;
 Wed, 1 Mar 2017 21:58:26 GMT (envelope-from dim@FreeBSD.org)
Message-Id: <201703012158.v21LwQw5035270@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org
 using -f
From: Dimitry Andric <dim@FreeBSD.org>
Date: Wed, 1 Mar 2017 21:58:26 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject: svn commit: r314524 - in projects/clang400-import: . sys/sys
X-SVN-Group: projects
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-src-projects@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: "SVN commit messages for the src &quot; projects&quot;
 tree" <svn-src-projects.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/svn-src-projects>, 
 <mailto:svn-src-projects-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/svn-src-projects/>
List-Post: <mailto:svn-src-projects@freebsd.org>
List-Help: <mailto:svn-src-projects-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/svn-src-projects>, 
 <mailto:svn-src-projects-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 01 Mar 2017 21:58:28 -0000

Author: dim
Date: Wed Mar  1 21:58:26 2017
New Revision: 314524
URL: https://svnweb.freebsd.org/changeset/base/314524

Log:
  Bump __FreeBSD_version, and set tentative merge date.

Modified:
  projects/clang400-import/ObsoleteFiles.inc
  projects/clang400-import/UPDATING
  projects/clang400-import/sys/sys/param.h

Modified: projects/clang400-import/ObsoleteFiles.inc
==============================================================================
--- projects/clang400-import/ObsoleteFiles.inc	Wed Mar  1 21:55:49 2017	(r314523)
+++ projects/clang400-import/ObsoleteFiles.inc	Wed Mar  1 21:58:26 2017	(r314524)
@@ -38,10 +38,10 @@
 #   xargs -n1 | sort | uniq -d;
 # done
 
-# 2017mmdd: new libc++ import which bumps version from 3.9.1 to 4.0.0.
+# 20170302: new libc++ import which bumps version from 3.9.1 to 4.0.0.
 OLD_FILES+=usr/include/c++/v1/__undef___deallocate
 OLD_FILES+=usr/include/c++/v1/tr1/__undef___deallocate
-# 2017mmdd: new clang import which bumps version from 3.9.1 to 4.0.0.
+# 20170302: new clang import which bumps version from 3.9.1 to 4.0.0.
 OLD_FILES+=usr/lib/clang/3.9.1/include/sanitizer/allocator_interface.h
 OLD_FILES+=usr/lib/clang/3.9.1/include/sanitizer/asan_interface.h
 OLD_FILES+=usr/lib/clang/3.9.1/include/sanitizer/common_interface_defs.h

Modified: projects/clang400-import/UPDATING
==============================================================================
--- projects/clang400-import/UPDATING	Wed Mar  1 21:55:49 2017	(r314523)
+++ projects/clang400-import/UPDATING	Wed Mar  1 21:58:26 2017	(r314524)
@@ -51,7 +51,7 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 12
 
 ****************************** SPECIAL WARNING: ******************************
 
-2017mmdd:
+20170302:
 	Clang, llvm, lldb, compiler-rt and libc++ have been upgraded to 4.0.0.
 	Please see the 20141231 entry below for information about prerequisites
 	and upgrading, if you are not already using clang 3.5.0 or higher.

Modified: projects/clang400-import/sys/sys/param.h
==============================================================================
--- projects/clang400-import/sys/sys/param.h	Wed Mar  1 21:55:49 2017	(r314523)
+++ projects/clang400-import/sys/sys/param.h	Wed Mar  1 21:58:26 2017	(r314524)
@@ -58,7 +58,7 @@
  *		in the range 5 to 9.
  */
 #undef __FreeBSD_version
-#define __FreeBSD_version 1200022	/* Master, propagated to newvers */
+#define __FreeBSD_version 1200023	/* Master, propagated to newvers */
 
 /*
  * __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD,