From owner-svn-src-projects@freebsd.org Sun Nov 15 01:50:19 2015 Return-Path: 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 8743AA283E5 for ; Sun, 15 Nov 2015 01:50:19 +0000 (UTC) (envelope-from nwhitehorn@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 2E809110C; Sun, 15 Nov 2015 01:50:19 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAF1oITr033905; Sun, 15 Nov 2015 01:50:18 GMT (envelope-from nwhitehorn@FreeBSD.org) Received: (from nwhitehorn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAF1oIRv033903; Sun, 15 Nov 2015 01:50:18 GMT (envelope-from nwhitehorn@FreeBSD.org) Message-Id: <201511150150.tAF1oIRv033903@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nwhitehorn set sender to nwhitehorn@FreeBSD.org using -f From: Nathan Whitehorn Date: Sun, 15 Nov 2015 01:50:18 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r290839 - projects/powernv/powerpc/powernv X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Nov 2015 01:50:19 -0000 Author: nwhitehorn Date: Sun Nov 15 01:50:17 2015 New Revision: 290839 URL: https://svnweb.freebsd.org/changeset/base/290839 Log: Deal with the IOMMU with a hammer: turn it off. Full booting now blocked by the fact that non-IPI IRQs don't work for some reason. Modified: projects/powernv/powerpc/powernv/opal.h projects/powernv/powerpc/powernv/opal_pci.c Modified: projects/powernv/powerpc/powernv/opal.h ============================================================================== --- projects/powernv/powerpc/powernv/opal.h Sat Nov 14 23:43:59 2015 (r290838) +++ projects/powernv/powerpc/powernv/opal.h Sun Nov 15 01:50:17 2015 (r290839) @@ -50,9 +50,16 @@ int opal_call(uint64_t token, ...); #define OPAL_PCI_CONFIG_WRITE_WORD 18 #define OPAL_SET_XIVE 19 #define OPAL_GET_XIVE 20 +#define OPAL_PCI_SET_PE 31 #define OPAL_START_CPU 41 +#define OPAL_PCI_MAP_PE_DMA_WINDOW_REAL 45 + +/* For OPAL_PCI_SET_PE */ +#define OPAL_UNMAP_PE 0 +#define OPAL_MAP_PE 1 #define OPAL_SUCCESS 0 +#define OPAL_PARAMETER -1 #define OPAL_BUSY_EVENT -12 #endif Modified: projects/powernv/powerpc/powernv/opal_pci.c ============================================================================== --- projects/powernv/powerpc/powernv/opal_pci.c Sat Nov 14 23:43:59 2015 (r290838) +++ projects/powernv/powerpc/powernv/opal_pci.c Sun Nov 15 01:50:17 2015 (r290839) @@ -124,6 +124,7 @@ opalpci_attach(device_t dev) { struct opalpci_softc *sc; cell_t id[2]; + int err; sc = device_get_softc(dev); @@ -142,6 +143,28 @@ opalpci_attach(device_t dev) return (ENXIO); } + /* + * Map all devices on the bus to partitionable endpoint zero until + * such time as we start wanting to do things like bhyve. + */ + err = opal_call(OPAL_PCI_SET_PE, sc->phb_id, 0 /* Root PE */, + 0, 0, 0, 0, /* All devices */ + OPAL_MAP_PE); + if (err != 0) { + device_printf(dev, "PE mapping failed: %d\n", err); + return (ENXIO); + } + + /* + * Also disable the IOMMU for the time being for PE 0 (everything) + */ + err = opal_call(OPAL_PCI_MAP_PE_DMA_WINDOW_REAL, sc->phb_id, 0, 0, + 0 /* start address */, roundup2(Maxmem, 16*1024*1024)/* all RAM */); + if (err != 0) { + device_printf(dev, "DMA mapping failed: %d\n", err); + return (ENXIO); + } + return (ofw_pci_attach(dev)); } From owner-svn-src-projects@freebsd.org Sun Nov 15 03:18:51 2015 Return-Path: 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 731EFA2E4C2 for ; Sun, 15 Nov 2015 03:18:51 +0000 (UTC) (envelope-from nwhitehorn@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 3D7F21270; Sun, 15 Nov 2015 03:18:51 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAF3Io7o066894; Sun, 15 Nov 2015 03:18:50 GMT (envelope-from nwhitehorn@FreeBSD.org) Received: (from nwhitehorn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAF3IoxS066893; Sun, 15 Nov 2015 03:18:50 GMT (envelope-from nwhitehorn@FreeBSD.org) Message-Id: <201511150318.tAF3IoxS066893@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nwhitehorn set sender to nwhitehorn@FreeBSD.org using -f From: Nathan Whitehorn Date: Sun, 15 Nov 2015 03:18:50 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r290841 - projects/powernv/powerpc/pseries X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Nov 2015 03:18:51 -0000 Author: nwhitehorn Date: Sun Nov 15 03:18:50 2015 New Revision: 290841 URL: https://svnweb.freebsd.org/changeset/base/290841 Log: The compatible checks are sufficient here: no need to test the complicated "name" property that might have a unit address on the end with an FDT. This fixes interrupt routing and lets me boot multiuser on the powernv simulator when running as an OPAL payload. Sponsored by: FreeBSD Foundation Modified: projects/powernv/powerpc/pseries/xics.c Modified: projects/powernv/powerpc/pseries/xics.c ============================================================================== --- projects/powernv/powerpc/pseries/xics.c Sun Nov 15 03:04:39 2015 (r290840) +++ projects/powernv/powerpc/pseries/xics.c Sun Nov 15 03:18:50 2015 (r290841) @@ -152,9 +152,6 @@ xicp_mem_for_cpu(int cpu) static int xicp_probe(device_t dev) { - if (ofw_bus_get_name(dev) == NULL || strcmp(ofw_bus_get_name(dev), - "interrupt-controller") != 0) - return (ENXIO); if (!ofw_bus_is_compatible(dev, "ibm,ppc-xicp")) return (ENXIO); @@ -166,9 +163,6 @@ xicp_probe(device_t dev) static int xics_probe(device_t dev) { - if (ofw_bus_get_name(dev) == NULL || strcmp(ofw_bus_get_name(dev), - "interrupt-controller") != 0) - return (ENXIO); if (!ofw_bus_is_compatible(dev, "ibm,ppc-xics")) return (ENXIO); From owner-svn-src-projects@freebsd.org Sun Nov 15 06:38:40 2015 Return-Path: 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 2FDCAA2FE93 for ; Sun, 15 Nov 2015 06:38:40 +0000 (UTC) (envelope-from nwhitehorn@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 DE40619E0; Sun, 15 Nov 2015 06:38:39 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAF6ccWe033109; Sun, 15 Nov 2015 06:38:38 GMT (envelope-from nwhitehorn@FreeBSD.org) Received: (from nwhitehorn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAF6cc0D033108; Sun, 15 Nov 2015 06:38:38 GMT (envelope-from nwhitehorn@FreeBSD.org) Message-Id: <201511150638.tAF6cc0D033108@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nwhitehorn set sender to nwhitehorn@FreeBSD.org using -f From: Nathan Whitehorn Date: Sun, 15 Nov 2015 06:38:38 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r290852 - projects/powernv/powerpc/powernv X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Nov 2015 06:38:40 -0000 Author: nwhitehorn Date: Sun Nov 15 06:38:38 2015 New Revision: 290852 URL: https://svnweb.freebsd.org/changeset/base/290852 Log: Fix style bugs. Sponsored by: FreeBSD Foundation Modified: projects/powernv/powerpc/powernv/opal_console.c Modified: projects/powernv/powerpc/powernv/opal_console.c ============================================================================== --- projects/powernv/powerpc/powernv/opal_console.c Sun Nov 15 05:21:58 2015 (r290851) +++ projects/powernv/powerpc/powernv/opal_console.c Sun Nov 15 06:38:38 2015 (r290852) @@ -138,8 +138,8 @@ uart_opal_real_map_outbuffer(uint64_t *b { if (!mtx_initialized(&escapehatch.mtx)) - mtx_init(&escapehatch.mtx, "uart_opal", NULL, MTX_SPIN | MTX_QUIET | - MTX_NOWITNESS); + mtx_init(&escapehatch.mtx, "uart_opal", NULL, + MTX_SPIN | MTX_QUIET | MTX_NOWITNESS); if (!pmap_bootstrapped) return; @@ -148,7 +148,8 @@ uart_opal_real_map_outbuffer(uint64_t *b escapehatch.size = *(uint64_t *)(*lenp) = min(sizeof(escapehatch.tmpbuf), *(uint64_t *)(*lenp)); mtx_lock_spin(&escapehatch.mtx); - memcpy(escapehatch.tmpbuf, (void *)(*bufferp), *(uint64_t *)(*lenp)); + memcpy(escapehatch.tmpbuf, (void *)(*bufferp), + *(uint64_t *)(*lenp)); *bufferp = (uint64_t)escapehatch.tmpbuf; *lenp = (uint64_t)&escapehatch.size; } From owner-svn-src-projects@freebsd.org Sun Nov 15 12:16:21 2015 Return-Path: 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 E4325A2E996 for ; Sun, 15 Nov 2015 12:16:20 +0000 (UTC) (envelope-from melifaro@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 BB37219A8; Sun, 15 Nov 2015 12:16:18 +0000 (UTC) (envelope-from melifaro@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAFCGHMv035641; Sun, 15 Nov 2015 12:16:17 GMT (envelope-from melifaro@FreeBSD.org) Received: (from melifaro@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAFCGHBh035636; Sun, 15 Nov 2015 12:16:17 GMT (envelope-from melifaro@FreeBSD.org) Message-Id: <201511151216.tAFCGHBh035636@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: melifaro set sender to melifaro@FreeBSD.org using -f From: "Alexander V. Chernikov" Date: Sun, 15 Nov 2015 12:16:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r290858 - in projects/routing: . bin bin/cat bin/cat/tests bin/csh bin/date/tests bin/dd bin/dd/tests bin/expr/tests bin/ls bin/ls/tests bin/mv/tests bin/pax/tests bin/pkill/tests bin/p... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Nov 2015 12:16:21 -0000 Author: melifaro Date: Sun Nov 15 12:16:08 2015 New Revision: 290858 URL: https://svnweb.freebsd.org/changeset/base/290858 Log: Merge HEAD r276578 through r290825 Added: projects/routing/bin/dd/tests/ - copied from r290825, head/bin/dd/tests/ projects/routing/bin/ls/tests/ - copied from r290825, head/bin/ls/tests/ projects/routing/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/tst.kpriv.ksh - copied unchanged from r290825, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/tst.kpriv.ksh projects/routing/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/scalars/err.bigglobal.d - copied unchanged from r290825, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/scalars/err.bigglobal.d projects/routing/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/scalars/err.biglocal.d - copied unchanged from r290825, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/scalars/err.biglocal.d projects/routing/contrib/bmake/metachar.c - copied unchanged from r290825, head/contrib/bmake/metachar.c projects/routing/contrib/bmake/metachar.h - copied unchanged from r290825, head/contrib/bmake/metachar.h projects/routing/contrib/compiler-rt/lib/builtins/atomic_flag_clear.c - copied unchanged from r290825, head/contrib/compiler-rt/lib/builtins/atomic_flag_clear.c projects/routing/contrib/compiler-rt/lib/builtins/atomic_flag_clear_explicit.c - copied unchanged from r290825, head/contrib/compiler-rt/lib/builtins/atomic_flag_clear_explicit.c projects/routing/contrib/compiler-rt/lib/builtins/atomic_flag_test_and_set.c - copied unchanged from r290825, head/contrib/compiler-rt/lib/builtins/atomic_flag_test_and_set.c projects/routing/contrib/compiler-rt/lib/builtins/atomic_flag_test_and_set_explicit.c - copied unchanged from r290825, head/contrib/compiler-rt/lib/builtins/atomic_flag_test_and_set_explicit.c projects/routing/contrib/compiler-rt/lib/builtins/atomic_signal_fence.c - copied unchanged from r290825, head/contrib/compiler-rt/lib/builtins/atomic_signal_fence.c projects/routing/contrib/compiler-rt/lib/builtins/atomic_thread_fence.c - copied unchanged from r290825, head/contrib/compiler-rt/lib/builtins/atomic_thread_fence.c projects/routing/contrib/compiler-rt/lib/builtins/extendhfsf2.c - copied unchanged from r290825, head/contrib/compiler-rt/lib/builtins/extendhfsf2.c projects/routing/contrib/compiler-rt/lib/builtins/i386/chkstk.S - copied unchanged from r290825, head/contrib/compiler-rt/lib/builtins/i386/chkstk.S projects/routing/contrib/compiler-rt/lib/builtins/truncdfhf2.c - copied unchanged from r290825, head/contrib/compiler-rt/lib/builtins/truncdfhf2.c projects/routing/contrib/compiler-rt/lib/builtins/truncsfhf2.c - copied unchanged from r290825, head/contrib/compiler-rt/lib/builtins/truncsfhf2.c projects/routing/contrib/compiler-rt/lib/builtins/x86_64/chkstk.S - copied unchanged from r290825, head/contrib/compiler-rt/lib/builtins/x86_64/chkstk.S projects/routing/contrib/compiler-rt/lib/profile/InstrProfilingUtil.c - copied unchanged from r290825, head/contrib/compiler-rt/lib/profile/InstrProfilingUtil.c projects/routing/contrib/compiler-rt/lib/profile/InstrProfilingUtil.h - copied unchanged from r290825, head/contrib/compiler-rt/lib/profile/InstrProfilingUtil.h projects/routing/contrib/compiler-rt/lib/safestack/ - copied from r290825, head/contrib/compiler-rt/lib/safestack/ projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix.h - copied unchanged from r290825, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix.h projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_internal.h - copied unchanged from r290825, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_internal.h projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.cc - copied unchanged from r290825, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.h - copied unchanged from r290825, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.h projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_process_libcdep.cc - copied unchanged from r290825, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_process_libcdep.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.h - copied unchanged from r290825, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.h projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cc - copied unchanged from r290825, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_symbolizer_test.cc - copied unchanged from r290825, head/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_symbolizer_test.cc projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors.h - copied unchanged from r290825, head/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors.h projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_new_delete.cc - copied unchanged from r290825, head/contrib/compiler-rt/lib/tsan/rtl/tsan_new_delete.cc projects/routing/contrib/compiler-rt/lib/ubsan/ubsan_init_standalone.cc - copied unchanged from r290825, head/contrib/compiler-rt/lib/ubsan/ubsan_init_standalone.cc projects/routing/contrib/compiler-rt/lib/ubsan/ubsan_platform.h - copied unchanged from r290825, head/contrib/compiler-rt/lib/ubsan/ubsan_platform.h projects/routing/contrib/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cc - copied unchanged from r290825, head/contrib/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cc projects/routing/contrib/compiler-rt/lib/ubsan/ubsan_type_hash_win.cc - copied unchanged from r290825, head/contrib/compiler-rt/lib/ubsan/ubsan_type_hash_win.cc projects/routing/contrib/libucl/CMakeLists.txt - copied unchanged from r290825, head/contrib/libucl/CMakeLists.txt projects/routing/contrib/libucl/examples/ - copied from r290825, head/contrib/libucl/examples/ projects/routing/contrib/libucl/include/ucl++.h - copied unchanged from r290825, head/contrib/libucl/include/ucl++.h projects/routing/contrib/libucl/m4/ - copied from r290825, head/contrib/libucl/m4/ projects/routing/contrib/libucl/python/ - copied from r290825, head/contrib/libucl/python/ projects/routing/contrib/libucl/src/ucl_msgpack.c - copied unchanged from r290825, head/contrib/libucl/src/ucl_msgpack.c projects/routing/contrib/libucl/src/ucl_sexp.c - copied unchanged from r290825, head/contrib/libucl/src/ucl_sexp.c projects/routing/contrib/libucl/tests/basic/15.in - copied unchanged from r290825, head/contrib/libucl/tests/basic/15.in projects/routing/contrib/libucl/tests/basic/15.inc - copied unchanged from r290825, head/contrib/libucl/tests/basic/15.inc projects/routing/contrib/libucl/tests/basic/15.res - copied unchanged from r290825, head/contrib/libucl/tests/basic/15.res projects/routing/contrib/libucl/tests/basic/16.in - copied unchanged from r290825, head/contrib/libucl/tests/basic/16.in projects/routing/contrib/libucl/tests/basic/16.inc - copied unchanged from r290825, head/contrib/libucl/tests/basic/16.inc projects/routing/contrib/libucl/tests/basic/16.res - copied unchanged from r290825, head/contrib/libucl/tests/basic/16.res projects/routing/contrib/libucl/tests/basic/17.in - copied unchanged from r290825, head/contrib/libucl/tests/basic/17.in projects/routing/contrib/libucl/tests/basic/17.res - copied unchanged from r290825, head/contrib/libucl/tests/basic/17.res projects/routing/contrib/libucl/tests/basic/18.in - copied unchanged from r290825, head/contrib/libucl/tests/basic/18.in projects/routing/contrib/libucl/tests/basic/18.res - copied unchanged from r290825, head/contrib/libucl/tests/basic/18.res projects/routing/contrib/libucl/tests/basic/19-append.inc - copied unchanged from r290825, head/contrib/libucl/tests/basic/19-append.inc projects/routing/contrib/libucl/tests/basic/19-merge.inc - copied unchanged from r290825, head/contrib/libucl/tests/basic/19-merge.inc projects/routing/contrib/libucl/tests/basic/19-rewrite.inc - copied unchanged from r290825, head/contrib/libucl/tests/basic/19-rewrite.inc projects/routing/contrib/libucl/tests/basic/19.in - copied unchanged from r290825, head/contrib/libucl/tests/basic/19.in projects/routing/contrib/libucl/tests/basic/19.res - copied unchanged from r290825, head/contrib/libucl/tests/basic/19.res projects/routing/contrib/libucl/tests/basic/20.in - copied unchanged from r290825, head/contrib/libucl/tests/basic/20.in projects/routing/contrib/libucl/tests/basic/20.res - copied unchanged from r290825, head/contrib/libucl/tests/basic/20.res projects/routing/contrib/libucl/tests/basic/21.in - copied unchanged from r290825, head/contrib/libucl/tests/basic/21.in projects/routing/contrib/libucl/tests/basic/21.res - copied unchanged from r290825, head/contrib/libucl/tests/basic/21.res projects/routing/contrib/libucl/tests/basic/22.in - copied unchanged from r290825, head/contrib/libucl/tests/basic/22.in projects/routing/contrib/libucl/tests/basic/22.res - copied unchanged from r290825, head/contrib/libucl/tests/basic/22.res projects/routing/contrib/libucl/tests/msgpack.test - copied unchanged from r290825, head/contrib/libucl/tests/msgpack.test projects/routing/contrib/libucl/tests/test_msgpack.c - copied unchanged from r290825, head/contrib/libucl/tests/test_msgpack.c projects/routing/contrib/libucl/utils/ucl-tool.c - copied unchanged from r290825, head/contrib/libucl/utils/ucl-tool.c projects/routing/contrib/llvm/include/llvm/ADT/EpochTracker.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/ADT/EpochTracker.h projects/routing/contrib/llvm/include/llvm/Analysis/IteratedDominanceFrontier.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/Analysis/IteratedDominanceFrontier.h projects/routing/contrib/llvm/include/llvm/Analysis/LoopAccessAnalysis.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/Analysis/LoopAccessAnalysis.h projects/routing/contrib/llvm/include/llvm/Analysis/MemoryLocation.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/Analysis/MemoryLocation.h projects/routing/contrib/llvm/include/llvm/Analysis/TargetLibraryInfo.def - copied unchanged from r290825, head/contrib/llvm/include/llvm/Analysis/TargetLibraryInfo.def projects/routing/contrib/llvm/include/llvm/Analysis/TargetLibraryInfo.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/Analysis/TargetLibraryInfo.h projects/routing/contrib/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h projects/routing/contrib/llvm/include/llvm/Analysis/VectorUtils.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/Analysis/VectorUtils.h projects/routing/contrib/llvm/include/llvm/AsmParser/SlotMapping.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/AsmParser/SlotMapping.h projects/routing/contrib/llvm/include/llvm/CodeGen/BasicTTIImpl.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/CodeGen/BasicTTIImpl.h projects/routing/contrib/llvm/include/llvm/CodeGen/DIEValue.def - copied unchanged from r290825, head/contrib/llvm/include/llvm/CodeGen/DIEValue.def projects/routing/contrib/llvm/include/llvm/CodeGen/DwarfStringPoolEntry.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/CodeGen/DwarfStringPoolEntry.h projects/routing/contrib/llvm/include/llvm/CodeGen/FaultMaps.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/CodeGen/FaultMaps.h projects/routing/contrib/llvm/include/llvm/CodeGen/MIRParser/ - copied from r290825, head/contrib/llvm/include/llvm/CodeGen/MIRParser/ projects/routing/contrib/llvm/include/llvm/CodeGen/MIRYamlMapping.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/CodeGen/MIRYamlMapping.h projects/routing/contrib/llvm/include/llvm/CodeGen/MachineFunctionInitializer.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/CodeGen/MachineFunctionInitializer.h projects/routing/contrib/llvm/include/llvm/CodeGen/WinEHFuncInfo.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/CodeGen/WinEHFuncInfo.h projects/routing/contrib/llvm/include/llvm/DebugInfo/DWARF/ - copied from r290825, head/contrib/llvm/include/llvm/DebugInfo/DWARF/ projects/routing/contrib/llvm/include/llvm/DebugInfo/PDB/ - copied from r290825, head/contrib/llvm/include/llvm/DebugInfo/PDB/ projects/routing/contrib/llvm/include/llvm/ExecutionEngine/JITSymbolFlags.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/ExecutionEngine/JITSymbolFlags.h projects/routing/contrib/llvm/include/llvm/ExecutionEngine/ObjectMemoryBuffer.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/ExecutionEngine/ObjectMemoryBuffer.h projects/routing/contrib/llvm/include/llvm/ExecutionEngine/Orc/ - copied from r290825, head/contrib/llvm/include/llvm/ExecutionEngine/Orc/ projects/routing/contrib/llvm/include/llvm/ExecutionEngine/OrcMCJITReplacement.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/ExecutionEngine/OrcMCJITReplacement.h projects/routing/contrib/llvm/include/llvm/IR/DebugInfoFlags.def - copied unchanged from r290825, head/contrib/llvm/include/llvm/IR/DebugInfoFlags.def projects/routing/contrib/llvm/include/llvm/IR/DebugInfoMetadata.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/IR/DebugInfoMetadata.h projects/routing/contrib/llvm/include/llvm/IR/IntrinsicsAMDGPU.td - copied unchanged from r290825, head/contrib/llvm/include/llvm/IR/IntrinsicsAMDGPU.td projects/routing/contrib/llvm/include/llvm/IR/IntrinsicsBPF.td - copied unchanged from r290825, head/contrib/llvm/include/llvm/IR/IntrinsicsBPF.td projects/routing/contrib/llvm/include/llvm/IR/IntrinsicsSystemZ.td - copied unchanged from r290825, head/contrib/llvm/include/llvm/IR/IntrinsicsSystemZ.td projects/routing/contrib/llvm/include/llvm/IR/IntrinsicsWebAssembly.td - copied unchanged from r290825, head/contrib/llvm/include/llvm/IR/IntrinsicsWebAssembly.td projects/routing/contrib/llvm/include/llvm/IR/ModuleSlotTracker.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/IR/ModuleSlotTracker.h projects/routing/contrib/llvm/include/llvm/IR/Value.def - copied unchanged from r290825, head/contrib/llvm/include/llvm/IR/Value.def projects/routing/contrib/llvm/include/llvm/LibDriver/ - copied from r290825, head/contrib/llvm/include/llvm/LibDriver/ projects/routing/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserUtils.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserUtils.h projects/routing/contrib/llvm/include/llvm/MC/MCSymbolCOFF.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/MC/MCSymbolCOFF.h projects/routing/contrib/llvm/include/llvm/MC/MCSymbolELF.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/MC/MCSymbolELF.h projects/routing/contrib/llvm/include/llvm/MC/MCSymbolMachO.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/MC/MCSymbolMachO.h projects/routing/contrib/llvm/include/llvm/Object/ArchiveWriter.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/Object/ArchiveWriter.h projects/routing/contrib/llvm/include/llvm/Object/StackMapParser.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/Object/StackMapParser.h projects/routing/contrib/llvm/include/llvm/Object/SymbolSize.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/Object/SymbolSize.h projects/routing/contrib/llvm/include/llvm/Passes/ - copied from r290825, head/contrib/llvm/include/llvm/Passes/ projects/routing/contrib/llvm/include/llvm/Support/COM.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/Support/COM.h projects/routing/contrib/llvm/include/llvm/Support/Dwarf.def - copied unchanged from r290825, head/contrib/llvm/include/llvm/Support/Dwarf.def projects/routing/contrib/llvm/include/llvm/Support/MipsABIFlags.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/Support/MipsABIFlags.h projects/routing/contrib/llvm/include/llvm/Support/StringSaver.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/Support/StringSaver.h projects/routing/contrib/llvm/include/llvm/Support/TargetParser.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/Support/TargetParser.h projects/routing/contrib/llvm/include/llvm/Target/TargetRecip.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/Target/TargetRecip.h projects/routing/contrib/llvm/include/llvm/Transforms/IPO/LowerBitSets.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/Transforms/IPO/LowerBitSets.h projects/routing/contrib/llvm/include/llvm/Transforms/InstCombine/ - copied from r290825, head/contrib/llvm/include/llvm/Transforms/InstCombine/ projects/routing/contrib/llvm/include/llvm/Transforms/Scalar/ - copied from r290825, head/contrib/llvm/include/llvm/Transforms/Scalar/ projects/routing/contrib/llvm/include/llvm/Transforms/Utils/LoopVersioning.h - copied unchanged from r290825, head/contrib/llvm/include/llvm/Transforms/Utils/LoopVersioning.h projects/routing/contrib/llvm/lib/Analysis/DivergenceAnalysis.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Analysis/DivergenceAnalysis.cpp projects/routing/contrib/llvm/lib/Analysis/IteratedDominanceFrontier.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Analysis/IteratedDominanceFrontier.cpp projects/routing/contrib/llvm/lib/Analysis/LoopAccessAnalysis.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Analysis/LoopAccessAnalysis.cpp projects/routing/contrib/llvm/lib/Analysis/MemDerefPrinter.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Analysis/MemDerefPrinter.cpp projects/routing/contrib/llvm/lib/Analysis/MemoryLocation.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Analysis/MemoryLocation.cpp projects/routing/contrib/llvm/lib/Analysis/TargetLibraryInfo.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Analysis/TargetLibraryInfo.cpp projects/routing/contrib/llvm/lib/Analysis/VectorUtils.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Analysis/VectorUtils.cpp projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.cpp - copied unchanged from r290825, head/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.cpp projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.h - copied unchanged from r290825, head/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.h projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.cpp - copied unchanged from r290825, head/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.cpp projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.h - copied unchanged from r290825, head/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.h projects/routing/contrib/llvm/lib/CodeGen/CoreCLRGC.cpp - copied unchanged from r290825, head/contrib/llvm/lib/CodeGen/CoreCLRGC.cpp projects/routing/contrib/llvm/lib/CodeGen/FaultMaps.cpp - copied unchanged from r290825, head/contrib/llvm/lib/CodeGen/FaultMaps.cpp projects/routing/contrib/llvm/lib/CodeGen/GCRootLowering.cpp - copied unchanged from r290825, head/contrib/llvm/lib/CodeGen/GCRootLowering.cpp projects/routing/contrib/llvm/lib/CodeGen/ImplicitNullChecks.cpp - copied unchanged from r290825, head/contrib/llvm/lib/CodeGen/ImplicitNullChecks.cpp projects/routing/contrib/llvm/lib/CodeGen/InterleavedAccessPass.cpp - copied unchanged from r290825, head/contrib/llvm/lib/CodeGen/InterleavedAccessPass.cpp projects/routing/contrib/llvm/lib/CodeGen/MIRParser/ - copied from r290825, head/contrib/llvm/lib/CodeGen/MIRParser/ projects/routing/contrib/llvm/lib/CodeGen/MIRPrinter.cpp - copied unchanged from r290825, head/contrib/llvm/lib/CodeGen/MIRPrinter.cpp projects/routing/contrib/llvm/lib/CodeGen/MIRPrinter.h - copied unchanged from r290825, head/contrib/llvm/lib/CodeGen/MIRPrinter.h projects/routing/contrib/llvm/lib/CodeGen/MIRPrintingPass.cpp - copied unchanged from r290825, head/contrib/llvm/lib/CodeGen/MIRPrintingPass.cpp projects/routing/contrib/llvm/lib/CodeGen/ShadowStackGCLowering.cpp - copied unchanged from r290825, head/contrib/llvm/lib/CodeGen/ShadowStackGCLowering.cpp projects/routing/contrib/llvm/lib/CodeGen/ShrinkWrap.cpp - copied unchanged from r290825, head/contrib/llvm/lib/CodeGen/ShrinkWrap.cpp projects/routing/contrib/llvm/lib/CodeGen/WinEHPrepare.cpp - copied unchanged from r290825, head/contrib/llvm/lib/CodeGen/WinEHPrepare.cpp projects/routing/contrib/llvm/lib/DebugInfo/DWARF/ - copied from r290825, head/contrib/llvm/lib/DebugInfo/DWARF/ projects/routing/contrib/llvm/lib/DebugInfo/PDB/ - copied from r290825, head/contrib/llvm/lib/DebugInfo/PDB/ projects/routing/contrib/llvm/lib/ExecutionEngine/Orc/ - copied from r290825, head/contrib/llvm/lib/ExecutionEngine/Orc/ projects/routing/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp - copied unchanged from r290825, head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp projects/routing/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.h - copied unchanged from r290825, head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.h projects/routing/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h - copied unchanged from r290825, head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h projects/routing/contrib/llvm/lib/ExecutionEngine/SectionMemoryManager.cpp - copied unchanged from r290825, head/contrib/llvm/lib/ExecutionEngine/SectionMemoryManager.cpp projects/routing/contrib/llvm/lib/IR/DebugInfoMetadata.cpp - copied unchanged from r290825, head/contrib/llvm/lib/IR/DebugInfoMetadata.cpp projects/routing/contrib/llvm/lib/IR/MetadataImpl.h - copied unchanged from r290825, head/contrib/llvm/lib/IR/MetadataImpl.h projects/routing/contrib/llvm/lib/IR/Operator.cpp - copied unchanged from r290825, head/contrib/llvm/lib/IR/Operator.cpp projects/routing/contrib/llvm/lib/LibDriver/ - copied from r290825, head/contrib/llvm/lib/LibDriver/ projects/routing/contrib/llvm/lib/MC/MCInstrDesc.cpp - copied unchanged from r290825, head/contrib/llvm/lib/MC/MCInstrDesc.cpp projects/routing/contrib/llvm/lib/MC/MCSchedule.cpp - copied unchanged from r290825, head/contrib/llvm/lib/MC/MCSchedule.cpp projects/routing/contrib/llvm/lib/MC/MCSymbolELF.cpp - copied unchanged from r290825, head/contrib/llvm/lib/MC/MCSymbolELF.cpp projects/routing/contrib/llvm/lib/Object/ArchiveWriter.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Object/ArchiveWriter.cpp projects/routing/contrib/llvm/lib/Object/SymbolSize.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Object/SymbolSize.cpp projects/routing/contrib/llvm/lib/Passes/ - copied from r290825, head/contrib/llvm/lib/Passes/ projects/routing/contrib/llvm/lib/Support/COM.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Support/COM.cpp projects/routing/contrib/llvm/lib/Support/StringSaver.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Support/StringSaver.cpp projects/routing/contrib/llvm/lib/Support/TargetParser.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Support/TargetParser.cpp projects/routing/contrib/llvm/lib/Support/Unix/COM.inc - copied unchanged from r290825, head/contrib/llvm/lib/Support/Unix/COM.inc projects/routing/contrib/llvm/lib/Support/Windows/COM.inc - copied unchanged from r290825, head/contrib/llvm/lib/Support/Windows/COM.inc projects/routing/contrib/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.h - copied unchanged from r290825, head/contrib/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.h projects/routing/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.h - copied unchanged from r290825, head/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.h projects/routing/contrib/llvm/lib/Target/AMDGPU/ - copied from r290825, head/contrib/llvm/lib/Target/AMDGPU/ projects/routing/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.h - copied unchanged from r290825, head/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.h projects/routing/contrib/llvm/lib/Target/ARM/ThumbRegisterInfo.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/ARM/ThumbRegisterInfo.cpp projects/routing/contrib/llvm/lib/Target/ARM/ThumbRegisterInfo.h - copied unchanged from r290825, head/contrib/llvm/lib/Target/ARM/ThumbRegisterInfo.h projects/routing/contrib/llvm/lib/Target/BPF/ - copied from r290825, head/contrib/llvm/lib/Target/BPF/ projects/routing/contrib/llvm/lib/Target/Hexagon/BitTracker.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/Hexagon/BitTracker.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/BitTracker.h - copied unchanged from r290825, head/contrib/llvm/lib/Target/Hexagon/BitTracker.h projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonBitTracker.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/Hexagon/HexagonBitTracker.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonBitTracker.h - copied unchanged from r290825, head/contrib/llvm/lib/Target/Hexagon/HexagonBitTracker.h projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonCommonGEP.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/Hexagon/HexagonCommonGEP.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonExpandCondsets.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/Hexagon/HexagonExpandCondsets.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonGenExtract.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/Hexagon/HexagonGenExtract.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonGenInsert.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/Hexagon/HexagonGenInsert.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonGenPredicate.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/Hexagon/HexagonGenPredicate.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoVector.td - copied unchanged from r290825, head/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoVector.td projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonIsetDx.td - copied unchanged from r290825, head/contrib/llvm/lib/Target/Hexagon/HexagonIsetDx.td projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonTargetStreamer.h - copied unchanged from r290825, head/contrib/llvm/lib/Target/Hexagon/HexagonTargetStreamer.h projects/routing/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonFixupKinds.h - copied unchanged from r290825, head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonFixupKinds.h projects/routing/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCompound.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCompound.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCDuplexInfo.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCDuplexInfo.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.h - copied unchanged from r290825, head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.h projects/routing/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.h - copied unchanged from r290825, head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.h projects/routing/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.h - copied unchanged from r290825, head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.h projects/routing/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.h - copied unchanged from r290825, head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.h projects/routing/contrib/llvm/lib/Target/Mips/MicroMips32r6InstrFormats.td - copied unchanged from r290825, head/contrib/llvm/lib/Target/Mips/MicroMips32r6InstrFormats.td projects/routing/contrib/llvm/lib/Target/Mips/MicroMips32r6InstrInfo.td - copied unchanged from r290825, head/contrib/llvm/lib/Target/Mips/MicroMips32r6InstrInfo.td projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAlloca.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAlloca.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXLowerKernelArgs.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/NVPTX/NVPTXLowerKernelArgs.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXPeephole.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/NVPTX/NVPTXPeephole.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h - copied unchanged from r290825, head/contrib/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h projects/routing/contrib/llvm/lib/Target/PowerPC/PPCEarlyReturn.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/PowerPC/PPCEarlyReturn.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/PPCInstrHTM.td - copied unchanged from r290825, head/contrib/llvm/lib/Target/PowerPC/PPCInstrHTM.td projects/routing/contrib/llvm/lib/Target/PowerPC/PPCInstrQPX.td - copied unchanged from r290825, head/contrib/llvm/lib/Target/PowerPC/PPCInstrQPX.td projects/routing/contrib/llvm/lib/Target/PowerPC/PPCLoopDataPrefetch.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/PowerPC/PPCLoopDataPrefetch.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/PPCLoopPreIncPrep.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/PowerPC/PPCLoopPreIncPrep.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/PPCTLSDynamicCall.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/PowerPC/PPCTLSDynamicCall.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/PPCTOCRegDeps.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/PowerPC/PPCTOCRegDeps.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h - copied unchanged from r290825, head/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h projects/routing/contrib/llvm/lib/Target/PowerPC/PPCVSXCopy.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/PowerPC/PPCVSXCopy.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/PPCVSXFMAMutate.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/PowerPC/PPCVSXFMAMutate.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/PPCVSXSwapRemoval.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/PowerPC/PPCVSXSwapRemoval.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZInstrVector.td - copied unchanged from r290825, head/contrib/llvm/lib/Target/SystemZ/SystemZInstrVector.td projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZLDCleanup.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/SystemZ/SystemZLDCleanup.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h - copied unchanged from r290825, head/contrib/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h projects/routing/contrib/llvm/lib/Target/TargetRecip.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/TargetRecip.cpp projects/routing/contrib/llvm/lib/Target/WebAssembly/ - copied from r290825, head/contrib/llvm/lib/Target/WebAssembly/ projects/routing/contrib/llvm/lib/Target/X86/X86ExpandPseudo.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/X86/X86ExpandPseudo.cpp projects/routing/contrib/llvm/lib/Target/X86/X86InstrMPX.td - copied unchanged from r290825, head/contrib/llvm/lib/Target/X86/X86InstrMPX.td projects/routing/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.h - copied unchanged from r290825, head/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.h projects/routing/contrib/llvm/lib/Target/X86/X86WinEHState.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Target/X86/X86WinEHState.cpp projects/routing/contrib/llvm/lib/Target/XCore/XCoreTargetTransformInfo.h - copied unchanged from r290825, head/contrib/llvm/lib/Target/XCore/XCoreTargetTransformInfo.h projects/routing/contrib/llvm/lib/Transforms/IPO/ElimAvailExtern.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Transforms/IPO/ElimAvailExtern.cpp projects/routing/contrib/llvm/lib/Transforms/IPO/LowerBitSets.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Transforms/IPO/LowerBitSets.cpp projects/routing/contrib/llvm/lib/Transforms/InstCombine/InstCombineInternal.h - copied unchanged from r290825, head/contrib/llvm/lib/Transforms/InstCombine/InstCombineInternal.h projects/routing/contrib/llvm/lib/Transforms/Instrumentation/SafeStack.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Transforms/Instrumentation/SafeStack.cpp projects/routing/contrib/llvm/lib/Transforms/ObjCARC/ARCInstKind.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Transforms/ObjCARC/ARCInstKind.cpp projects/routing/contrib/llvm/lib/Transforms/ObjCARC/ARCInstKind.h - copied unchanged from r290825, head/contrib/llvm/lib/Transforms/ObjCARC/ARCInstKind.h projects/routing/contrib/llvm/lib/Transforms/ObjCARC/BlotMapVector.h - copied unchanged from r290825, head/contrib/llvm/lib/Transforms/ObjCARC/BlotMapVector.h projects/routing/contrib/llvm/lib/Transforms/ObjCARC/PtrState.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Transforms/ObjCARC/PtrState.cpp projects/routing/contrib/llvm/lib/Transforms/ObjCARC/PtrState.h - copied unchanged from r290825, head/contrib/llvm/lib/Transforms/ObjCARC/PtrState.h projects/routing/contrib/llvm/lib/Transforms/Scalar/BDCE.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Transforms/Scalar/BDCE.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/Float2Int.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Transforms/Scalar/Float2Int.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/LoopDistribute.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Transforms/Scalar/LoopDistribute.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/LoopInterchange.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Transforms/Scalar/LoopInterchange.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/LowerExpectIntrinsic.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Transforms/Scalar/LowerExpectIntrinsic.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/NaryReassociate.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Transforms/Scalar/NaryReassociate.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/PlaceSafepoints.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Transforms/Scalar/PlaceSafepoints.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/SpeculativeExecution.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Transforms/Scalar/SpeculativeExecution.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/StraightLineStrengthReduce.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Transforms/Scalar/StraightLineStrengthReduce.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/LoopUtils.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Transforms/Utils/LoopUtils.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/LoopVersioning.cpp - copied unchanged from r290825, head/contrib/llvm/lib/Transforms/Utils/LoopVersioning.cpp projects/routing/contrib/llvm/patches/patch-01-clang-vendor-suffix.diff - copied unchanged from r290825, head/contrib/llvm/patches/patch-01-clang-vendor-suffix.diff projects/routing/contrib/llvm/patches/patch-02-add-CC-aliases.diff - copied unchanged from r290825, head/contrib/llvm/patches/patch-02-add-CC-aliases.diff projects/routing/contrib/llvm/patches/patch-03-enable-armv6-clrex.diff - copied unchanged from r290825, head/contrib/llvm/patches/patch-03-enable-armv6-clrex.diff projects/routing/contrib/llvm/patches/patch-04-clang-add-mips-triples.diff - copied unchanged from r290825, head/contrib/llvm/patches/patch-04-clang-add-mips-triples.diff projects/routing/contrib/llvm/patches/patch-05-clang-r244063-missing-atomic-libcall.diff - copied unchanged from r290825, head/contrib/llvm/patches/patch-05-clang-r244063-missing-atomic-libcall.diff projects/routing/contrib/llvm/patches/patch-06-llvm-r248439-fdiv-hoisting.diff - copied unchanged from r290825, head/contrib/llvm/patches/patch-06-llvm-r248439-fdiv-hoisting.diff projects/routing/contrib/llvm/patches/patch-07-undo-llvm-r240144-iostream-sigbus.diff - copied unchanged from r290825, head/contrib/llvm/patches/patch-07-undo-llvm-r240144-iostream-sigbus.diff projects/routing/contrib/llvm/patches/patch-08-llvm-r250085-fix-avx-crash.diff - copied unchanged from r290825, head/contrib/llvm/patches/patch-08-llvm-r250085-fix-avx-crash.diff projects/routing/contrib/llvm/patches/patch-09-clang-r250657-openmp.diff - copied unchanged from r290825, head/contrib/llvm/patches/patch-09-clang-r250657-openmp.diff projects/routing/contrib/llvm/projects/ - copied from r290825, head/contrib/llvm/projects/ projects/routing/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAMDGPU.def - copied unchanged from r290825, head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAMDGPU.def projects/routing/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsSystemZ.def - copied unchanged from r290825, head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsSystemZ.def projects/routing/contrib/llvm/tools/clang/include/clang/CodeGen/ObjectFilePCHContainerOperations.h - copied unchanged from r290825, head/contrib/llvm/tools/clang/include/clang/CodeGen/ObjectFilePCHContainerOperations.h projects/routing/contrib/llvm/tools/clang/include/clang/Frontend/PCHContainerOperations.h - copied unchanged from r290825, head/contrib/llvm/tools/clang/include/clang/Frontend/PCHContainerOperations.h projects/routing/contrib/llvm/tools/clang/include/clang/Rewrite/Core/RewriteBuffer.h - copied unchanged from r290825, head/contrib/llvm/tools/clang/include/clang/Rewrite/Core/RewriteBuffer.h projects/routing/contrib/llvm/tools/clang/lib/Basic/DiagnosticOptions.cpp - copied unchanged from r290825, head/contrib/llvm/tools/clang/lib/Basic/DiagnosticOptions.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp - copied unchanged from r290825, head/contrib/llvm/tools/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp projects/routing/contrib/llvm/tools/clang/lib/Driver/MinGWToolChain.cpp - copied unchanged from r290825, head/contrib/llvm/tools/clang/lib/Driver/MinGWToolChain.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/PCHContainerOperations.cpp - copied unchanged from r290825, head/contrib/llvm/tools/clang/lib/Frontend/PCHContainerOperations.cpp projects/routing/contrib/llvm/tools/clang/lib/Headers/avx512cdintrin.h - copied unchanged from r290825, head/contrib/llvm/tools/clang/lib/Headers/avx512cdintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/avx512dqintrin.h - copied unchanged from r290825, head/contrib/llvm/tools/clang/lib/Headers/avx512dqintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/avx512vldqintrin.h - copied unchanged from r290825, head/contrib/llvm/tools/clang/lib/Headers/avx512vldqintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/cuda/ - copied from r290825, head/contrib/llvm/tools/clang/lib/Headers/cuda/ projects/routing/contrib/llvm/tools/clang/lib/Headers/cuda_builtin_vars.h - copied unchanged from r290825, head/contrib/llvm/tools/clang/lib/Headers/cuda_builtin_vars.h projects/routing/contrib/llvm/tools/clang/lib/Headers/fxsrintrin.h - copied unchanged from r290825, head/contrib/llvm/tools/clang/lib/Headers/fxsrintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/htmintrin.h - copied unchanged from r290825, head/contrib/llvm/tools/clang/lib/Headers/htmintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/htmxlintrin.h - copied unchanged from r290825, head/contrib/llvm/tools/clang/lib/Headers/htmxlintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/inttypes.h - copied unchanged from r290825, head/contrib/llvm/tools/clang/lib/Headers/inttypes.h projects/routing/contrib/llvm/tools/clang/lib/Headers/s390intrin.h - copied unchanged from r290825, head/contrib/llvm/tools/clang/lib/Headers/s390intrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/vecintrin.h - copied unchanged from r290825, head/contrib/llvm/tools/clang/lib/Headers/vecintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/xtestintrin.h - copied unchanged from r290825, head/contrib/llvm/tools/clang/lib/Headers/xtestintrin.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBAttachInfo.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/API/SBAttachInfo.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBLanguageRuntime.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/API/SBLanguageRuntime.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBLaunchInfo.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/API/SBLaunchInfo.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBVariablesOptions.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/API/SBVariablesOptions.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SystemInitializerFull.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/API/SystemInitializerFull.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/CxaDemangle.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/Core/CxaDemangle.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/FastDemangle.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/Core/FastDemangle.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/FormatEntity.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/Core/FormatEntity.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/Logging.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/Core/Logging.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseSet.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseSet.h projects/routing/contrib/llvm/tools/lldb/include/lldb/DataFormatters/VectorType.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/DataFormatters/VectorType.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/LockFile.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/Host/LockFile.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/LockFileBase.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/Host/LockFileBase.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/MainLoop.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/Host/MainLoop.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/MainLoopBase.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/Host/MainLoopBase.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/StringConvert.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/Host/StringConvert.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/Time.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/Host/Time.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/XML.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/Host/XML.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/common/ - copied from r290825, head/contrib/llvm/tools/lldb/include/lldb/Host/common/ projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/posix/Fcntl.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/Host/posix/Fcntl.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/posix/LockFilePosix.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/Host/posix/LockFilePosix.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/posix/MainLoopPosix.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/Host/posix/MainLoopPosix.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Initialization/ - copied from r290825, head/contrib/llvm/tools/lldb/include/lldb/Initialization/ projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormatEntity.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormatEntity.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueLanguage.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueLanguage.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunctionUsingABI.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunctionUsingABI.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Utility/ConvertEnum.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/Utility/ConvertEnum.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Utility/JSON.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/Utility/JSON.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Utility/LLDBAssert.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/Utility/LLDBAssert.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Utility/NameMatches.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/Utility/NameMatches.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Utility/StringExtractor.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/include/lldb/Utility/StringExtractor.h projects/routing/contrib/llvm/tools/lldb/source/API/SBAttachInfo.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/API/SBAttachInfo.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBLanguageRuntime.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/API/SBLanguageRuntime.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBLaunchInfo.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/API/SBLaunchInfo.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBVariablesOptions.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/API/SBVariablesOptions.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SystemInitializerFull.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/API/SystemInitializerFull.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.h projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.h projects/routing/contrib/llvm/tools/lldb/source/Core/CxaDemangle.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Core/CxaDemangle.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/FormatEntity.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Core/FormatEntity.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/Logging.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Core/Logging.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/CoreMedia.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/DataFormatters/CoreMedia.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/VectorType.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/DataFormatters/VectorType.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/common/FileSystem.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Host/common/FileSystem.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/common/LockFileBase.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Host/common/LockFileBase.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/common/NativeRegisterContext.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Host/common/NativeRegisterContext.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/common/NativeRegisterContextRegisterInfo.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Host/common/NativeRegisterContextRegisterInfo.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/common/NativeWatchpointList.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Host/common/NativeWatchpointList.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/common/StringConvert.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Host/common/StringConvert.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/common/XML.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Host/common/XML.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/posix/LockFilePosix.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Host/posix/LockFilePosix.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/posix/MainLoopPosix.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Host/posix/MainLoopPosix.cpp projects/routing/contrib/llvm/tools/lldb/source/Initialization/ - copied from r290825, head/contrib/llvm/tools/lldb/source/Initialization/ projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormatEntity.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormatEntity.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionValueLanguage.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Interpreter/OptionValueLanguage.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ - copied from r290825, head/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ projects/routing/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/ - copied from r290825, head/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/ projects/routing/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/ - copied from r290825, head/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/ projects/routing/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ - copied from r290825, head/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ projects/routing/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ - copied from r290825, head/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ projects/routing/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/ - copied from r290825, head/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/ projects/routing/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/ - copied from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/ projects/routing/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/ - copied from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/ projects/routing/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/ - copied from r290825, head/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/ projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXThread.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXThread.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXThread.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXThread.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessPOSIX.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessPOSIX.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessPOSIX.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessPOSIX.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/CrashReason.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/CrashReason.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/CrashReason.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/CrashReason.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm64.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm64.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm64.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm64.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_arm.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_arm.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_arm.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_arm.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_mips.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_mips.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-arm-register-enums.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-arm-register-enums.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-arm64-register-enums.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-arm64-register-enums.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-freebsd-register-enums.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-freebsd-register-enums.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-linux-register-enums.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-linux-register-enums.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm64.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm64.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm64.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm64.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.h projects/routing/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallFunctionUsingABI.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallFunctionUsingABI.cpp projects/routing/contrib/llvm/tools/lldb/source/Utility/ConvertEnum.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Utility/ConvertEnum.cpp projects/routing/contrib/llvm/tools/lldb/source/Utility/JSON.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Utility/JSON.cpp projects/routing/contrib/llvm/tools/lldb/source/Utility/LLDBAssert.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Utility/LLDBAssert.cpp projects/routing/contrib/llvm/tools/lldb/source/Utility/ModuleCache.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Utility/ModuleCache.cpp projects/routing/contrib/llvm/tools/lldb/source/Utility/ModuleCache.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Utility/ModuleCache.h projects/routing/contrib/llvm/tools/lldb/source/Utility/NameMatches.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/source/Utility/NameMatches.cpp projects/routing/contrib/llvm/tools/lldb/tools/argdumper/ - copied from r290825, head/contrib/llvm/tools/lldb/tools/argdumper/ projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValPrintValues.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValPrintValues.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValPrintValues.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValPrintValues.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSymbol.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSymbol.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSymbol.h - copied unchanged from r290825, head/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSymbol.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIExtensions.txt - copied unchanged from r290825, head/contrib/llvm/tools/lldb/tools/lldb-mi/MIExtensions.txt projects/routing/contrib/llvm/tools/lldb/tools/lldb-server/ - copied from r290825, head/contrib/llvm/tools/lldb/tools/lldb-server/ projects/routing/contrib/llvm/tools/lli/OrcLazyJIT.cpp - copied unchanged from r290825, head/contrib/llvm/tools/lli/OrcLazyJIT.cpp projects/routing/contrib/llvm/tools/lli/OrcLazyJIT.h - copied unchanged from r290825, head/contrib/llvm/tools/lli/OrcLazyJIT.h projects/routing/contrib/llvm/tools/llvm-cxxdump/ - copied from r290825, head/contrib/llvm/tools/llvm-cxxdump/ - copied from r290825, head/contrib/llvm/tools/llvm-dwarfdump/ - copied from r290825, head/contrib/llvm/tools/llvm-lto/ projects/routing/contrib/llvm/tools/llvm-pdbdump/ - copied from r290825, head/contrib/llvm/tools/llvm-pdbdump/ projects/routing/contrib/llvm/tools/llvm-readobj/StackMapPrinter.h - copied unchanged from r290825, head/contrib/llvm/tools/llvm-readobj/StackMapPrinter.h projects/routing/contrib/ntp/include/rc_cmdlength.h - copied unchanged from r290825, head/contrib/ntp/include/rc_cmdlength.h projects/routing/contrib/ntp/sntp/m4/ntp_problemtests.m4 - copied unchanged from r290825, head/contrib/ntp/sntp/m4/ntp_problemtests.m4 projects/routing/contrib/ntp/sntp/tests/fileHandlingTest.c - copied unchanged from r290825, head/contrib/ntp/sntp/tests/fileHandlingTest.c projects/routing/contrib/ntp/sntp/tests/run-t-log.c - copied unchanged from r290825, head/contrib/ntp/sntp/tests/run-t-log.c projects/routing/contrib/ntp/sntp/tests/sntptest.c - copied unchanged from r290825, head/contrib/ntp/sntp/tests/sntptest.c projects/routing/contrib/ntp/sntp/tests/t-log.c - copied unchanged from r290825, head/contrib/ntp/sntp/tests/t-log.c projects/routing/contrib/ntp/sntp/unity/auto/parseOutput.rb - copied unchanged from r290825, head/contrib/ntp/sntp/unity/auto/parseOutput.rb projects/routing/contrib/ntp/sntp/unity/auto/type_sanitizer.rb - copied unchanged from r290825, head/contrib/ntp/sntp/unity/auto/type_sanitizer.rb projects/routing/contrib/ntp/sntp/unity/auto/unity_test_summary.py - copied unchanged from r290825, head/contrib/ntp/sntp/unity/auto/unity_test_summary.py projects/routing/contrib/ntp/sntp/unity/unity_config.h - copied unchanged from r290825, head/contrib/ntp/sntp/unity/unity_config.h projects/routing/contrib/ntp/tests/libntp/lfptest.c - copied unchanged from r290825, head/contrib/ntp/tests/libntp/lfptest.c projects/routing/contrib/ntp/tests/libntp/sockaddrtest.c - copied unchanged from r290825, head/contrib/ntp/tests/libntp/sockaddrtest.c projects/routing/contrib/ntp/tests/ntpd/leapsec.c - copied unchanged from r290825, head/contrib/ntp/tests/ntpd/leapsec.c projects/routing/contrib/ntp/tests/ntpd/ntp_prio_q.c - copied unchanged from r290825, head/contrib/ntp/tests/ntpd/ntp_prio_q.c projects/routing/contrib/ntp/tests/ntpd/ntp_restrict.c - copied unchanged from r290825, head/contrib/ntp/tests/ntpd/ntp_restrict.c projects/routing/contrib/ntp/tests/ntpd/rc_cmdlength.c - copied unchanged from r290825, head/contrib/ntp/tests/ntpd/rc_cmdlength.c projects/routing/contrib/ntp/tests/ntpd/run-leapsec.c - copied unchanged from r290825, head/contrib/ntp/tests/ntpd/run-leapsec.c projects/routing/contrib/ntp/tests/ntpd/run-ntp_prio_q.c - copied unchanged from r290825, head/contrib/ntp/tests/ntpd/run-ntp_prio_q.c projects/routing/contrib/ntp/tests/ntpd/run-ntp_restrict.c - copied unchanged from r290825, head/contrib/ntp/tests/ntpd/run-ntp_restrict.c projects/routing/contrib/ntp/tests/ntpd/run-rc_cmdlength.c - copied unchanged from r290825, head/contrib/ntp/tests/ntpd/run-rc_cmdlength.c projects/routing/contrib/ntp/tests/ntpd/run-t-ntp_scanner.c - copied unchanged from r290825, head/contrib/ntp/tests/ntpd/run-t-ntp_scanner.c projects/routing/contrib/ntp/tests/ntpd/run-t-ntp_signd.c - copied unchanged from r290825, head/contrib/ntp/tests/ntpd/run-t-ntp_signd.c projects/routing/contrib/ntp/tests/ntpd/t-ntp_scanner.c - copied unchanged from r290825, head/contrib/ntp/tests/ntpd/t-ntp_scanner.c projects/routing/contrib/ntp/tests/ntpd/t-ntp_signd.c - copied unchanged from r290825, head/contrib/ntp/tests/ntpd/t-ntp_signd.c projects/routing/contrib/ntp/tests/ntpq/ - copied from r290825, head/contrib/ntp/tests/ntpq/ projects/routing/contrib/subversion/.ycm_extra_conf.py - copied unchanged from r290825, head/contrib/subversion/.ycm_extra_conf.py projects/routing/contrib/subversion/doc/programmer/gtest-guide.txt - copied unchanged from r290825, head/contrib/subversion/doc/programmer/gtest-guide.txt projects/routing/contrib/subversion/subversion/include/private/svn_client_mtcc.h - copied unchanged from r290825, head/contrib/subversion/subversion/include/private/svn_client_mtcc.h projects/routing/contrib/subversion/subversion/include/private/svn_fs_fs_private.h - copied unchanged from r290825, head/contrib/subversion/subversion/include/private/svn_fs_fs_private.h projects/routing/contrib/subversion/subversion/include/private/svn_object_pool.h - copied unchanged from r290825, head/contrib/subversion/subversion/include/private/svn_object_pool.h projects/routing/contrib/subversion/subversion/include/private/svn_packed_data.h - copied unchanged from r290825, head/contrib/subversion/subversion/include/private/svn_packed_data.h projects/routing/contrib/subversion/subversion/include/private/svn_sorts_private.h - copied unchanged from r290825, head/contrib/subversion/subversion/include/private/svn_sorts_private.h projects/routing/contrib/subversion/subversion/include/svn_x509.h - copied unchanged from r290825, head/contrib/subversion/subversion/include/svn_x509.h projects/routing/contrib/subversion/subversion/libsvn_auth_gnome_keyring/libsvn_auth_gnome_keyring.pc.in - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_auth_gnome_keyring/libsvn_auth_gnome_keyring.pc.in projects/routing/contrib/subversion/subversion/libsvn_auth_kwallet/libsvn_auth_kwallet.pc.in - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_auth_kwallet/libsvn_auth_kwallet.pc.in projects/routing/contrib/subversion/subversion/libsvn_client/libsvn_client.pc.in - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_client/libsvn_client.pc.in projects/routing/contrib/subversion/subversion/libsvn_client/mtcc.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_client/mtcc.c projects/routing/contrib/subversion/subversion/libsvn_delta/libsvn_delta.pc.in - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_delta/libsvn_delta.pc.in projects/routing/contrib/subversion/subversion/libsvn_diff/binary_diff.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_diff/binary_diff.c projects/routing/contrib/subversion/subversion/libsvn_diff/libsvn_diff.pc.in - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_diff/libsvn_diff.pc.in projects/routing/contrib/subversion/subversion/libsvn_fs/deprecated.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs/deprecated.c projects/routing/contrib/subversion/subversion/libsvn_fs/libsvn_fs.pc.in - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs/libsvn_fs.pc.in projects/routing/contrib/subversion/subversion/libsvn_fs_base/libsvn_fs_base.pc.in - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_base/libsvn_fs_base.pc.in projects/routing/contrib/subversion/subversion/libsvn_fs_fs/cached_data.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/cached_data.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/cached_data.h - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/cached_data.h projects/routing/contrib/subversion/subversion/libsvn_fs_fs/dump-index.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/dump-index.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/hotcopy.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/hotcopy.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/hotcopy.h - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/hotcopy.h projects/routing/contrib/subversion/subversion/libsvn_fs_fs/index.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/index.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/index.h - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/index.h projects/routing/contrib/subversion/subversion/libsvn_fs_fs/libsvn_fs_fs.pc.in - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/libsvn_fs_fs.pc.in projects/routing/contrib/subversion/subversion/libsvn_fs_fs/load-index.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/load-index.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/low_level.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/low_level.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/low_level.h - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/low_level.h projects/routing/contrib/subversion/subversion/libsvn_fs_fs/pack.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/pack.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/pack.h - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/pack.h projects/routing/contrib/subversion/subversion/libsvn_fs_fs/recovery.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/recovery.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/recovery.h - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/recovery.h projects/routing/contrib/subversion/subversion/libsvn_fs_fs/rev_file.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/rev_file.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/rev_file.h - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/rev_file.h projects/routing/contrib/subversion/subversion/libsvn_fs_fs/revprops.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/revprops.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/revprops.h - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/revprops.h projects/routing/contrib/subversion/subversion/libsvn_fs_fs/stats.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/stats.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/structure-indexes - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/structure-indexes projects/routing/contrib/subversion/subversion/libsvn_fs_fs/transaction.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/transaction.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/transaction.h - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/transaction.h projects/routing/contrib/subversion/subversion/libsvn_fs_fs/util.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/util.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/util.h - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/util.h projects/routing/contrib/subversion/subversion/libsvn_fs_fs/verify.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/verify.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/verify.h - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_fs/verify.h projects/routing/contrib/subversion/subversion/libsvn_fs_util/libsvn_fs_util.pc.in - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_fs_util/libsvn_fs_util.pc.in projects/routing/contrib/subversion/subversion/libsvn_fs_x/ - copied from r290825, head/contrib/subversion/subversion/libsvn_fs_x/ projects/routing/contrib/subversion/subversion/libsvn_ra/libsvn_ra.pc.in - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_ra/libsvn_ra.pc.in projects/routing/contrib/subversion/subversion/libsvn_ra_local/libsvn_ra_local.pc.in - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_ra_local/libsvn_ra_local.pc.in projects/routing/contrib/subversion/subversion/libsvn_ra_serf/eagain_bucket.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_ra_serf/eagain_bucket.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/get_file.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_ra_serf/get_file.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/get_lock.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_ra_serf/get_lock.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/libsvn_ra_serf.pc.in - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_ra_serf/libsvn_ra_serf.pc.in projects/routing/contrib/subversion/subversion/libsvn_ra_serf/lock.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_ra_serf/lock.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/multistatus.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_ra_serf/multistatus.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/stat.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_ra_serf/stat.c projects/routing/contrib/subversion/subversion/libsvn_ra_svn/libsvn_ra_svn.pc.in - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_ra_svn/libsvn_ra_svn.pc.in projects/routing/contrib/subversion/subversion/libsvn_repos/authz_pool.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_repos/authz_pool.c projects/routing/contrib/subversion/subversion/libsvn_repos/config_pool.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_repos/config_pool.c projects/routing/contrib/subversion/subversion/libsvn_repos/libsvn_repos.pc.in - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_repos/libsvn_repos.pc.in projects/routing/contrib/subversion/subversion/libsvn_subr/bit_array.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_subr/bit_array.c projects/routing/contrib/subversion/subversion/libsvn_subr/checksum.h - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_subr/checksum.h projects/routing/contrib/subversion/subversion/libsvn_subr/compress.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_subr/compress.c projects/routing/contrib/subversion/subversion/libsvn_subr/config_keys.inc - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_subr/config_keys.inc projects/routing/contrib/subversion/subversion/libsvn_subr/errorcode.inc - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_subr/errorcode.inc projects/routing/contrib/subversion/subversion/libsvn_subr/fnv1a.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_subr/fnv1a.c projects/routing/contrib/subversion/subversion/libsvn_subr/fnv1a.h - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_subr/fnv1a.h projects/routing/contrib/subversion/subversion/libsvn_subr/libsvn_subr.pc.in - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_subr/libsvn_subr.pc.in projects/routing/contrib/subversion/subversion/libsvn_subr/object_pool.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_subr/object_pool.c projects/routing/contrib/subversion/subversion/libsvn_subr/packed_data.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_subr/packed_data.c projects/routing/contrib/subversion/subversion/libsvn_subr/prefix_string.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_subr/prefix_string.c projects/routing/contrib/subversion/subversion/libsvn_subr/root_pools.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_subr/root_pools.c projects/routing/contrib/subversion/subversion/libsvn_subr/utf8proc/ - copied from r290825, head/contrib/subversion/subversion/libsvn_subr/utf8proc/ projects/routing/contrib/subversion/subversion/libsvn_subr/utf8proc.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_subr/utf8proc.c projects/routing/contrib/subversion/subversion/libsvn_subr/x509.h - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_subr/x509.h projects/routing/contrib/subversion/subversion/libsvn_subr/x509info.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_subr/x509info.c projects/routing/contrib/subversion/subversion/libsvn_subr/x509parse.c - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_subr/x509parse.c projects/routing/contrib/subversion/subversion/libsvn_wc/libsvn_wc.pc.in - copied unchanged from r290825, head/contrib/subversion/subversion/libsvn_wc/libsvn_wc.pc.in projects/routing/contrib/subversion/subversion/svn/auth-cmd.c - copied unchanged from r290825, head/contrib/subversion/subversion/svn/auth-cmd.c projects/routing/contrib/subversion/subversion/svn/cl-log.h - copied unchanged from r290825, head/contrib/subversion/subversion/svn/cl-log.h projects/routing/contrib/subversion/subversion/svn/similarity.c - copied unchanged from r290825, head/contrib/subversion/subversion/svn/similarity.c projects/routing/contrib/subversion/subversion/svnbench/ - copied from r290825, head/contrib/subversion/subversion/svnbench/ projects/routing/contrib/subversion/subversion/svnfsfs/ - copied from r290825, head/contrib/subversion/subversion/svnfsfs/ projects/routing/contrib/subversion/subversion/svnserve/logger.c - copied unchanged from r290825, head/contrib/subversion/subversion/svnserve/logger.c projects/routing/contrib/subversion/subversion/svnserve/logger.h - copied unchanged from r290825, head/contrib/subversion/subversion/svnserve/logger.h projects/routing/contrib/unbound/compat/reallocarray.c - copied unchanged from r290825, head/contrib/unbound/compat/reallocarray.c projects/routing/contrib/unbound/libunbound/python/file_py3.i - copied unchanged from r290825, head/contrib/unbound/libunbound/python/file_py3.i projects/routing/contrib/unbound/sldns/ - copied from r290825, head/contrib/unbound/sldns/ projects/routing/contrib/wpa/patches/openssl-0.9.8zf-tls-extensions.patch - copied unchanged from r290825, head/contrib/wpa/patches/openssl-0.9.8zf-tls-extensions.patch projects/routing/contrib/wpa/src/crypto/sha384-prf.c - copied unchanged from r290825, head/contrib/wpa/src/crypto/sha384-prf.c projects/routing/contrib/wpa/src/fst/ - copied from r290825, head/contrib/wpa/src/fst/ projects/routing/contrib/wpa/wpa_supplicant/eapol_test.py - copied unchanged from r290825, head/contrib/wpa/wpa_supplicant/eapol_test.py projects/routing/contrib/wpa/wpa_supplicant/p2p_supplicant_sd.c - copied unchanged from r290825, head/contrib/wpa/wpa_supplicant/p2p_supplicant_sd.c projects/routing/crypto/openssl/crypto/aes/asm/aesni-mb-x86_64.pl - copied unchanged from r290825, head/crypto/openssl/crypto/aes/asm/aesni-mb-x86_64.pl projects/routing/crypto/openssl/crypto/aes/asm/aesni-sha256-x86_64.pl - copied unchanged from r290825, head/crypto/openssl/crypto/aes/asm/aesni-sha256-x86_64.pl projects/routing/crypto/openssl/crypto/aes/asm/aesp8-ppc.pl - copied unchanged from r290825, head/crypto/openssl/crypto/aes/asm/aesp8-ppc.pl projects/routing/crypto/openssl/crypto/aes/asm/aest4-sparcv9.pl - copied unchanged from r290825, head/crypto/openssl/crypto/aes/asm/aest4-sparcv9.pl projects/routing/crypto/openssl/crypto/aes/asm/aesv8-armx.pl - copied unchanged from r290825, head/crypto/openssl/crypto/aes/asm/aesv8-armx.pl projects/routing/crypto/openssl/crypto/aes/asm/bsaes-armv7.pl - copied unchanged from r290825, head/crypto/openssl/crypto/aes/asm/bsaes-armv7.pl projects/routing/crypto/openssl/crypto/aes/asm/vpaes-ppc.pl - copied unchanged from r290825, head/crypto/openssl/crypto/aes/asm/vpaes-ppc.pl projects/routing/crypto/openssl/crypto/arm64cpuid.S - copied unchanged from r290825, head/crypto/openssl/crypto/arm64cpuid.S projects/routing/crypto/openssl/crypto/bn/asm/mips3.s - copied unchanged from r290825, head/crypto/openssl/crypto/bn/asm/mips3.s projects/routing/crypto/openssl/crypto/bn/asm/rsaz-avx2.pl - copied unchanged from r290825, head/crypto/openssl/crypto/bn/asm/rsaz-avx2.pl projects/routing/crypto/openssl/crypto/bn/asm/rsaz-x86_64.pl - copied unchanged from r290825, head/crypto/openssl/crypto/bn/asm/rsaz-x86_64.pl projects/routing/crypto/openssl/crypto/bn/asm/sparct4-mont.pl - copied unchanged from r290825, head/crypto/openssl/crypto/bn/asm/sparct4-mont.pl projects/routing/crypto/openssl/crypto/bn/asm/sparcv9-gf2m.pl - copied unchanged from r290825, head/crypto/openssl/crypto/bn/asm/sparcv9-gf2m.pl projects/routing/crypto/openssl/crypto/bn/asm/vis3-mont.pl - copied unchanged from r290825, head/crypto/openssl/crypto/bn/asm/vis3-mont.pl projects/routing/crypto/openssl/crypto/bn/rsaz_exp.c - copied unchanged from r290825, head/crypto/openssl/crypto/bn/rsaz_exp.c projects/routing/crypto/openssl/crypto/bn/rsaz_exp.h - copied unchanged from r290825, head/crypto/openssl/crypto/bn/rsaz_exp.h projects/routing/crypto/openssl/crypto/camellia/asm/cmllt4-sparcv9.pl - copied unchanged from r290825, head/crypto/openssl/crypto/camellia/asm/cmllt4-sparcv9.pl projects/routing/crypto/openssl/crypto/cms/cms_kari.c - copied unchanged from r290825, head/crypto/openssl/crypto/cms/cms_kari.c projects/routing/crypto/openssl/crypto/des/asm/dest4-sparcv9.pl - copied unchanged from r290825, head/crypto/openssl/crypto/des/asm/dest4-sparcv9.pl projects/routing/crypto/openssl/crypto/dh/dh_kdf.c - copied unchanged from r290825, head/crypto/openssl/crypto/dh/dh_kdf.c projects/routing/crypto/openssl/crypto/dh/dh_rfc5114.c - copied unchanged from r290825, head/crypto/openssl/crypto/dh/dh_rfc5114.c projects/routing/crypto/openssl/crypto/ec/asm/ - copied from r290825, head/crypto/openssl/crypto/ec/asm/ projects/routing/crypto/openssl/crypto/ec/ecp_nistz256.c - copied unchanged from r290825, head/crypto/openssl/crypto/ec/ecp_nistz256.c projects/routing/crypto/openssl/crypto/ec/ecp_nistz256_table.c - copied unchanged from r290825, head/crypto/openssl/crypto/ec/ecp_nistz256_table.c projects/routing/crypto/openssl/crypto/ecdh/ech_kdf.c - copied unchanged from r290825, head/crypto/openssl/crypto/ecdh/ech_kdf.c projects/routing/crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c - copied unchanged from r290825, head/crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c projects/routing/crypto/openssl/crypto/md5/asm/md5-sparcv9.pl - copied unchanged from r290825, head/crypto/openssl/crypto/md5/asm/md5-sparcv9.pl projects/routing/crypto/openssl/crypto/modes/asm/aesni-gcm-x86_64.pl - copied unchanged from r290825, head/crypto/openssl/crypto/modes/asm/aesni-gcm-x86_64.pl projects/routing/crypto/openssl/crypto/modes/asm/ghashp8-ppc.pl - copied unchanged from r290825, head/crypto/openssl/crypto/modes/asm/ghashp8-ppc.pl projects/routing/crypto/openssl/crypto/modes/asm/ghashv8-armx.pl - copied unchanged from r290825, head/crypto/openssl/crypto/modes/asm/ghashv8-armx.pl projects/routing/crypto/openssl/crypto/modes/wrap128.c - copied unchanged from r290825, head/crypto/openssl/crypto/modes/wrap128.c projects/routing/crypto/openssl/crypto/perlasm/sparcv9_modes.pl - copied unchanged from r290825, head/crypto/openssl/crypto/perlasm/sparcv9_modes.pl projects/routing/crypto/openssl/crypto/ppc_arch.h - copied unchanged from r290825, head/crypto/openssl/crypto/ppc_arch.h projects/routing/crypto/openssl/crypto/sha/asm/sha1-armv8.pl - copied unchanged from r290825, head/crypto/openssl/crypto/sha/asm/sha1-armv8.pl projects/routing/crypto/openssl/crypto/sha/asm/sha1-mb-x86_64.pl - copied unchanged from r290825, head/crypto/openssl/crypto/sha/asm/sha1-mb-x86_64.pl projects/routing/crypto/openssl/crypto/sha/asm/sha256-mb-x86_64.pl - copied unchanged from r290825, head/crypto/openssl/crypto/sha/asm/sha256-mb-x86_64.pl projects/routing/crypto/openssl/crypto/sha/asm/sha512-armv8.pl - copied unchanged from r290825, head/crypto/openssl/crypto/sha/asm/sha512-armv8.pl projects/routing/crypto/openssl/crypto/sha/asm/sha512p8-ppc.pl - copied unchanged from r290825, head/crypto/openssl/crypto/sha/asm/sha512p8-ppc.pl projects/routing/crypto/openssl/crypto/sparc_arch.h - copied unchanged from r290825, head/crypto/openssl/crypto/sparc_arch.h projects/routing/crypto/openssl/crypto/x509/vpm_int.h - copied unchanged from r290825, head/crypto/openssl/crypto/x509/vpm_int.h projects/routing/crypto/openssl/crypto/x509v3/v3_scts.c - copied unchanged from r290825, head/crypto/openssl/crypto/x509v3/v3_scts.c projects/routing/crypto/openssl/crypto/x509v3/v3nametest.c - copied unchanged from r290825, head/crypto/openssl/crypto/x509v3/v3nametest.c projects/routing/crypto/openssl/doc/crypto/ASN1_TIME_set.pod - copied unchanged from r290825, head/crypto/openssl/doc/crypto/ASN1_TIME_set.pod projects/routing/crypto/openssl/doc/crypto/EC_GFp_simple_method.pod - copied unchanged from r290825, head/crypto/openssl/doc/crypto/EC_GFp_simple_method.pod projects/routing/crypto/openssl/doc/crypto/EC_GROUP_copy.pod - copied unchanged from r290825, head/crypto/openssl/doc/crypto/EC_GROUP_copy.pod projects/routing/crypto/openssl/doc/crypto/EC_GROUP_new.pod - copied unchanged from r290825, head/crypto/openssl/doc/crypto/EC_GROUP_new.pod projects/routing/crypto/openssl/doc/crypto/EC_KEY_new.pod - copied unchanged from r290825, head/crypto/openssl/doc/crypto/EC_KEY_new.pod projects/routing/crypto/openssl/doc/crypto/EC_POINT_add.pod - copied unchanged from r290825, head/crypto/openssl/doc/crypto/EC_POINT_add.pod projects/routing/crypto/openssl/doc/crypto/EC_POINT_new.pod - copied unchanged from r290825, head/crypto/openssl/doc/crypto/EC_POINT_new.pod projects/routing/crypto/openssl/doc/crypto/OPENSSL_instrument_bus.pod - copied unchanged from r290825, head/crypto/openssl/doc/crypto/OPENSSL_instrument_bus.pod projects/routing/crypto/openssl/doc/crypto/SSLeay_version.pod - copied unchanged from r290825, head/crypto/openssl/doc/crypto/SSLeay_version.pod projects/routing/crypto/openssl/doc/crypto/X509_check_host.pod - copied unchanged from r290825, head/crypto/openssl/doc/crypto/X509_check_host.pod projects/routing/crypto/openssl/doc/crypto/d2i_ECPKParameters.pod - copied unchanged from r290825, head/crypto/openssl/doc/crypto/d2i_ECPKParameters.pod projects/routing/crypto/openssl/doc/crypto/ec.pod - copied unchanged from r290825, head/crypto/openssl/doc/crypto/ec.pod projects/routing/crypto/openssl/doc/ssl/SSL_CONF_CTX_new.pod - copied unchanged from r290825, head/crypto/openssl/doc/ssl/SSL_CONF_CTX_new.pod projects/routing/crypto/openssl/doc/ssl/SSL_CONF_CTX_set1_prefix.pod - copied unchanged from r290825, head/crypto/openssl/doc/ssl/SSL_CONF_CTX_set1_prefix.pod projects/routing/crypto/openssl/doc/ssl/SSL_CONF_CTX_set_flags.pod - copied unchanged from r290825, head/crypto/openssl/doc/ssl/SSL_CONF_CTX_set_flags.pod projects/routing/crypto/openssl/doc/ssl/SSL_CONF_CTX_set_ssl_ctx.pod - copied unchanged from r290825, head/crypto/openssl/doc/ssl/SSL_CONF_CTX_set_ssl_ctx.pod projects/routing/crypto/openssl/doc/ssl/SSL_CONF_cmd.pod - copied unchanged from r290825, head/crypto/openssl/doc/ssl/SSL_CONF_cmd.pod projects/routing/crypto/openssl/doc/ssl/SSL_CONF_cmd_argv.pod - copied unchanged from r290825, head/crypto/openssl/doc/ssl/SSL_CONF_cmd_argv.pod projects/routing/crypto/openssl/doc/ssl/SSL_CTX_add1_chain_cert.pod - copied unchanged from r290825, head/crypto/openssl/doc/ssl/SSL_CTX_add1_chain_cert.pod projects/routing/crypto/openssl/doc/ssl/SSL_CTX_get0_param.pod - copied unchanged from r290825, head/crypto/openssl/doc/ssl/SSL_CTX_get0_param.pod projects/routing/crypto/openssl/doc/ssl/SSL_CTX_set1_curves.pod - copied unchanged from r290825, head/crypto/openssl/doc/ssl/SSL_CTX_set1_curves.pod projects/routing/crypto/openssl/doc/ssl/SSL_CTX_set1_verify_cert_store.pod - copied unchanged from r290825, head/crypto/openssl/doc/ssl/SSL_CTX_set1_verify_cert_store.pod projects/routing/crypto/openssl/doc/ssl/SSL_CTX_set_cert_cb.pod - copied unchanged from r290825, head/crypto/openssl/doc/ssl/SSL_CTX_set_cert_cb.pod projects/routing/crypto/openssl/doc/ssl/SSL_CTX_set_custom_cli_ext.pod - copied unchanged from r290825, head/crypto/openssl/doc/ssl/SSL_CTX_set_custom_cli_ext.pod projects/routing/crypto/openssl/doc/ssl/SSL_CTX_use_serverinfo.pod - copied unchanged from r290825, head/crypto/openssl/doc/ssl/SSL_CTX_use_serverinfo.pod projects/routing/crypto/openssl/ssl/ssl_conf.c - copied unchanged from r290825, head/crypto/openssl/ssl/ssl_conf.c projects/routing/crypto/openssl/ssl/t1_ext.c - copied unchanged from r290825, head/crypto/openssl/ssl/t1_ext.c projects/routing/crypto/openssl/ssl/t1_trce.c - copied unchanged from r290825, head/crypto/openssl/ssl/t1_trce.c projects/routing/crypto/openssl/util/copy-if-different.pl - copied unchanged from r290825, head/crypto/openssl/util/copy-if-different.pl projects/routing/etc/mtree/BSD.lib32.dist - copied unchanged from r290825, head/etc/mtree/BSD.lib32.dist projects/routing/etc/ntp/ - copied from r290825, head/etc/ntp/ projects/routing/etc/periodic/daily/430.status-uptime - copied unchanged from r290825, head/etc/periodic/daily/430.status-uptime projects/routing/gnu/usr.bin/groff/tmac/fr.ISO8859-1.in - copied unchanged from r290825, head/gnu/usr.bin/groff/tmac/fr.ISO8859-1.in projects/routing/gnu/usr.bin/groff/tmac/mdoc.local.in - copied unchanged from r290825, head/gnu/usr.bin/groff/tmac/mdoc.local.in projects/routing/gnu/usr.bin/groff/tmac/ru.KOI8-R.in - copied unchanged from r290825, head/gnu/usr.bin/groff/tmac/ru.KOI8-R.in projects/routing/lib/clang/liblldbInitialization/ - copied from r290825, head/lib/clang/liblldbInitialization/ projects/routing/lib/clang/liblldbPluginABISysV_arm/ - copied from r290825, head/lib/clang/liblldbPluginABISysV_arm/ projects/routing/lib/clang/liblldbPluginABISysV_arm64/ - copied from r290825, head/lib/clang/liblldbPluginABISysV_arm64/ projects/routing/lib/clang/liblldbPluginABISysV_i386/ - copied from r290825, head/lib/clang/liblldbPluginABISysV_i386/ projects/routing/lib/clang/liblldbPluginABISysV_mips/ - copied from r290825, head/lib/clang/liblldbPluginABISysV_mips/ projects/routing/lib/clang/liblldbPluginABISysV_mips64/ - copied from r290825, head/lib/clang/liblldbPluginABISysV_mips64/ projects/routing/lib/clang/liblldbPluginInstructionMIPS/ - copied from r290825, head/lib/clang/liblldbPluginInstructionMIPS/ projects/routing/lib/clang/liblldbPluginInstructionMIPS64/ - copied from r290825, head/lib/clang/liblldbPluginInstructionMIPS64/ projects/routing/lib/clang/libllvmdebuginfodwarf/ - copied from r290825, head/lib/clang/libllvmdebuginfodwarf/ projects/routing/lib/clang/libllvmdebuginfopdb/ - copied from r290825, head/lib/clang/libllvmdebuginfopdb/ projects/routing/lib/clang/libllvmlibdriver/ - copied from r290825, head/lib/clang/libllvmlibdriver/ projects/routing/lib/clang/libllvmlto/ - copied from r290825, head/lib/clang/libllvmlto/ projects/routing/lib/clang/libllvmmirparser/ - copied from r290825, head/lib/clang/libllvmmirparser/ projects/routing/lib/clang/libllvmorcjit/ - copied from r290825, head/lib/clang/libllvmorcjit/ projects/routing/lib/clang/libllvmpasses/ - copied from r290825, head/lib/clang/libllvmpasses/ projects/routing/lib/libarchive/tests/ - copied from r290825, head/lib/libarchive/tests/ projects/routing/lib/libc/tests/gen/fmtcheck_test.c - copied unchanged from r290825, head/lib/libc/tests/gen/fmtcheck_test.c projects/routing/lib/libc/tests/gen/fmtmsg_test.c - copied unchanged from r290825, head/lib/libc/tests/gen/fmtmsg_test.c projects/routing/lib/libc/tests/gen/fnmatch_test.c - copied unchanged from r290825, head/lib/libc/tests/gen/fnmatch_test.c projects/routing/lib/libc/tests/gen/fnmatch_testcases.h - copied unchanged from r290825, head/lib/libc/tests/gen/fnmatch_testcases.h projects/routing/lib/libc/tests/gen/ftw_test.c - copied unchanged from r290825, head/lib/libc/tests/gen/ftw_test.c projects/routing/lib/libc/tests/gen/popen_test.c - copied unchanged from r290825, head/lib/libc/tests/gen/popen_test.c projects/routing/lib/libc/tests/gen/posix_spawn_test.c - copied unchanged from r290825, head/lib/libc/tests/gen/posix_spawn_test.c projects/routing/lib/libc/tests/gen/test-fnmatch.c - copied unchanged from r290825, head/lib/libc/tests/gen/test-fnmatch.c projects/routing/lib/libc/tests/gen/wordexp_test.c - copied unchanged from r290825, head/lib/libc/tests/gen/wordexp_test.c projects/routing/lib/libc/tests/locale/btowc_test.c - copied unchanged from r290825, head/lib/libc/tests/locale/btowc_test.c projects/routing/lib/libc/tests/locale/c16rtomb_test.c - copied unchanged from r290825, head/lib/libc/tests/locale/c16rtomb_test.c projects/routing/lib/libc/tests/locale/iswctype_test.c - copied unchanged from r290825, head/lib/libc/tests/locale/iswctype_test.c projects/routing/lib/libc/tests/locale/mblen_test.c - copied unchanged from r290825, head/lib/libc/tests/locale/mblen_test.c projects/routing/lib/libc/tests/locale/mbrlen_test.c - copied unchanged from r290825, head/lib/libc/tests/locale/mbrlen_test.c projects/routing/lib/libc/tests/locale/mbrtoc16_test.c - copied unchanged from r290825, head/lib/libc/tests/locale/mbrtoc16_test.c projects/routing/lib/libc/tests/locale/mbrtowc_test.c - copied unchanged from r290825, head/lib/libc/tests/locale/mbrtowc_test.c projects/routing/lib/libc/tests/locale/mbsnrtowcs_test.c - copied unchanged from r290825, head/lib/libc/tests/locale/mbsnrtowcs_test.c projects/routing/lib/libc/tests/locale/mbsrtowcs_test.c - copied unchanged from r290825, head/lib/libc/tests/locale/mbsrtowcs_test.c projects/routing/lib/libc/tests/locale/mbstowcs_test.c - copied unchanged from r290825, head/lib/libc/tests/locale/mbstowcs_test.c projects/routing/lib/libc/tests/locale/mbtowc_test.c - copied unchanged from r290825, head/lib/libc/tests/locale/mbtowc_test.c projects/routing/lib/libc/tests/locale/towctrans_test.c - copied unchanged from r290825, head/lib/libc/tests/locale/towctrans_test.c projects/routing/lib/libc/tests/locale/wcrtomb_test.c - copied unchanged from r290825, head/lib/libc/tests/locale/wcrtomb_test.c projects/routing/lib/libc/tests/locale/wcsnrtombs_test.c - copied unchanged from r290825, head/lib/libc/tests/locale/wcsnrtombs_test.c projects/routing/lib/libc/tests/locale/wcsrtombs_test.c - copied unchanged from r290825, head/lib/libc/tests/locale/wcsrtombs_test.c projects/routing/lib/libc/tests/locale/wcstombs_test.c - copied unchanged from r290825, head/lib/libc/tests/locale/wcstombs_test.c projects/routing/lib/libc/tests/locale/wctomb_test.c - copied unchanged from r290825, head/lib/libc/tests/locale/wctomb_test.c projects/routing/lib/libc/tests/net/ether_test.c - copied unchanged from r290825, head/lib/libc/tests/net/ether_test.c projects/routing/lib/libc/tests/net/eui64_aton_test.c - copied unchanged from r290825, head/lib/libc/tests/net/eui64_aton_test.c projects/routing/lib/libc/tests/net/eui64_ntoa_test.c - copied unchanged from r290825, head/lib/libc/tests/net/eui64_ntoa_test.c projects/routing/lib/libc/tests/net/test-eui64.h - copied unchanged from r290825, head/lib/libc/tests/net/test-eui64.h projects/routing/lib/libc/tests/stdio/fdopen_test.c - copied unchanged from r290825, head/lib/libc/tests/stdio/fdopen_test.c projects/routing/lib/libc/tests/stdio/fopen_test.c - copied unchanged from r290825, head/lib/libc/tests/stdio/fopen_test.c projects/routing/lib/libc/tests/stdio/freopen_test.c - copied unchanged from r290825, head/lib/libc/tests/stdio/freopen_test.c projects/routing/lib/libc/tests/stdio/getdelim_test.c - copied unchanged from r290825, head/lib/libc/tests/stdio/getdelim_test.c projects/routing/lib/libc/tests/stdio/mkostemp_test.c - copied unchanged from r290825, head/lib/libc/tests/stdio/mkostemp_test.c projects/routing/lib/libc/tests/stdio/open_memstream_test.c - copied unchanged from r290825, head/lib/libc/tests/stdio/open_memstream_test.c projects/routing/lib/libc/tests/stdio/open_wmemstream_test.c - copied unchanged from r290825, head/lib/libc/tests/stdio/open_wmemstream_test.c projects/routing/lib/libc/tests/stdio/perror_test.c - copied unchanged from r290825, head/lib/libc/tests/stdio/perror_test.c projects/routing/lib/libc/tests/stdio/print_positional_test.c - copied unchanged from r290825, head/lib/libc/tests/stdio/print_positional_test.c projects/routing/lib/libc/tests/stdio/printbasic_test.c - copied unchanged from r290825, head/lib/libc/tests/stdio/printbasic_test.c projects/routing/lib/libc/tests/stdio/printfloat_test.c - copied unchanged from r290825, head/lib/libc/tests/stdio/printfloat_test.c projects/routing/lib/libc/tests/stdio/scanfloat_test.c - copied unchanged from r290825, head/lib/libc/tests/stdio/scanfloat_test.c projects/routing/lib/libc/tests/stdlib/heapsort_test.c - copied unchanged from r290825, head/lib/libc/tests/stdlib/heapsort_test.c projects/routing/lib/libc/tests/stdlib/mergesort_test.c - copied unchanged from r290825, head/lib/libc/tests/stdlib/mergesort_test.c projects/routing/lib/libc/tests/stdlib/qsort_test.c - copied unchanged from r290825, head/lib/libc/tests/stdlib/qsort_test.c projects/routing/lib/libc/tests/stdlib/test-sort.h - copied unchanged from r290825, head/lib/libc/tests/stdlib/test-sort.h projects/routing/lib/libc/tests/string/stpncpy_test.c - copied unchanged from r290825, head/lib/libc/tests/string/stpncpy_test.c projects/routing/lib/libc/tests/string/strerror_test.c - copied unchanged from r290825, head/lib/libc/tests/string/strerror_test.c projects/routing/lib/libc/tests/string/wcscasecmp_test.c - copied unchanged from r290825, head/lib/libc/tests/string/wcscasecmp_test.c projects/routing/lib/libc/tests/string/wcsnlen_test.c - copied unchanged from r290825, head/lib/libc/tests/string/wcsnlen_test.c projects/routing/lib/libclang_rt/asan-preinit/ - copied from r290825, head/lib/libclang_rt/asan-preinit/ projects/routing/lib/libclang_rt/safestack/ - copied from r290825, head/lib/libclang_rt/safestack/ projects/routing/lib/libclang_rt/ubsan_standalone/ - copied from r290825, head/lib/libclang_rt/ubsan_standalone/ projects/routing/lib/libclang_rt/ubsan_standalone_cxx/ - copied from r290825, head/lib/libclang_rt/ubsan_standalone_cxx/ projects/routing/lib/libopenbsd/ - copied from r290825, head/lib/libopenbsd/ projects/routing/lib/libxo/tests/ - copied from r290825, head/lib/libxo/tests/ projects/routing/libexec/dma/Makefile.inc - copied unchanged from r290825, head/libexec/dma/Makefile.inc projects/routing/libexec/dma/dma-mbox-create/ - copied from r290825, head/libexec/dma/dma-mbox-create/ projects/routing/libexec/dma/dmagent/ - copied from r290825, head/libexec/dma/dmagent/ projects/routing/libexec/rtld-elf/paths.h - copied unchanged from r290825, head/libexec/rtld-elf/paths.h projects/routing/release/arm/BANANAPI.conf - copied unchanged from r290825, head/release/arm/BANANAPI.conf projects/routing/release/arm/CUBIEBOARD.conf - copied unchanged from r290825, head/release/arm/CUBIEBOARD.conf projects/routing/release/arm/CUBIEBOARD2.conf - copied unchanged from r290825, head/release/arm/CUBIEBOARD2.conf projects/routing/sbin/newfs_msdos/mkfs_msdos.c - copied unchanged from r290825, head/sbin/newfs_msdos/mkfs_msdos.c projects/routing/sbin/newfs_msdos/mkfs_msdos.h - copied unchanged from r290825, head/sbin/newfs_msdos/mkfs_msdos.h projects/routing/secure/lib/libcrypto/amd64/aesni-gcm-x86_64.S - copied unchanged from r290825, head/secure/lib/libcrypto/amd64/aesni-gcm-x86_64.S projects/routing/secure/lib/libcrypto/amd64/aesni-mb-x86_64.S - copied unchanged from r290825, head/secure/lib/libcrypto/amd64/aesni-mb-x86_64.S projects/routing/secure/lib/libcrypto/amd64/aesni-sha256-x86_64.S - copied unchanged from r290825, head/secure/lib/libcrypto/amd64/aesni-sha256-x86_64.S projects/routing/secure/lib/libcrypto/amd64/ecp_nistz256-x86_64.S - copied unchanged from r290825, head/secure/lib/libcrypto/amd64/ecp_nistz256-x86_64.S projects/routing/secure/lib/libcrypto/amd64/rsaz-avx2.S - copied unchanged from r290825, head/secure/lib/libcrypto/amd64/rsaz-avx2.S projects/routing/secure/lib/libcrypto/amd64/rsaz-x86_64.S - copied unchanged from r290825, head/secure/lib/libcrypto/amd64/rsaz-x86_64.S projects/routing/secure/lib/libcrypto/amd64/sha1-mb-x86_64.S - copied unchanged from r290825, head/secure/lib/libcrypto/amd64/sha1-mb-x86_64.S projects/routing/secure/lib/libcrypto/amd64/sha256-mb-x86_64.S - copied unchanged from r290825, head/secure/lib/libcrypto/amd64/sha256-mb-x86_64.S projects/routing/secure/lib/libcrypto/engines/libcapi/ - copied from r290825, head/secure/lib/libcrypto/engines/libcapi/ projects/routing/secure/lib/libcrypto/man/ASN1_TIME_set.3 - copied unchanged from r290825, head/secure/lib/libcrypto/man/ASN1_TIME_set.3 projects/routing/secure/lib/libcrypto/man/EC_GFp_simple_method.3 - copied unchanged from r290825, head/secure/lib/libcrypto/man/EC_GFp_simple_method.3 projects/routing/secure/lib/libcrypto/man/EC_GROUP_copy.3 - copied unchanged from r290825, head/secure/lib/libcrypto/man/EC_GROUP_copy.3 projects/routing/secure/lib/libcrypto/man/EC_GROUP_new.3 - copied unchanged from r290825, head/secure/lib/libcrypto/man/EC_GROUP_new.3 projects/routing/secure/lib/libcrypto/man/EC_KEY_new.3 - copied unchanged from r290825, head/secure/lib/libcrypto/man/EC_KEY_new.3 projects/routing/secure/lib/libcrypto/man/EC_POINT_add.3 - copied unchanged from r290825, head/secure/lib/libcrypto/man/EC_POINT_add.3 projects/routing/secure/lib/libcrypto/man/EC_POINT_new.3 - copied unchanged from r290825, head/secure/lib/libcrypto/man/EC_POINT_new.3 projects/routing/secure/lib/libcrypto/man/OPENSSL_instrument_bus.3 - copied unchanged from r290825, head/secure/lib/libcrypto/man/OPENSSL_instrument_bus.3 projects/routing/secure/lib/libcrypto/man/SSLeay_version.3 - copied unchanged from r290825, head/secure/lib/libcrypto/man/SSLeay_version.3 projects/routing/secure/lib/libcrypto/man/X509_check_host.3 - copied unchanged from r290825, head/secure/lib/libcrypto/man/X509_check_host.3 projects/routing/secure/lib/libcrypto/man/d2i_ECPKParameters.3 - copied unchanged from r290825, head/secure/lib/libcrypto/man/d2i_ECPKParameters.3 projects/routing/secure/lib/libcrypto/man/ec.3 - copied unchanged from r290825, head/secure/lib/libcrypto/man/ec.3 projects/routing/secure/lib/libssl/man/SSL_CONF_CTX_new.3 - copied unchanged from r290825, head/secure/lib/libssl/man/SSL_CONF_CTX_new.3 projects/routing/secure/lib/libssl/man/SSL_CONF_CTX_set1_prefix.3 - copied unchanged from r290825, head/secure/lib/libssl/man/SSL_CONF_CTX_set1_prefix.3 projects/routing/secure/lib/libssl/man/SSL_CONF_CTX_set_flags.3 - copied unchanged from r290825, head/secure/lib/libssl/man/SSL_CONF_CTX_set_flags.3 projects/routing/secure/lib/libssl/man/SSL_CONF_CTX_set_ssl_ctx.3 - copied unchanged from r290825, head/secure/lib/libssl/man/SSL_CONF_CTX_set_ssl_ctx.3 projects/routing/secure/lib/libssl/man/SSL_CONF_cmd.3 - copied unchanged from r290825, head/secure/lib/libssl/man/SSL_CONF_cmd.3 projects/routing/secure/lib/libssl/man/SSL_CONF_cmd_argv.3 - copied unchanged from r290825, head/secure/lib/libssl/man/SSL_CONF_cmd_argv.3 projects/routing/secure/lib/libssl/man/SSL_CTX_add1_chain_cert.3 - copied unchanged from r290825, head/secure/lib/libssl/man/SSL_CTX_add1_chain_cert.3 projects/routing/secure/lib/libssl/man/SSL_CTX_get0_param.3 - copied unchanged from r290825, head/secure/lib/libssl/man/SSL_CTX_get0_param.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set1_curves.3 - copied unchanged from r290825, head/secure/lib/libssl/man/SSL_CTX_set1_curves.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set1_verify_cert_store.3 - copied unchanged from r290825, head/secure/lib/libssl/man/SSL_CTX_set1_verify_cert_store.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_cert_cb.3 - copied unchanged from r290825, head/secure/lib/libssl/man/SSL_CTX_set_cert_cb.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_custom_cli_ext.3 - copied unchanged from r290825, head/secure/lib/libssl/man/SSL_CTX_set_custom_cli_ext.3 projects/routing/secure/lib/libssl/man/SSL_CTX_use_serverinfo.3 - copied unchanged from r290825, head/secure/lib/libssl/man/SSL_CTX_use_serverinfo.3 projects/routing/share/colldef/af_ZA.UTF-8.src - copied unchanged from r290825, head/share/colldef/af_ZA.UTF-8.src projects/routing/share/colldef/am_ET.UTF-8.src - copied unchanged from r290825, head/share/colldef/am_ET.UTF-8.src projects/routing/share/colldef/ar_SA.UTF-8.src - copied unchanged from r290825, head/share/colldef/ar_SA.UTF-8.src projects/routing/share/colldef/be_BY.UTF-8.src - copied unchanged from r290825, head/share/colldef/be_BY.UTF-8.src projects/routing/share/colldef/ca_AD.UTF-8.src - copied unchanged from r290825, head/share/colldef/ca_AD.UTF-8.src projects/routing/share/colldef/cs_CZ.UTF-8.src - copied unchanged from r290825, head/share/colldef/cs_CZ.UTF-8.src projects/routing/share/colldef/da_DK.UTF-8.src - copied unchanged from r290825, head/share/colldef/da_DK.UTF-8.src projects/routing/share/colldef/el_GR.UTF-8.src - copied unchanged from r290825, head/share/colldef/el_GR.UTF-8.src projects/routing/share/colldef/en_US.UTF-8.src - copied unchanged from r290825, head/share/colldef/en_US.UTF-8.src projects/routing/share/colldef/es_MX.UTF-8.src - copied unchanged from r290825, head/share/colldef/es_MX.UTF-8.src projects/routing/share/colldef/et_EE.UTF-8.src - copied unchanged from r290825, head/share/colldef/et_EE.UTF-8.src projects/routing/share/colldef/fi_FI.UTF-8.src - copied unchanged from r290825, head/share/colldef/fi_FI.UTF-8.src projects/routing/share/colldef/he_IL.UTF-8.src - copied unchanged from r290825, head/share/colldef/he_IL.UTF-8.src projects/routing/share/colldef/hi_IN.UTF-8.src - copied unchanged from r290825, head/share/colldef/hi_IN.UTF-8.src projects/routing/share/colldef/hr_HR.UTF-8.src - copied unchanged from r290825, head/share/colldef/hr_HR.UTF-8.src projects/routing/share/colldef/hu_HU.UTF-8.src - copied unchanged from r290825, head/share/colldef/hu_HU.UTF-8.src projects/routing/share/colldef/hy_AM.UTF-8.src - copied unchanged from r290825, head/share/colldef/hy_AM.UTF-8.src projects/routing/share/colldef/is_IS.UTF-8.src - copied unchanged from r290825, head/share/colldef/is_IS.UTF-8.src projects/routing/share/colldef/ja_JP.UTF-8.src - copied unchanged from r290825, head/share/colldef/ja_JP.UTF-8.src projects/routing/share/colldef/kk_Cyrl_KZ.UTF-8.src - copied unchanged from r290825, head/share/colldef/kk_Cyrl_KZ.UTF-8.src projects/routing/share/colldef/ko_KR.UTF-8.src - copied unchanged from r290825, head/share/colldef/ko_KR.UTF-8.src projects/routing/share/colldef/lt_LT.UTF-8.src - copied unchanged from r290825, head/share/colldef/lt_LT.UTF-8.src projects/routing/share/colldef/lv_LV.UTF-8.src - copied unchanged from r290825, head/share/colldef/lv_LV.UTF-8.src projects/routing/share/colldef/nb_NO.UTF-8.src - copied unchanged from r290825, head/share/colldef/nb_NO.UTF-8.src projects/routing/share/colldef/pl_PL.UTF-8.src - copied unchanged from r290825, head/share/colldef/pl_PL.UTF-8.src projects/routing/share/colldef/ro_RO.UTF-8.src - copied unchanged from r290825, head/share/colldef/ro_RO.UTF-8.src projects/routing/share/colldef/ru_RU.UTF-8.src - copied unchanged from r290825, head/share/colldef/ru_RU.UTF-8.src projects/routing/share/colldef/se_NO.UTF-8.src - copied unchanged from r290825, head/share/colldef/se_NO.UTF-8.src projects/routing/share/colldef/sk_SK.UTF-8.src - copied unchanged from r290825, head/share/colldef/sk_SK.UTF-8.src projects/routing/share/colldef/sl_SI.UTF-8.src - copied unchanged from r290825, head/share/colldef/sl_SI.UTF-8.src projects/routing/share/colldef/sv_SE.UTF-8.src - copied unchanged from r290825, head/share/colldef/sv_SE.UTF-8.src projects/routing/share/colldef/tr_TR.UTF-8.src - copied unchanged from r290825, head/share/colldef/tr_TR.UTF-8.src projects/routing/share/colldef/uk_UA.UTF-8.src - copied unchanged from r290825, head/share/colldef/uk_UA.UTF-8.src projects/routing/share/colldef/zh_Hans_CN.UTF-8.src - copied unchanged from r290825, head/share/colldef/zh_Hans_CN.UTF-8.src projects/routing/share/colldef/zh_Hant_TW.UTF-8.src - copied unchanged from r290825, head/share/colldef/zh_Hant_TW.UTF-8.src projects/routing/share/ctypedef/ - copied from r290825, head/share/ctypedef/ projects/routing/share/dtrace/blocking - copied unchanged from r290825, head/share/dtrace/blocking projects/routing/share/dtrace/tcpdebug - copied unchanged from r290825, head/share/dtrace/tcpdebug projects/routing/share/locale-links/ - copied from r290825, head/share/locale-links/ projects/routing/share/man/man4/otus.4 - copied unchanged from r290825, head/share/man/man4/otus.4 projects/routing/share/man/man4/otusfw.4 - copied unchanged from r290825, head/share/man/man4/otusfw.4 projects/routing/share/man/man9/PHOLD.9 - copied unchanged from r290825, head/share/man/man9/PHOLD.9 projects/routing/share/man/man9/bitset.9 - copied unchanged from r290825, head/share/man/man9/bitset.9 projects/routing/share/man/man9/bus_get_resource.9 - copied unchanged from r290825, head/share/man/man9/bus_get_resource.9 projects/routing/share/man/man9/cpuset.9 - copied unchanged from r290825, head/share/man/man9/cpuset.9 projects/routing/share/man/man9/kern_testfrwk.9 - copied unchanged from r290825, head/share/man/man9/kern_testfrwk.9 projects/routing/share/mk/bsd.confs.mk - copied unchanged from r290825, head/share/mk/bsd.confs.mk projects/routing/share/mk/src.init.mk - copied unchanged from r290825, head/share/mk/src.init.mk projects/routing/share/monetdef/ar_AE.UTF-8.src - copied unchanged from r290825, head/share/monetdef/ar_AE.UTF-8.src projects/routing/share/monetdef/ar_EG.UTF-8.src - copied unchanged from r290825, head/share/monetdef/ar_EG.UTF-8.src projects/routing/share/monetdef/ar_JO.UTF-8.src - copied unchanged from r290825, head/share/monetdef/ar_JO.UTF-8.src projects/routing/share/monetdef/ar_MA.UTF-8.src - copied unchanged from r290825, head/share/monetdef/ar_MA.UTF-8.src projects/routing/share/monetdef/ar_QA.UTF-8.src - copied unchanged from r290825, head/share/monetdef/ar_QA.UTF-8.src projects/routing/share/monetdef/ar_SA.UTF-8.src - copied unchanged from r290825, head/share/monetdef/ar_SA.UTF-8.src projects/routing/share/monetdef/da_DK.UTF-8.src - copied unchanged from r290825, head/share/monetdef/da_DK.UTF-8.src projects/routing/share/monetdef/de_AT.ISO8859-15.src - copied unchanged from r290825, head/share/monetdef/de_AT.ISO8859-15.src projects/routing/share/monetdef/en_AU.UTF-8.src - copied unchanged from r290825, head/share/monetdef/en_AU.UTF-8.src projects/routing/share/monetdef/en_CA.UTF-8.src - copied unchanged from r290825, head/share/monetdef/en_CA.UTF-8.src projects/routing/share/monetdef/en_GB.ISO8859-15.src - copied unchanged from r290825, head/share/monetdef/en_GB.ISO8859-15.src projects/routing/share/monetdef/en_GB.US-ASCII.src - copied unchanged from r290825, head/share/monetdef/en_GB.US-ASCII.src projects/routing/share/monetdef/en_IE.ISO8859-15.src - copied unchanged from r290825, head/share/monetdef/en_IE.ISO8859-15.src projects/routing/share/monetdef/en_NZ.UTF-8.src - copied unchanged from r290825, head/share/monetdef/en_NZ.UTF-8.src projects/routing/share/monetdef/en_PH.UTF-8.src - copied unchanged from r290825, head/share/monetdef/en_PH.UTF-8.src projects/routing/share/monetdef/en_SG.UTF-8.src - copied unchanged from r290825, head/share/monetdef/en_SG.UTF-8.src projects/routing/share/monetdef/en_US.UTF-8.src - copied unchanged from r290825, head/share/monetdef/en_US.UTF-8.src projects/routing/share/monetdef/en_ZA.ISO8859-1.src - copied unchanged from r290825, head/share/monetdef/en_ZA.ISO8859-1.src projects/routing/share/monetdef/en_ZA.US-ASCII.src - copied unchanged from r290825, head/share/monetdef/en_ZA.US-ASCII.src projects/routing/share/monetdef/en_ZA.UTF-8.src - copied unchanged from r290825, head/share/monetdef/en_ZA.UTF-8.src projects/routing/share/monetdef/es_AR.UTF-8.src - copied unchanged from r290825, head/share/monetdef/es_AR.UTF-8.src projects/routing/share/monetdef/es_CR.UTF-8.src - copied unchanged from r290825, head/share/monetdef/es_CR.UTF-8.src projects/routing/share/monetdef/es_MX.UTF-8.src - copied unchanged from r290825, head/share/monetdef/es_MX.UTF-8.src projects/routing/share/monetdef/fr_CA.UTF-8.src - copied unchanged from r290825, head/share/monetdef/fr_CA.UTF-8.src projects/routing/share/monetdef/fr_CH.ISO8859-15.src - copied unchanged from r290825, head/share/monetdef/fr_CH.ISO8859-15.src projects/routing/share/monetdef/fr_CH.UTF-8.src - copied unchanged from r290825, head/share/monetdef/fr_CH.UTF-8.src projects/routing/share/monetdef/hi_IN.UTF-8.src - copied unchanged from r290825, head/share/monetdef/hi_IN.UTF-8.src projects/routing/share/monetdef/hr_HR.UTF-8.src - copied unchanged from r290825, head/share/monetdef/hr_HR.UTF-8.src projects/routing/share/monetdef/hu_HU.UTF-8.src - copied unchanged from r290825, head/share/monetdef/hu_HU.UTF-8.src projects/routing/share/monetdef/is_IS.UTF-8.src - copied unchanged from r290825, head/share/monetdef/is_IS.UTF-8.src projects/routing/share/monetdef/it_CH.UTF-8.src - copied unchanged from r290825, head/share/monetdef/it_CH.UTF-8.src projects/routing/share/monetdef/ja_JP.SJIS.src - copied unchanged from r290825, head/share/monetdef/ja_JP.SJIS.src projects/routing/share/monetdef/kk_Cyrl_KZ.UTF-8.src - copied unchanged from r290825, head/share/monetdef/kk_Cyrl_KZ.UTF-8.src projects/routing/share/monetdef/lv_LV.UTF-8.src - copied unchanged from r290825, head/share/monetdef/lv_LV.UTF-8.src projects/routing/share/monetdef/mn_Cyrl_MN.UTF-8.src - copied unchanged from r290825, head/share/monetdef/mn_Cyrl_MN.UTF-8.src projects/routing/share/monetdef/nb_NO.ISO8859-15.src - copied unchanged from r290825, head/share/monetdef/nb_NO.ISO8859-15.src projects/routing/share/monetdef/nb_NO.UTF-8.src - copied unchanged from r290825, head/share/monetdef/nb_NO.UTF-8.src projects/routing/share/monetdef/nl_BE.ISO8859-15.src - copied unchanged from r290825, head/share/monetdef/nl_BE.ISO8859-15.src projects/routing/share/monetdef/nl_NL.ISO8859-15.src - copied unchanged from r290825, head/share/monetdef/nl_NL.ISO8859-15.src projects/routing/share/monetdef/nn_NO.ISO8859-15.src - copied unchanged from r290825, head/share/monetdef/nn_NO.ISO8859-15.src projects/routing/share/monetdef/pt_BR.UTF-8.src - copied unchanged from r290825, head/share/monetdef/pt_BR.UTF-8.src projects/routing/share/monetdef/ro_RO.UTF-8.src - copied unchanged from r290825, head/share/monetdef/ro_RO.UTF-8.src projects/routing/share/monetdef/se_NO.UTF-8.src - copied unchanged from r290825, head/share/monetdef/se_NO.UTF-8.src projects/routing/share/monetdef/sk_SK.UTF-8.src - copied unchanged from r290825, head/share/monetdef/sk_SK.UTF-8.src projects/routing/share/monetdef/sl_SI.UTF-8.src - copied unchanged from r290825, head/share/monetdef/sl_SI.UTF-8.src projects/routing/share/monetdef/sr_Latn_RS.UTF-8.src - copied unchanged from r290825, head/share/monetdef/sr_Latn_RS.UTF-8.src projects/routing/share/monetdef/sv_FI.ISO8859-15.src - copied unchanged from r290825, head/share/monetdef/sv_FI.ISO8859-15.src projects/routing/share/monetdef/sv_FI.UTF-8.src - copied unchanged from r290825, head/share/monetdef/sv_FI.UTF-8.src projects/routing/share/monetdef/sv_SE.ISO8859-15.src - copied unchanged from r290825, head/share/monetdef/sv_SE.ISO8859-15.src projects/routing/share/monetdef/sv_SE.UTF-8.src - copied unchanged from r290825, head/share/monetdef/sv_SE.UTF-8.src projects/routing/share/monetdef/tr_TR.UTF-8.src - copied unchanged from r290825, head/share/monetdef/tr_TR.UTF-8.src projects/routing/share/monetdef/zh_Hans_CN.GB2312.src - copied unchanged from r290825, head/share/monetdef/zh_Hans_CN.GB2312.src projects/routing/share/monetdef/zh_Hans_CN.GBK.src - copied unchanged from r290825, head/share/monetdef/zh_Hans_CN.GBK.src projects/routing/share/monetdef/zh_Hans_CN.UTF-8.src - copied unchanged from r290825, head/share/monetdef/zh_Hans_CN.UTF-8.src projects/routing/share/monetdef/zh_Hans_CN.eucCN.src - copied unchanged from r290825, head/share/monetdef/zh_Hans_CN.eucCN.src projects/routing/share/monetdef/zh_Hant_HK.UTF-8.src - copied unchanged from r290825, head/share/monetdef/zh_Hant_HK.UTF-8.src projects/routing/share/monetdef/zh_Hant_TW.Big5.src - copied unchanged from r290825, head/share/monetdef/zh_Hant_TW.Big5.src projects/routing/share/monetdef/zh_Hant_TW.UTF-8.src - copied unchanged from r290825, head/share/monetdef/zh_Hant_TW.UTF-8.src projects/routing/share/msgdef/ar_SA.UTF-8.src - copied unchanged from r290825, head/share/msgdef/ar_SA.UTF-8.src projects/routing/share/msgdef/cs_CZ.UTF-8.src - copied unchanged from r290825, head/share/msgdef/cs_CZ.UTF-8.src projects/routing/share/msgdef/de_DE.UTF-8.src - copied unchanged from r290825, head/share/msgdef/de_DE.UTF-8.src projects/routing/share/msgdef/en_US.UTF-8.src - copied unchanged from r290825, head/share/msgdef/en_US.UTF-8.src projects/routing/share/msgdef/es_MX.ISO8859-1.src - copied unchanged from r290825, head/share/msgdef/es_MX.ISO8859-1.src projects/routing/share/msgdef/es_MX.UTF-8.src - copied unchanged from r290825, head/share/msgdef/es_MX.UTF-8.src projects/routing/share/msgdef/et_EE.UTF-8.src - copied unchanged from r290825, head/share/msgdef/et_EE.UTF-8.src projects/routing/share/msgdef/eu_ES.UTF-8.src - copied unchanged from r290825, head/share/msgdef/eu_ES.UTF-8.src projects/routing/share/msgdef/fi_FI.ISO8859-15.src - copied unchanged from r290825, head/share/msgdef/fi_FI.ISO8859-15.src projects/routing/share/msgdef/fi_FI.UTF-8.src - copied unchanged from r290825, head/share/msgdef/fi_FI.UTF-8.src projects/routing/share/msgdef/fr_FR.UTF-8.src - copied unchanged from r290825, head/share/msgdef/fr_FR.UTF-8.src projects/routing/share/msgdef/hi_IN.UTF-8.src - copied unchanged from r290825, head/share/msgdef/hi_IN.UTF-8.src projects/routing/share/msgdef/hu_HU.UTF-8.src - copied unchanged from r290825, head/share/msgdef/hu_HU.UTF-8.src projects/routing/share/msgdef/is_IS.ISO8859-15.src - copied unchanged from r290825, head/share/msgdef/is_IS.ISO8859-15.src projects/routing/share/msgdef/is_IS.UTF-8.src - copied unchanged from r290825, head/share/msgdef/is_IS.UTF-8.src projects/routing/share/msgdef/it_IT.ISO8859-15.src - copied unchanged from r290825, head/share/msgdef/it_IT.ISO8859-15.src projects/routing/share/msgdef/it_IT.UTF-8.src - copied unchanged from r290825, head/share/msgdef/it_IT.UTF-8.src projects/routing/share/msgdef/kk_Cyrl_KZ.UTF-8.src - copied unchanged from r290825, head/share/msgdef/kk_Cyrl_KZ.UTF-8.src projects/routing/share/msgdef/lt_LT.UTF-8.src - copied unchanged from r290825, head/share/msgdef/lt_LT.UTF-8.src projects/routing/share/msgdef/mn_Cyrl_MN.UTF-8.src - copied unchanged from r290825, head/share/msgdef/mn_Cyrl_MN.UTF-8.src projects/routing/share/msgdef/nb_NO.UTF-8.src - copied unchanged from r290825, head/share/msgdef/nb_NO.UTF-8.src projects/routing/share/msgdef/nl_NL.UTF-8.src - copied unchanged from r290825, head/share/msgdef/nl_NL.UTF-8.src projects/routing/share/msgdef/nn_NO.UTF-8.src - copied unchanged from r290825, head/share/msgdef/nn_NO.UTF-8.src projects/routing/share/msgdef/pl_PL.UTF-8.src - copied unchanged from r290825, head/share/msgdef/pl_PL.UTF-8.src projects/routing/share/msgdef/pt_PT.ISO8859-15.src - copied unchanged from r290825, head/share/msgdef/pt_PT.ISO8859-15.src projects/routing/share/msgdef/pt_PT.UTF-8.src - copied unchanged from r290825, head/share/msgdef/pt_PT.UTF-8.src projects/routing/share/msgdef/ro_RO.UTF-8.src - copied unchanged from r290825, head/share/msgdef/ro_RO.UTF-8.src projects/routing/share/msgdef/se_NO.UTF-8.src - copied unchanged from r290825, head/share/msgdef/se_NO.UTF-8.src projects/routing/share/msgdef/sk_SK.ISO8859-2.src - copied unchanged from r290825, head/share/msgdef/sk_SK.ISO8859-2.src projects/routing/share/msgdef/sk_SK.UTF-8.src - copied unchanged from r290825, head/share/msgdef/sk_SK.UTF-8.src projects/routing/share/msgdef/sl_SI.UTF-8.src - copied unchanged from r290825, head/share/msgdef/sl_SI.UTF-8.src projects/routing/share/msgdef/sr_Cyrl_RS.ISO8859-5.src - copied unchanged from r290825, head/share/msgdef/sr_Cyrl_RS.ISO8859-5.src projects/routing/share/msgdef/sr_Latn_RS.ISO8859-2.src - copied unchanged from r290825, head/share/msgdef/sr_Latn_RS.ISO8859-2.src projects/routing/share/msgdef/sr_Latn_RS.UTF-8.src - copied unchanged from r290825, head/share/msgdef/sr_Latn_RS.UTF-8.src projects/routing/share/msgdef/sv_SE.UTF-8.src - copied unchanged from r290825, head/share/msgdef/sv_SE.UTF-8.src projects/routing/share/msgdef/tr_TR.UTF-8.src - copied unchanged from r290825, head/share/msgdef/tr_TR.UTF-8.src projects/routing/share/msgdef/zh_Hans_CN.GB2312.src - copied unchanged from r290825, head/share/msgdef/zh_Hans_CN.GB2312.src projects/routing/share/msgdef/zh_Hans_CN.GBK.src - copied unchanged from r290825, head/share/msgdef/zh_Hans_CN.GBK.src projects/routing/share/msgdef/zh_Hans_CN.UTF-8.src - copied unchanged from r290825, head/share/msgdef/zh_Hans_CN.UTF-8.src projects/routing/share/msgdef/zh_Hant_HK.Big5HKSCS.src - copied unchanged from r290825, head/share/msgdef/zh_Hant_HK.Big5HKSCS.src projects/routing/share/msgdef/zh_Hant_HK.UTF-8.src - copied unchanged from r290825, head/share/msgdef/zh_Hant_HK.UTF-8.src projects/routing/share/msgdef/zh_Hant_TW.Big5.src - copied unchanged from r290825, head/share/msgdef/zh_Hant_TW.Big5.src projects/routing/share/msgdef/zh_Hant_TW.UTF-8.src - copied unchanged from r290825, head/share/msgdef/zh_Hant_TW.UTF-8.src projects/routing/share/numericdef/ar_SA.UTF-8.src - copied unchanged from r290825, head/share/numericdef/ar_SA.UTF-8.src projects/routing/share/numericdef/en_US.UTF-8.src - copied unchanged from r290825, head/share/numericdef/en_US.UTF-8.src projects/routing/share/numericdef/en_ZA.US-ASCII.src - copied unchanged from r290825, head/share/numericdef/en_ZA.US-ASCII.src projects/routing/share/numericdef/fr_CH.ISO8859-15.src - copied unchanged from r290825, head/share/numericdef/fr_CH.ISO8859-15.src projects/routing/share/numericdef/fr_CH.UTF-8.src - copied unchanged from r290825, head/share/numericdef/fr_CH.UTF-8.src projects/routing/share/numericdef/hi_IN.UTF-8.src - copied unchanged from r290825, head/share/numericdef/hi_IN.UTF-8.src projects/routing/share/numericdef/hy_AM.UTF-8.src - copied unchanged from r290825, head/share/numericdef/hy_AM.UTF-8.src projects/routing/share/numericdef/it_CH.UTF-8.src - copied unchanged from r290825, head/share/numericdef/it_CH.UTF-8.src projects/routing/share/numericdef/ru_RU.CP866.src - copied unchanged from r290825, head/share/numericdef/ru_RU.CP866.src projects/routing/share/numericdef/sr_Latn_RS.UTF-8.src - copied unchanged from r290825, head/share/numericdef/sr_Latn_RS.UTF-8.src projects/routing/share/numericdef/tr_TR.UTF-8.src - copied unchanged from r290825, head/share/numericdef/tr_TR.UTF-8.src projects/routing/share/numericdef/uk_UA.ISO8859-5.src - copied unchanged from r290825, head/share/numericdef/uk_UA.ISO8859-5.src projects/routing/share/numericdef/uk_UA.UTF-8.src - copied unchanged from r290825, head/share/numericdef/uk_UA.UTF-8.src projects/routing/share/numericdef/zh_Hans_CN.GB2312.src - copied unchanged from r290825, head/share/numericdef/zh_Hans_CN.GB2312.src projects/routing/share/numericdef/zh_Hans_CN.eucCN.src - copied unchanged from r290825, head/share/numericdef/zh_Hans_CN.eucCN.src projects/routing/share/numericdef/zh_Hant_TW.Big5.src - copied unchanged from r290825, head/share/numericdef/zh_Hant_TW.Big5.src projects/routing/share/timedef/af_ZA.UTF-8.src - copied unchanged from r290825, head/share/timedef/af_ZA.UTF-8.src projects/routing/share/timedef/ar_JO.UTF-8.src - copied unchanged from r290825, head/share/timedef/ar_JO.UTF-8.src projects/routing/share/timedef/ar_MA.UTF-8.src - copied unchanged from r290825, head/share/timedef/ar_MA.UTF-8.src projects/routing/share/timedef/ar_SA.UTF-8.src - copied unchanged from r290825, head/share/timedef/ar_SA.UTF-8.src projects/routing/share/timedef/ca_IT.ISO8859-15.src - copied unchanged from r290825, head/share/timedef/ca_IT.ISO8859-15.src projects/routing/share/timedef/ca_IT.UTF-8.src - copied unchanged from r290825, head/share/timedef/ca_IT.UTF-8.src projects/routing/share/timedef/da_DK.ISO8859-15.src - copied unchanged from r290825, head/share/timedef/da_DK.ISO8859-15.src projects/routing/share/timedef/de_AT.ISO8859-15.src - copied unchanged from r290825, head/share/timedef/de_AT.ISO8859-15.src projects/routing/share/timedef/de_DE.ISO8859-15.src - copied unchanged from r290825, head/share/timedef/de_DE.ISO8859-15.src projects/routing/share/timedef/en_CA.UTF-8.src - copied unchanged from r290825, head/share/timedef/en_CA.UTF-8.src projects/routing/share/timedef/en_GB.UTF-8.src - copied unchanged from r290825, head/share/timedef/en_GB.UTF-8.src projects/routing/share/timedef/en_HK.UTF-8.src - copied unchanged from r290825, head/share/timedef/en_HK.UTF-8.src projects/routing/share/timedef/en_IE.UTF-8.src - copied unchanged from r290825, head/share/timedef/en_IE.UTF-8.src projects/routing/share/timedef/en_PH.UTF-8.src - copied unchanged from r290825, head/share/timedef/en_PH.UTF-8.src projects/routing/share/timedef/en_SG.UTF-8.src - copied unchanged from r290825, head/share/timedef/en_SG.UTF-8.src projects/routing/share/timedef/en_US.UTF-8.src - copied unchanged from r290825, head/share/timedef/en_US.UTF-8.src projects/routing/share/timedef/en_ZA.UTF-8.src - copied unchanged from r290825, head/share/timedef/en_ZA.UTF-8.src projects/routing/share/timedef/es_AR.ISO8859-1.src - copied unchanged from r290825, head/share/timedef/es_AR.ISO8859-1.src projects/routing/share/timedef/es_CR.UTF-8.src - copied unchanged from r290825, head/share/timedef/es_CR.UTF-8.src projects/routing/share/timedef/es_ES.ISO8859-15.src - copied unchanged from r290825, head/share/timedef/es_ES.ISO8859-15.src projects/routing/share/timedef/es_MX.ISO8859-1.src - copied unchanged from r290825, head/share/timedef/es_MX.ISO8859-1.src projects/routing/share/timedef/es_MX.UTF-8.src - copied unchanged from r290825, head/share/timedef/es_MX.UTF-8.src projects/routing/share/timedef/eu_ES.UTF-8.src - copied unchanged from r290825, head/share/timedef/eu_ES.UTF-8.src projects/routing/share/timedef/fi_FI.ISO8859-15.src - copied unchanged from r290825, head/share/timedef/fi_FI.ISO8859-15.src projects/routing/share/timedef/fr_BE.ISO8859-15.src - copied unchanged from r290825, head/share/timedef/fr_BE.ISO8859-15.src projects/routing/share/timedef/fr_BE.UTF-8.src - copied unchanged from r290825, head/share/timedef/fr_BE.UTF-8.src projects/routing/share/timedef/fr_CA.ISO8859-1.src - copied unchanged from r290825, head/share/timedef/fr_CA.ISO8859-1.src projects/routing/share/timedef/fr_CA.UTF-8.src - copied unchanged from r290825, head/share/timedef/fr_CA.UTF-8.src projects/routing/share/timedef/fr_CH.ISO8859-15.src - copied unchanged from r290825, head/share/timedef/fr_CH.ISO8859-15.src projects/routing/share/timedef/fr_CH.UTF-8.src - copied unchanged from r290825, head/share/timedef/fr_CH.UTF-8.src projects/routing/share/timedef/fr_FR.ISO8859-15.src - copied unchanged from r290825, head/share/timedef/fr_FR.ISO8859-15.src projects/routing/share/timedef/hi_IN.UTF-8.src - copied unchanged from r290825, head/share/timedef/hi_IN.UTF-8.src projects/routing/share/timedef/is_IS.ISO8859-15.src - copied unchanged from r290825, head/share/timedef/is_IS.ISO8859-15.src projects/routing/share/timedef/it_CH.ISO8859-15.src - copied unchanged from r290825, head/share/timedef/it_CH.ISO8859-15.src projects/routing/share/timedef/it_CH.UTF-8.src - copied unchanged from r290825, head/share/timedef/it_CH.UTF-8.src projects/routing/share/timedef/it_IT.ISO8859-15.src - copied unchanged from r290825, head/share/timedef/it_IT.ISO8859-15.src projects/routing/share/timedef/kk_Cyrl_KZ.UTF-8.src - copied unchanged from r290825, head/share/timedef/kk_Cyrl_KZ.UTF-8.src projects/routing/share/timedef/mn_Cyrl_MN.UTF-8.src - copied unchanged from r290825, head/share/timedef/mn_Cyrl_MN.UTF-8.src projects/routing/share/timedef/nb_NO.ISO8859-15.src - copied unchanged from r290825, head/share/timedef/nb_NO.ISO8859-15.src projects/routing/share/timedef/nl_BE.UTF-8.src - copied unchanged from r290825, head/share/timedef/nl_BE.UTF-8.src projects/routing/share/timedef/nl_NL.UTF-8.src - copied unchanged from r290825, head/share/timedef/nl_NL.UTF-8.src projects/routing/share/timedef/nn_NO.ISO8859-15.src - copied unchanged from r290825, head/share/timedef/nn_NO.ISO8859-15.src projects/routing/share/timedef/pt_PT.ISO8859-15.src - copied unchanged from r290825, head/share/timedef/pt_PT.ISO8859-15.src projects/routing/share/timedef/se_FI.UTF-8.src - copied unchanged from r290825, head/share/timedef/se_FI.UTF-8.src projects/routing/share/timedef/se_NO.UTF-8.src - copied unchanged from r290825, head/share/timedef/se_NO.UTF-8.src projects/routing/share/timedef/sr_Cyrl_RS.ISO8859-5.src - copied unchanged from r290825, head/share/timedef/sr_Cyrl_RS.ISO8859-5.src projects/routing/share/timedef/sr_Latn_RS.ISO8859-2.src - copied unchanged from r290825, head/share/timedef/sr_Latn_RS.ISO8859-2.src projects/routing/share/timedef/sr_Latn_RS.UTF-8.src - copied unchanged from r290825, head/share/timedef/sr_Latn_RS.UTF-8.src projects/routing/share/timedef/sv_FI.ISO8859-15.src - copied unchanged from r290825, head/share/timedef/sv_FI.ISO8859-15.src projects/routing/share/timedef/sv_FI.UTF-8.src - copied unchanged from r290825, head/share/timedef/sv_FI.UTF-8.src projects/routing/share/timedef/sv_SE.ISO8859-15.src - copied unchanged from r290825, head/share/timedef/sv_SE.ISO8859-15.src projects/routing/share/timedef/zh_Hans_CN.GB2312.src - copied unchanged from r290825, head/share/timedef/zh_Hans_CN.GB2312.src projects/routing/share/timedef/zh_Hans_CN.GBK.src - copied unchanged from r290825, head/share/timedef/zh_Hans_CN.GBK.src projects/routing/share/timedef/zh_Hans_CN.UTF-8.src - copied unchanged from r290825, head/share/timedef/zh_Hans_CN.UTF-8.src projects/routing/share/timedef/zh_Hans_CN.eucCN.src - copied unchanged from r290825, head/share/timedef/zh_Hans_CN.eucCN.src projects/routing/share/timedef/zh_Hant_HK.Big5HKSCS.src - copied unchanged from r290825, head/share/timedef/zh_Hant_HK.Big5HKSCS.src projects/routing/share/timedef/zh_Hant_HK.UTF-8.src - copied unchanged from r290825, head/share/timedef/zh_Hant_HK.UTF-8.src projects/routing/share/timedef/zh_Hant_TW.Big5.src - copied unchanged from r290825, head/share/timedef/zh_Hant_TW.Big5.src projects/routing/share/timedef/zh_Hant_TW.UTF-8.src - copied unchanged from r290825, head/share/timedef/zh_Hant_TW.UTF-8.src projects/routing/share/vt/fonts/vgarom-16x32.hex - copied unchanged from r290825, head/share/vt/fonts/vgarom-16x32.hex projects/routing/sys/arm/allwinner/a20/a20_if_dwc.c - copied unchanged from r290825, head/sys/arm/allwinner/a20/a20_if_dwc.c projects/routing/sys/arm/arm/hdmi_if.m - copied unchanged from r290825, head/sys/arm/arm/hdmi_if.m projects/routing/sys/arm/arm/intrng.c - copied unchanged from r290825, head/sys/arm/arm/intrng.c projects/routing/sys/arm/arm/pic_if.m - copied unchanged from r290825, head/sys/arm/arm/pic_if.m projects/routing/sys/arm/broadcom/bcm2835/bcm2835_vcio.c - copied unchanged from r290825, head/sys/arm/broadcom/bcm2835/bcm2835_vcio.c projects/routing/sys/arm/freescale/imx/imx6_src.c - copied unchanged from r290825, head/sys/arm/freescale/imx/imx6_src.c projects/routing/sys/arm/freescale/imx/imx6_src.h - copied unchanged from r290825, head/sys/arm/freescale/imx/imx6_src.h projects/routing/sys/arm64/cloudabi64/ - copied from r290825, head/sys/arm64/cloudabi64/ projects/routing/sys/boot/fdt/dts/arm/zybo.dts - copied unchanged from r290825, head/sys/boot/fdt/dts/arm/zybo.dts projects/routing/sys/cam/ctl/ctl_ha.c - copied unchanged from r290825, head/sys/cam/ctl/ctl_ha.c projects/routing/sys/cddl/contrib/opensolaris/common/atomic/aarch64/ - copied from r290825, head/sys/cddl/contrib/opensolaris/common/atomic/aarch64/ projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/edonr_zfs.c - copied unchanged from r290825, head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/edonr_zfs.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/skein_zfs.c - copied unchanged from r290825, head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/skein_zfs.c projects/routing/sys/compat/cloudabi64/cloudabi64_module.c - copied unchanged from r290825, head/sys/compat/cloudabi64/cloudabi64_module.c projects/routing/sys/compat/linuxkpi/ - copied from r290825, head/sys/compat/linuxkpi/ projects/routing/sys/contrib/dev/otus/ - copied from r290825, head/sys/contrib/dev/otus/ projects/routing/sys/contrib/vchiq/interface/vchiq_arm/vchiq_debugfs.c - copied unchanged from r290825, head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_debugfs.c projects/routing/sys/contrib/vchiq/interface/vchiq_arm/vchiq_debugfs.h - copied unchanged from r290825, head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_debugfs.h projects/routing/sys/contrib/vchiq/interface/vchiq_arm/vchiq_killable.h - copied unchanged from r290825, head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_killable.h projects/routing/sys/dev/dwc/if_dwc_if.m - copied unchanged from r290825, head/sys/dev/dwc/if_dwc_if.m projects/routing/sys/dev/dwc/if_dwcvar.h - copied unchanged from r290825, head/sys/dev/dwc/if_dwcvar.h projects/routing/sys/dev/etherswitch/e6000sw/ - copied from r290825, head/sys/dev/etherswitch/e6000sw/ projects/routing/sys/dev/mlx5/ - copied from r290825, head/sys/dev/mlx5/ projects/routing/sys/dev/otus/ - copied from r290825, head/sys/dev/otus/ projects/routing/sys/dev/usb/wlan/if_urtwnvar.h - copied unchanged from r290825, head/sys/dev/usb/wlan/if_urtwnvar.h projects/routing/sys/dev/vnic/ - copied from r290825, head/sys/dev/vnic/ projects/routing/sys/dev/xen/console/xen_console.c - copied unchanged from r290825, head/sys/dev/xen/console/xen_console.c projects/routing/sys/libkern/ffsll.c - copied unchanged from r290825, head/sys/libkern/ffsll.c projects/routing/sys/mips/conf/ERL - copied unchanged from r290825, head/sys/mips/conf/ERL projects/routing/sys/mips/conf/TL-WR740Nv4 - copied unchanged from r290825, head/sys/mips/conf/TL-WR740Nv4 projects/routing/sys/mips/conf/TL-WR740Nv4.hints - copied unchanged from r290825, head/sys/mips/conf/TL-WR740Nv4.hints projects/routing/sys/modules/dtrace/systrace_linux/ - copied from r290825, head/sys/modules/dtrace/systrace_linux/ projects/routing/sys/modules/linuxkpi/ - copied from r290825, head/sys/modules/linuxkpi/ projects/routing/sys/modules/mlx5/ - copied from r290825, head/sys/modules/mlx5/ projects/routing/sys/modules/mlx5en/ - copied from r290825, head/sys/modules/mlx5en/ projects/routing/sys/modules/otus/ - copied from r290825, head/sys/modules/otus/ projects/routing/sys/modules/otusfw/ - copied from r290825, head/sys/modules/otusfw/ projects/routing/sys/modules/tests/ - copied from r290825, head/sys/modules/tests/ projects/routing/sys/netinet/tcp_pcap.c - copied unchanged from r290825, head/sys/netinet/tcp_pcap.c projects/routing/sys/netinet/tcp_pcap.h - copied unchanged from r290825, head/sys/netinet/tcp_pcap.h projects/routing/sys/sparc64/pci/ofw_pci.c - copied unchanged from r290825, head/sys/sparc64/pci/ofw_pci.c projects/routing/sys/tests/ - copied from r290825, head/sys/tests/ projects/routing/sys/x86/include/stack.h - copied unchanged from r290825, head/sys/x86/include/stack.h projects/routing/sys/x86/include/xen/ - copied from r290825, head/sys/x86/include/xen/ projects/routing/sys/x86/x86/stack_machdep.c - copied unchanged from r290825, head/sys/x86/x86/stack_machdep.c projects/routing/sys/xen/interface/arch-x86/pmu.h - copied unchanged from r290825, head/sys/xen/interface/arch-x86/pmu.h projects/routing/sys/xen/interface/errno.h - copied unchanged from r290825, head/sys/xen/interface/errno.h projects/routing/sys/xen/interface/gcov.h - copied unchanged from r290825, head/sys/xen/interface/gcov.h projects/routing/sys/xen/interface/hvm/hvm_xs_strings.h - copied unchanged from r290825, head/sys/xen/interface/hvm/hvm_xs_strings.h projects/routing/sys/xen/interface/hvm/pvdrivers.h - copied unchanged from r290825, head/sys/xen/interface/hvm/pvdrivers.h projects/routing/sys/xen/interface/pmu.h - copied unchanged from r290825, head/sys/xen/interface/pmu.h projects/routing/sys/xen/interface/vm_event.h - copied unchanged from r290825, head/sys/xen/interface/vm_event.h projects/routing/tests/sys/acl/ - copied from r290825, head/tests/sys/acl/ projects/routing/tests/sys/kern/kern_copyin.c - copied unchanged from r290825, head/tests/sys/kern/kern_copyin.c projects/routing/tests/sys/posixshm/ - copied from r290825, head/tests/sys/posixshm/ projects/routing/tests/sys/vfs/ - copied from r290825, head/tests/sys/vfs/ projects/routing/tools/build/options/WITHOUT_DEBUG_FILES - copied unchanged from r290825, head/tools/build/options/WITHOUT_DEBUG_FILES projects/routing/tools/build/options/WITHOUT_LLDB - copied unchanged from r290825, head/tools/build/options/WITHOUT_LLDB projects/routing/tools/build/options/WITH_CCACHE_BUILD - copied unchanged from r290825, head/tools/build/options/WITH_CCACHE_BUILD projects/routing/tools/build/options/WITH_DIRDEPS_BUILD - copied unchanged from r290825, head/tools/build/options/WITH_DIRDEPS_BUILD projects/routing/tools/build/options/WITH_FAST_DEPEND - copied unchanged from r290825, head/tools/build/options/WITH_FAST_DEPEND projects/routing/tools/test/net/ - copied from r290825, head/tools/test/net/ projects/routing/tools/tools/locale/ - copied from r290825, head/tools/tools/locale/ projects/routing/usr.bin/caesar/ - copied from r290825, head/usr.bin/caesar/ projects/routing/usr.bin/clang/llvm-cxxdump/ - copied from r290825, head/usr.bin/clang/llvm-cxxdump/ projects/routing/usr.bin/clang/llvm-dwarfdump/ - copied from r290825, head/usr.bin/clang/llvm-dwarfdump/ projects/routing/usr.bin/clang/llvm-lto/ - copied from r290825, head/usr.bin/clang/llvm-lto/ projects/routing/usr.bin/clang/llvm-pdbdump/ - copied from r290825, head/usr.bin/clang/llvm-pdbdump/ projects/routing/usr.bin/cpio/tests/ - copied from r290825, head/usr.bin/cpio/tests/ projects/routing/usr.bin/factor/ - copied from r290825, head/usr.bin/factor/ projects/routing/usr.bin/fortune/ - copied from r290825, head/usr.bin/fortune/ projects/routing/usr.bin/grdc/ - copied from r290825, head/usr.bin/grdc/ projects/routing/usr.bin/kdump/utrace.c - copied unchanged from r290825, head/usr.bin/kdump/utrace.c projects/routing/usr.bin/limits/tests/ - copied from r290825, head/usr.bin/limits/tests/ projects/routing/usr.bin/localedef/ - copied from r290825, head/usr.bin/localedef/ projects/routing/usr.bin/morse/ - copied from r290825, head/usr.bin/morse/ projects/routing/usr.bin/numactl/Makefile.depend - copied unchanged from r290825, head/usr.bin/numactl/Makefile.depend projects/routing/usr.bin/number/ - copied from r290825, head/usr.bin/number/ projects/routing/usr.bin/pom/ - copied from r290825, head/usr.bin/pom/ projects/routing/usr.bin/primes/ - copied from r290825, head/usr.bin/primes/ projects/routing/usr.bin/random/ - copied from r290825, head/usr.bin/random/ projects/routing/usr.bin/svn/lib/libsvn_fs_x/ - copied from r290825, head/usr.bin/svn/lib/libsvn_fs_x/ projects/routing/usr.bin/svn/svnbench/ - copied from r290825, head/usr.bin/svn/svnbench/ projects/routing/usr.bin/svn/svnfsfs/ - copied from r290825, head/usr.bin/svn/svnfsfs/ projects/routing/usr.bin/systat/sctp.c - copied unchanged from r290825, head/usr.bin/systat/sctp.c projects/routing/usr.bin/systat/zarc.c - copied unchanged from r290825, head/usr.bin/systat/zarc.c projects/routing/usr.bin/tar/tests/ - copied from r290825, head/usr.bin/tar/tests/ projects/routing/usr.bin/truss/aarch64-cloudabi64.c - copied unchanged from r290825, head/usr.bin/truss/aarch64-cloudabi64.c projects/routing/usr.bin/truss/aarch64-freebsd.c - copied unchanged from r290825, head/usr.bin/truss/aarch64-freebsd.c projects/routing/usr.bin/truss/amd64-cloudabi64.c - copied unchanged from r290825, head/usr.bin/truss/amd64-cloudabi64.c projects/routing/usr.bin/truss/amd64-freebsd.c - copied unchanged from r290825, head/usr.bin/truss/amd64-freebsd.c projects/routing/usr.bin/truss/amd64-freebsd32.c - copied unchanged from r290825, head/usr.bin/truss/amd64-freebsd32.c projects/routing/usr.bin/truss/arm-freebsd.c - copied unchanged from r290825, head/usr.bin/truss/arm-freebsd.c projects/routing/usr.bin/truss/cloudabi.c - copied unchanged from r290825, head/usr.bin/truss/cloudabi.c projects/routing/usr.bin/truss/cloudabi.h - copied unchanged from r290825, head/usr.bin/truss/cloudabi.h projects/routing/usr.bin/truss/i386-freebsd.c - copied unchanged from r290825, head/usr.bin/truss/i386-freebsd.c projects/routing/usr.bin/truss/makesyscallsconf.sh - copied unchanged from r290825, head/usr.bin/truss/makesyscallsconf.sh projects/routing/usr.bin/truss/mips-freebsd.c - copied unchanged from r290825, head/usr.bin/truss/mips-freebsd.c projects/routing/usr.bin/truss/powerpc-freebsd.c - copied unchanged from r290825, head/usr.bin/truss/powerpc-freebsd.c projects/routing/usr.bin/truss/powerpc64-freebsd.c - copied unchanged from r290825, head/usr.bin/truss/powerpc64-freebsd.c projects/routing/usr.bin/truss/powerpc64-freebsd32.c - copied unchanged from r290825, head/usr.bin/truss/powerpc64-freebsd32.c projects/routing/usr.bin/truss/sparc64-freebsd.c - copied unchanged from r290825, head/usr.bin/truss/sparc64-freebsd.c projects/routing/usr.bin/xo/tests/ - copied from r290825, head/usr.bin/xo/tests/ projects/routing/usr.sbin/Makefile.arm64 - copied unchanged from r290825, head/usr.sbin/Makefile.arm64 projects/routing/usr.sbin/bhyve/fwctl.c - copied unchanged from r290825, head/usr.sbin/bhyve/fwctl.c projects/routing/usr.sbin/bhyve/fwctl.h - copied unchanged from r290825, head/usr.sbin/bhyve/fwctl.h projects/routing/usr.sbin/fmtree/ - copied from r290825, head/usr.sbin/fmtree/ projects/routing/usr.sbin/makefs/tests/ - copied from r290825, head/usr.sbin/makefs/tests/ projects/routing/usr.sbin/mpsutil/ - copied from r290825, head/usr.sbin/mpsutil/ projects/routing/usr.sbin/ppp/ppp.conf - copied unchanged from r290825, head/usr.sbin/ppp/ppp.conf projects/routing/usr.sbin/sesutil/Makefile.depend - copied unchanged from r290825, head/usr.sbin/sesutil/Makefile.depend projects/routing/usr.sbin/sesutil/eltsub.c - copied unchanged from r290825, head/usr.sbin/sesutil/eltsub.c projects/routing/usr.sbin/sesutil/eltsub.h - copied unchanged from r290825, head/usr.sbin/sesutil/eltsub.h Directory Properties: projects/routing/contrib/llvm/tools/llvm-dwarfdump/ (props changed) projects/routing/contrib/llvm/tools/llvm-lto/ (props changed) Replaced: projects/routing/contrib/compiler-rt/lib/builtins/fixtfdi.c - copied unchanged from r290825, head/contrib/compiler-rt/lib/builtins/fixtfdi.c projects/routing/contrib/compiler-rt/lib/builtins/fixtfsi.c - copied unchanged from r290825, head/contrib/compiler-rt/lib/builtins/fixtfsi.c projects/routing/contrib/compiler-rt/lib/builtins/fixtfti.c - copied unchanged from r290825, head/contrib/compiler-rt/lib/builtins/fixtfti.c projects/routing/contrib/compiler-rt/lib/builtins/fixunstfdi.c - copied unchanged from r290825, head/contrib/compiler-rt/lib/builtins/fixunstfdi.c projects/routing/contrib/compiler-rt/lib/builtins/fixunstfsi.c - copied unchanged from r290825, head/contrib/compiler-rt/lib/builtins/fixunstfsi.c projects/routing/contrib/compiler-rt/lib/builtins/fixunstfti.c - copied unchanged from r290825, head/contrib/compiler-rt/lib/builtins/fixunstfti.c projects/routing/contrib/compiler-rt/lib/builtins/fp_fixint_impl.inc - copied unchanged from r290825, head/contrib/compiler-rt/lib/builtins/fp_fixint_impl.inc projects/routing/contrib/compiler-rt/lib/builtins/fp_fixuint_impl.inc - copied unchanged from r290825, head/contrib/compiler-rt/lib/builtins/fp_fixuint_impl.inc - copied from r290825, head/contrib/libc++/ projects/routing/lib/libc/locale/ascii.c - copied unchanged from r290825, head/lib/libc/locale/ascii.c projects/routing/libexec/dma/Makefile - copied unchanged from r290825, head/libexec/dma/Makefile projects/routing/share/monetdef/sk_SK.ISO8859-2.src - copied unchanged from r290825, head/share/monetdef/sk_SK.ISO8859-2.src projects/routing/share/monetdef/sl_SI.ISO8859-2.src - copied unchanged from r290825, head/share/monetdef/sl_SI.ISO8859-2.src projects/routing/share/numericdef/uk_UA.KOI8-U.src - copied unchanged from r290825, head/share/numericdef/uk_UA.KOI8-U.src projects/routing/share/timedef/de_DE.UTF-8.src - copied unchanged from r290825, head/share/timedef/de_DE.UTF-8.src projects/routing/tools/build/options/WITH_META_MODE - copied unchanged from r290825, head/tools/build/options/WITH_META_MODE Directory Properties: projects/routing/contrib/libc++/ (props changed) Deleted: projects/routing/cddl/contrib/opensolaris/cmd/sgs/ projects/routing/cddl/contrib/opensolaris/common/avl/avl.c projects/routing/cddl/usr.bin/sgsmsg/ projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_posix_libcdep.cc projects/routing/contrib/dma/BSDmakefile projects/routing/contrib/dma/debian/ projects/routing/contrib/libucl/cmake/ projects/routing/contrib/llvm/include/llvm/Analysis/ConstantsScanner.h projects/routing/contrib/llvm/include/llvm/Analysis/FunctionTargetTransformInfo.h projects/routing/contrib/llvm/include/llvm/Analysis/JumpInstrTableInfo.h projects/routing/contrib/llvm/include/llvm/CodeGen/ForwardControlFlowIntegrity.h projects/routing/contrib/llvm/include/llvm/CodeGen/JumpInstrTables.h projects/routing/contrib/llvm/include/llvm/CodeGen/StackMapLivenessAnalysis.h projects/routing/contrib/llvm/include/llvm/DebugInfo/DWARFAbbreviationDeclaration.h projects/routing/contrib/llvm/include/llvm/DebugInfo/DWARFAcceleratorTable.h projects/routing/contrib/llvm/include/llvm/DebugInfo/DWARFCompileUnit.h projects/routing/contrib/llvm/include/llvm/DebugInfo/DWARFContext.h projects/routing/contrib/llvm/include/llvm/DebugInfo/DWARFDebugAbbrev.h projects/routing/contrib/llvm/include/llvm/DebugInfo/DWARFDebugArangeSet.h projects/routing/contrib/llvm/include/llvm/DebugInfo/DWARFDebugAranges.h projects/routing/contrib/llvm/include/llvm/DebugInfo/DWARFDebugFrame.h projects/routing/contrib/llvm/include/llvm/DebugInfo/DWARFDebugInfoEntry.h projects/routing/contrib/llvm/include/llvm/DebugInfo/DWARFDebugLine.h projects/routing/contrib/llvm/include/llvm/DebugInfo/DWARFDebugLoc.h projects/routing/contrib/llvm/include/llvm/DebugInfo/DWARFDebugRangeList.h projects/routing/contrib/llvm/include/llvm/DebugInfo/DWARFFormValue.h projects/routing/contrib/llvm/include/llvm/DebugInfo/DWARFRelocMap.h projects/routing/contrib/llvm/include/llvm/DebugInfo/DWARFSection.h projects/routing/contrib/llvm/include/llvm/DebugInfo/DWARFTypeUnit.h projects/routing/contrib/llvm/include/llvm/DebugInfo/DWARFUnit.h projects/routing/contrib/llvm/include/llvm/IR/IntrinsicsR600.td projects/routing/contrib/llvm/include/llvm/MC/MCELF.h projects/routing/contrib/llvm/include/llvm/MC/MCELFSymbolFlags.h projects/routing/contrib/llvm/include/llvm/MC/MCMachOSymbolFlags.h projects/routing/contrib/llvm/include/llvm/PassManager.h projects/routing/contrib/llvm/include/llvm/Target/TargetLibraryInfo.h projects/routing/contrib/llvm/include/llvm/Transforms/Utils/VectorUtils.h projects/routing/contrib/llvm/lib/Analysis/FunctionTargetTransformInfo.cpp projects/routing/contrib/llvm/lib/Analysis/JumpInstrTableInfo.cpp projects/routing/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.h projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocList.h projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/Win64Exception.h projects/routing/contrib/llvm/lib/CodeGen/ForwardControlFlowIntegrity.cpp projects/routing/contrib/llvm/lib/CodeGen/JumpInstrTables.cpp projects/routing/contrib/llvm/lib/CodeGen/PrologEpilogInserter.h projects/routing/contrib/llvm/lib/DebugInfo/DIContext.cpp projects/routing/contrib/llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp projects/routing/contrib/llvm/lib/DebugInfo/DWARFAcceleratorTable.cpp projects/routing/contrib/llvm/lib/DebugInfo/DWARFCompileUnit.cpp projects/routing/contrib/llvm/lib/DebugInfo/DWARFContext.cpp projects/routing/contrib/llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp projects/routing/contrib/llvm/lib/DebugInfo/DWARFDebugArangeSet.cpp projects/routing/contrib/llvm/lib/DebugInfo/DWARFDebugAranges.cpp projects/routing/contrib/llvm/lib/DebugInfo/DWARFDebugFrame.cpp projects/routing/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp projects/routing/contrib/llvm/lib/DebugInfo/DWARFDebugLine.cpp projects/routing/contrib/llvm/lib/DebugInfo/DWARFDebugLoc.cpp projects/routing/contrib/llvm/lib/DebugInfo/DWARFDebugRangeList.cpp projects/routing/contrib/llvm/lib/DebugInfo/DWARFFormValue.cpp projects/routing/contrib/llvm/lib/DebugInfo/DWARFTypeUnit.cpp projects/routing/contrib/llvm/lib/DebugInfo/DWARFUnit.cpp projects/routing/contrib/llvm/lib/DebugInfo/SyntaxHighlighting.cpp projects/routing/contrib/llvm/lib/DebugInfo/SyntaxHighlighting.h projects/routing/contrib/llvm/lib/DebugInfo/module.modulemap projects/routing/contrib/llvm/lib/ExecutionEngine/EventListenerCommon.h projects/routing/contrib/llvm/lib/ExecutionEngine/MCJIT/SectionMemoryManager.cpp projects/routing/contrib/llvm/lib/IR/AsmWriter.h projects/routing/contrib/llvm/lib/IR/LeaksContext.h projects/routing/contrib/llvm/lib/IR/UseListOrder.cpp projects/routing/contrib/llvm/lib/MC/MCELF.cpp projects/routing/contrib/llvm/lib/Support/IsInf.cpp projects/routing/contrib/llvm/lib/Support/IsNAN.cpp projects/routing/contrib/llvm/lib/Target/ARM/ARMFPUName.def projects/routing/contrib/llvm/lib/Target/ARM/ARMFPUName.h projects/routing/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMArchName.def projects/routing/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMArchName.h projects/routing/contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp projects/routing/contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.h projects/routing/contrib/llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp projects/routing/contrib/llvm/lib/Target/ARM/Thumb2RegisterInfo.h projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonCallingConvLower.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonCallingConvLower.h projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonSplitTFRCondSets.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonVarargsCallingConvention.h projects/routing/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInst.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInst.h projects/routing/contrib/llvm/lib/Target/MSP430/MSP430SelectionDAGInfo.cpp projects/routing/contrib/llvm/lib/Target/MSP430/MSP430SelectionDAGInfo.h projects/routing/contrib/llvm/lib/Target/Mips/Mips16HardFloat.h projects/routing/contrib/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.h projects/routing/contrib/llvm/lib/Target/Mips/MipsOs16.h projects/routing/contrib/llvm/lib/Target/Mips/MipsSelectionDAGInfo.cpp projects/routing/contrib/llvm/lib/Target/Mips/MipsSelectionDAGInfo.h projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXLowerStructArgs.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXutil.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXutil.h projects/routing/contrib/llvm/lib/Target/PowerPC/PPCSelectionDAGInfo.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/PPCSelectionDAGInfo.h projects/routing/contrib/llvm/lib/Target/R600/ projects/routing/contrib/llvm/lib/Target/Sparc/SparcSelectionDAGInfo.cpp projects/routing/contrib/llvm/lib/Target/Sparc/SparcSelectionDAGInfo.h projects/routing/contrib/llvm/lib/Target/TargetLibraryInfo.cpp projects/routing/contrib/llvm/lib/Target/XCore/XCoreTargetTransformInfo.cpp projects/routing/contrib/llvm/lib/Transforms/InstCombine/InstCombine.h projects/routing/contrib/llvm/lib/Transforms/InstCombine/InstCombineWorklist.h projects/routing/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCUtil.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/LowerExpectIntrinsic.cpp projects/routing/contrib/llvm/patches/patch-01-freebsd-kprintf.diff projects/routing/contrib/llvm/patches/patch-02-clang-vendor-suffix.diff projects/routing/contrib/llvm/patches/patch-03-add-CC-aliases.diff projects/routing/contrib/llvm/patches/patch-04-add-llvm-gvn-option.diff projects/routing/contrib/llvm/patches/patch-05-enable-armv6-clrex.diff projects/routing/contrib/llvm/patches/patch-06-clang-add-mips-triples.diff projects/routing/contrib/llvm/patches/patch-07-llvm-r227752-boot2-shrink.diff projects/routing/contrib/llvm/patches/patch-08-llvm-r230348-arm-fix-bad-ha.diff projects/routing/contrib/llvm/patches/patch-09-clang-r227115-constantarraytype.diff projects/routing/contrib/llvm/patches/patch-10-llvm-r241142-r241143-mmx-undef.diff projects/routing/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsR600.def projects/routing/contrib/llvm/tools/lldb/include/lldb/Target/NativeRegisterContext.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Target/NativeRegisterContextRegisterInfo.h projects/routing/contrib/llvm/tools/lldb/include/lldb/lldb-private-log.h projects/routing/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpoint.h projects/routing/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpointList.h projects/routing/contrib/llvm/tools/lldb/source/Host/common/NativeProcessProtocol.h projects/routing/contrib/llvm/tools/lldb/source/Host/common/NativeThreadProtocol.h projects/routing/contrib/llvm/tools/lldb/source/Host/common/SoftwareBreakpoint.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/POSIXStopInfo.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/POSIXStopInfo.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/POSIXThread.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextPOSIXProcessMonitor_arm64.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextPOSIXProcessMonitor_arm64.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextPOSIXProcessMonitor_mips64.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextPOSIXProcessMonitor_mips64.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextPOSIXProcessMonitor_powerpc.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextPOSIXProcessMonitor_powerpc.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextPOSIXProcessMonitor_x86.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/RegisterContextPOSIXProcessMonitor_x86.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_mips64.h projects/routing/contrib/llvm/tools/lldb/source/Target/NativeRegisterContext.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/NativeRegisterContextRegisterInfo.cpp projects/routing/contrib/llvm/tools/lldb/source/Utility/StringExtractor.h projects/routing/contrib/llvm/tools/lldb/source/lldb-log.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/Driver.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/Driver.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdinLinux.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdinLinux.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdinWindows.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdinWindows.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilTermios.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilTermios.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-platform/ projects/routing/contrib/llvm/tools/llvm-cov/CoverageSummary.cpp projects/routing/contrib/llvm/tools/llvm-cov/CoverageSummary.h projects/routing/contrib/llvm/tools/opt/PassRegistry.def projects/routing/contrib/llvm/tools/opt/Passes.cpp projects/routing/contrib/llvm/tools/opt/Passes.h projects/routing/contrib/ntp/FREEBSD-Xlist projects/routing/contrib/ntp/FREEBSD-upgrade projects/routing/contrib/ntp/sntp/libevent/sample/ projects/routing/contrib/ntp/sntp/tests/fileHandlingTest.h projects/routing/contrib/ntp/sntp/tests/g_fileHandlingTest.h projects/routing/contrib/ntp/sntp/tests/g_networking.cpp projects/routing/contrib/ntp/sntp/tests/g_packetHandling.cpp projects/routing/contrib/ntp/sntp/tests/g_packetProcessing.cpp projects/routing/contrib/ntp/sntp/tests/g_sntptest.h projects/routing/contrib/ntp/sntp/tests_main.cpp projects/routing/contrib/ntp/sntp/tests_main.h projects/routing/contrib/ntp/tests/libntp/g_a_md5encrypt.cpp projects/routing/contrib/ntp/tests/libntp/g_atoint.cpp projects/routing/contrib/ntp/tests/libntp/g_atouint.cpp projects/routing/contrib/ntp/tests/libntp/g_authkeys.cpp projects/routing/contrib/ntp/tests/libntp/g_buftvtots.cpp projects/routing/contrib/ntp/tests/libntp/g_calendar.cpp projects/routing/contrib/ntp/tests/libntp/g_caljulian.cpp projects/routing/contrib/ntp/tests/libntp/g_caltontp.cpp projects/routing/contrib/ntp/tests/libntp/g_calyearstart.cpp projects/routing/contrib/ntp/tests/libntp/g_clocktime.cpp projects/routing/contrib/ntp/tests/libntp/g_decodenetnum.cpp projects/routing/contrib/ntp/tests/libntp/g_hextoint.cpp projects/routing/contrib/ntp/tests/libntp/g_hextolfp.cpp projects/routing/contrib/ntp/tests/libntp/g_humandate.cpp projects/routing/contrib/ntp/tests/libntp/g_lfpfunc.cpp projects/routing/contrib/ntp/tests/libntp/g_lfptest.h projects/routing/contrib/ntp/tests/libntp/g_lfptostr.cpp projects/routing/contrib/ntp/tests/libntp/g_libntptest.cpp projects/routing/contrib/ntp/tests/libntp/g_libntptest.h projects/routing/contrib/ntp/tests/libntp/g_modetoa.cpp projects/routing/contrib/ntp/tests/libntp/g_msyslog.cpp projects/routing/contrib/ntp/tests/libntp/g_netof.cpp projects/routing/contrib/ntp/tests/libntp/g_numtoa.cpp projects/routing/contrib/ntp/tests/libntp/g_numtohost.cpp projects/routing/contrib/ntp/tests/libntp/g_octtoint.cpp projects/routing/contrib/ntp/tests/libntp/g_prettydate.cpp projects/routing/contrib/ntp/tests/libntp/g_recvbuff.cpp projects/routing/contrib/ntp/tests/libntp/g_refnumtoa.cpp projects/routing/contrib/ntp/tests/libntp/g_sfptostr.cpp projects/routing/contrib/ntp/tests/libntp/g_sockaddrtest.h projects/routing/contrib/ntp/tests/libntp/g_socktoa.cpp projects/routing/contrib/ntp/tests/libntp/g_ssl_init.cpp projects/routing/contrib/ntp/tests/libntp/g_statestr.cpp projects/routing/contrib/ntp/tests/libntp/g_strtolfp.cpp projects/routing/contrib/ntp/tests/libntp/g_timespecops.cpp projects/routing/contrib/ntp/tests/libntp/g_timestructs.cpp projects/routing/contrib/ntp/tests/libntp/g_timestructs.h projects/routing/contrib/ntp/tests/libntp/g_timevalops.cpp projects/routing/contrib/ntp/tests/libntp/g_tstotv.cpp projects/routing/contrib/ntp/tests/libntp/g_tvtots.cpp projects/routing/contrib/ntp/tests/libntp/g_uglydate.cpp projects/routing/contrib/ntp/tests/libntp/g_vi64ops.cpp projects/routing/contrib/ntp/tests/libntp/g_ymd2yd.cpp projects/routing/contrib/ntp/tests/ntpd/leapsec.cpp projects/routing/contrib/ntp/tests/ntpd/ntpdtest.cpp projects/routing/contrib/ntp/tests/ntpd/ntpdtest.h projects/routing/contrib/subversion/subversion/include/private/svn_named_atomic.h projects/routing/contrib/subversion/subversion/include/private/svn_pseudo_md5.h projects/routing/contrib/subversion/subversion/libsvn_fs_fs/key-gen.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/key-gen.h projects/routing/contrib/subversion/subversion/libsvn_ra_serf/locks.c projects/routing/contrib/subversion/subversion/libsvn_subr/md5.h projects/routing/contrib/subversion/subversion/libsvn_subr/named_atomic.c projects/routing/contrib/subversion/subversion/libsvn_subr/pseudo_md5.c projects/routing/contrib/subversion/subversion/libsvn_subr/sha1.c projects/routing/contrib/subversion/subversion/libsvn_subr/sha1.h projects/routing/contrib/subversion/subversion/svn/client_errors.h projects/routing/contrib/unbound/ldns/ projects/routing/contrib/wpa/src/crypto/crypto_cryptoapi.c projects/routing/contrib/wpa/src/crypto/tls_schannel.c projects/routing/crypto/openssh/schnorr.c projects/routing/crypto/openssl/crypto/bn/asm/modexp512-x86_64.pl projects/routing/crypto/openssl/crypto/engine/eng_rsax.c projects/routing/crypto/openssl/crypto/evp/evp_fips.c projects/routing/crypto/openssl/ssl/d1_enc.c projects/routing/etc/dma/ projects/routing/etc/periodic/daily/430.status-rwho projects/routing/etc/ppp/ projects/routing/games/ projects/routing/gnu/usr.bin/cc/c++filt/ projects/routing/gnu/usr.bin/cc/collect2/ projects/routing/gnu/usr.bin/cc/protoize/ projects/routing/gnu/usr.bin/groff/src/devices/xditview/ projects/routing/gnu/usr.bin/groff/tmac/fr.ISO8859-1 projects/routing/gnu/usr.bin/groff/tmac/mdoc.local projects/routing/gnu/usr.bin/groff/tmac/ru.KOI8-R projects/routing/lib/clang/libllvmdebuginfo/ projects/routing/lib/libarchive/test/ projects/routing/lib/libclang_rt/san/ projects/routing/lib/libclang_rt/ubsan/ projects/routing/lib/libclang_rt/ubsan_cxx/ projects/routing/lib/libgpib/ projects/routing/lib/libohash/ projects/routing/libexec/dma-mbox-create/ projects/routing/sbin/ipf/ipsend/ projects/routing/sbin/ipf/iptest/ projects/routing/sbin/ipf/rules/ projects/routing/secure/lib/libcrypto/amd64/modexp512-x86_64.S projects/routing/secure/lib/libcrypto/i386/cast-586.s projects/routing/share/colldef/README projects/routing/share/colldef/be_BY.CP1131.src projects/routing/share/colldef/be_BY.CP1251.src projects/routing/share/colldef/be_BY.ISO8859-5.src projects/routing/share/colldef/bg_BG.CP1251.src projects/routing/share/colldef/ca_ES.ISO8859-1.src projects/routing/share/colldef/ca_ES.ISO8859-15.src projects/routing/share/colldef/cs_CZ.ISO8859-2.src projects/routing/share/colldef/de_DE.ISO8859-1.src projects/routing/share/colldef/de_DE.ISO8859-15.src projects/routing/share/colldef/el_GR.ISO8859-7.src projects/routing/share/colldef/en_DK.example projects/routing/share/colldef/es_ES.ISO8859-1.src projects/routing/share/colldef/es_ES.ISO8859-15.src projects/routing/share/colldef/et_EE.ISO8859-15.src projects/routing/share/colldef/hi_IN.ISCII-DEV.src projects/routing/share/colldef/hr_HR.ISO8859-2.src projects/routing/share/colldef/hy_AM.ARMSCII-8.src projects/routing/share/colldef/is_IS.ISO8859-1.src projects/routing/share/colldef/is_IS.ISO8859-15.src projects/routing/share/colldef/kk_KZ.PT154.src projects/routing/share/colldef/la_LN.ISO8859-1.src projects/routing/share/colldef/la_LN.ISO8859-13.src projects/routing/share/colldef/la_LN.ISO8859-15.src projects/routing/share/colldef/la_LN.ISO8859-2.src projects/routing/share/colldef/la_LN.ISO8859-4.src projects/routing/share/colldef/la_LN.US-ASCII.src projects/routing/share/colldef/lt_LT.ISO8859-4.src projects/routing/share/colldef/map.ARMSCII-8 projects/routing/share/colldef/map.CP1131 projects/routing/share/colldef/map.CP1251 projects/routing/share/colldef/map.CP866 projects/routing/share/colldef/map.ISCII-DEV projects/routing/share/colldef/map.ISO8859-1 projects/routing/share/colldef/map.ISO8859-13 projects/routing/share/colldef/map.ISO8859-15 projects/routing/share/colldef/map.ISO8859-2 projects/routing/share/colldef/map.ISO8859-4 projects/routing/share/colldef/map.ISO8859-5 projects/routing/share/colldef/map.ISO8859-7 projects/routing/share/colldef/map.ISO8859-9 projects/routing/share/colldef/map.KOI8-R projects/routing/share/colldef/map.KOI8-U projects/routing/share/colldef/map.PT154 projects/routing/share/colldef/no_NO.ISO8859-1.src projects/routing/share/colldef/no_NO.ISO8859-15.src projects/routing/share/colldef/pl_PL.ISO8859-2.src projects/routing/share/colldef/ru_RU.CP1251.src projects/routing/share/colldef/ru_RU.CP866.src projects/routing/share/colldef/ru_RU.ISO8859-5.src projects/routing/share/colldef/ru_RU.KOI8-R.src projects/routing/share/colldef/sl_SI.ISO8859-2.src projects/routing/share/colldef/sr_YU.ISO8859-5.src projects/routing/share/colldef/sv_SE.ISO8859-1.src projects/routing/share/colldef/sv_SE.ISO8859-15.src projects/routing/share/colldef/tr_TR.ISO8859-9.src projects/routing/share/colldef/uk_UA.CP1251.src projects/routing/share/colldef/uk_UA.ISO8859-5.src projects/routing/share/colldef/uk_UA.KOI8-U.src projects/routing/share/examples/dma/ projects/routing/share/mklocale/ projects/routing/share/monetdef/Makefile.depend projects/routing/share/monetdef/af_ZA.ISO8859-1.src projects/routing/share/monetdef/ca_ES.ISO8859-1.src projects/routing/share/monetdef/ca_ES.UTF-8.src projects/routing/share/monetdef/da_DK.ISO8859-1.src projects/routing/share/monetdef/de_AT.ISO8859-1.src projects/routing/share/monetdef/de_CH.ISO8859-1.src projects/routing/share/monetdef/de_DE.ISO8859-1.src projects/routing/share/monetdef/de_DE.UTF-8.src projects/routing/share/monetdef/el_GR.ISO8859-7.src projects/routing/share/monetdef/el_GR.UTF-8.src projects/routing/share/monetdef/en_AU.ISO8859-1.src projects/routing/share/monetdef/en_CA.ISO8859-1.src projects/routing/share/monetdef/en_GB.ISO8859-1.src projects/routing/share/monetdef/en_NZ.ISO8859-1.src projects/routing/share/monetdef/en_US.ISO8859-1.src projects/routing/share/monetdef/es_ES.ISO8859-1.src projects/routing/share/monetdef/es_ES.UTF-8.src projects/routing/share/monetdef/et_EE.ISO8859-15.src projects/routing/share/monetdef/fi_FI.ISO8859-1.src projects/routing/share/monetdef/fi_FI.UTF-8.src projects/routing/share/monetdef/fr_BE.ISO8859-1.src projects/routing/share/monetdef/fr_BE.UTF-8.src projects/routing/share/monetdef/fr_FR.ISO8859-1.src projects/routing/share/monetdef/fr_FR.UTF-8.src projects/routing/share/monetdef/hr_HR.ISO8859-2.src projects/routing/share/monetdef/is_IS.ISO8859-1.src projects/routing/share/monetdef/it_IT.ISO8859-1.src projects/routing/share/monetdef/it_IT.UTF-8.src projects/routing/share/monetdef/kk_KZ.PT154.src projects/routing/share/monetdef/kk_KZ.UTF-8.src projects/routing/share/monetdef/lt_LT.ISO8859-13.src projects/routing/share/monetdef/mn_MN.UTF-8.src projects/routing/share/monetdef/nl_BE.ISO8859-1.src projects/routing/share/monetdef/nl_BE.UTF-8.src projects/routing/share/monetdef/nl_NL.ISO8859-1.src projects/routing/share/monetdef/no_NO.ISO8859-1.src projects/routing/share/monetdef/pt_BR.ISO8859-1.src projects/routing/share/monetdef/pt_PT.ISO8859-1.src projects/routing/share/monetdef/pt_PT.ISO8859-15.src projects/routing/share/monetdef/pt_PT.UTF-8.src projects/routing/share/monetdef/ro_RO.ISO8859-2.src projects/routing/share/monetdef/sr_YU.ISO8859-2.src projects/routing/share/monetdef/sr_YU.ISO8859-5.src projects/routing/share/monetdef/sr_YU.UTF-8.src projects/routing/share/monetdef/sv_SE.ISO8859-1.src projects/routing/share/monetdef/zh_CN.GB18030.src projects/routing/share/monetdef/zh_CN.GB2312.src projects/routing/share/monetdef/zh_CN.UTF-8.src projects/routing/share/monetdef/zh_CN.eucCN.src projects/routing/share/monetdef/zh_HK.UTF-8.src projects/routing/share/monetdef/zh_TW.Big5.src projects/routing/share/msgdef/Makefile.depend projects/routing/share/msgdef/af_ZA.ISO8859-1.src projects/routing/share/msgdef/ca_ES.ISO8859-1.src projects/routing/share/msgdef/cs_CZ.ISO8859-2.src projects/routing/share/msgdef/da_DK.ISO8859-1.src projects/routing/share/msgdef/de_DE.ISO8859-1.src projects/routing/share/msgdef/en_CA.ISO8859-1.src projects/routing/share/msgdef/en_GB.ISO8859-1.src projects/routing/share/msgdef/en_US.ISO8859-1.src projects/routing/share/msgdef/es_ES.ISO8859-1.src projects/routing/share/msgdef/et_EE.ISO8859-15.src projects/routing/share/msgdef/eu_ES.ISO8859-1.src projects/routing/share/msgdef/fi_FI.ISO8859-1.src projects/routing/share/msgdef/fr_BE.ISO8859-1.src projects/routing/share/msgdef/fr_CH.ISO8859-1.src projects/routing/share/msgdef/fr_FR.ISO8859-1.src projects/routing/share/msgdef/hr_HR.ISO8859-2.src projects/routing/share/msgdef/hu_HU.ISO8859-2.src projects/routing/share/msgdef/is_IS.ISO8859-1.src projects/routing/share/msgdef/it_IT.ISO8859-1.src projects/routing/share/msgdef/kk_KZ.PT154.src projects/routing/share/msgdef/kk_KZ.UTF-8.src projects/routing/share/msgdef/lt_LT.ISO8859-13.src projects/routing/share/msgdef/mn_MN.UTF-8.src projects/routing/share/msgdef/nl_NL.ISO8859-1.src projects/routing/share/msgdef/no_NO.ISO8859-1.src projects/routing/share/msgdef/pl_PL.ISO8859-2.src projects/routing/share/msgdef/pt_PT.ISO8859-1.src projects/routing/share/msgdef/ro_RO.ISO8859-2.src projects/routing/share/msgdef/sl_SI.ISO8859-2.src projects/routing/share/msgdef/sr_YU.ISO8859-2.src projects/routing/share/msgdef/sr_YU.ISO8859-5.src projects/routing/share/msgdef/sr_YU.UTF-8.src projects/routing/share/msgdef/sv_SE.ISO8859-1.src projects/routing/share/msgdef/zh_CN.GB18030.src projects/routing/share/msgdef/zh_CN.GB2312.src projects/routing/share/msgdef/zh_CN.UTF-8.src projects/routing/share/msgdef/zh_CN.eucCN.src projects/routing/share/msgdef/zh_TW.Big5.src projects/routing/share/msgdef/zh_TW.UTF-8.src projects/routing/share/numericdef/Makefile.depend projects/routing/share/numericdef/af_ZA.ISO8859-1.src projects/routing/share/numericdef/am_ET.UTF-8.src projects/routing/share/numericdef/be_BY.CP1251.src projects/routing/share/numericdef/bg_BG.CP1251.src projects/routing/share/numericdef/ca_ES.ISO8859-1.src projects/routing/share/numericdef/cs_CZ.ISO8859-2.src projects/routing/share/numericdef/da_DK.ISO8859-1.src projects/routing/share/numericdef/de_CH.ISO8859-1.src projects/routing/share/numericdef/de_DE.ISO8859-1.src projects/routing/share/numericdef/el_GR.ISO8859-7.src projects/routing/share/numericdef/en_US.ISO8859-1.src projects/routing/share/numericdef/es_ES.ISO8859-1.src projects/routing/share/numericdef/et_EE.ISO8859-15.src projects/routing/share/numericdef/eu_ES.ISO8859-1.src projects/routing/share/numericdef/fi_FI.ISO8859-1.src projects/routing/share/numericdef/fr_BE.ISO8859-1.src projects/routing/share/numericdef/fr_FR.ISO8859-1.src projects/routing/share/numericdef/hi_IN.ISCII-DEV.src projects/routing/share/numericdef/hr_HR.ISO8859-2.src projects/routing/share/numericdef/hu_HU.ISO8859-2.src projects/routing/share/numericdef/hy_AM.ARMSCII-8.src projects/routing/share/numericdef/is_IS.ISO8859-1.src projects/routing/share/numericdef/it_IT.ISO8859-1.src projects/routing/share/numericdef/ja_JP.eucJP.src projects/routing/share/numericdef/kk_KZ.PT154.src projects/routing/share/numericdef/ko_KR.eucKR.src projects/routing/share/numericdef/lt_LT.ISO8859-13.src projects/routing/share/numericdef/mn_MN.UTF-8.src projects/routing/share/numericdef/nl_NL.ISO8859-1.src projects/routing/share/numericdef/no_NO.ISO8859-1.src projects/routing/share/numericdef/pl_PL.ISO8859-2.src projects/routing/share/numericdef/pt_BR.ISO8859-1.src projects/routing/share/numericdef/pt_PT.ISO8859-1.src projects/routing/share/numericdef/ro_RO.ISO8859-2.src projects/routing/share/numericdef/ru_RU.KOI8-R.src projects/routing/share/numericdef/sk_SK.ISO8859-2.src projects/routing/share/numericdef/sl_SI.ISO8859-2.src projects/routing/share/numericdef/sr_YU.ISO8859-2.src projects/routing/share/numericdef/sr_YU.ISO8859-5.src projects/routing/share/numericdef/sv_SE.ISO8859-1.src projects/routing/share/numericdef/tr_TR.ISO8859-9.src projects/routing/share/numericdef/zh_CN.eucCN.src projects/routing/share/timedef/Makefile.depend projects/routing/share/timedef/ca_ES.ISO8859-1.src projects/routing/share/timedef/ca_ES.UTF-8.src projects/routing/share/timedef/da_DK.ISO8859-1.src projects/routing/share/timedef/de_AT.ISO8859-1.src projects/routing/share/timedef/de_DE.ISO8859-1.src projects/routing/share/timedef/en_GB.ISO8859-1.src projects/routing/share/timedef/en_US.ISO8859-1.src projects/routing/share/timedef/es_ES.ISO8859-1.src projects/routing/share/timedef/eu_ES.ISO8859-1.src projects/routing/share/timedef/fi_FI.ISO8859-1.src projects/routing/share/timedef/fr_FR.ISO8859-1.src projects/routing/share/timedef/is_IS.ISO8859-1.src projects/routing/share/timedef/it_IT.ISO8859-1.src projects/routing/share/timedef/kk_KZ.PT154.src projects/routing/share/timedef/kk_KZ.UTF-8.src projects/routing/share/timedef/la_LN.ISO8859-1.src projects/routing/share/timedef/lt_LT.ISO8859-4.src projects/routing/share/timedef/mn_MN.UTF-8.src projects/routing/share/timedef/nb_NO.ISO8859-1.src projects/routing/share/timedef/nl_NL.ISO8859-1.src projects/routing/share/timedef/nn_NO.ISO8859-1.src projects/routing/share/timedef/pt_PT.ISO8859-1.src projects/routing/share/timedef/sr_YU.ISO8859-2.src projects/routing/share/timedef/sr_YU.ISO8859-5.src projects/routing/share/timedef/sr_YU.UTF-8.src projects/routing/share/timedef/sv_SE.ISO8859-1.src projects/routing/share/timedef/zh_CN.GB18030.src projects/routing/share/timedef/zh_CN.GB2312.src projects/routing/share/timedef/zh_CN.UTF-8.src projects/routing/share/timedef/zh_CN.eucCN.src projects/routing/share/timedef/zh_TW.Big5.src projects/routing/share/timedef/zh_TW.UTF-8.src projects/routing/sys/amd64/amd64/stack_machdep.c projects/routing/sys/arm/conf/EP80219 projects/routing/sys/arm/conf/IQ31244 projects/routing/sys/arm/conf/LN2410SBC projects/routing/sys/arm/samsung/s3c2xx0/ projects/routing/sys/arm/ti/am335x/hdmi.h projects/routing/sys/arm/ti/am335x/hdmi_if.m projects/routing/sys/contrib/vchiq/interface/vchiq_arm/vchiq_proc.c projects/routing/sys/dev/usb/usb_compat_linux.c projects/routing/sys/dev/usb/usb_compat_linux.h projects/routing/sys/dev/xen/console/console.c projects/routing/sys/dev/xen/console/xencons_ring.c projects/routing/sys/dev/xen/console/xencons_ring.h projects/routing/sys/i386/i386/stack_machdep.c projects/routing/sys/modules/ispfw/isp_2400_multi/ projects/routing/sys/modules/ispfw/isp_2500_multi/ projects/routing/sys/modules/linuxapi/ projects/routing/sys/ofed/include/asm/ projects/routing/sys/ofed/include/linux/bitops.h projects/routing/sys/ofed/include/linux/cache.h projects/routing/sys/ofed/include/linux/cdev.h projects/routing/sys/ofed/include/linux/clocksource.h projects/routing/sys/ofed/include/linux/compat.h projects/routing/sys/ofed/include/linux/compiler.h projects/routing/sys/ofed/include/linux/completion.h projects/routing/sys/ofed/include/linux/delay.h projects/routing/sys/ofed/include/linux/device.h projects/routing/sys/ofed/include/linux/dma-attrs.h projects/routing/sys/ofed/include/linux/dma-mapping.h projects/routing/sys/ofed/include/linux/dmapool.h projects/routing/sys/ofed/include/linux/err.h projects/routing/sys/ofed/include/linux/errno.h projects/routing/sys/ofed/include/linux/etherdevice.h projects/routing/sys/ofed/include/linux/file.h projects/routing/sys/ofed/include/linux/fs.h projects/routing/sys/ofed/include/linux/gfp.h projects/routing/sys/ofed/include/linux/hardirq.h projects/routing/sys/ofed/include/linux/idr.h projects/routing/sys/ofed/include/linux/if_arp.h projects/routing/sys/ofed/include/linux/if_ether.h projects/routing/sys/ofed/include/linux/if_vlan.h projects/routing/sys/ofed/include/linux/in.h projects/routing/sys/ofed/include/linux/in6.h projects/routing/sys/ofed/include/linux/inetdevice.h projects/routing/sys/ofed/include/linux/interrupt.h projects/routing/sys/ofed/include/linux/io-mapping.h projects/routing/sys/ofed/include/linux/io.h projects/routing/sys/ofed/include/linux/ioctl.h projects/routing/sys/ofed/include/linux/jhash.h projects/routing/sys/ofed/include/linux/jiffies.h projects/routing/sys/ofed/include/linux/kdev_t.h projects/routing/sys/ofed/include/linux/kernel.h projects/routing/sys/ofed/include/linux/kmod.h projects/routing/sys/ofed/include/linux/kobject.h projects/routing/sys/ofed/include/linux/kref.h projects/routing/sys/ofed/include/linux/kthread.h projects/routing/sys/ofed/include/linux/ktime.h projects/routing/sys/ofed/include/linux/linux_compat.c projects/routing/sys/ofed/include/linux/linux_idr.c projects/routing/sys/ofed/include/linux/linux_kmod.c projects/routing/sys/ofed/include/linux/linux_pci.c projects/routing/sys/ofed/include/linux/linux_radix.c projects/routing/sys/ofed/include/linux/list.h projects/routing/sys/ofed/include/linux/lockdep.h projects/routing/sys/ofed/include/linux/log2.h projects/routing/sys/ofed/include/linux/math64.h projects/routing/sys/ofed/include/linux/miscdevice.h projects/routing/sys/ofed/include/linux/mm.h projects/routing/sys/ofed/include/linux/module.h projects/routing/sys/ofed/include/linux/moduleparam.h projects/routing/sys/ofed/include/linux/mutex.h projects/routing/sys/ofed/include/linux/net.h projects/routing/sys/ofed/include/linux/netdevice.h projects/routing/sys/ofed/include/linux/notifier.h projects/routing/sys/ofed/include/linux/page.h projects/routing/sys/ofed/include/linux/pci.h projects/routing/sys/ofed/include/linux/poll.h projects/routing/sys/ofed/include/linux/printk.h projects/routing/sys/ofed/include/linux/radix-tree.h projects/routing/sys/ofed/include/linux/random.h projects/routing/sys/ofed/include/linux/rbtree.h projects/routing/sys/ofed/include/linux/rwlock.h projects/routing/sys/ofed/include/linux/rwsem.h projects/routing/sys/ofed/include/linux/scatterlist.h projects/routing/sys/ofed/include/linux/sched.h projects/routing/sys/ofed/include/linux/semaphore.h projects/routing/sys/ofed/include/linux/slab.h projects/routing/sys/ofed/include/linux/socket.h projects/routing/sys/ofed/include/linux/spinlock.h projects/routing/sys/ofed/include/linux/string.h projects/routing/sys/ofed/include/linux/sysfs.h projects/routing/sys/ofed/include/linux/timer.h projects/routing/sys/ofed/include/linux/types.h projects/routing/sys/ofed/include/linux/uaccess.h projects/routing/sys/ofed/include/linux/vmalloc.h projects/routing/sys/ofed/include/linux/wait.h projects/routing/sys/ofed/include/linux/workqueue.h projects/routing/sys/ofed/include/net/ projects/routing/sys/xen/interface/acm.h projects/routing/sys/xen/interface/acm_ops.h projects/routing/sys/xen/interface/arch-powerpc.h projects/routing/sys/xen/interface/elfstructs.h projects/routing/sys/xen/interface/foreign/ projects/routing/sys/xen/interface/libelf.h projects/routing/sys/xen/interface/mem_event.h projects/routing/tools/build/options/WITH_META_FILES projects/routing/tools/regression/acltools/ projects/routing/tools/regression/lib/libc/gen/ projects/routing/tools/regression/lib/libc/locale/ projects/routing/tools/regression/lib/libc/net/ projects/routing/tools/regression/lib/libc/stdio/ projects/routing/tools/regression/lib/libc/stdlib/ projects/routing/tools/regression/lib/libc/string/ projects/routing/tools/regression/posixshm/ projects/routing/tools/regression/vfs/ projects/routing/tools/test/posixshm/ projects/routing/usr.bin/colldef/ projects/routing/usr.bin/cpio/test/ projects/routing/usr.bin/mklocale/ projects/routing/usr.bin/tar/test/ projects/routing/usr.bin/truss/amd64-fbsd.c projects/routing/usr.bin/truss/amd64-fbsd32.c projects/routing/usr.bin/truss/amd64linux32.conf projects/routing/usr.bin/truss/arm-fbsd.c projects/routing/usr.bin/truss/fbsd32.conf projects/routing/usr.bin/truss/i386-fbsd.c projects/routing/usr.bin/truss/i386.conf projects/routing/usr.bin/truss/i386linux.conf projects/routing/usr.bin/truss/mips-fbsd.c projects/routing/usr.bin/truss/powerpc-fbsd.c projects/routing/usr.bin/truss/powerpc64-fbsd.c projects/routing/usr.bin/truss/sparc64-fbsd.c projects/routing/usr.sbin/mtree/ Modified: projects/routing/MAINTAINERS (contents, props changed) projects/routing/Makefile projects/routing/Makefile.inc1 projects/routing/ObsoleteFiles.inc projects/routing/UPDATING projects/routing/bin/Makefile projects/routing/bin/cat/cat.c projects/routing/bin/cat/tests/Makefile projects/routing/bin/csh/config_p.h projects/routing/bin/date/tests/Makefile projects/routing/bin/dd/Makefile projects/routing/bin/expr/tests/Makefile projects/routing/bin/ls/Makefile projects/routing/bin/ls/ls.1 projects/routing/bin/mv/tests/Makefile projects/routing/bin/pax/tests/Makefile projects/routing/bin/pkill/tests/Makefile projects/routing/bin/ps/Makefile projects/routing/bin/ps/Makefile.depend projects/routing/bin/rm/rm.1 projects/routing/bin/rm/rm.c projects/routing/bin/sh/builtins.def projects/routing/bin/sh/eval.c projects/routing/bin/sh/eval.h projects/routing/bin/sh/expand.c projects/routing/bin/sh/expand.h projects/routing/bin/sh/parser.c projects/routing/bin/sh/parser.h projects/routing/bin/sh/tests/Makefile projects/routing/bin/sh/var.c projects/routing/bin/sh/var.h projects/routing/bin/sleep/tests/Makefile projects/routing/bin/test/tests/Makefile projects/routing/bin/test/tests/legacy_test.sh projects/routing/bin/tests/Makefile projects/routing/cddl/Makefile projects/routing/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.corruptenv.ksh projects/routing/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.eliminate.ksh projects/routing/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.enabled.ksh projects/routing/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.enabled2.ksh projects/routing/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.entryreturn.ksh projects/routing/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.fork.ksh projects/routing/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.header.ksh projects/routing/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.linkpriv.ksh projects/routing/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.linkunpriv.ksh projects/routing/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.multiple.ksh projects/routing/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.multiprov.ksh projects/routing/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.noprobes.ksh projects/routing/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.noreap.ksh projects/routing/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.noreapring.ksh projects/routing/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.onlyenabled.ksh projects/routing/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.reap.ksh projects/routing/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.reeval.ksh projects/routing/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.static.ksh projects/routing/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.static2.ksh projects/routing/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.user.ksh projects/routing/cddl/contrib/opensolaris/cmd/lockstat/lockstat.1 projects/routing/cddl/contrib/opensolaris/cmd/lockstat/lockstat.c projects/routing/cddl/contrib/opensolaris/cmd/zdb/zdb.c projects/routing/cddl/contrib/opensolaris/cmd/zfs/zfs.8 projects/routing/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c projects/routing/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c projects/routing/cddl/contrib/opensolaris/cmd/zstreamdump/zstreamdump.c projects/routing/cddl/contrib/opensolaris/lib/libzfs/common/libzfs.h projects/routing/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_compat.c projects/routing/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c projects/routing/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_diff.c projects/routing/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_iter.c projects/routing/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_mount.c projects/routing/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_pool.c projects/routing/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_sendrecv.c projects/routing/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_util.c projects/routing/cddl/contrib/opensolaris/lib/libzfs_core/common/libzfs_core.c projects/routing/cddl/contrib/opensolaris/lib/libzfs_core/common/libzfs_core.h projects/routing/cddl/contrib/opensolaris/lib/libzpool/common/kernel.c projects/routing/cddl/contrib/opensolaris/tools/ctf/cvt/dwarf.c projects/routing/cddl/lib/libdtrace/Makefile projects/routing/cddl/lib/libdtrace/ip.d projects/routing/cddl/lib/libdtrace/tcp.d projects/routing/cddl/lib/libzfs/Makefile projects/routing/cddl/lib/tests/Makefile projects/routing/cddl/sbin/tests/Makefile projects/routing/cddl/tests/Makefile projects/routing/cddl/usr.bin/Makefile projects/routing/cddl/usr.bin/ctfconvert/Makefile.depend projects/routing/cddl/usr.bin/ctfdump/Makefile.depend projects/routing/cddl/usr.bin/ctfmerge/Makefile.depend projects/routing/cddl/usr.bin/tests/Makefile projects/routing/cddl/usr.sbin/dtrace/Makefile.depend projects/routing/cddl/usr.sbin/dtrace/tests/Makefile projects/routing/cddl/usr.sbin/dtrace/tests/Makefile.inc1 projects/routing/cddl/usr.sbin/dtrace/tests/common/privs/Makefile projects/routing/cddl/usr.sbin/dtrace/tests/common/scalars/Makefile projects/routing/cddl/usr.sbin/dtruss/Makefile.depend projects/routing/cddl/usr.sbin/tests/Makefile projects/routing/contrib/binutils/opcodes/arm-dis.c projects/routing/contrib/bmake/ChangeLog projects/routing/contrib/bmake/FILES projects/routing/contrib/bmake/Makefile projects/routing/contrib/bmake/arch.c projects/routing/contrib/bmake/compat.c projects/routing/contrib/bmake/cond.c projects/routing/contrib/bmake/configure.in projects/routing/contrib/bmake/for.c projects/routing/contrib/bmake/job.c projects/routing/contrib/bmake/main.c projects/routing/contrib/bmake/make-bootstrap.sh.in projects/routing/contrib/bmake/make.c projects/routing/contrib/bmake/make.h projects/routing/contrib/bmake/meta.c projects/routing/contrib/bmake/mk/ChangeLog projects/routing/contrib/bmake/mk/auto.obj.mk projects/routing/contrib/bmake/mk/dirdeps.mk projects/routing/contrib/bmake/mk/doc.mk projects/routing/contrib/bmake/mk/gendirdeps.mk projects/routing/contrib/bmake/mk/host-target.mk projects/routing/contrib/bmake/mk/install-mk projects/routing/contrib/bmake/mk/meta.autodep.mk projects/routing/contrib/bmake/mk/meta.stage.mk projects/routing/contrib/bmake/mk/meta.sys.mk projects/routing/contrib/bmake/mk/own.mk projects/routing/contrib/bmake/mk/rst2htm.mk projects/routing/contrib/bmake/nonints.h projects/routing/contrib/bmake/os.sh projects/routing/contrib/bmake/parse.c projects/routing/contrib/bmake/suff.c projects/routing/contrib/bmake/unit-tests/varmisc.exp projects/routing/contrib/bmake/unit-tests/varmisc.mk projects/routing/contrib/bmake/var.c projects/routing/contrib/compiler-rt/LICENSE.TXT projects/routing/contrib/compiler-rt/include/sanitizer/coverage_interface.h projects/routing/contrib/compiler-rt/include/sanitizer/dfsan_interface.h projects/routing/contrib/compiler-rt/include/sanitizer/lsan_interface.h projects/routing/contrib/compiler-rt/include/sanitizer/msan_interface.h projects/routing/contrib/compiler-rt/lib/asan/asan_allocator.cc projects/routing/contrib/compiler-rt/lib/asan/asan_allocator.h projects/routing/contrib/compiler-rt/lib/asan/asan_fake_stack.cc projects/routing/contrib/compiler-rt/lib/asan/asan_flags.cc projects/routing/contrib/compiler-rt/lib/asan/asan_globals.cc projects/routing/contrib/compiler-rt/lib/asan/asan_interceptors.cc projects/routing/contrib/compiler-rt/lib/asan/asan_interceptors.h projects/routing/contrib/compiler-rt/lib/asan/asan_interface_internal.h projects/routing/contrib/compiler-rt/lib/asan/asan_internal.h projects/routing/contrib/compiler-rt/lib/asan/asan_linux.cc projects/routing/contrib/compiler-rt/lib/asan/asan_mac.cc projects/routing/contrib/compiler-rt/lib/asan/asan_mapping.h projects/routing/contrib/compiler-rt/lib/asan/asan_poisoning.cc projects/routing/contrib/compiler-rt/lib/asan/asan_poisoning.h projects/routing/contrib/compiler-rt/lib/asan/asan_posix.cc projects/routing/contrib/compiler-rt/lib/asan/asan_report.cc projects/routing/contrib/compiler-rt/lib/asan/asan_report.h projects/routing/contrib/compiler-rt/lib/asan/asan_rtl.cc projects/routing/contrib/compiler-rt/lib/asan/asan_stats.cc projects/routing/contrib/compiler-rt/lib/asan/asan_stats.h projects/routing/contrib/compiler-rt/lib/asan/asan_suppressions.cc projects/routing/contrib/compiler-rt/lib/asan/asan_suppressions.h projects/routing/contrib/compiler-rt/lib/asan/asan_thread.h projects/routing/contrib/compiler-rt/lib/asan/asan_win.cc projects/routing/contrib/compiler-rt/lib/asan/asan_win_dll_thunk.cc projects/routing/contrib/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cc projects/routing/contrib/compiler-rt/lib/asan/scripts/asan_symbolize.py projects/routing/contrib/compiler-rt/lib/asan/tests/asan_asm_test.cc projects/routing/contrib/compiler-rt/lib/asan/tests/asan_str_test.cc projects/routing/contrib/compiler-rt/lib/asan/tests/asan_test.cc projects/routing/contrib/compiler-rt/lib/builtins/arm/aeabi_memcmp.S projects/routing/contrib/compiler-rt/lib/builtins/arm/aeabi_memcpy.S projects/routing/contrib/compiler-rt/lib/builtins/arm/aeabi_memmove.S projects/routing/contrib/compiler-rt/lib/builtins/arm/aeabi_memset.S projects/routing/contrib/compiler-rt/lib/builtins/clear_cache.c projects/routing/contrib/compiler-rt/lib/builtins/enable_execute_stack.c projects/routing/contrib/compiler-rt/lib/builtins/fixdfdi.c projects/routing/contrib/compiler-rt/lib/builtins/fixsfdi.c projects/routing/contrib/compiler-rt/lib/builtins/fixunsdfdi.c projects/routing/contrib/compiler-rt/lib/builtins/fixunsdfti.c projects/routing/contrib/compiler-rt/lib/builtins/fixunssfdi.c projects/routing/contrib/compiler-rt/lib/builtins/fp_extend.h projects/routing/contrib/compiler-rt/lib/builtins/fp_extend_impl.inc projects/routing/contrib/compiler-rt/lib/builtins/fp_trunc.h projects/routing/contrib/compiler-rt/lib/builtins/fp_trunc_impl.inc projects/routing/contrib/compiler-rt/lib/builtins/int_endianness.h projects/routing/contrib/compiler-rt/lib/builtins/int_lib.h projects/routing/contrib/compiler-rt/lib/dfsan/dfsan.cc projects/routing/contrib/compiler-rt/lib/dfsan/dfsan_custom.cc projects/routing/contrib/compiler-rt/lib/dfsan/done_abilist.txt projects/routing/contrib/compiler-rt/lib/dfsan/scripts/check_custom_wrappers.sh projects/routing/contrib/compiler-rt/lib/interception/interception.h projects/routing/contrib/compiler-rt/lib/interception/interception_win.cc projects/routing/contrib/compiler-rt/lib/lsan/lsan_common.cc projects/routing/contrib/compiler-rt/lib/lsan/lsan_common.h projects/routing/contrib/compiler-rt/lib/lsan/lsan_common_linux.cc projects/routing/contrib/compiler-rt/lib/lsan/lsan_interceptors.cc projects/routing/contrib/compiler-rt/lib/lsan/lsan_thread.h projects/routing/contrib/compiler-rt/lib/msan/msan.cc projects/routing/contrib/compiler-rt/lib/msan/msan.h projects/routing/contrib/compiler-rt/lib/msan/msan.syms.extra projects/routing/contrib/compiler-rt/lib/msan/msan_allocator.cc projects/routing/contrib/compiler-rt/lib/msan/msan_interceptors.cc projects/routing/contrib/compiler-rt/lib/msan/msan_interface_internal.h projects/routing/contrib/compiler-rt/lib/msan/msan_linux.cc projects/routing/contrib/compiler-rt/lib/msan/msan_new_delete.cc projects/routing/contrib/compiler-rt/lib/msan/msan_origin.h projects/routing/contrib/compiler-rt/lib/msan/msan_poisoning.cc projects/routing/contrib/compiler-rt/lib/msan/msan_report.cc projects/routing/contrib/compiler-rt/lib/msan/msan_thread.cc projects/routing/contrib/compiler-rt/lib/msan/tests/msan_test.cc projects/routing/contrib/compiler-rt/lib/profile/GCDAProfiling.c projects/routing/contrib/compiler-rt/lib/profile/InstrProfiling.h projects/routing/contrib/compiler-rt/lib/profile/InstrProfilingFile.c projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator.h projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic.h projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic_msvc.h projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common.h projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_ioctl.inc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_libcdep.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_syscalls.inc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_mapping_libcdep.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector1.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_internal_defs.h projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libc.h projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libignore.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux.h projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mac.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mac.h projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform.h projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_interceptors.h projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.h projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix_libcdep.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_printf.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_common.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_mac.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.h projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld.h projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.h projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libbacktrace.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libbacktrace.h projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.h projects/routing/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/scripts/check_lint.sh projects/routing/contrib/compiler-rt/lib/sanitizer_common/scripts/cpplint.py projects/routing/contrib/compiler-rt/lib/sanitizer_common/scripts/gen_dynamic_list.py projects/routing/contrib/compiler-rt/lib/sanitizer_common/scripts/litlint.py projects/routing/contrib/compiler-rt/lib/sanitizer_common/scripts/sancov.py projects/routing/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_libc_test.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_posix_test.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_procmaps_test.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_stacktrace_printer_test.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_stacktrace_test.cc projects/routing/contrib/compiler-rt/lib/sanitizer_common/tests/sanitizer_stoptheworld_test.cc projects/routing/contrib/compiler-rt/lib/tsan/dd/dd_rtl.h projects/routing/contrib/compiler-rt/lib/tsan/go/buildgo.sh projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan.syms.extra projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_defs.h projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_fd.cc projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_fd.h projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.cc projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors.cc projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_interface.cc projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_interface.h projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_inl.h projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_mman.cc projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_mac.cc projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_report.cc projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl.cc projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl.h projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_mutex.cc projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cc projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_suppressions.cc projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_suppressions.h projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_symbolize.cc projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_symbolize.h projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_sync.cc projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_sync.h projects/routing/contrib/compiler-rt/lib/tsan/rtl/tsan_update_shadow_word_inl.h projects/routing/contrib/compiler-rt/lib/ubsan/ubsan_diag.cc projects/routing/contrib/compiler-rt/lib/ubsan/ubsan_diag.h projects/routing/contrib/compiler-rt/lib/ubsan/ubsan_flags.cc projects/routing/contrib/compiler-rt/lib/ubsan/ubsan_flags.h projects/routing/contrib/compiler-rt/lib/ubsan/ubsan_handlers.cc projects/routing/contrib/compiler-rt/lib/ubsan/ubsan_handlers_cxx.cc projects/routing/contrib/compiler-rt/lib/ubsan/ubsan_handlers_cxx.h projects/routing/contrib/compiler-rt/lib/ubsan/ubsan_init.cc projects/routing/contrib/compiler-rt/lib/ubsan/ubsan_init.h projects/routing/contrib/compiler-rt/lib/ubsan/ubsan_type_hash.cc projects/routing/contrib/compiler-rt/lib/ubsan/ubsan_type_hash.h projects/routing/contrib/compiler-rt/lib/ubsan/ubsan_value.cc projects/routing/contrib/compiler-rt/lib/ubsan/ubsan_value.h projects/routing/contrib/dma/LICENSE projects/routing/contrib/dma/README.markdown projects/routing/contrib/dma/TODO projects/routing/contrib/dma/VERSION projects/routing/contrib/dma/aliases_parse.y projects/routing/contrib/dma/aliases_scan.l projects/routing/contrib/dma/conf.c projects/routing/contrib/dma/dma-mbox-create.c projects/routing/contrib/dma/dma.8 projects/routing/contrib/dma/dma.c projects/routing/contrib/dma/dma.h projects/routing/contrib/dma/dns.c projects/routing/contrib/dma/get-version.sh projects/routing/contrib/dma/local.c projects/routing/contrib/dma/mail.c projects/routing/contrib/dma/net.c projects/routing/contrib/dma/spool.c projects/routing/contrib/dma/util.c projects/routing/contrib/elftoolchain/addr2line/addr2line.c projects/routing/contrib/elftoolchain/ar/ar.1 projects/routing/contrib/elftoolchain/ar/ar.c projects/routing/contrib/elftoolchain/brandelf/brandelf.1 projects/routing/contrib/elftoolchain/brandelf/brandelf.c projects/routing/contrib/elftoolchain/common/_elftc.h projects/routing/contrib/elftoolchain/common/elfdefinitions.h projects/routing/contrib/elftoolchain/elfcopy/sections.c projects/routing/contrib/elftoolchain/elfdump/elfdump.1 projects/routing/contrib/elftoolchain/elfdump/elfdump.c projects/routing/contrib/elftoolchain/libdwarf/dwarf_sections.c projects/routing/contrib/elftoolchain/readelf/readelf.c projects/routing/contrib/elftoolchain/size/size.c projects/routing/contrib/file/ChangeLog projects/routing/contrib/file/configure projects/routing/contrib/file/configure.ac projects/routing/contrib/file/doc/file.man projects/routing/contrib/file/doc/libmagic.man projects/routing/contrib/file/doc/magic.man projects/routing/contrib/file/magic/Magdir/adventure projects/routing/contrib/file/magic/Magdir/apple projects/routing/contrib/file/magic/Magdir/archive projects/routing/contrib/file/magic/Magdir/c-lang projects/routing/contrib/file/magic/Magdir/c64 projects/routing/contrib/file/magic/Magdir/compress projects/routing/contrib/file/magic/Magdir/database projects/routing/contrib/file/magic/Magdir/filesystems projects/routing/contrib/file/magic/Magdir/frame projects/routing/contrib/file/magic/Magdir/iff projects/routing/contrib/file/magic/Magdir/images projects/routing/contrib/file/magic/Magdir/karma projects/routing/contrib/file/magic/Magdir/linux projects/routing/contrib/file/magic/Magdir/make projects/routing/contrib/file/magic/Magdir/map projects/routing/contrib/file/magic/Magdir/msdos projects/routing/contrib/file/magic/Magdir/netscape projects/routing/contrib/file/magic/Magdir/python projects/routing/contrib/file/magic/Magdir/scientific projects/routing/contrib/file/magic/Magdir/sgi projects/routing/contrib/file/magic/Magdir/sgml projects/routing/contrib/file/magic/Magdir/windows projects/routing/contrib/file/src/apprentice.c projects/routing/contrib/file/src/file.c projects/routing/contrib/file/src/file.h projects/routing/contrib/file/src/file_opts.h projects/routing/contrib/file/src/funcs.c projects/routing/contrib/file/src/gmtime_r.c projects/routing/contrib/file/src/localtime_r.c projects/routing/contrib/file/src/magic.c projects/routing/contrib/file/src/magic.h projects/routing/contrib/file/src/magic.h.in projects/routing/contrib/file/src/print.c projects/routing/contrib/file/src/readelf.c projects/routing/contrib/file/src/softmagic.c projects/routing/contrib/gcc/config/arm/crti.asm projects/routing/contrib/gcc/config/arm/crtn.asm projects/routing/contrib/gcc/config/arm/lib1funcs.asm projects/routing/contrib/gdb/gdb/arm-tdep.c projects/routing/contrib/groff/tmac/doc-syms projects/routing/contrib/groff/tmac/groff_mdoc.man projects/routing/contrib/jemalloc/ChangeLog projects/routing/contrib/jemalloc/FREEBSD-diffs projects/routing/contrib/jemalloc/VERSION projects/routing/contrib/jemalloc/doc/jemalloc.3 projects/routing/contrib/jemalloc/include/jemalloc/internal/arena.h projects/routing/contrib/jemalloc/include/jemalloc/internal/huge.h projects/routing/contrib/jemalloc/include/jemalloc/internal/jemalloc_internal.h projects/routing/contrib/jemalloc/include/jemalloc/internal/private_namespace.h projects/routing/contrib/jemalloc/include/jemalloc/internal/prof.h projects/routing/contrib/jemalloc/include/jemalloc/internal/size_classes.h projects/routing/contrib/jemalloc/include/jemalloc/internal/tcache.h projects/routing/contrib/jemalloc/include/jemalloc/internal/tsd.h projects/routing/contrib/jemalloc/include/jemalloc/jemalloc.h projects/routing/contrib/jemalloc/src/arena.c projects/routing/contrib/jemalloc/src/chunk_dss.c projects/routing/contrib/jemalloc/src/chunk_mmap.c projects/routing/contrib/jemalloc/src/huge.c projects/routing/contrib/jemalloc/src/jemalloc.c projects/routing/contrib/jemalloc/src/prof.c projects/routing/contrib/jemalloc/src/tcache.c projects/routing/contrib/jemalloc/src/tsd.c projects/routing/contrib/libcxxrt/exception.cc projects/routing/contrib/libexecinfo/backtrace.3 projects/routing/contrib/libucl/ChangeLog.md projects/routing/contrib/libucl/README.md projects/routing/contrib/libucl/configure.ac projects/routing/contrib/libucl/doc/Makefile.am projects/routing/contrib/libucl/doc/lua_api.md projects/routing/contrib/libucl/include/ucl.h projects/routing/contrib/libucl/klib/kvec.h projects/routing/contrib/libucl/lua/lua_ucl.c projects/routing/contrib/libucl/src/Makefile.am projects/routing/contrib/libucl/src/tree.h projects/routing/contrib/libucl/src/ucl_chartable.h projects/routing/contrib/libucl/src/ucl_emitter.c projects/routing/contrib/libucl/src/ucl_emitter_utils.c projects/routing/contrib/libucl/src/ucl_hash.c projects/routing/contrib/libucl/src/ucl_internal.h projects/routing/contrib/libucl/src/ucl_parser.c projects/routing/contrib/libucl/src/ucl_util.c projects/routing/contrib/libucl/src/xxhash.c projects/routing/contrib/libucl/src/xxhash.h projects/routing/contrib/libucl/tests/Makefile.am projects/routing/contrib/libucl/tests/basic/13.in projects/routing/contrib/libucl/tests/test_basic.c projects/routing/contrib/libucl/tests/test_schema.c projects/routing/contrib/libucl/utils/Makefile.am projects/routing/contrib/libucl/utils/chargen.c projects/routing/contrib/libucl/utils/objdump.c projects/routing/contrib/libxo/libxo/xo_format.5 projects/routing/contrib/llvm/FREEBSD-Xlist projects/routing/contrib/llvm/LICENSE.TXT projects/routing/contrib/llvm/include/llvm-c/Core.h projects/routing/contrib/llvm/include/llvm-c/Linker.h projects/routing/contrib/llvm/include/llvm-c/Object.h projects/routing/contrib/llvm/include/llvm-c/Support.h projects/routing/contrib/llvm/include/llvm-c/TargetMachine.h projects/routing/contrib/llvm/include/llvm-c/Transforms/Scalar.h projects/routing/contrib/llvm/include/llvm-c/lto.h projects/routing/contrib/llvm/include/llvm/ADT/APFloat.h projects/routing/contrib/llvm/include/llvm/ADT/APInt.h projects/routing/contrib/llvm/include/llvm/ADT/APSInt.h projects/routing/contrib/llvm/include/llvm/ADT/ArrayRef.h projects/routing/contrib/llvm/include/llvm/ADT/BitVector.h projects/routing/contrib/llvm/include/llvm/ADT/DeltaAlgorithm.h projects/routing/contrib/llvm/include/llvm/ADT/DenseMap.h projects/routing/contrib/llvm/include/llvm/ADT/DenseMapInfo.h projects/routing/contrib/llvm/include/llvm/ADT/DepthFirstIterator.h projects/routing/contrib/llvm/include/llvm/ADT/EquivalenceClasses.h projects/routing/contrib/llvm/include/llvm/ADT/FoldingSet.h projects/routing/contrib/llvm/include/llvm/ADT/Hashing.h projects/routing/contrib/llvm/include/llvm/ADT/ImmutableList.h projects/routing/contrib/llvm/include/llvm/ADT/ImmutableMap.h projects/routing/contrib/llvm/include/llvm/ADT/ImmutableSet.h projects/routing/contrib/llvm/include/llvm/ADT/IndexedMap.h projects/routing/contrib/llvm/include/llvm/ADT/IntervalMap.h projects/routing/contrib/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h projects/routing/contrib/llvm/include/llvm/ADT/MapVector.h projects/routing/contrib/llvm/include/llvm/ADT/None.h projects/routing/contrib/llvm/include/llvm/ADT/Optional.h projects/routing/contrib/llvm/include/llvm/ADT/PointerUnion.h projects/routing/contrib/llvm/include/llvm/ADT/PostOrderIterator.h projects/routing/contrib/llvm/include/llvm/ADT/STLExtras.h projects/routing/contrib/llvm/include/llvm/ADT/ScopedHashTable.h projects/routing/contrib/llvm/include/llvm/ADT/SmallBitVector.h projects/routing/contrib/llvm/include/llvm/ADT/SmallPtrSet.h projects/routing/contrib/llvm/include/llvm/ADT/SmallVector.h projects/routing/contrib/llvm/include/llvm/ADT/SparseBitVector.h projects/routing/contrib/llvm/include/llvm/ADT/SparseMultiSet.h projects/routing/contrib/llvm/include/llvm/ADT/SparseSet.h projects/routing/contrib/llvm/include/llvm/ADT/StringMap.h projects/routing/contrib/llvm/include/llvm/ADT/StringRef.h projects/routing/contrib/llvm/include/llvm/ADT/TinyPtrVector.h projects/routing/contrib/llvm/include/llvm/ADT/Triple.h projects/routing/contrib/llvm/include/llvm/ADT/Twine.h projects/routing/contrib/llvm/include/llvm/ADT/edit_distance.h projects/routing/contrib/llvm/include/llvm/ADT/ilist.h projects/routing/contrib/llvm/include/llvm/ADT/iterator.h projects/routing/contrib/llvm/include/llvm/Analysis/AliasAnalysis.h projects/routing/contrib/llvm/include/llvm/Analysis/AliasSetTracker.h projects/routing/contrib/llvm/include/llvm/Analysis/AssumptionCache.h projects/routing/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfo.h projects/routing/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfoImpl.h projects/routing/contrib/llvm/include/llvm/Analysis/BranchProbabilityInfo.h projects/routing/contrib/llvm/include/llvm/Analysis/CFG.h projects/routing/contrib/llvm/include/llvm/Analysis/CGSCCPassManager.h projects/routing/contrib/llvm/include/llvm/Analysis/CallGraph.h projects/routing/contrib/llvm/include/llvm/Analysis/ConstantFolding.h projects/routing/contrib/llvm/include/llvm/Analysis/DependenceAnalysis.h projects/routing/contrib/llvm/include/llvm/Analysis/DominanceFrontier.h projects/routing/contrib/llvm/include/llvm/Analysis/DominanceFrontierImpl.h projects/routing/contrib/llvm/include/llvm/Analysis/IVUsers.h projects/routing/contrib/llvm/include/llvm/Analysis/InlineCost.h projects/routing/contrib/llvm/include/llvm/Analysis/InstructionSimplify.h projects/routing/contrib/llvm/include/llvm/Analysis/IntervalIterator.h projects/routing/contrib/llvm/include/llvm/Analysis/LazyValueInfo.h projects/routing/contrib/llvm/include/llvm/Analysis/LibCallAliasAnalysis.h projects/routing/contrib/llvm/include/llvm/Analysis/LibCallSemantics.h projects/routing/contrib/llvm/include/llvm/Analysis/Loads.h projects/routing/contrib/llvm/include/llvm/Analysis/LoopInfo.h projects/routing/contrib/llvm/include/llvm/Analysis/LoopInfoImpl.h projects/routing/contrib/llvm/include/llvm/Analysis/MemoryBuiltins.h projects/routing/contrib/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h projects/routing/contrib/llvm/include/llvm/Analysis/PHITransAddr.h projects/routing/contrib/llvm/include/llvm/Analysis/Passes.h projects/routing/contrib/llvm/include/llvm/Analysis/PostDominators.h projects/routing/contrib/llvm/include/llvm/Analysis/RegionInfo.h projects/routing/contrib/llvm/include/llvm/Analysis/RegionInfoImpl.h projects/routing/contrib/llvm/include/llvm/Analysis/RegionIterator.h projects/routing/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h projects/routing/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h projects/routing/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h projects/routing/contrib/llvm/include/llvm/Analysis/SparsePropagation.h projects/routing/contrib/llvm/include/llvm/Analysis/TargetFolder.h projects/routing/contrib/llvm/include/llvm/Analysis/TargetTransformInfo.h projects/routing/contrib/llvm/include/llvm/Analysis/ValueTracking.h projects/routing/contrib/llvm/include/llvm/AsmParser/Parser.h projects/routing/contrib/llvm/include/llvm/Bitcode/BitCodes.h projects/routing/contrib/llvm/include/llvm/Bitcode/BitcodeWriterPass.h projects/routing/contrib/llvm/include/llvm/Bitcode/BitstreamReader.h projects/routing/contrib/llvm/include/llvm/Bitcode/BitstreamWriter.h projects/routing/contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.h projects/routing/contrib/llvm/include/llvm/Bitcode/ReaderWriter.h projects/routing/contrib/llvm/include/llvm/CodeGen/Analysis.h projects/routing/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h projects/routing/contrib/llvm/include/llvm/CodeGen/CallingConvLower.h projects/routing/contrib/llvm/include/llvm/CodeGen/CommandFlags.h projects/routing/contrib/llvm/include/llvm/CodeGen/DFAPacketizer.h projects/routing/contrib/llvm/include/llvm/CodeGen/DIE.h projects/routing/contrib/llvm/include/llvm/CodeGen/FastISel.h projects/routing/contrib/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h projects/routing/contrib/llvm/include/llvm/CodeGen/GCMetadata.h projects/routing/contrib/llvm/include/llvm/CodeGen/GCMetadataPrinter.h projects/routing/contrib/llvm/include/llvm/CodeGen/GCStrategy.h projects/routing/contrib/llvm/include/llvm/CodeGen/GCs.h projects/routing/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h projects/routing/contrib/llvm/include/llvm/CodeGen/LatencyPriorityQueue.h projects/routing/contrib/llvm/include/llvm/CodeGen/LexicalScopes.h projects/routing/contrib/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h projects/routing/contrib/llvm/include/llvm/CodeGen/LiveInterval.h projects/routing/contrib/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h projects/routing/contrib/llvm/include/llvm/CodeGen/LiveIntervalUnion.h projects/routing/contrib/llvm/include/llvm/CodeGen/LivePhysRegs.h projects/routing/contrib/llvm/include/llvm/CodeGen/LiveRangeEdit.h projects/routing/contrib/llvm/include/llvm/CodeGen/LiveRegMatrix.h projects/routing/contrib/llvm/include/llvm/CodeGen/LiveStackAnalysis.h projects/routing/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h projects/routing/contrib/llvm/include/llvm/CodeGen/MachineBlockFrequencyInfo.h projects/routing/contrib/llvm/include/llvm/CodeGen/MachineConstantPool.h projects/routing/contrib/llvm/include/llvm/CodeGen/MachineDominanceFrontier.h projects/routing/contrib/llvm/include/llvm/CodeGen/MachineDominators.h projects/routing/contrib/llvm/include/llvm/CodeGen/MachineFrameInfo.h projects/routing/contrib/llvm/include/llvm/CodeGen/MachineFunction.h projects/routing/contrib/llvm/include/llvm/CodeGen/MachineFunctionAnalysis.h projects/routing/contrib/llvm/include/llvm/CodeGen/MachineInstr.h projects/routing/contrib/llvm/include/llvm/CodeGen/MachineInstrBuilder.h projects/routing/contrib/llvm/include/llvm/CodeGen/MachineLoopInfo.h projects/routing/contrib/llvm/include/llvm/CodeGen/MachineMemOperand.h projects/routing/contrib/llvm/include/llvm/CodeGen/MachineModuleInfo.h projects/routing/contrib/llvm/include/llvm/CodeGen/MachineModuleInfoImpls.h projects/routing/contrib/llvm/include/llvm/CodeGen/MachineOperand.h projects/routing/contrib/llvm/include/llvm/CodeGen/MachinePassRegistry.h projects/routing/contrib/llvm/include/llvm/CodeGen/MachinePostDominators.h projects/routing/contrib/llvm/include/llvm/CodeGen/MachineRegionInfo.h projects/routing/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h projects/routing/contrib/llvm/include/llvm/CodeGen/MachineSSAUpdater.h projects/routing/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h projects/routing/contrib/llvm/include/llvm/CodeGen/MachineValueType.h projects/routing/contrib/llvm/include/llvm/CodeGen/PBQP/Graph.h projects/routing/contrib/llvm/include/llvm/CodeGen/PBQP/ReductionRules.h projects/routing/contrib/llvm/include/llvm/CodeGen/Passes.h projects/routing/contrib/llvm/include/llvm/CodeGen/PseudoSourceValue.h projects/routing/contrib/llvm/include/llvm/CodeGen/RegAllocPBQP.h projects/routing/contrib/llvm/include/llvm/CodeGen/RegisterPressure.h projects/routing/contrib/llvm/include/llvm/CodeGen/RegisterScavenging.h projects/routing/contrib/llvm/include/llvm/CodeGen/ResourcePriorityQueue.h projects/routing/contrib/llvm/include/llvm/CodeGen/RuntimeLibcalls.h projects/routing/contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h projects/routing/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h projects/routing/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h projects/routing/contrib/llvm/include/llvm/CodeGen/SelectionDAGISel.h projects/routing/contrib/llvm/include/llvm/CodeGen/SelectionDAGNodes.h projects/routing/contrib/llvm/include/llvm/CodeGen/SlotIndexes.h projects/routing/contrib/llvm/include/llvm/CodeGen/StackMaps.h projects/routing/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h projects/routing/contrib/llvm/include/llvm/CodeGen/TargetSchedule.h projects/routing/contrib/llvm/include/llvm/CodeGen/ValueTypes.h projects/routing/contrib/llvm/include/llvm/CodeGen/ValueTypes.td projects/routing/contrib/llvm/include/llvm/CodeGen/VirtRegMap.h projects/routing/contrib/llvm/include/llvm/DebugInfo/DIContext.h projects/routing/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h projects/routing/contrib/llvm/include/llvm/ExecutionEngine/RTDyldMemoryManager.h projects/routing/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h projects/routing/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyldChecker.h projects/routing/contrib/llvm/include/llvm/ExecutionEngine/SectionMemoryManager.h projects/routing/contrib/llvm/include/llvm/IR/Argument.h projects/routing/contrib/llvm/include/llvm/IR/Attributes.h projects/routing/contrib/llvm/include/llvm/IR/BasicBlock.h projects/routing/contrib/llvm/include/llvm/IR/CFG.h projects/routing/contrib/llvm/include/llvm/IR/CallSite.h projects/routing/contrib/llvm/include/llvm/IR/Comdat.h projects/routing/contrib/llvm/include/llvm/IR/Constant.h projects/routing/contrib/llvm/include/llvm/IR/ConstantFolder.h projects/routing/contrib/llvm/include/llvm/IR/ConstantRange.h projects/routing/contrib/llvm/include/llvm/IR/Constants.h projects/routing/contrib/llvm/include/llvm/IR/DIBuilder.h projects/routing/contrib/llvm/include/llvm/IR/DataLayout.h projects/routing/contrib/llvm/include/llvm/IR/DebugInfo.h projects/routing/contrib/llvm/include/llvm/IR/DebugLoc.h projects/routing/contrib/llvm/include/llvm/IR/DerivedTypes.h projects/routing/contrib/llvm/include/llvm/IR/DiagnosticInfo.h projects/routing/contrib/llvm/include/llvm/IR/DiagnosticPrinter.h projects/routing/contrib/llvm/include/llvm/IR/Dominators.h projects/routing/contrib/llvm/include/llvm/IR/Function.h projects/routing/contrib/llvm/include/llvm/IR/GVMaterializer.h projects/routing/contrib/llvm/include/llvm/IR/GetElementPtrTypeIterator.h projects/routing/contrib/llvm/include/llvm/IR/GlobalAlias.h projects/routing/contrib/llvm/include/llvm/IR/GlobalObject.h projects/routing/contrib/llvm/include/llvm/IR/GlobalValue.h projects/routing/contrib/llvm/include/llvm/IR/GlobalVariable.h projects/routing/contrib/llvm/include/llvm/IR/IRBuilder.h projects/routing/contrib/llvm/include/llvm/IR/IRPrintingPasses.h projects/routing/contrib/llvm/include/llvm/IR/InlineAsm.h projects/routing/contrib/llvm/include/llvm/IR/InstIterator.h projects/routing/contrib/llvm/include/llvm/IR/InstVisitor.h projects/routing/contrib/llvm/include/llvm/IR/InstrTypes.h projects/routing/contrib/llvm/include/llvm/IR/Instruction.h projects/routing/contrib/llvm/include/llvm/IR/Instructions.h projects/routing/contrib/llvm/include/llvm/IR/IntrinsicInst.h projects/routing/contrib/llvm/include/llvm/IR/Intrinsics.h projects/routing/contrib/llvm/include/llvm/IR/Intrinsics.td projects/routing/contrib/llvm/include/llvm/IR/IntrinsicsARM.td projects/routing/contrib/llvm/include/llvm/IR/IntrinsicsHexagon.td projects/routing/contrib/llvm/include/llvm/IR/IntrinsicsPowerPC.td projects/routing/contrib/llvm/include/llvm/IR/IntrinsicsX86.td projects/routing/contrib/llvm/include/llvm/IR/LLVMContext.h projects/routing/contrib/llvm/include/llvm/IR/LegacyPassManager.h projects/routing/contrib/llvm/include/llvm/IR/LegacyPassNameParser.h projects/routing/contrib/llvm/include/llvm/IR/MDBuilder.h projects/routing/contrib/llvm/include/llvm/IR/Mangler.h projects/routing/contrib/llvm/include/llvm/IR/Metadata.def projects/routing/contrib/llvm/include/llvm/IR/Metadata.h projects/routing/contrib/llvm/include/llvm/IR/Module.h projects/routing/contrib/llvm/include/llvm/IR/NoFolder.h projects/routing/contrib/llvm/include/llvm/IR/OperandTraits.h projects/routing/contrib/llvm/include/llvm/IR/Operator.h projects/routing/contrib/llvm/include/llvm/IR/PassManager.h projects/routing/contrib/llvm/include/llvm/IR/PassManagerInternal.h projects/routing/contrib/llvm/include/llvm/IR/PatternMatch.h projects/routing/contrib/llvm/include/llvm/IR/PredIteratorCache.h projects/routing/contrib/llvm/include/llvm/IR/Statepoint.h projects/routing/contrib/llvm/include/llvm/IR/Type.h projects/routing/contrib/llvm/include/llvm/IR/TypeBuilder.h projects/routing/contrib/llvm/include/llvm/IR/Use.h projects/routing/contrib/llvm/include/llvm/IR/UseListOrder.h projects/routing/contrib/llvm/include/llvm/IR/User.h projects/routing/contrib/llvm/include/llvm/IR/Value.h projects/routing/contrib/llvm/include/llvm/IR/ValueHandle.h projects/routing/contrib/llvm/include/llvm/IR/ValueMap.h projects/routing/contrib/llvm/include/llvm/IR/Verifier.h projects/routing/contrib/llvm/include/llvm/InitializePasses.h projects/routing/contrib/llvm/include/llvm/LTO/LTOCodeGenerator.h projects/routing/contrib/llvm/include/llvm/LTO/LTOModule.h projects/routing/contrib/llvm/include/llvm/LineEditor/LineEditor.h projects/routing/contrib/llvm/include/llvm/LinkAllPasses.h projects/routing/contrib/llvm/include/llvm/Linker/Linker.h projects/routing/contrib/llvm/include/llvm/MC/ConstantPools.h projects/routing/contrib/llvm/include/llvm/MC/MCAsmBackend.h projects/routing/contrib/llvm/include/llvm/MC/MCAsmInfo.h projects/routing/contrib/llvm/include/llvm/MC/MCAsmInfoELF.h projects/routing/contrib/llvm/include/llvm/MC/MCAsmLayout.h projects/routing/contrib/llvm/include/llvm/MC/MCAssembler.h projects/routing/contrib/llvm/include/llvm/MC/MCCodeEmitter.h projects/routing/contrib/llvm/include/llvm/MC/MCCodeGenInfo.h projects/routing/contrib/llvm/include/llvm/MC/MCContext.h projects/routing/contrib/llvm/include/llvm/MC/MCDisassembler.h projects/routing/contrib/llvm/include/llvm/MC/MCDwarf.h projects/routing/contrib/llvm/include/llvm/MC/MCELFObjectWriter.h projects/routing/contrib/llvm/include/llvm/MC/MCELFStreamer.h projects/routing/contrib/llvm/include/llvm/MC/MCExpr.h projects/routing/contrib/llvm/include/llvm/MC/MCFixup.h projects/routing/contrib/llvm/include/llvm/MC/MCFixupKindInfo.h projects/routing/contrib/llvm/include/llvm/MC/MCInst.h projects/routing/contrib/llvm/include/llvm/MC/MCInstBuilder.h projects/routing/contrib/llvm/include/llvm/MC/MCInstPrinter.h projects/routing/contrib/llvm/include/llvm/MC/MCInstrAnalysis.h projects/routing/contrib/llvm/include/llvm/MC/MCInstrDesc.h projects/routing/contrib/llvm/include/llvm/MC/MCInstrInfo.h projects/routing/contrib/llvm/include/llvm/MC/MCInstrItineraries.h projects/routing/contrib/llvm/include/llvm/MC/MCLabel.h projects/routing/contrib/llvm/include/llvm/MC/MCLinkerOptimizationHint.h projects/routing/contrib/llvm/include/llvm/MC/MCMachObjectWriter.h projects/routing/contrib/llvm/include/llvm/MC/MCObjectFileInfo.h projects/routing/contrib/llvm/include/llvm/MC/MCObjectStreamer.h projects/routing/contrib/llvm/include/llvm/MC/MCObjectWriter.h projects/routing/contrib/llvm/include/llvm/MC/MCParser/AsmLexer.h projects/routing/contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.h projects/routing/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h projects/routing/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserExtension.h projects/routing/contrib/llvm/include/llvm/MC/MCParser/MCParsedAsmOperand.h projects/routing/contrib/llvm/include/llvm/MC/MCRelocationInfo.h projects/routing/contrib/llvm/include/llvm/MC/MCSchedule.h projects/routing/contrib/llvm/include/llvm/MC/MCSection.h projects/routing/contrib/llvm/include/llvm/MC/MCSectionCOFF.h projects/routing/contrib/llvm/include/llvm/MC/MCSectionELF.h projects/routing/contrib/llvm/include/llvm/MC/MCSectionMachO.h projects/routing/contrib/llvm/include/llvm/MC/MCStreamer.h projects/routing/contrib/llvm/include/llvm/MC/MCSubtargetInfo.h projects/routing/contrib/llvm/include/llvm/MC/MCSymbol.h projects/routing/contrib/llvm/include/llvm/MC/MCSymbolizer.h projects/routing/contrib/llvm/include/llvm/MC/MCTargetAsmParser.h projects/routing/contrib/llvm/include/llvm/MC/MCTargetOptions.h projects/routing/contrib/llvm/include/llvm/MC/MCValue.h projects/routing/contrib/llvm/include/llvm/MC/MCWinCOFFObjectWriter.h projects/routing/contrib/llvm/include/llvm/MC/MCWinCOFFStreamer.h projects/routing/contrib/llvm/include/llvm/MC/MCWinEH.h projects/routing/contrib/llvm/include/llvm/MC/SectionKind.h projects/routing/contrib/llvm/include/llvm/MC/SubtargetFeature.h projects/routing/contrib/llvm/include/llvm/Object/Archive.h projects/routing/contrib/llvm/include/llvm/Object/Binary.h projects/routing/contrib/llvm/include/llvm/Object/COFF.h projects/routing/contrib/llvm/include/llvm/Object/ELF.h projects/routing/contrib/llvm/include/llvm/Object/ELFObjectFile.h projects/routing/contrib/llvm/include/llvm/Object/ELFTypes.h projects/routing/contrib/llvm/include/llvm/Object/ELFYAML.h projects/routing/contrib/llvm/include/llvm/Object/Error.h projects/routing/contrib/llvm/include/llvm/Object/IRObjectFile.h projects/routing/contrib/llvm/include/llvm/Object/MachO.h projects/routing/contrib/llvm/include/llvm/Object/MachOUniversal.h projects/routing/contrib/llvm/include/llvm/Object/ObjectFile.h projects/routing/contrib/llvm/include/llvm/Object/RelocVisitor.h projects/routing/contrib/llvm/include/llvm/Object/SymbolicFile.h projects/routing/contrib/llvm/include/llvm/Option/Arg.h projects/routing/contrib/llvm/include/llvm/Option/ArgList.h projects/routing/contrib/llvm/include/llvm/Option/OptSpecifier.h projects/routing/contrib/llvm/include/llvm/Option/OptTable.h projects/routing/contrib/llvm/include/llvm/Option/Option.h projects/routing/contrib/llvm/include/llvm/Pass.h projects/routing/contrib/llvm/include/llvm/PassAnalysisSupport.h projects/routing/contrib/llvm/include/llvm/PassInfo.h projects/routing/contrib/llvm/include/llvm/ProfileData/CoverageMapping.h projects/routing/contrib/llvm/include/llvm/ProfileData/CoverageMappingReader.h projects/routing/contrib/llvm/include/llvm/ProfileData/InstrProf.h projects/routing/contrib/llvm/include/llvm/ProfileData/InstrProfReader.h projects/routing/contrib/llvm/include/llvm/ProfileData/InstrProfWriter.h projects/routing/contrib/llvm/include/llvm/ProfileData/SampleProf.h projects/routing/contrib/llvm/include/llvm/Support/ARMBuildAttributes.h projects/routing/contrib/llvm/include/llvm/Support/AlignOf.h projects/routing/contrib/llvm/include/llvm/Support/Allocator.h projects/routing/contrib/llvm/include/llvm/Support/BranchProbability.h projects/routing/contrib/llvm/include/llvm/Support/COFF.h projects/routing/contrib/llvm/include/llvm/Support/CommandLine.h projects/routing/contrib/llvm/include/llvm/Support/Compiler.h projects/routing/contrib/llvm/include/llvm/Support/Compression.h projects/routing/contrib/llvm/include/llvm/Support/ConvertUTF.h projects/routing/contrib/llvm/include/llvm/Support/CrashRecoveryContext.h projects/routing/contrib/llvm/include/llvm/Support/DataExtractor.h projects/routing/contrib/llvm/include/llvm/Support/DataStream.h projects/routing/contrib/llvm/include/llvm/Support/Debug.h projects/routing/contrib/llvm/include/llvm/Support/Dwarf.h projects/routing/contrib/llvm/include/llvm/Support/ELF.h projects/routing/contrib/llvm/include/llvm/Support/ELFRelocs/Hexagon.def projects/routing/contrib/llvm/include/llvm/Support/ELFRelocs/Mips.def projects/routing/contrib/llvm/include/llvm/Support/ELFRelocs/Sparc.def projects/routing/contrib/llvm/include/llvm/Support/Endian.h projects/routing/contrib/llvm/include/llvm/Support/EndianStream.h projects/routing/contrib/llvm/include/llvm/Support/ErrorOr.h projects/routing/contrib/llvm/include/llvm/Support/FileOutputBuffer.h projects/routing/contrib/llvm/include/llvm/Support/FileSystem.h projects/routing/contrib/llvm/include/llvm/Support/FileUtilities.h projects/routing/contrib/llvm/include/llvm/Support/Format.h projects/routing/contrib/llvm/include/llvm/Support/FormattedStream.h projects/routing/contrib/llvm/include/llvm/Support/GCOV.h projects/routing/contrib/llvm/include/llvm/Support/GenericDomTree.h projects/routing/contrib/llvm/include/llvm/Support/GenericDomTreeConstruction.h projects/routing/contrib/llvm/include/llvm/Support/GraphWriter.h projects/routing/contrib/llvm/include/llvm/Support/LockFileManager.h projects/routing/contrib/llvm/include/llvm/Support/MathExtras.h projects/routing/contrib/llvm/include/llvm/Support/MemoryBuffer.h projects/routing/contrib/llvm/include/llvm/Support/Mutex.h projects/routing/contrib/llvm/include/llvm/Support/MutexGuard.h projects/routing/contrib/llvm/include/llvm/Support/OnDiskHashTable.h projects/routing/contrib/llvm/include/llvm/Support/Options.h projects/routing/contrib/llvm/include/llvm/Support/PrettyStackTrace.h projects/routing/contrib/llvm/include/llvm/Support/Program.h projects/routing/contrib/llvm/include/llvm/Support/RWMutex.h projects/routing/contrib/llvm/include/llvm/Support/RandomNumberGenerator.h projects/routing/contrib/llvm/include/llvm/Support/Regex.h projects/routing/contrib/llvm/include/llvm/Support/Registry.h projects/routing/contrib/llvm/include/llvm/Support/ScaledNumber.h projects/routing/contrib/llvm/include/llvm/Support/Signals.h projects/routing/contrib/llvm/include/llvm/Support/SourceMgr.h projects/routing/contrib/llvm/include/llvm/Support/SpecialCaseList.h projects/routing/contrib/llvm/include/llvm/Support/StreamingMemoryObject.h projects/routing/contrib/llvm/include/llvm/Support/StringPool.h projects/routing/contrib/llvm/include/llvm/Support/SwapByteOrder.h projects/routing/contrib/llvm/include/llvm/Support/SystemUtils.h projects/routing/contrib/llvm/include/llvm/Support/TargetRegistry.h projects/routing/contrib/llvm/include/llvm/Support/Timer.h projects/routing/contrib/llvm/include/llvm/Support/ToolOutputFile.h projects/routing/contrib/llvm/include/llvm/Support/UnicodeCharRanges.h projects/routing/contrib/llvm/include/llvm/Support/UniqueLock.h projects/routing/contrib/llvm/include/llvm/Support/Watchdog.h projects/routing/contrib/llvm/include/llvm/Support/YAMLParser.h projects/routing/contrib/llvm/include/llvm/Support/YAMLTraits.h projects/routing/contrib/llvm/include/llvm/Support/circular_raw_ostream.h projects/routing/contrib/llvm/include/llvm/Support/raw_os_ostream.h projects/routing/contrib/llvm/include/llvm/Support/raw_ostream.h projects/routing/contrib/llvm/include/llvm/Support/type_traits.h projects/routing/contrib/llvm/include/llvm/TableGen/Record.h projects/routing/contrib/llvm/include/llvm/TableGen/SetTheory.h projects/routing/contrib/llvm/include/llvm/TableGen/TableGenBackend.h projects/routing/contrib/llvm/include/llvm/Target/Target.td projects/routing/contrib/llvm/include/llvm/Target/TargetCallingConv.h projects/routing/contrib/llvm/include/llvm/Target/TargetFrameLowering.h projects/routing/contrib/llvm/include/llvm/Target/TargetInstrInfo.h projects/routing/contrib/llvm/include/llvm/Target/TargetIntrinsicInfo.h projects/routing/contrib/llvm/include/llvm/Target/TargetLowering.h projects/routing/contrib/llvm/include/llvm/Target/TargetLoweringObjectFile.h projects/routing/contrib/llvm/include/llvm/Target/TargetMachine.h projects/routing/contrib/llvm/include/llvm/Target/TargetOpcodes.h projects/routing/contrib/llvm/include/llvm/Target/TargetOptions.h projects/routing/contrib/llvm/include/llvm/Target/TargetRegisterInfo.h projects/routing/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td projects/routing/contrib/llvm/include/llvm/Target/TargetSelectionDAGInfo.h projects/routing/contrib/llvm/include/llvm/Target/TargetSubtargetInfo.h projects/routing/contrib/llvm/include/llvm/Transforms/IPO.h projects/routing/contrib/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h projects/routing/contrib/llvm/include/llvm/Transforms/Instrumentation.h projects/routing/contrib/llvm/include/llvm/Transforms/Scalar.h projects/routing/contrib/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h projects/routing/contrib/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h projects/routing/contrib/llvm/include/llvm/Transforms/Utils/Cloning.h projects/routing/contrib/llvm/include/llvm/Transforms/Utils/Local.h projects/routing/contrib/llvm/include/llvm/Transforms/Utils/LoopUtils.h projects/routing/contrib/llvm/include/llvm/Transforms/Utils/ModuleUtils.h projects/routing/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdater.h projects/routing/contrib/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h projects/routing/contrib/llvm/include/llvm/Transforms/Utils/SymbolRewriter.h projects/routing/contrib/llvm/include/llvm/Transforms/Utils/UnrollLoop.h projects/routing/contrib/llvm/include/llvm/module.modulemap projects/routing/contrib/llvm/lib/Analysis/AliasAnalysis.cpp projects/routing/contrib/llvm/lib/Analysis/AliasAnalysisCounter.cpp projects/routing/contrib/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp projects/routing/contrib/llvm/lib/Analysis/AliasDebugger.cpp projects/routing/contrib/llvm/lib/Analysis/AliasSetTracker.cpp projects/routing/contrib/llvm/lib/Analysis/Analysis.cpp projects/routing/contrib/llvm/lib/Analysis/AssumptionCache.cpp projects/routing/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp projects/routing/contrib/llvm/lib/Analysis/BlockFrequencyInfo.cpp projects/routing/contrib/llvm/lib/Analysis/BlockFrequencyInfoImpl.cpp projects/routing/contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp projects/routing/contrib/llvm/lib/Analysis/CFG.cpp projects/routing/contrib/llvm/lib/Analysis/CFGPrinter.cpp projects/routing/contrib/llvm/lib/Analysis/CFLAliasAnalysis.cpp projects/routing/contrib/llvm/lib/Analysis/CaptureTracking.cpp projects/routing/contrib/llvm/lib/Analysis/CodeMetrics.cpp projects/routing/contrib/llvm/lib/Analysis/ConstantFolding.cpp projects/routing/contrib/llvm/lib/Analysis/CostModel.cpp projects/routing/contrib/llvm/lib/Analysis/Delinearization.cpp projects/routing/contrib/llvm/lib/Analysis/DependenceAnalysis.cpp projects/routing/contrib/llvm/lib/Analysis/IPA/CallGraph.cpp projects/routing/contrib/llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp projects/routing/contrib/llvm/lib/Analysis/IPA/GlobalsModRef.cpp projects/routing/contrib/llvm/lib/Analysis/IPA/InlineCost.cpp projects/routing/contrib/llvm/lib/Analysis/IVUsers.cpp projects/routing/contrib/llvm/lib/Analysis/InstructionSimplify.cpp projects/routing/contrib/llvm/lib/Analysis/LazyValueInfo.cpp projects/routing/contrib/llvm/lib/Analysis/LibCallAliasAnalysis.cpp projects/routing/contrib/llvm/lib/Analysis/LibCallSemantics.cpp projects/routing/contrib/llvm/lib/Analysis/Lint.cpp projects/routing/contrib/llvm/lib/Analysis/Loads.cpp projects/routing/contrib/llvm/lib/Analysis/LoopInfo.cpp projects/routing/contrib/llvm/lib/Analysis/LoopPass.cpp projects/routing/contrib/llvm/lib/Analysis/MemDepPrinter.cpp projects/routing/contrib/llvm/lib/Analysis/MemoryBuiltins.cpp projects/routing/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp projects/routing/contrib/llvm/lib/Analysis/ModuleDebugInfoPrinter.cpp projects/routing/contrib/llvm/lib/Analysis/NoAliasAnalysis.cpp projects/routing/contrib/llvm/lib/Analysis/PHITransAddr.cpp projects/routing/contrib/llvm/lib/Analysis/RegionPass.cpp projects/routing/contrib/llvm/lib/Analysis/RegionPrinter.cpp projects/routing/contrib/llvm/lib/Analysis/ScalarEvolution.cpp projects/routing/contrib/llvm/lib/Analysis/ScalarEvolutionAliasAnalysis.cpp projects/routing/contrib/llvm/lib/Analysis/ScalarEvolutionExpander.cpp projects/routing/contrib/llvm/lib/Analysis/ScopedNoAliasAA.cpp projects/routing/contrib/llvm/lib/Analysis/TargetTransformInfo.cpp projects/routing/contrib/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp projects/routing/contrib/llvm/lib/Analysis/ValueTracking.cpp projects/routing/contrib/llvm/lib/AsmParser/LLLexer.cpp projects/routing/contrib/llvm/lib/AsmParser/LLLexer.h projects/routing/contrib/llvm/lib/AsmParser/LLParser.cpp projects/routing/contrib/llvm/lib/AsmParser/LLParser.h projects/routing/contrib/llvm/lib/AsmParser/LLToken.h projects/routing/contrib/llvm/lib/AsmParser/Parser.cpp projects/routing/contrib/llvm/lib/Bitcode/Reader/BitReader.cpp projects/routing/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp projects/routing/contrib/llvm/lib/Bitcode/Reader/BitstreamReader.cpp projects/routing/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp projects/routing/contrib/llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp projects/routing/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp projects/routing/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.h projects/routing/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp projects/routing/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.h projects/routing/contrib/llvm/lib/CodeGen/AllocationOrder.h projects/routing/contrib/llvm/lib/CodeGen/Analysis.cpp projects/routing/contrib/llvm/lib/CodeGen/AntiDepBreaker.h projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/AddressPool.cpp projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/AddressPool.h projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterHandler.h projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/ByteStreamer.h projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.cpp projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DIEHash.cpp projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DIEHash.h projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.cpp projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.h projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocEntry.h projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.h projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.h projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.cpp projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfFile.h projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.cpp projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.h projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/EHStreamer.cpp projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/EHStreamer.h projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/ErlangGCPrinter.cpp projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp projects/routing/contrib/llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.h projects/routing/contrib/llvm/lib/CodeGen/AtomicExpandPass.cpp projects/routing/contrib/llvm/lib/CodeGen/BasicTargetTransformInfo.cpp projects/routing/contrib/llvm/lib/CodeGen/BranchFolding.cpp projects/routing/contrib/llvm/lib/CodeGen/BranchFolding.h projects/routing/contrib/llvm/lib/CodeGen/CallingConvLower.cpp projects/routing/contrib/llvm/lib/CodeGen/CodeGen.cpp projects/routing/contrib/llvm/lib/CodeGen/CodeGenPrepare.cpp projects/routing/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp projects/routing/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.h projects/routing/contrib/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp projects/routing/contrib/llvm/lib/CodeGen/DwarfEHPrepare.cpp projects/routing/contrib/llvm/lib/CodeGen/EarlyIfConversion.cpp projects/routing/contrib/llvm/lib/CodeGen/ErlangGC.cpp projects/routing/contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp projects/routing/contrib/llvm/lib/CodeGen/GCMetadata.cpp projects/routing/contrib/llvm/lib/CodeGen/GCMetadataPrinter.cpp projects/routing/contrib/llvm/lib/CodeGen/GCStrategy.cpp projects/routing/contrib/llvm/lib/CodeGen/GlobalMerge.cpp projects/routing/contrib/llvm/lib/CodeGen/IfConversion.cpp projects/routing/contrib/llvm/lib/CodeGen/InlineSpiller.cpp projects/routing/contrib/llvm/lib/CodeGen/InterferenceCache.cpp projects/routing/contrib/llvm/lib/CodeGen/InterferenceCache.h projects/routing/contrib/llvm/lib/CodeGen/LLVMTargetMachine.cpp projects/routing/contrib/llvm/lib/CodeGen/LatencyPriorityQueue.cpp projects/routing/contrib/llvm/lib/CodeGen/LexicalScopes.cpp projects/routing/contrib/llvm/lib/CodeGen/LiveDebugVariables.cpp projects/routing/contrib/llvm/lib/CodeGen/LiveDebugVariables.h projects/routing/contrib/llvm/lib/CodeGen/LiveInterval.cpp projects/routing/contrib/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp projects/routing/contrib/llvm/lib/CodeGen/LivePhysRegs.cpp projects/routing/contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp projects/routing/contrib/llvm/lib/CodeGen/LiveRangeCalc.h projects/routing/contrib/llvm/lib/CodeGen/LiveRangeEdit.cpp projects/routing/contrib/llvm/lib/CodeGen/LiveRegMatrix.cpp projects/routing/contrib/llvm/lib/CodeGen/LiveStackAnalysis.cpp projects/routing/contrib/llvm/lib/CodeGen/LiveVariables.cpp projects/routing/contrib/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp projects/routing/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp projects/routing/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp projects/routing/contrib/llvm/lib/CodeGen/MachineCSE.cpp projects/routing/contrib/llvm/lib/CodeGen/MachineCombiner.cpp projects/routing/contrib/llvm/lib/CodeGen/MachineCopyPropagation.cpp projects/routing/contrib/llvm/lib/CodeGen/MachineDominators.cpp projects/routing/contrib/llvm/lib/CodeGen/MachineFunction.cpp projects/routing/contrib/llvm/lib/CodeGen/MachineFunctionAnalysis.cpp projects/routing/contrib/llvm/lib/CodeGen/MachineFunctionPass.cpp projects/routing/contrib/llvm/lib/CodeGen/MachineInstr.cpp projects/routing/contrib/llvm/lib/CodeGen/MachineInstrBundle.cpp projects/routing/contrib/llvm/lib/CodeGen/MachineLICM.cpp projects/routing/contrib/llvm/lib/CodeGen/MachineLoopInfo.cpp projects/routing/contrib/llvm/lib/CodeGen/MachineModuleInfo.cpp projects/routing/contrib/llvm/lib/CodeGen/MachineModuleInfoImpls.cpp projects/routing/contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp projects/routing/contrib/llvm/lib/CodeGen/MachineScheduler.cpp projects/routing/contrib/llvm/lib/CodeGen/MachineSink.cpp projects/routing/contrib/llvm/lib/CodeGen/MachineTraceMetrics.cpp projects/routing/contrib/llvm/lib/CodeGen/MachineVerifier.cpp projects/routing/contrib/llvm/lib/CodeGen/OcamlGC.cpp projects/routing/contrib/llvm/lib/CodeGen/PHIElimination.cpp projects/routing/contrib/llvm/lib/CodeGen/Passes.cpp projects/routing/contrib/llvm/lib/CodeGen/PeepholeOptimizer.cpp projects/routing/contrib/llvm/lib/CodeGen/PostRASchedulerList.cpp projects/routing/contrib/llvm/lib/CodeGen/ProcessImplicitDefs.cpp projects/routing/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp projects/routing/contrib/llvm/lib/CodeGen/RegAllocBase.cpp projects/routing/contrib/llvm/lib/CodeGen/RegAllocFast.cpp projects/routing/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp projects/routing/contrib/llvm/lib/CodeGen/RegAllocPBQP.cpp projects/routing/contrib/llvm/lib/CodeGen/RegisterClassInfo.cpp projects/routing/contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp projects/routing/contrib/llvm/lib/CodeGen/RegisterPressure.cpp projects/routing/contrib/llvm/lib/CodeGen/RegisterScavenging.cpp projects/routing/contrib/llvm/lib/CodeGen/ScheduleDAG.cpp projects/routing/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.h projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp projects/routing/contrib/llvm/lib/CodeGen/SelectionDAG/TargetSelectionDAGInfo.cpp projects/routing/contrib/llvm/lib/CodeGen/ShadowStackGC.cpp projects/routing/contrib/llvm/lib/CodeGen/SjLjEHPrepare.cpp projects/routing/contrib/llvm/lib/CodeGen/SlotIndexes.cpp projects/routing/contrib/llvm/lib/CodeGen/SpillPlacement.h projects/routing/contrib/llvm/lib/CodeGen/SplitKit.cpp projects/routing/contrib/llvm/lib/CodeGen/SplitKit.h projects/routing/contrib/llvm/lib/CodeGen/StackColoring.cpp projects/routing/contrib/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp projects/routing/contrib/llvm/lib/CodeGen/StackMaps.cpp projects/routing/contrib/llvm/lib/CodeGen/StackProtector.cpp projects/routing/contrib/llvm/lib/CodeGen/StackSlotColoring.cpp projects/routing/contrib/llvm/lib/CodeGen/StatepointExampleGC.cpp projects/routing/contrib/llvm/lib/CodeGen/TailDuplication.cpp projects/routing/contrib/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp projects/routing/contrib/llvm/lib/CodeGen/TargetInstrInfo.cpp projects/routing/contrib/llvm/lib/CodeGen/TargetLoweringBase.cpp projects/routing/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp projects/routing/contrib/llvm/lib/CodeGen/TargetOptionsImpl.cpp projects/routing/contrib/llvm/lib/CodeGen/TargetSchedule.cpp projects/routing/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp projects/routing/contrib/llvm/lib/CodeGen/UnreachableBlockElim.cpp projects/routing/contrib/llvm/lib/CodeGen/VirtRegMap.cpp projects/routing/contrib/llvm/lib/ExecutionEngine/ExecutionEngine.cpp projects/routing/contrib/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp projects/routing/contrib/llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp projects/routing/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp projects/routing/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.c projects/routing/contrib/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp projects/routing/contrib/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp projects/routing/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp projects/routing/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h projects/routing/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp projects/routing/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h projects/routing/contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp projects/routing/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp projects/routing/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp projects/routing/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp projects/routing/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCheckerImpl.h projects/routing/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp projects/routing/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h projects/routing/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h projects/routing/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp projects/routing/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h projects/routing/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.h projects/routing/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h projects/routing/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOI386.h projects/routing/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOX86_64.h projects/routing/contrib/llvm/lib/ExecutionEngine/TargetSelect.cpp projects/routing/contrib/llvm/lib/IR/AsmWriter.cpp projects/routing/contrib/llvm/lib/IR/AttributeImpl.h projects/routing/contrib/llvm/lib/IR/Attributes.cpp projects/routing/contrib/llvm/lib/IR/AutoUpgrade.cpp projects/routing/contrib/llvm/lib/IR/BasicBlock.cpp projects/routing/contrib/llvm/lib/IR/ConstantFold.cpp projects/routing/contrib/llvm/lib/IR/ConstantFold.h projects/routing/contrib/llvm/lib/IR/ConstantRange.cpp projects/routing/contrib/llvm/lib/IR/Constants.cpp projects/routing/contrib/llvm/lib/IR/ConstantsContext.h projects/routing/contrib/llvm/lib/IR/Core.cpp projects/routing/contrib/llvm/lib/IR/DIBuilder.cpp projects/routing/contrib/llvm/lib/IR/DataLayout.cpp projects/routing/contrib/llvm/lib/IR/DebugInfo.cpp projects/routing/contrib/llvm/lib/IR/DebugLoc.cpp projects/routing/contrib/llvm/lib/IR/DiagnosticInfo.cpp projects/routing/contrib/llvm/lib/IR/DiagnosticPrinter.cpp projects/routing/contrib/llvm/lib/IR/Dominators.cpp projects/routing/contrib/llvm/lib/IR/Function.cpp projects/routing/contrib/llvm/lib/IR/GCOV.cpp projects/routing/contrib/llvm/lib/IR/Globals.cpp projects/routing/contrib/llvm/lib/IR/IRBuilder.cpp projects/routing/contrib/llvm/lib/IR/IRPrintingPasses.cpp projects/routing/contrib/llvm/lib/IR/InlineAsm.cpp projects/routing/contrib/llvm/lib/IR/Instruction.cpp projects/routing/contrib/llvm/lib/IR/Instructions.cpp projects/routing/contrib/llvm/lib/IR/LLVMContext.cpp projects/routing/contrib/llvm/lib/IR/LLVMContextImpl.cpp projects/routing/contrib/llvm/lib/IR/LLVMContextImpl.h projects/routing/contrib/llvm/lib/IR/LegacyPassManager.cpp projects/routing/contrib/llvm/lib/IR/MDBuilder.cpp projects/routing/contrib/llvm/lib/IR/Mangler.cpp projects/routing/contrib/llvm/lib/IR/Metadata.cpp projects/routing/contrib/llvm/lib/IR/MetadataTracking.cpp projects/routing/contrib/llvm/lib/IR/Module.cpp projects/routing/contrib/llvm/lib/IR/Pass.cpp projects/routing/contrib/llvm/lib/IR/Statepoint.cpp projects/routing/contrib/llvm/lib/IR/Type.cpp projects/routing/contrib/llvm/lib/IR/TypeFinder.cpp projects/routing/contrib/llvm/lib/IR/User.cpp projects/routing/contrib/llvm/lib/IR/Value.cpp projects/routing/contrib/llvm/lib/IR/ValueSymbolTable.cpp projects/routing/contrib/llvm/lib/IR/ValueTypes.cpp projects/routing/contrib/llvm/lib/IR/Verifier.cpp projects/routing/contrib/llvm/lib/IRReader/IRReader.cpp projects/routing/contrib/llvm/lib/LTO/LTOCodeGenerator.cpp projects/routing/contrib/llvm/lib/LTO/LTOModule.cpp projects/routing/contrib/llvm/lib/Linker/LinkModules.cpp projects/routing/contrib/llvm/lib/MC/ConstantPools.cpp projects/routing/contrib/llvm/lib/MC/ELFObjectWriter.cpp projects/routing/contrib/llvm/lib/MC/MCAsmBackend.cpp projects/routing/contrib/llvm/lib/MC/MCAsmInfo.cpp projects/routing/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp projects/routing/contrib/llvm/lib/MC/MCAsmInfoDarwin.cpp projects/routing/contrib/llvm/lib/MC/MCAsmInfoELF.cpp projects/routing/contrib/llvm/lib/MC/MCAsmStreamer.cpp projects/routing/contrib/llvm/lib/MC/MCAssembler.cpp projects/routing/contrib/llvm/lib/MC/MCCodeGenInfo.cpp projects/routing/contrib/llvm/lib/MC/MCContext.cpp projects/routing/contrib/llvm/lib/MC/MCDisassembler/Disassembler.cpp projects/routing/contrib/llvm/lib/MC/MCDisassembler/MCExternalSymbolizer.cpp projects/routing/contrib/llvm/lib/MC/MCDisassembler/MCRelocationInfo.cpp projects/routing/contrib/llvm/lib/MC/MCDwarf.cpp projects/routing/contrib/llvm/lib/MC/MCELFObjectTargetWriter.cpp projects/routing/contrib/llvm/lib/MC/MCELFStreamer.cpp projects/routing/contrib/llvm/lib/MC/MCExpr.cpp projects/routing/contrib/llvm/lib/MC/MCInst.cpp projects/routing/contrib/llvm/lib/MC/MCInstPrinter.cpp projects/routing/contrib/llvm/lib/MC/MCLinkerOptimizationHint.cpp projects/routing/contrib/llvm/lib/MC/MCMachOStreamer.cpp projects/routing/contrib/llvm/lib/MC/MCMachObjectTargetWriter.cpp projects/routing/contrib/llvm/lib/MC/MCNullStreamer.cpp projects/routing/contrib/llvm/lib/MC/MCObjectFileInfo.cpp projects/routing/contrib/llvm/lib/MC/MCObjectStreamer.cpp projects/routing/contrib/llvm/lib/MC/MCObjectWriter.cpp projects/routing/contrib/llvm/lib/MC/MCParser/AsmLexer.cpp projects/routing/contrib/llvm/lib/MC/MCParser/AsmParser.cpp projects/routing/contrib/llvm/lib/MC/MCParser/COFFAsmParser.cpp projects/routing/contrib/llvm/lib/MC/MCParser/DarwinAsmParser.cpp projects/routing/contrib/llvm/lib/MC/MCParser/ELFAsmParser.cpp projects/routing/contrib/llvm/lib/MC/MCSection.cpp projects/routing/contrib/llvm/lib/MC/MCSectionCOFF.cpp projects/routing/contrib/llvm/lib/MC/MCSectionELF.cpp projects/routing/contrib/llvm/lib/MC/MCSectionMachO.cpp projects/routing/contrib/llvm/lib/MC/MCStreamer.cpp projects/routing/contrib/llvm/lib/MC/MCSubtargetInfo.cpp projects/routing/contrib/llvm/lib/MC/MCSymbol.cpp projects/routing/contrib/llvm/lib/MC/MCValue.cpp projects/routing/contrib/llvm/lib/MC/MCWin64EH.cpp projects/routing/contrib/llvm/lib/MC/MCWinEH.cpp projects/routing/contrib/llvm/lib/MC/MachObjectWriter.cpp projects/routing/contrib/llvm/lib/MC/SubtargetFeature.cpp projects/routing/contrib/llvm/lib/MC/WinCOFFObjectWriter.cpp projects/routing/contrib/llvm/lib/MC/WinCOFFStreamer.cpp projects/routing/contrib/llvm/lib/Object/Archive.cpp projects/routing/contrib/llvm/lib/Object/Binary.cpp projects/routing/contrib/llvm/lib/Object/COFFObjectFile.cpp projects/routing/contrib/llvm/lib/Object/ELFObjectFile.cpp projects/routing/contrib/llvm/lib/Object/ELFYAML.cpp projects/routing/contrib/llvm/lib/Object/Error.cpp projects/routing/contrib/llvm/lib/Object/IRObjectFile.cpp projects/routing/contrib/llvm/lib/Object/MachOObjectFile.cpp projects/routing/contrib/llvm/lib/Object/MachOUniversal.cpp projects/routing/contrib/llvm/lib/Object/Object.cpp projects/routing/contrib/llvm/lib/Object/ObjectFile.cpp projects/routing/contrib/llvm/lib/Object/RecordStreamer.cpp projects/routing/contrib/llvm/lib/Object/RecordStreamer.h projects/routing/contrib/llvm/lib/Object/SymbolicFile.cpp projects/routing/contrib/llvm/lib/Option/Arg.cpp projects/routing/contrib/llvm/lib/Option/ArgList.cpp projects/routing/contrib/llvm/lib/Option/OptTable.cpp projects/routing/contrib/llvm/lib/Option/Option.cpp projects/routing/contrib/llvm/lib/ProfileData/CoverageMapping.cpp projects/routing/contrib/llvm/lib/ProfileData/CoverageMappingReader.cpp projects/routing/contrib/llvm/lib/ProfileData/CoverageMappingWriter.cpp projects/routing/contrib/llvm/lib/ProfileData/InstrProf.cpp projects/routing/contrib/llvm/lib/ProfileData/InstrProfReader.cpp projects/routing/contrib/llvm/lib/ProfileData/InstrProfWriter.cpp projects/routing/contrib/llvm/lib/Support/APFloat.cpp projects/routing/contrib/llvm/lib/Support/APInt.cpp projects/routing/contrib/llvm/lib/Support/APSInt.cpp projects/routing/contrib/llvm/lib/Support/Allocator.cpp projects/routing/contrib/llvm/lib/Support/CommandLine.cpp projects/routing/contrib/llvm/lib/Support/Compression.cpp projects/routing/contrib/llvm/lib/Support/ConvertUTFWrapper.cpp projects/routing/contrib/llvm/lib/Support/CrashRecoveryContext.cpp projects/routing/contrib/llvm/lib/Support/DAGDeltaAlgorithm.cpp projects/routing/contrib/llvm/lib/Support/DataStream.cpp projects/routing/contrib/llvm/lib/Support/Debug.cpp projects/routing/contrib/llvm/lib/Support/Dwarf.cpp projects/routing/contrib/llvm/lib/Support/DynamicLibrary.cpp projects/routing/contrib/llvm/lib/Support/FileOutputBuffer.cpp projects/routing/contrib/llvm/lib/Support/FoldingSet.cpp projects/routing/contrib/llvm/lib/Support/FormattedStream.cpp projects/routing/contrib/llvm/lib/Support/GraphWriter.cpp projects/routing/contrib/llvm/lib/Support/Host.cpp projects/routing/contrib/llvm/lib/Support/Locale.cpp projects/routing/contrib/llvm/lib/Support/LockFileManager.cpp projects/routing/contrib/llvm/lib/Support/MemoryBuffer.cpp projects/routing/contrib/llvm/lib/Support/Path.cpp projects/routing/contrib/llvm/lib/Support/PrettyStackTrace.cpp projects/routing/contrib/llvm/lib/Support/Process.cpp projects/routing/contrib/llvm/lib/Support/Program.cpp projects/routing/contrib/llvm/lib/Support/RandomNumberGenerator.cpp projects/routing/contrib/llvm/lib/Support/Regex.cpp projects/routing/contrib/llvm/lib/Support/ScaledNumber.cpp projects/routing/contrib/llvm/lib/Support/SmallPtrSet.cpp projects/routing/contrib/llvm/lib/Support/SmallVector.cpp projects/routing/contrib/llvm/lib/Support/SourceMgr.cpp projects/routing/contrib/llvm/lib/Support/SpecialCaseList.cpp projects/routing/contrib/llvm/lib/Support/StreamingMemoryObject.cpp projects/routing/contrib/llvm/lib/Support/StringExtras.cpp projects/routing/contrib/llvm/lib/Support/StringMap.cpp projects/routing/contrib/llvm/lib/Support/SystemUtils.cpp projects/routing/contrib/llvm/lib/Support/TargetRegistry.cpp projects/routing/contrib/llvm/lib/Support/Timer.cpp projects/routing/contrib/llvm/lib/Support/Triple.cpp projects/routing/contrib/llvm/lib/Support/Twine.cpp projects/routing/contrib/llvm/lib/Support/Unix/Host.inc projects/routing/contrib/llvm/lib/Support/Unix/Process.inc projects/routing/contrib/llvm/lib/Support/Unix/Program.inc projects/routing/contrib/llvm/lib/Support/Unix/Signals.inc projects/routing/contrib/llvm/lib/Support/Valgrind.cpp projects/routing/contrib/llvm/lib/Support/Windows/DynamicLibrary.inc projects/routing/contrib/llvm/lib/Support/Windows/Memory.inc projects/routing/contrib/llvm/lib/Support/Windows/Path.inc projects/routing/contrib/llvm/lib/Support/Windows/Process.inc projects/routing/contrib/llvm/lib/Support/Windows/Program.inc projects/routing/contrib/llvm/lib/Support/Windows/Signals.inc projects/routing/contrib/llvm/lib/Support/Windows/TimeValue.inc projects/routing/contrib/llvm/lib/Support/Windows/WindowsSupport.h projects/routing/contrib/llvm/lib/Support/YAMLParser.cpp projects/routing/contrib/llvm/lib/Support/YAMLTraits.cpp projects/routing/contrib/llvm/lib/Support/raw_ostream.cpp projects/routing/contrib/llvm/lib/Support/regcomp.c projects/routing/contrib/llvm/lib/TableGen/Error.cpp projects/routing/contrib/llvm/lib/TableGen/Main.cpp projects/routing/contrib/llvm/lib/TableGen/Record.cpp projects/routing/contrib/llvm/lib/TableGen/SetTheory.cpp projects/routing/contrib/llvm/lib/TableGen/TGLexer.h projects/routing/contrib/llvm/lib/TableGen/TGParser.cpp projects/routing/contrib/llvm/lib/TableGen/TGParser.h projects/routing/contrib/llvm/lib/TableGen/TableGenBackend.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64.h projects/routing/contrib/llvm/lib/Target/AArch64/AArch64.td projects/routing/contrib/llvm/lib/Target/AArch64/AArch64A53Fix835769.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64A57FPLoadBalancing.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64AddressTypePromotion.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64AdvSIMDScalarPass.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64BranchRelaxation.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64CallingConvention.h projects/routing/contrib/llvm/lib/Target/AArch64/AArch64CallingConvention.td projects/routing/contrib/llvm/lib/Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64CollectLOH.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64ConditionOptimizer.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64ConditionalCompares.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64FastISel.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64FrameLowering.h projects/routing/contrib/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.h projects/routing/contrib/llvm/lib/Target/AArch64/AArch64InstrFormats.td projects/routing/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.h projects/routing/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.td projects/routing/contrib/llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64MCInstLower.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64PromoteConstant.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.h projects/routing/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.td projects/routing/contrib/llvm/lib/Target/AArch64/AArch64SchedA57.td projects/routing/contrib/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.h projects/routing/contrib/llvm/lib/Target/AArch64/AArch64StorePairSuppress.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64Subtarget.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64Subtarget.h projects/routing/contrib/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64TargetMachine.h projects/routing/contrib/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h projects/routing/contrib/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp projects/routing/contrib/llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp projects/routing/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp projects/routing/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp projects/routing/contrib/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.cpp projects/routing/contrib/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h projects/routing/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AddressingModes.h projects/routing/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp projects/routing/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp projects/routing/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp projects/routing/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.h projects/routing/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp projects/routing/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.h projects/routing/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp projects/routing/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp projects/routing/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.h projects/routing/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp projects/routing/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.h projects/routing/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp projects/routing/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp projects/routing/contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.cpp projects/routing/contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.h projects/routing/contrib/llvm/lib/Target/ARM/A15SDOptimizer.cpp projects/routing/contrib/llvm/lib/Target/ARM/ARM.h projects/routing/contrib/llvm/lib/Target/ARM/ARM.td projects/routing/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.cpp projects/routing/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.h projects/routing/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp projects/routing/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.h projects/routing/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp projects/routing/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h projects/routing/contrib/llvm/lib/Target/ARM/ARMCallingConv.h projects/routing/contrib/llvm/lib/Target/ARM/ARMCallingConv.td projects/routing/contrib/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp projects/routing/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.h projects/routing/contrib/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp projects/routing/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp projects/routing/contrib/llvm/lib/Target/ARM/ARMFrameLowering.cpp projects/routing/contrib/llvm/lib/Target/ARM/ARMFrameLowering.h projects/routing/contrib/llvm/lib/Target/ARM/ARMHazardRecognizer.cpp projects/routing/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp projects/routing/contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp projects/routing/contrib/llvm/lib/Target/ARM/ARMISelLowering.h projects/routing/contrib/llvm/lib/Target/ARM/ARMInstrFormats.td projects/routing/contrib/llvm/lib/Target/ARM/ARMInstrInfo.cpp projects/routing/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td projects/routing/contrib/llvm/lib/Target/ARM/ARMInstrNEON.td projects/routing/contrib/llvm/lib/Target/ARM/ARMInstrThumb.td projects/routing/contrib/llvm/lib/Target/ARM/ARMInstrThumb2.td projects/routing/contrib/llvm/lib/Target/ARM/ARMInstrVFP.td projects/routing/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp projects/routing/contrib/llvm/lib/Target/ARM/ARMMCInstLower.cpp projects/routing/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.cpp projects/routing/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h projects/routing/contrib/llvm/lib/Target/ARM/ARMOptimizeBarriersPass.cpp projects/routing/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.cpp projects/routing/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.h projects/routing/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.td projects/routing/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp projects/routing/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.h projects/routing/contrib/llvm/lib/Target/ARM/ARMSubtarget.cpp projects/routing/contrib/llvm/lib/Target/ARM/ARMSubtarget.h projects/routing/contrib/llvm/lib/Target/ARM/ARMTargetMachine.cpp projects/routing/contrib/llvm/lib/Target/ARM/ARMTargetMachine.h projects/routing/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp projects/routing/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp projects/routing/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp projects/routing/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp projects/routing/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp projects/routing/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h projects/routing/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h projects/routing/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp projects/routing/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.h projects/routing/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendDarwin.h projects/routing/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendELF.h projects/routing/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendWinCOFF.h projects/routing/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp projects/routing/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp projects/routing/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp projects/routing/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.h projects/routing/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp projects/routing/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.cpp projects/routing/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.h projects/routing/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp projects/routing/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.h projects/routing/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachORelocationInfo.cpp projects/routing/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp projects/routing/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp projects/routing/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp projects/routing/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp projects/routing/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp projects/routing/contrib/llvm/lib/Target/ARM/MLxExpansionPass.cpp projects/routing/contrib/llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp projects/routing/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp projects/routing/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.h projects/routing/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp projects/routing/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.h projects/routing/contrib/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp projects/routing/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp projects/routing/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.h projects/routing/contrib/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp projects/routing/contrib/llvm/lib/Target/CppBackend/CPPBackend.cpp projects/routing/contrib/llvm/lib/Target/CppBackend/CPPTargetMachine.h projects/routing/contrib/llvm/lib/Target/CppBackend/TargetInfo/CppBackendTargetInfo.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/Disassembler/HexagonDisassembler.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/Hexagon.h projects/routing/contrib/llvm/lib/Target/Hexagon/Hexagon.td projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.h projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonCFGOptimizer.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonCopyToCombine.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonExpandPredSpillCode.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonFixupHwLoops.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.h projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.h projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormats.td projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV4.td projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.h projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.td projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV3.td projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV4.td projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV5.td projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsics.td projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsDerived.td projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV3.td projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV4.td projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV5.td projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.h projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.h projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonOperands.td projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonPeephole.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.h projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.td projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonRemoveSZExtArgs.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.h projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.h projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.h projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.h projects/routing/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonAsmBackend.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h projects/routing/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonELFObjectWriter.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.h projects/routing/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.h projects/routing/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.h projects/routing/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp projects/routing/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.h projects/routing/contrib/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.cpp projects/routing/contrib/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.h projects/routing/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp projects/routing/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.h projects/routing/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp projects/routing/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.h projects/routing/contrib/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp projects/routing/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp projects/routing/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.h projects/routing/contrib/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp projects/routing/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp projects/routing/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.h projects/routing/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp projects/routing/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.h projects/routing/contrib/llvm/lib/Target/MSP430/MSP430MCInstLower.cpp projects/routing/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp projects/routing/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.h projects/routing/contrib/llvm/lib/Target/MSP430/MSP430Subtarget.cpp projects/routing/contrib/llvm/lib/Target/MSP430/MSP430Subtarget.h projects/routing/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp projects/routing/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.h projects/routing/contrib/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp projects/routing/contrib/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp projects/routing/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp projects/routing/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.h projects/routing/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp projects/routing/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.h projects/routing/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.cpp projects/routing/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.h projects/routing/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp projects/routing/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h projects/routing/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp projects/routing/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.cpp projects/routing/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.h projects/routing/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h projects/routing/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp projects/routing/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.h projects/routing/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp projects/routing/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.h projects/routing/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.cpp projects/routing/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.h projects/routing/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCNaCl.h projects/routing/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp projects/routing/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.h projects/routing/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp projects/routing/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsOptionRecord.cpp projects/routing/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp projects/routing/contrib/llvm/lib/Target/Mips/MicroMipsInstrFPU.td projects/routing/contrib/llvm/lib/Target/Mips/MicroMipsInstrFormats.td projects/routing/contrib/llvm/lib/Target/Mips/MicroMipsInstrInfo.td projects/routing/contrib/llvm/lib/Target/Mips/Mips.h projects/routing/contrib/llvm/lib/Target/Mips/Mips.td projects/routing/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.cpp projects/routing/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.h projects/routing/contrib/llvm/lib/Target/Mips/Mips16HardFloat.cpp projects/routing/contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp projects/routing/contrib/llvm/lib/Target/Mips/Mips16ISelLowering.cpp projects/routing/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.cpp projects/routing/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.h projects/routing/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.cpp projects/routing/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.h projects/routing/contrib/llvm/lib/Target/Mips/Mips32r6InstrFormats.td projects/routing/contrib/llvm/lib/Target/Mips/Mips32r6InstrInfo.td projects/routing/contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td projects/routing/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.cpp projects/routing/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.h projects/routing/contrib/llvm/lib/Target/Mips/MipsCCState.h projects/routing/contrib/llvm/lib/Target/Mips/MipsCallingConv.td projects/routing/contrib/llvm/lib/Target/Mips/MipsCondMov.td projects/routing/contrib/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp projects/routing/contrib/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp projects/routing/contrib/llvm/lib/Target/Mips/MipsFastISel.cpp projects/routing/contrib/llvm/lib/Target/Mips/MipsFrameLowering.cpp projects/routing/contrib/llvm/lib/Target/Mips/MipsFrameLowering.h projects/routing/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp projects/routing/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.h projects/routing/contrib/llvm/lib/Target/Mips/MipsISelLowering.cpp projects/routing/contrib/llvm/lib/Target/Mips/MipsISelLowering.h projects/routing/contrib/llvm/lib/Target/Mips/MipsInstrFPU.td projects/routing/contrib/llvm/lib/Target/Mips/MipsInstrFormats.td projects/routing/contrib/llvm/lib/Target/Mips/MipsInstrInfo.cpp projects/routing/contrib/llvm/lib/Target/Mips/MipsInstrInfo.h projects/routing/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td projects/routing/contrib/llvm/lib/Target/Mips/MipsLongBranch.cpp projects/routing/contrib/llvm/lib/Target/Mips/MipsMCInstLower.cpp projects/routing/contrib/llvm/lib/Target/Mips/MipsMSAInstrInfo.td projects/routing/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp projects/routing/contrib/llvm/lib/Target/Mips/MipsMachineFunction.h projects/routing/contrib/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.cpp projects/routing/contrib/llvm/lib/Target/Mips/MipsOptimizePICCall.cpp projects/routing/contrib/llvm/lib/Target/Mips/MipsOptionRecord.h projects/routing/contrib/llvm/lib/Target/Mips/MipsOs16.cpp projects/routing/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp projects/routing/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.h projects/routing/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.td projects/routing/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp projects/routing/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.h projects/routing/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp projects/routing/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h projects/routing/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.cpp projects/routing/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp projects/routing/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.h projects/routing/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp projects/routing/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.h projects/routing/contrib/llvm/lib/Target/Mips/MipsSchedule.td projects/routing/contrib/llvm/lib/Target/Mips/MipsSubtarget.cpp projects/routing/contrib/llvm/lib/Target/Mips/MipsSubtarget.h projects/routing/contrib/llvm/lib/Target/Mips/MipsTargetMachine.cpp projects/routing/contrib/llvm/lib/Target/Mips/MipsTargetMachine.h projects/routing/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.cpp projects/routing/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.h projects/routing/contrib/llvm/lib/Target/Mips/MipsTargetStreamer.h projects/routing/contrib/llvm/lib/Target/Mips/TargetInfo/MipsTargetInfo.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/InstPrinter/NVPTXInstPrinter.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/InstPrinter/NVPTXInstPrinter.h projects/routing/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.h projects/routing/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.h projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTX.h projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTX.td projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.h projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXAssignValidGlobalNames.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXFavorNonGenericAddrSpaces.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXFrameLowering.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXFrameLowering.h projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXGenericToNVVM.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.h projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.h projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.h projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.td projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.h projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXMCExpr.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXMCExpr.h projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXPrologEpilogPass.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.h projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.td projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXReplaceImageHandles.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXSection.h projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.h projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.h projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXTargetObjectFile.h projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXUtilities.cpp projects/routing/contrib/llvm/lib/Target/NVPTX/NVPTXVector.td projects/routing/contrib/llvm/lib/Target/NVPTX/NVVMReflect.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h projects/routing/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.h projects/routing/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h projects/routing/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/PPC.h projects/routing/contrib/llvm/lib/Target/PowerPC/PPC.td projects/routing/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.td projects/routing/contrib/llvm/lib/Target/PowerPC/PPCFastISel.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.h projects/routing/contrib/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h projects/routing/contrib/llvm/lib/Target/PowerPC/PPCInstr64Bit.td projects/routing/contrib/llvm/lib/Target/PowerPC/PPCInstrAltivec.td projects/routing/contrib/llvm/lib/Target/PowerPC/PPCInstrFormats.td projects/routing/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.h projects/routing/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td projects/routing/contrib/llvm/lib/Target/PowerPC/PPCInstrVSX.td projects/routing/contrib/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h projects/routing/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h projects/routing/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.td projects/routing/contrib/llvm/lib/Target/PowerPC/PPCSchedule.td projects/routing/contrib/llvm/lib/Target/PowerPC/PPCSchedule440.td projects/routing/contrib/llvm/lib/Target/PowerPC/PPCScheduleA2.td projects/routing/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500mc.td projects/routing/contrib/llvm/lib/Target/PowerPC/PPCScheduleE5500.td projects/routing/contrib/llvm/lib/Target/PowerPC/PPCScheduleP7.td projects/routing/contrib/llvm/lib/Target/PowerPC/PPCScheduleP8.td projects/routing/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.h projects/routing/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.h projects/routing/contrib/llvm/lib/Target/PowerPC/PPCTargetObjectFile.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/PPCTargetObjectFile.h projects/routing/contrib/llvm/lib/Target/PowerPC/PPCTargetStreamer.h projects/routing/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp projects/routing/contrib/llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp projects/routing/contrib/llvm/lib/Target/Sparc/AsmParser/SparcAsmParser.cpp projects/routing/contrib/llvm/lib/Target/Sparc/DelaySlotFiller.cpp projects/routing/contrib/llvm/lib/Target/Sparc/Disassembler/SparcDisassembler.cpp projects/routing/contrib/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.cpp projects/routing/contrib/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.h projects/routing/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcAsmBackend.cpp projects/routing/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp projects/routing/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.cpp projects/routing/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.h projects/routing/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCCodeEmitter.cpp projects/routing/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.cpp projects/routing/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.h projects/routing/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp projects/routing/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.h projects/routing/contrib/llvm/lib/Target/Sparc/Sparc.td projects/routing/contrib/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp projects/routing/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.cpp projects/routing/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.h projects/routing/contrib/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp projects/routing/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp projects/routing/contrib/llvm/lib/Target/Sparc/SparcISelLowering.h projects/routing/contrib/llvm/lib/Target/Sparc/SparcInstr64Bit.td projects/routing/contrib/llvm/lib/Target/Sparc/SparcInstrAliases.td projects/routing/contrib/llvm/lib/Target/Sparc/SparcInstrFormats.td projects/routing/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.cpp projects/routing/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.h projects/routing/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.td projects/routing/contrib/llvm/lib/Target/Sparc/SparcMCInstLower.cpp projects/routing/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp projects/routing/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.h projects/routing/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.td projects/routing/contrib/llvm/lib/Target/Sparc/SparcSubtarget.cpp projects/routing/contrib/llvm/lib/Target/Sparc/SparcSubtarget.h projects/routing/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.cpp projects/routing/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.h projects/routing/contrib/llvm/lib/Target/Sparc/SparcTargetObjectFile.cpp projects/routing/contrib/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.h projects/routing/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmBackend.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.h projects/routing/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCCodeEmitter.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCFixups.h projects/routing/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.h projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZ.h projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZ.td projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.h projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZCallingConv.h projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZCallingConv.td projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.h projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZFrameLowering.h projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.h projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZInstrFP.td projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZInstrFormats.td projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.h projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.td projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZMCInstLower.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZOperands.td projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZOperators.td projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZPatterns.td projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZProcessors.td projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.h projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.td projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.h projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZShortenInst.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.h projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp projects/routing/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.h projects/routing/contrib/llvm/lib/Target/Target.cpp projects/routing/contrib/llvm/lib/Target/TargetLoweringObjectFile.cpp projects/routing/contrib/llvm/lib/Target/TargetMachine.cpp projects/routing/contrib/llvm/lib/Target/TargetMachineC.cpp projects/routing/contrib/llvm/lib/Target/TargetSubtargetInfo.cpp projects/routing/contrib/llvm/lib/Target/X86/AsmParser/X86AsmInstrumentation.cpp projects/routing/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp projects/routing/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParserCommon.h projects/routing/contrib/llvm/lib/Target/X86/AsmParser/X86Operand.h projects/routing/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp projects/routing/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp projects/routing/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoderCommon.h projects/routing/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp projects/routing/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.h projects/routing/contrib/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp projects/routing/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp projects/routing/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h projects/routing/contrib/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp projects/routing/contrib/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h projects/routing/contrib/llvm/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp projects/routing/contrib/llvm/lib/Target/X86/MCTargetDesc/X86ELFRelocationInfo.cpp projects/routing/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp projects/routing/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp projects/routing/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp projects/routing/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h projects/routing/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MachORelocationInfo.cpp projects/routing/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp projects/routing/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp projects/routing/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp projects/routing/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp projects/routing/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h projects/routing/contrib/llvm/lib/Target/X86/X86.h projects/routing/contrib/llvm/lib/Target/X86/X86.td projects/routing/contrib/llvm/lib/Target/X86/X86AsmPrinter.cpp projects/routing/contrib/llvm/lib/Target/X86/X86AsmPrinter.h projects/routing/contrib/llvm/lib/Target/X86/X86CallFrameOptimization.cpp projects/routing/contrib/llvm/lib/Target/X86/X86CallingConv.td projects/routing/contrib/llvm/lib/Target/X86/X86FastISel.cpp projects/routing/contrib/llvm/lib/Target/X86/X86FixupLEAs.cpp projects/routing/contrib/llvm/lib/Target/X86/X86FloatingPoint.cpp projects/routing/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp projects/routing/contrib/llvm/lib/Target/X86/X86FrameLowering.h projects/routing/contrib/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp projects/routing/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp projects/routing/contrib/llvm/lib/Target/X86/X86ISelLowering.h projects/routing/contrib/llvm/lib/Target/X86/X86InstrAVX512.td projects/routing/contrib/llvm/lib/Target/X86/X86InstrArithmetic.td projects/routing/contrib/llvm/lib/Target/X86/X86InstrCompiler.td projects/routing/contrib/llvm/lib/Target/X86/X86InstrControl.td projects/routing/contrib/llvm/lib/Target/X86/X86InstrExtension.td projects/routing/contrib/llvm/lib/Target/X86/X86InstrFMA.td projects/routing/contrib/llvm/lib/Target/X86/X86InstrFPStack.td projects/routing/contrib/llvm/lib/Target/X86/X86InstrFormats.td projects/routing/contrib/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td projects/routing/contrib/llvm/lib/Target/X86/X86InstrInfo.cpp projects/routing/contrib/llvm/lib/Target/X86/X86InstrInfo.h projects/routing/contrib/llvm/lib/Target/X86/X86InstrInfo.td projects/routing/contrib/llvm/lib/Target/X86/X86InstrMMX.td projects/routing/contrib/llvm/lib/Target/X86/X86InstrSGX.td projects/routing/contrib/llvm/lib/Target/X86/X86InstrSSE.td projects/routing/contrib/llvm/lib/Target/X86/X86InstrShiftRotate.td projects/routing/contrib/llvm/lib/Target/X86/X86InstrSystem.td projects/routing/contrib/llvm/lib/Target/X86/X86InstrXOP.td projects/routing/contrib/llvm/lib/Target/X86/X86IntrinsicsInfo.h projects/routing/contrib/llvm/lib/Target/X86/X86MCInstLower.cpp projects/routing/contrib/llvm/lib/Target/X86/X86MachineFunctionInfo.h projects/routing/contrib/llvm/lib/Target/X86/X86PadShortFunction.cpp projects/routing/contrib/llvm/lib/Target/X86/X86RegisterInfo.cpp projects/routing/contrib/llvm/lib/Target/X86/X86RegisterInfo.h projects/routing/contrib/llvm/lib/Target/X86/X86RegisterInfo.td projects/routing/contrib/llvm/lib/Target/X86/X86SchedHaswell.td projects/routing/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp projects/routing/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.h projects/routing/contrib/llvm/lib/Target/X86/X86Subtarget.cpp projects/routing/contrib/llvm/lib/Target/X86/X86Subtarget.h projects/routing/contrib/llvm/lib/Target/X86/X86TargetMachine.cpp projects/routing/contrib/llvm/lib/Target/X86/X86TargetMachine.h projects/routing/contrib/llvm/lib/Target/X86/X86TargetObjectFile.cpp projects/routing/contrib/llvm/lib/Target/X86/X86TargetObjectFile.h projects/routing/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.cpp projects/routing/contrib/llvm/lib/Target/X86/X86VZeroUpper.cpp projects/routing/contrib/llvm/lib/Target/XCore/Disassembler/XCoreDisassembler.cpp projects/routing/contrib/llvm/lib/Target/XCore/InstPrinter/XCoreInstPrinter.cpp projects/routing/contrib/llvm/lib/Target/XCore/InstPrinter/XCoreInstPrinter.h projects/routing/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.cpp projects/routing/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.h projects/routing/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp projects/routing/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.h projects/routing/contrib/llvm/lib/Target/XCore/TargetInfo/XCoreTargetInfo.cpp projects/routing/contrib/llvm/lib/Target/XCore/XCore.h projects/routing/contrib/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp projects/routing/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.cpp projects/routing/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.h projects/routing/contrib/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp projects/routing/contrib/llvm/lib/Target/XCore/XCoreISelLowering.cpp projects/routing/contrib/llvm/lib/Target/XCore/XCoreISelLowering.h projects/routing/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.cpp projects/routing/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.h projects/routing/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.td projects/routing/contrib/llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp projects/routing/contrib/llvm/lib/Target/XCore/XCoreMCInstLower.cpp projects/routing/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp projects/routing/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.h projects/routing/contrib/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.cpp projects/routing/contrib/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.h projects/routing/contrib/llvm/lib/Target/XCore/XCoreSubtarget.cpp projects/routing/contrib/llvm/lib/Target/XCore/XCoreSubtarget.h projects/routing/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp projects/routing/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.h projects/routing/contrib/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp projects/routing/contrib/llvm/lib/Target/XCore/XCoreTargetObjectFile.h projects/routing/contrib/llvm/lib/Target/XCore/XCoreTargetStreamer.h projects/routing/contrib/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp projects/routing/contrib/llvm/lib/Transforms/IPO/ConstantMerge.cpp projects/routing/contrib/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp projects/routing/contrib/llvm/lib/Transforms/IPO/ExtractGV.cpp projects/routing/contrib/llvm/lib/Transforms/IPO/FunctionAttrs.cpp projects/routing/contrib/llvm/lib/Transforms/IPO/GlobalDCE.cpp projects/routing/contrib/llvm/lib/Transforms/IPO/GlobalOpt.cpp projects/routing/contrib/llvm/lib/Transforms/IPO/IPO.cpp projects/routing/contrib/llvm/lib/Transforms/IPO/Inliner.cpp projects/routing/contrib/llvm/lib/Transforms/IPO/LoopExtractor.cpp projects/routing/contrib/llvm/lib/Transforms/IPO/MergeFunctions.cpp projects/routing/contrib/llvm/lib/Transforms/IPO/PartialInlining.cpp projects/routing/contrib/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp projects/routing/contrib/llvm/lib/Transforms/IPO/PruneEH.cpp projects/routing/contrib/llvm/lib/Transforms/IPO/StripSymbols.cpp projects/routing/contrib/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp projects/routing/contrib/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp projects/routing/contrib/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp projects/routing/contrib/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp projects/routing/contrib/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp projects/routing/contrib/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp projects/routing/contrib/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp projects/routing/contrib/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp projects/routing/contrib/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp projects/routing/contrib/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp projects/routing/contrib/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp projects/routing/contrib/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp projects/routing/contrib/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp projects/routing/contrib/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp projects/routing/contrib/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp projects/routing/contrib/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp projects/routing/contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp projects/routing/contrib/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp projects/routing/contrib/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp projects/routing/contrib/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp projects/routing/contrib/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp projects/routing/contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp projects/routing/contrib/llvm/lib/Transforms/ObjCARC/ARCRuntimeEntryPoints.h projects/routing/contrib/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.cpp projects/routing/contrib/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.h projects/routing/contrib/llvm/lib/Transforms/ObjCARC/ObjCARC.h projects/routing/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp projects/routing/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCAliasAnalysis.cpp projects/routing/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCAliasAnalysis.h projects/routing/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp projects/routing/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCExpand.cpp projects/routing/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCOpts.cpp projects/routing/contrib/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.cpp projects/routing/contrib/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.h projects/routing/contrib/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/ADCE.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/AlignmentFromAssumptions.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/ConstantProp.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/DCE.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/EarlyCSE.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/GVN.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/JumpThreading.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/LICM.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/LoadCombine.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/LoopDeletion.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/LoopRerollPass.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/LoopRotation.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/MergedLoadStoreMotion.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/PartiallyInlineLibCalls.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/Reassociate.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/SCCP.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/SROA.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/SampleProfile.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/Scalar.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/Scalarizer.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/SeparateConstOffsetFromGEP.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/Sink.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp projects/routing/contrib/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/ASanStackFrameLayout.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/AddDiscriminators.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/BuildLibCalls.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/CloneFunction.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/CloneModule.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/CodeExtractor.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/CtorUtils.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/DemoteRegToStack.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/GlobalStatus.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/IntegerDivision.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/LCSSA.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/Local.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/LoopSimplify.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/LoopUnroll.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/LowerSwitch.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/ModuleUtils.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/SSAUpdater.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/SimplifyCFG.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/SymbolRewriter.cpp projects/routing/contrib/llvm/lib/Transforms/Utils/ValueMapper.cpp projects/routing/contrib/llvm/lib/Transforms/Vectorize/BBVectorize.cpp projects/routing/contrib/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp projects/routing/contrib/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp projects/routing/contrib/llvm/lib/Transforms/Vectorize/Vectorize.cpp projects/routing/contrib/llvm/patches/README.TXT projects/routing/contrib/llvm/tools/bugpoint/BugDriver.cpp projects/routing/contrib/llvm/tools/bugpoint/CrashDebugger.cpp projects/routing/contrib/llvm/tools/bugpoint/ExtractFunction.cpp projects/routing/contrib/llvm/tools/bugpoint/Miscompilation.cpp projects/routing/contrib/llvm/tools/bugpoint/OptimizerDriver.cpp projects/routing/contrib/llvm/tools/bugpoint/ToolRunner.h projects/routing/contrib/llvm/tools/bugpoint/bugpoint.cpp projects/routing/contrib/llvm/tools/clang/FREEBSD-Xlist projects/routing/contrib/llvm/tools/clang/LICENSE.TXT projects/routing/contrib/llvm/tools/clang/include/clang-c/BuildSystem.h projects/routing/contrib/llvm/tools/clang/include/clang-c/Index.h projects/routing/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMT.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/ASTConsumer.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/ASTImporter.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/ASTMutationListener.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/ASTUnresolvedSet.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/ASTVector.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/Attr.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/AttrIterator.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/CXXInheritance.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/CanonicalType.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/CommentCommandTraits.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/CommentLexer.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/CommentParser.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/CommentSema.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/DataRecursiveASTVisitor.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/Decl.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/DeclBase.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/DeclCXX.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/DeclContextInternals.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/DeclObjC.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/DeclTemplate.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/DeclarationName.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/EvaluatedExprVisitor.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/Expr.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/ExprCXX.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/ExprObjC.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/ExternalASTSource.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/LambdaCapture.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/Mangle.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/NSAPI.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/OpenMPClause.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/RecordLayout.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/Redeclarable.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/Stmt.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/StmtCXX.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/StmtIterator.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/StmtObjC.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/StmtOpenMP.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/TemplateBase.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/Type.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/TypeLoc.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/TypeNodes.def projects/routing/contrib/llvm/tools/clang/include/clang/AST/UnresolvedSet.h projects/routing/contrib/llvm/tools/clang/include/clang/AST/VTableBuilder.h projects/routing/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchers.h projects/routing/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersInternal.h projects/routing/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersMacros.h projects/routing/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Parser.h projects/routing/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Registry.h projects/routing/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/VariantValue.h projects/routing/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/Dominators.h projects/routing/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.h projects/routing/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/LiveVariables.h projects/routing/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafety.h projects/routing/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyCommon.h projects/routing/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTIL.h projects/routing/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyUtil.h projects/routing/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisContext.h projects/routing/contrib/llvm/tools/clang/include/clang/Analysis/CFG.h projects/routing/contrib/llvm/tools/clang/include/clang/Analysis/Support/BumpVector.h projects/routing/contrib/llvm/tools/clang/include/clang/Basic/ABI.h projects/routing/contrib/llvm/tools/clang/include/clang/Basic/Attr.td projects/routing/contrib/llvm/tools/clang/include/clang/Basic/AttrDocs.td projects/routing/contrib/llvm/tools/clang/include/clang/Basic/Builtins.def projects/routing/contrib/llvm/tools/clang/include/clang/Basic/Builtins.h projects/routing/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAArch64.def projects/routing/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsARM.def projects/routing/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNVPTX.def projects/routing/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsPPC.def projects/routing/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def projects/routing/contrib/llvm/tools/clang/include/clang/Basic/DeclNodes.td projects/routing/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.h projects/routing/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td projects/routing/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommentKinds.td projects/routing/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td projects/routing/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td projects/routing/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td projects/routing/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td projects/routing/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h projects/routing/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td projects/routing/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.def projects/routing/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.h projects/routing/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td projects/routing/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td projects/routing/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td projects/routing/contrib/llvm/tools/clang/include/clang/Basic/FileManager.h projects/routing/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h projects/routing/contrib/llvm/tools/clang/include/clang/Basic/LLVM.h projects/routing/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.def projects/routing/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.h projects/routing/contrib/llvm/tools/clang/include/clang/Basic/Linkage.h projects/routing/contrib/llvm/tools/clang/include/clang/Basic/Module.h projects/routing/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.def projects/routing/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.h projects/routing/contrib/llvm/tools/clang/include/clang/Basic/PlistSupport.h projects/routing/contrib/llvm/tools/clang/include/clang/Basic/SanitizerBlacklist.h projects/routing/contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.def projects/routing/contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.h projects/routing/contrib/llvm/tools/clang/include/clang/Basic/SourceManager.h projects/routing/contrib/llvm/tools/clang/include/clang/Basic/SourceManagerInternals.h projects/routing/contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h projects/routing/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td projects/routing/contrib/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h projects/routing/contrib/llvm/tools/clang/include/clang/Basic/TargetInfo.h projects/routing/contrib/llvm/tools/clang/include/clang/Basic/TargetOptions.h projects/routing/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def projects/routing/contrib/llvm/tools/clang/include/clang/Basic/TypeTraits.h projects/routing/contrib/llvm/tools/clang/include/clang/Basic/VersionTuple.h projects/routing/contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td projects/routing/contrib/llvm/tools/clang/include/clang/CodeGen/BackendUtil.h projects/routing/contrib/llvm/tools/clang/include/clang/CodeGen/CGFunctionInfo.h projects/routing/contrib/llvm/tools/clang/include/clang/CodeGen/CodeGenABITypes.h projects/routing/contrib/llvm/tools/clang/include/clang/CodeGen/CodeGenAction.h projects/routing/contrib/llvm/tools/clang/include/clang/CodeGen/ModuleBuilder.h projects/routing/contrib/llvm/tools/clang/include/clang/Driver/Action.h projects/routing/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td projects/routing/contrib/llvm/tools/clang/include/clang/Driver/CLCompatOptions.td projects/routing/contrib/llvm/tools/clang/include/clang/Driver/Compilation.h projects/routing/contrib/llvm/tools/clang/include/clang/Driver/Driver.h projects/routing/contrib/llvm/tools/clang/include/clang/Driver/Job.h projects/routing/contrib/llvm/tools/clang/include/clang/Driver/Multilib.h projects/routing/contrib/llvm/tools/clang/include/clang/Driver/Options.td projects/routing/contrib/llvm/tools/clang/include/clang/Driver/SanitizerArgs.h projects/routing/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h projects/routing/contrib/llvm/tools/clang/include/clang/Driver/Types.def projects/routing/contrib/llvm/tools/clang/include/clang/Driver/Types.h projects/routing/contrib/llvm/tools/clang/include/clang/Format/Format.h projects/routing/contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.h projects/routing/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.def projects/routing/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h projects/routing/contrib/llvm/tools/clang/include/clang/Frontend/CommandLineSourceLoc.h projects/routing/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h projects/routing/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h projects/routing/contrib/llvm/tools/clang/include/clang/Frontend/DependencyOutputOptions.h projects/routing/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h projects/routing/contrib/llvm/tools/clang/include/clang/Frontend/FrontendActions.h projects/routing/contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h projects/routing/contrib/llvm/tools/clang/include/clang/Frontend/MultiplexConsumer.h projects/routing/contrib/llvm/tools/clang/include/clang/Frontend/PreprocessorOutputOptions.h projects/routing/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h projects/routing/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h projects/routing/contrib/llvm/tools/clang/include/clang/Frontend/Utils.h projects/routing/contrib/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h projects/routing/contrib/llvm/tools/clang/include/clang/Index/USRGeneration.h projects/routing/contrib/llvm/tools/clang/include/clang/Lex/ExternalPreprocessorSource.h projects/routing/contrib/llvm/tools/clang/include/clang/Lex/HeaderMap.h projects/routing/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearch.h projects/routing/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearchOptions.h projects/routing/contrib/llvm/tools/clang/include/clang/Lex/Lexer.h projects/routing/contrib/llvm/tools/clang/include/clang/Lex/LiteralSupport.h projects/routing/contrib/llvm/tools/clang/include/clang/Lex/MacroArgs.h projects/routing/contrib/llvm/tools/clang/include/clang/Lex/MacroInfo.h projects/routing/contrib/llvm/tools/clang/include/clang/Lex/ModuleLoader.h projects/routing/contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h projects/routing/contrib/llvm/tools/clang/include/clang/Lex/PPCallbacks.h projects/routing/contrib/llvm/tools/clang/include/clang/Lex/PPConditionalDirectiveRecord.h projects/routing/contrib/llvm/tools/clang/include/clang/Lex/PTHLexer.h projects/routing/contrib/llvm/tools/clang/include/clang/Lex/PTHManager.h projects/routing/contrib/llvm/tools/clang/include/clang/Lex/Pragma.h projects/routing/contrib/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h projects/routing/contrib/llvm/tools/clang/include/clang/Lex/Preprocessor.h projects/routing/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorLexer.h projects/routing/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorOptions.h projects/routing/contrib/llvm/tools/clang/include/clang/Lex/Token.h projects/routing/contrib/llvm/tools/clang/include/clang/Lex/TokenLexer.h projects/routing/contrib/llvm/tools/clang/include/clang/Parse/Parser.h projects/routing/contrib/llvm/tools/clang/include/clang/Rewrite/Core/DeltaTree.h projects/routing/contrib/llvm/tools/clang/include/clang/Rewrite/Core/RewriteRope.h projects/routing/contrib/llvm/tools/clang/include/clang/Rewrite/Core/Rewriter.h projects/routing/contrib/llvm/tools/clang/include/clang/Rewrite/Core/TokenRewriter.h projects/routing/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/FixItRewriter.h projects/routing/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/FrontendActions.h projects/routing/contrib/llvm/tools/clang/include/clang/Sema/AttributeList.h projects/routing/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h projects/routing/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h projects/routing/contrib/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h projects/routing/contrib/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h projects/routing/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h projects/routing/contrib/llvm/tools/clang/include/clang/Sema/Lookup.h projects/routing/contrib/llvm/tools/clang/include/clang/Sema/MultiplexExternalSemaSource.h projects/routing/contrib/llvm/tools/clang/include/clang/Sema/Overload.h projects/routing/contrib/llvm/tools/clang/include/clang/Sema/Ownership.h projects/routing/contrib/llvm/tools/clang/include/clang/Sema/Scope.h projects/routing/contrib/llvm/tools/clang/include/clang/Sema/ScopeInfo.h projects/routing/contrib/llvm/tools/clang/include/clang/Sema/Sema.h projects/routing/contrib/llvm/tools/clang/include/clang/Sema/SemaInternal.h projects/routing/contrib/llvm/tools/clang/include/clang/Sema/Template.h projects/routing/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h projects/routing/contrib/llvm/tools/clang/include/clang/Sema/TypoCorrection.h projects/routing/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h projects/routing/contrib/llvm/tools/clang/include/clang/Serialization/ASTDeserializationListener.h projects/routing/contrib/llvm/tools/clang/include/clang/Serialization/ASTReader.h projects/routing/contrib/llvm/tools/clang/include/clang/Serialization/ASTWriter.h projects/routing/contrib/llvm/tools/clang/include/clang/Serialization/ContinuousRangeMap.h projects/routing/contrib/llvm/tools/clang/include/clang/Serialization/GlobalModuleIndex.h projects/routing/contrib/llvm/tools/clang/include/clang/Serialization/Module.h projects/routing/contrib/llvm/tools/clang/include/clang/Serialization/ModuleManager.h projects/routing/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ObjCRetainCount.h projects/routing/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h projects/routing/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h projects/routing/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h projects/routing/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h projects/routing/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h projects/routing/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerRegistry.h projects/routing/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h projects/routing/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h projects/routing/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h projects/routing/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerHelpers.h projects/routing/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h projects/routing/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Environment.h projects/routing/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h projects/routing/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h projects/routing/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h projects/routing/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h projects/routing/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h projects/routing/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h projects/routing/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h projects/routing/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h projects/routing/contrib/llvm/tools/clang/include/clang/Tooling/Core/Replacement.h projects/routing/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring.h projects/routing/contrib/llvm/tools/clang/include/clang/Tooling/Tooling.h projects/routing/contrib/llvm/tools/clang/include/clang/module.modulemap projects/routing/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMT.cpp projects/routing/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMTActions.cpp projects/routing/contrib/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp projects/routing/contrib/llvm/tools/clang/lib/ARCMigrate/PlistReporter.cpp projects/routing/contrib/llvm/tools/clang/lib/ARCMigrate/TransAPIUses.cpp projects/routing/contrib/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp projects/routing/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnusedInitDelegate.cpp projects/routing/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp projects/routing/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.h projects/routing/contrib/llvm/tools/clang/lib/AST/ASTConsumer.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/ASTDumper.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/ASTImporter.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/AttrImpl.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/CXXABI.h projects/routing/contrib/llvm/tools/clang/lib/AST/CXXInheritance.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/CommentLexer.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/Decl.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/DeclBase.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/DeclCXX.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/DeclGroup.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/DeclObjC.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/DeclPrinter.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/DeclTemplate.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/Expr.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/ExprCXX.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/ExprClassification.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/ExternalASTSource.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/InheritViz.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/ItaniumCXXABI.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/NSAPI.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/ParentMap.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/Stmt.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/StmtIterator.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/StmtProfile.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/Type.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/TypeLoc.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/TypePrinter.cpp projects/routing/contrib/llvm/tools/clang/lib/AST/VTableBuilder.cpp projects/routing/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchFinder.cpp projects/routing/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchersInternal.cpp projects/routing/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Diagnostics.cpp projects/routing/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Marshallers.h projects/routing/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Parser.cpp projects/routing/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp projects/routing/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/VariantValue.cpp projects/routing/contrib/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp projects/routing/contrib/llvm/tools/clang/lib/Analysis/CFG.cpp projects/routing/contrib/llvm/tools/clang/lib/Analysis/CallGraph.cpp projects/routing/contrib/llvm/tools/clang/lib/Analysis/CocoaConventions.cpp projects/routing/contrib/llvm/tools/clang/lib/Analysis/Consumed.cpp projects/routing/contrib/llvm/tools/clang/lib/Analysis/FormatString.cpp projects/routing/contrib/llvm/tools/clang/lib/Analysis/LiveVariables.cpp projects/routing/contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp projects/routing/contrib/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.cpp projects/routing/contrib/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp projects/routing/contrib/llvm/tools/clang/lib/Analysis/ThreadSafetyCommon.cpp projects/routing/contrib/llvm/tools/clang/lib/Analysis/ThreadSafetyTIL.cpp projects/routing/contrib/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp projects/routing/contrib/llvm/tools/clang/lib/Basic/Diagnostic.cpp projects/routing/contrib/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp projects/routing/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp projects/routing/contrib/llvm/tools/clang/lib/Basic/FileSystemStatCache.cpp projects/routing/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp projects/routing/contrib/llvm/tools/clang/lib/Basic/LangOptions.cpp projects/routing/contrib/llvm/tools/clang/lib/Basic/Module.cpp projects/routing/contrib/llvm/tools/clang/lib/Basic/OpenMPKinds.cpp projects/routing/contrib/llvm/tools/clang/lib/Basic/SanitizerBlacklist.cpp projects/routing/contrib/llvm/tools/clang/lib/Basic/Sanitizers.cpp projects/routing/contrib/llvm/tools/clang/lib/Basic/SourceLocation.cpp projects/routing/contrib/llvm/tools/clang/lib/Basic/SourceManager.cpp projects/routing/contrib/llvm/tools/clang/lib/Basic/TargetInfo.cpp projects/routing/contrib/llvm/tools/clang/lib/Basic/Targets.cpp projects/routing/contrib/llvm/tools/clang/lib/Basic/Version.cpp projects/routing/contrib/llvm/tools/clang/lib/Basic/VersionTuple.cpp projects/routing/contrib/llvm/tools/clang/lib/Basic/VirtualFileSystem.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/ABIInfo.h projects/routing/contrib/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGAtomic.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGBuilder.h projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGCUDANV.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.h projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGCXX.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.h projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGCall.h projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGClass.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.h projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGDecl.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGException.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGExpr.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGLoopInfo.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGLoopInfo.h projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.h projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayout.h projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGStmtOpenMP.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGVTT.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CGValue.h projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CodeGenABITypes.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CodeGenAction.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.h projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CodeGenPGO.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CodeGenPGO.h projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h projects/routing/contrib/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/EHScopeStack.h projects/routing/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.h projects/routing/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp projects/routing/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.h projects/routing/contrib/llvm/tools/clang/lib/Driver/Action.cpp projects/routing/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp projects/routing/contrib/llvm/tools/clang/lib/Driver/CrossWindowsToolChain.cpp projects/routing/contrib/llvm/tools/clang/lib/Driver/Driver.cpp projects/routing/contrib/llvm/tools/clang/lib/Driver/Job.cpp projects/routing/contrib/llvm/tools/clang/lib/Driver/MSVCToolChain.cpp projects/routing/contrib/llvm/tools/clang/lib/Driver/Multilib.cpp projects/routing/contrib/llvm/tools/clang/lib/Driver/SanitizerArgs.cpp projects/routing/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp projects/routing/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp projects/routing/contrib/llvm/tools/clang/lib/Driver/ToolChains.h projects/routing/contrib/llvm/tools/clang/lib/Driver/Tools.cpp projects/routing/contrib/llvm/tools/clang/lib/Driver/Tools.h projects/routing/contrib/llvm/tools/clang/lib/Driver/Types.cpp projects/routing/contrib/llvm/tools/clang/lib/Edit/EditedSource.cpp projects/routing/contrib/llvm/tools/clang/lib/Format/BreakableToken.cpp projects/routing/contrib/llvm/tools/clang/lib/Format/ContinuationIndenter.cpp projects/routing/contrib/llvm/tools/clang/lib/Format/ContinuationIndenter.h projects/routing/contrib/llvm/tools/clang/lib/Format/Format.cpp projects/routing/contrib/llvm/tools/clang/lib/Format/FormatToken.cpp projects/routing/contrib/llvm/tools/clang/lib/Format/FormatToken.h projects/routing/contrib/llvm/tools/clang/lib/Format/TokenAnnotator.cpp projects/routing/contrib/llvm/tools/clang/lib/Format/TokenAnnotator.h projects/routing/contrib/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.cpp projects/routing/contrib/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.h projects/routing/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.cpp projects/routing/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.h projects/routing/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.cpp projects/routing/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.h projects/routing/contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/ASTMerge.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/CacheTokens.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/DependencyFile.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/FrontendAction.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/FrontendActions.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/FrontendOptions.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/HeaderIncludeGen.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/ModuleDependencyCollector.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/MultiplexConsumer.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/Rewrite/FixItRewriter.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/Rewrite/FrontendActions.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/Rewrite/InclusionRewriter.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/Rewrite/RewriteObjC.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticBuffer.cpp projects/routing/contrib/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp projects/routing/contrib/llvm/tools/clang/lib/Headers/Intrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/__stddef_max_align_t.h projects/routing/contrib/llvm/tools/clang/lib/Headers/__wmmintrin_aes.h projects/routing/contrib/llvm/tools/clang/lib/Headers/adxintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/altivec.h projects/routing/contrib/llvm/tools/clang/lib/Headers/ammintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/arm_acle.h projects/routing/contrib/llvm/tools/clang/lib/Headers/avx2intrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/avx512bwintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/avx512erintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/avx512fintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/avx512vlbwintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/avx512vlintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/avxintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/bmi2intrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/bmiintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/emmintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/f16cintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/fma4intrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/fmaintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/immintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/lzcntintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/mm3dnow.h projects/routing/contrib/llvm/tools/clang/lib/Headers/mmintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/module.modulemap projects/routing/contrib/llvm/tools/clang/lib/Headers/pmmintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/popcntintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/rdseedintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/rtmintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/shaintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/smmintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/stdatomic.h projects/routing/contrib/llvm/tools/clang/lib/Headers/tbmintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/tmmintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/unwind.h projects/routing/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h projects/routing/contrib/llvm/tools/clang/lib/Headers/xopintrin.h projects/routing/contrib/llvm/tools/clang/lib/Index/SimpleFormatContext.h projects/routing/contrib/llvm/tools/clang/lib/Index/USRGeneration.cpp projects/routing/contrib/llvm/tools/clang/lib/Lex/HeaderSearch.cpp projects/routing/contrib/llvm/tools/clang/lib/Lex/Lexer.cpp projects/routing/contrib/llvm/tools/clang/lib/Lex/LiteralSupport.cpp projects/routing/contrib/llvm/tools/clang/lib/Lex/MacroArgs.cpp projects/routing/contrib/llvm/tools/clang/lib/Lex/MacroInfo.cpp projects/routing/contrib/llvm/tools/clang/lib/Lex/ModuleMap.cpp projects/routing/contrib/llvm/tools/clang/lib/Lex/PPConditionalDirectiveRecord.cpp projects/routing/contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp projects/routing/contrib/llvm/tools/clang/lib/Lex/PPExpressions.cpp projects/routing/contrib/llvm/tools/clang/lib/Lex/PPLexerChange.cpp projects/routing/contrib/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp projects/routing/contrib/llvm/tools/clang/lib/Lex/PTHLexer.cpp projects/routing/contrib/llvm/tools/clang/lib/Lex/Pragma.cpp projects/routing/contrib/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp projects/routing/contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp projects/routing/contrib/llvm/tools/clang/lib/Lex/ScratchBuffer.cpp projects/routing/contrib/llvm/tools/clang/lib/Lex/TokenConcatenation.cpp projects/routing/contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp projects/routing/contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp projects/routing/contrib/llvm/tools/clang/lib/Parse/ParseDecl.cpp projects/routing/contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp projects/routing/contrib/llvm/tools/clang/lib/Parse/ParseExpr.cpp projects/routing/contrib/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp projects/routing/contrib/llvm/tools/clang/lib/Parse/ParseInit.cpp projects/routing/contrib/llvm/tools/clang/lib/Parse/ParseObjc.cpp projects/routing/contrib/llvm/tools/clang/lib/Parse/ParseOpenMP.cpp projects/routing/contrib/llvm/tools/clang/lib/Parse/ParsePragma.cpp projects/routing/contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp projects/routing/contrib/llvm/tools/clang/lib/Parse/ParseStmtAsm.cpp projects/routing/contrib/llvm/tools/clang/lib/Parse/ParseTemplate.cpp projects/routing/contrib/llvm/tools/clang/lib/Parse/ParseTentative.cpp projects/routing/contrib/llvm/tools/clang/lib/Parse/Parser.cpp projects/routing/contrib/llvm/tools/clang/lib/Parse/RAIIObjectsForParser.h projects/routing/contrib/llvm/tools/clang/lib/Rewrite/RewriteRope.cpp projects/routing/contrib/llvm/tools/clang/lib/Rewrite/Rewriter.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/DelayedDiagnostic.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/IdentifierResolver.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/MultiplexExternalSemaSource.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/Scope.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/ScopeInfo.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/Sema.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaAttr.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaCUDA.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaCast.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaChecking.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaExprMember.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaFixItUtils.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaLambda.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaLookup.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaOpenMP.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaOverload.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaStmt.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaStmtAsm.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaStmtAttr.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaTemplate.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/SemaType.cpp projects/routing/contrib/llvm/tools/clang/lib/Sema/TreeTransform.h projects/routing/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.cpp projects/routing/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.h projects/routing/contrib/llvm/tools/clang/lib/Serialization/ASTReader.cpp projects/routing/contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp projects/routing/contrib/llvm/tools/clang/lib/Serialization/ASTReaderInternals.h projects/routing/contrib/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp projects/routing/contrib/llvm/tools/clang/lib/Serialization/ASTWriter.cpp projects/routing/contrib/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp projects/routing/contrib/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp projects/routing/contrib/llvm/tools/clang/lib/Serialization/GeneratePCH.cpp projects/routing/contrib/llvm/tools/clang/lib/Serialization/GlobalModuleIndex.cpp projects/routing/contrib/llvm/tools/clang/lib/Serialization/Module.cpp projects/routing/contrib/llvm/tools/clang/lib/Serialization/ModuleManager.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Checkers.td projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InterCheckerAPI.h projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LLVMConventionsChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TestAfterDivZeroChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Checker.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerHelpers.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerRegistry.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp projects/routing/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.h projects/routing/contrib/llvm/tools/clang/lib/Tooling/CommonOptionsParser.cpp projects/routing/contrib/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp projects/routing/contrib/llvm/tools/clang/lib/Tooling/Core/Replacement.cpp projects/routing/contrib/llvm/tools/clang/lib/Tooling/FileMatchTrie.cpp projects/routing/contrib/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.cpp projects/routing/contrib/llvm/tools/clang/lib/Tooling/Refactoring.cpp projects/routing/contrib/llvm/tools/clang/lib/Tooling/Tooling.cpp projects/routing/contrib/llvm/tools/clang/tools/driver/cc1_main.cpp projects/routing/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp projects/routing/contrib/llvm/tools/clang/tools/driver/driver.cpp projects/routing/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp projects/routing/contrib/llvm/tools/clang/utils/TableGen/ClangCommentCommandInfoEmitter.cpp projects/routing/contrib/llvm/tools/clang/utils/TableGen/ClangCommentHTMLTagsEmitter.cpp projects/routing/contrib/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp projects/routing/contrib/llvm/tools/clang/utils/TableGen/NeonEmitter.cpp projects/routing/contrib/llvm/tools/llc/llc.cpp projects/routing/contrib/llvm/tools/lldb/FREEBSD-Xlist projects/routing/contrib/llvm/tools/lldb/include/lldb/API/LLDB.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBAddress.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBBlock.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBBreakpoint.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBBreakpointLocation.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBBroadcaster.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBCommandInterpreter.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBCommandReturnObject.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBCommunication.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBCompileUnit.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBData.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBDebugger.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBDeclaration.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBDefines.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBError.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBEvent.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBExecutionContext.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBExpressionOptions.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBFileSpec.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBFileSpecList.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBFrame.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBFunction.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBHostOS.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBInstruction.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBInstructionList.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBLineEntry.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBListener.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBModule.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBModuleSpec.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBPlatform.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBProcess.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBQueue.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBQueueItem.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBSection.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBSourceManager.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBStream.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBStringList.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBSymbol.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBSymbolContext.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBSymbolContextList.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBTarget.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBThread.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBThreadCollection.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBThreadPlan.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBType.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBTypeCategory.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBTypeEnumMember.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBTypeFilter.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBTypeFormat.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBTypeNameSpecifier.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBTypeSummary.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBTypeSynthetic.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBUnixSignals.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBValue.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBValueList.h projects/routing/contrib/llvm/tools/lldb/include/lldb/API/SBWatchpoint.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Breakpoint.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocation.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointOptions.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileLine.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileRegex.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSite.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Breakpoint/StoppointLocation.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Watchpoint.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/Address.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/ArchSpec.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/Broadcaster.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/ClangForward.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/Communication.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/Connection.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/ConnectionMachPort.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/ConnectionSharedMemory.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/ConstString.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/DataEncoder.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/DataExtractor.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/Debugger.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/Disassembler.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/IOHandler.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/Log.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/Mangled.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/Module.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/ModuleList.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/ModuleSpec.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/PluginManager.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/RangeMap.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/RegularExpression.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/StreamAsynchronousIO.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/StreamFile.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/StringList.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/StructuredData.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/ValueObject.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectChild.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectDynamicValue.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h projects/routing/contrib/llvm/tools/lldb/include/lldb/DataFormatters/CXXFormatterFunctions.h projects/routing/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatManager.h projects/routing/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeFormat.h projects/routing/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSummary.h projects/routing/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSynthetic.h projects/routing/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeValidator.h projects/routing/contrib/llvm/tools/lldb/include/lldb/DataFormatters/ValueObjectPrinter.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Expression/ASTResultSynthesizer.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Expression/ASTStructExtractor.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Expression/ClangASTSource.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Expression/ClangExpressionDeclMap.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Expression/ClangExpressionParser.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Expression/ClangFunction.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Expression/ClangModulesDeclVendor.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Expression/ClangPersistentVariables.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Expression/ClangUserExpression.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Expression/IRExecutionUnit.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Expression/IRForTarget.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Expression/IRInterpreter.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Expression/IRMemoryMap.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Expression/IRToDWARF.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/Editline.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/File.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/FileSpec.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/FileSystem.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/Host.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/HostInfo.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/HostInfoBase.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/PipeBase.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/Socket.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/SocketAddress.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/posix/ConnectionFileDescriptorPosix.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostProcessPosix.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostThreadPosix.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/posix/PipePosix.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Host/posix/ProcessLauncherPosix.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/Args.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandInterpreter.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObject.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupPlatform.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValue.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArch.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArray.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueBoolean.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueChar.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueDictionary.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueEnumeration.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpec.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpecList.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormat.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValuePathMappings.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueProperties.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueRegex.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueSInt64.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueString.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUInt64.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUUID.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValues.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/PythonDataObjects.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/ScriptInterpreter.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Interpreter/ScriptInterpreterPython.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTContext.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTType.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangExternalASTSourceCallbacks.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Symbol/CompileUnit.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Symbol/DWARFCallFrameInfo.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Symbol/FuncUnwinders.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Symbol/Function.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectFile.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Symbol/Symbol.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolContext.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolFile.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolVendor.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Symbol/Symtab.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Symbol/Type.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindPlan.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Symbol/Variable.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Target/ABI.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Target/CPPLanguageRuntime.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Target/FileAction.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Target/LanguageRuntime.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Target/Memory.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Target/ObjCLanguageRuntime.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Target/Platform.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Target/Process.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Target/ProcessInfo.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Target/ProcessLaunchInfo.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Target/SectionLoadHistory.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Target/StopInfo.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Target/Target.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Target/Thread.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunction.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallUserExpression.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanPython.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Target/UnixSignals.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Utility/AnsiTerminal.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Utility/ProcessStructReader.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Utility/PseudoTerminal.h projects/routing/contrib/llvm/tools/lldb/include/lldb/Utility/SharingPtr.h projects/routing/contrib/llvm/tools/lldb/include/lldb/lldb-defines.h projects/routing/contrib/llvm/tools/lldb/include/lldb/lldb-enumerations.h projects/routing/contrib/llvm/tools/lldb/include/lldb/lldb-forward.h projects/routing/contrib/llvm/tools/lldb/include/lldb/lldb-private-forward.h projects/routing/contrib/llvm/tools/lldb/include/lldb/lldb-private-interfaces.h projects/routing/contrib/llvm/tools/lldb/include/lldb/lldb-private-types.h projects/routing/contrib/llvm/tools/lldb/include/lldb/lldb-private.h projects/routing/contrib/llvm/tools/lldb/source/API/SBAddress.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBBlock.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBCommandInterpreter.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBDebugger.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBEvent.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBExpressionOptions.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBFileSpec.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBFrame.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBFunction.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBInstruction.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBInstructionList.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBListener.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBModule.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBPlatform.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBProcess.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBQueue.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBQueueItem.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBSourceManager.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBStream.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBSymbol.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBTarget.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBThread.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBThreadPlan.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBType.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBTypeCategory.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBTypeFilter.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBTypeFormat.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBTypeNameSpecifier.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBTypeSummary.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBTypeSynthetic.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBUnixSignals.cpp projects/routing/contrib/llvm/tools/lldb/source/API/SBValue.cpp projects/routing/contrib/llvm/tools/lldb/source/Breakpoint/Breakpoint.cpp projects/routing/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocation.cpp projects/routing/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocationCollection.cpp projects/routing/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolver.cpp projects/routing/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverAddress.cpp projects/routing/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp projects/routing/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp projects/routing/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointSite.cpp projects/routing/contrib/llvm/tools/lldb/source/Breakpoint/StoppointLocation.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandCompletions.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectApropos.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectArgs.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpoint.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectDisassemble.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectExpression.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectFrame.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectGUI.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.h projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectLog.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectMemory.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectMultiword.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlatform.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectProcess.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectQuit.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectRegister.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectSettings.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectSource.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectSyntax.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectTarget.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectThread.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectType.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectVersion.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.cpp projects/routing/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/Address.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/AddressResolver.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/AddressResolverFileLine.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/AddressResolverName.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/ArchSpec.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/Broadcaster.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/Communication.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/ConnectionMachPort.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/ConnectionSharedMemory.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/ConstString.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/DataBufferHeap.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/DataBufferMemoryMap.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/DataEncoder.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/DataExtractor.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/Debugger.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/Disassembler.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/DynamicLoader.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/Error.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/FastDemangle.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/FileLineResolver.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/IOHandler.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/Language.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/Listener.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/Log.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/Mangled.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/Module.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/ModuleList.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/PluginManager.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/RegisterValue.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/RegularExpression.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/Scalar.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/SearchFilter.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/Section.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/SourceManager.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/StreamAsynchronousIO.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/StreamFile.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/StringList.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/StructuredData.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/UUID.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/UserSettingsController.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/Value.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/ValueObject.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/ValueObjectChild.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResult.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/ValueObjectDynamicValue.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/ValueObjectMemory.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/ValueObjectSyntheticFilter.cpp projects/routing/contrib/llvm/tools/lldb/source/Core/ValueObjectVariable.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/CF.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/CXXFormatterFunctions.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/Cocoa.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/DataVisualization.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/FormatCache.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/FormatManager.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/LibCxx.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/LibCxxInitializerList.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/LibCxxList.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/LibCxxMap.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/LibCxxUnorderedMap.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/LibCxxVector.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/LibStdcpp.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/NSArray.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/NSDictionary.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/NSIndexPath.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/NSSet.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/StringPrinter.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategory.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategoryMap.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/TypeFormat.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/TypeSummary.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/TypeSynthetic.cpp projects/routing/contrib/llvm/tools/lldb/source/DataFormatters/ValueObjectPrinter.cpp projects/routing/contrib/llvm/tools/lldb/source/Expression/ASTResultSynthesizer.cpp projects/routing/contrib/llvm/tools/lldb/source/Expression/ASTStructExtractor.cpp projects/routing/contrib/llvm/tools/lldb/source/Expression/ClangASTSource.cpp projects/routing/contrib/llvm/tools/lldb/source/Expression/ClangExpressionDeclMap.cpp projects/routing/contrib/llvm/tools/lldb/source/Expression/ClangExpressionParser.cpp projects/routing/contrib/llvm/tools/lldb/source/Expression/ClangModulesDeclVendor.cpp projects/routing/contrib/llvm/tools/lldb/source/Expression/ClangUserExpression.cpp projects/routing/contrib/llvm/tools/lldb/source/Expression/DWARFExpression.cpp projects/routing/contrib/llvm/tools/lldb/source/Expression/ExpressionSourceCode.cpp projects/routing/contrib/llvm/tools/lldb/source/Expression/IRExecutionUnit.cpp projects/routing/contrib/llvm/tools/lldb/source/Expression/IRForTarget.cpp projects/routing/contrib/llvm/tools/lldb/source/Expression/IRInterpreter.cpp projects/routing/contrib/llvm/tools/lldb/source/Expression/IRMemoryMap.cpp projects/routing/contrib/llvm/tools/lldb/source/Expression/Materializer.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/common/Editline.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/common/File.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/common/FileSpec.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/common/Host.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/common/HostInfoBase.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpoint.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpointList.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/common/NativeProcessProtocol.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/common/NativeThreadProtocol.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/common/Socket.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/common/SocketAddress.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/common/SoftwareBreakpoint.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/common/Symbols.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/common/Terminal.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/common/ThreadLauncher.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/freebsd/Host.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/freebsd/HostThreadFreeBSD.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/freebsd/ThisThread.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/posix/FileSystem.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/posix/HostInfoPosix.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/posix/HostProcessPosix.cpp projects/routing/contrib/llvm/tools/lldb/source/Host/posix/PipePosix.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/Args.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/CommandHistory.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/CommandInterpreter.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/CommandObject.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectRegexCommand.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectScript.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupBoolean.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupFile.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupFormat.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupOutputFile.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupPlatform.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupString.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupUInt64.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupUUID.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupVariable.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupWatchpoint.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionValue.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArch.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArray.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionValueBoolean.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionValueChar.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionValueDictionary.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionValueEnumeration.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpec.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpecLIst.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormat.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionValuePathMappings.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionValueProperties.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionValueRegex.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionValueSInt64.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionValueString.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionValueUInt64.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/OptionValueUUID.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/Options.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/Property.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/PythonDataObjects.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/ScriptInterpreter.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/ScriptInterpreterNone.cpp projects/routing/contrib/llvm/tools/lldb/source/Interpreter/ScriptInterpreterPython.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/AddressSanitizer/AddressSanitizerRuntime.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/ObjectContainerBSDArchive.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessMessage.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessMessage.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/FreeBSDSignals.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/FreeBSDSignals.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_x86_64.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_x86_64.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_powerpc.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoInterface.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_i386.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips64.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_powerpc.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_x86_64.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ThreadMemory.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-x86-register-enums.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_powerpc.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_powerpc.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ThreadElfCore.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ThreadElfCore.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp projects/routing/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.h projects/routing/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.cpp projects/routing/contrib/llvm/tools/lldb/source/Symbol/Block.cpp projects/routing/contrib/llvm/tools/lldb/source/Symbol/ClangASTContext.cpp projects/routing/contrib/llvm/tools/lldb/source/Symbol/ClangASTImporter.cpp projects/routing/contrib/llvm/tools/lldb/source/Symbol/ClangASTType.cpp projects/routing/contrib/llvm/tools/lldb/source/Symbol/ClangExternalASTSourceCallbacks.cpp projects/routing/contrib/llvm/tools/lldb/source/Symbol/CompactUnwindInfo.cpp projects/routing/contrib/llvm/tools/lldb/source/Symbol/CompileUnit.cpp projects/routing/contrib/llvm/tools/lldb/source/Symbol/DWARFCallFrameInfo.cpp projects/routing/contrib/llvm/tools/lldb/source/Symbol/FuncUnwinders.cpp projects/routing/contrib/llvm/tools/lldb/source/Symbol/Function.cpp projects/routing/contrib/llvm/tools/lldb/source/Symbol/LineTable.cpp projects/routing/contrib/llvm/tools/lldb/source/Symbol/ObjectFile.cpp projects/routing/contrib/llvm/tools/lldb/source/Symbol/Symbol.cpp projects/routing/contrib/llvm/tools/lldb/source/Symbol/SymbolContext.cpp projects/routing/contrib/llvm/tools/lldb/source/Symbol/SymbolVendor.cpp projects/routing/contrib/llvm/tools/lldb/source/Symbol/Symtab.cpp projects/routing/contrib/llvm/tools/lldb/source/Symbol/Type.cpp projects/routing/contrib/llvm/tools/lldb/source/Symbol/UnwindPlan.cpp projects/routing/contrib/llvm/tools/lldb/source/Symbol/Variable.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/ABI.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/ExecutionContext.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/FileAction.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/LanguageRuntime.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/Memory.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/ObjCLanguageRuntime.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/Platform.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/Process.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/ProcessLaunchInfo.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/StackFrame.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/StackFrameList.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/StopInfo.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/Target.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/TargetList.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/Thread.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/ThreadList.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/ThreadPlan.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallFunction.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallUserExpression.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/ThreadPlanPython.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/ThreadPlanRunToAddress.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInRange.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInstruction.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOut.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverRange.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepRange.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepThrough.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepUntil.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/ThreadPlanTracer.cpp projects/routing/contrib/llvm/tools/lldb/source/Target/UnixSignals.cpp projects/routing/contrib/llvm/tools/lldb/source/Utility/PseudoTerminal.cpp projects/routing/contrib/llvm/tools/lldb/source/Utility/StringExtractor.cpp projects/routing/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.cpp projects/routing/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.h projects/routing/contrib/llvm/tools/lldb/source/Utility/UriParser.cpp projects/routing/contrib/llvm/tools/lldb/source/Utility/UriParser.h projects/routing/contrib/llvm/tools/lldb/source/lldb.cpp projects/routing/contrib/llvm/tools/lldb/tools/compact-unwind/compact-unwind-dumper.c projects/routing/contrib/llvm/tools/lldb/tools/driver/Driver.cpp projects/routing/contrib/llvm/tools/lldb/tools/driver/Driver.h projects/routing/contrib/llvm/tools/lldb/tools/driver/Platform.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgContext.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgContext.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgSet.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgSet.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValConsume.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValConsume.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValFile.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValFile.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListBase.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListBase.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListOfN.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListOfN.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValNumber.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValNumber.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionShort.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionShort.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdBase.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdBase.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmd.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmd.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdEnviro.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdEnviro.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdExec.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdExec.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdFile.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdFile.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbThread.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbThread.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdMiscellanous.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdMiscellanous.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdStack.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdStack.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportInfo.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportInfo.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportList.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportList.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTarget.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTarget.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTrace.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTrace.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCommands.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCommands.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdData.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdData.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInterpreter.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInterpreter.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInvoker.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInvoker.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgr.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgr.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnConfig.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugger.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugger.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLog.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLog.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLogMediumFile.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLogMediumFile.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIResultRecord.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIResultRecord.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValue.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValue.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueConst.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueConst.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueList.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueList.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueResult.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueResult.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueTuple.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueTuple.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnResources.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnResources.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStderr.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStderr.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdin.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdin.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdout.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdout.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnThreadMgrStd.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnThreadMgrStd.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIDataTypes.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriver.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriver.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverBase.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverBase.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMain.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIReadMe.txt projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDateTimeStd.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDateTimeStd.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilMapIdToVariant.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilMapIdToVariant.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSingletonBase.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSingletonHelper.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilString.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilString.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSystemLinux.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSystemLinux.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSystemOsx.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSystemOsx.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSystemWindows.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSystemWindows.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilThreadBaseStd.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilThreadBaseStd.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilVariant.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilVariant.h projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/Platform.cpp projects/routing/contrib/llvm/tools/lldb/tools/lldb-mi/Platform.h projects/routing/contrib/llvm/tools/lli/RemoteMemoryManager.cpp projects/routing/contrib/llvm/tools/lli/RemoteMemoryManager.h projects/routing/contrib/llvm/tools/lli/RemoteTargetExternal.h projects/routing/contrib/llvm/tools/lli/lli.cpp projects/routing/contrib/llvm/tools/llvm-ar/llvm-ar.cpp projects/routing/contrib/llvm/tools/llvm-as/llvm-as.cpp projects/routing/contrib/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp projects/routing/contrib/llvm/tools/llvm-cov/CodeCoverage.cpp projects/routing/contrib/llvm/tools/llvm-cov/CoverageReport.cpp projects/routing/contrib/llvm/tools/llvm-cov/CoverageReport.h projects/routing/contrib/llvm/tools/llvm-cov/CoverageSummaryInfo.cpp projects/routing/contrib/llvm/tools/llvm-cov/CoverageSummaryInfo.h projects/routing/contrib/llvm/tools/llvm-cov/RenderingSupport.h projects/routing/contrib/llvm/tools/llvm-cov/SourceCoverageView.cpp projects/routing/contrib/llvm/tools/llvm-cov/SourceCoverageView.h projects/routing/contrib/llvm/tools/llvm-cov/gcov.cpp projects/routing/contrib/llvm/tools/llvm-cov/llvm-cov.cpp projects/routing/contrib/llvm/tools/llvm-dis/llvm-dis.cpp projects/routing/contrib/llvm/tools/llvm-extract/llvm-extract.cpp projects/routing/contrib/llvm/tools/llvm-link/llvm-link.cpp projects/routing/contrib/llvm/tools/llvm-mc/llvm-mc.cpp projects/routing/contrib/llvm/tools/llvm-nm/llvm-nm.cpp projects/routing/contrib/llvm/tools/llvm-objdump/COFFDump.cpp projects/routing/contrib/llvm/tools/llvm-objdump/ELFDump.cpp projects/routing/contrib/llvm/tools/llvm-objdump/MachODump.cpp projects/routing/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp projects/routing/contrib/llvm/tools/llvm-objdump/llvm-objdump.h projects/routing/contrib/llvm/tools/llvm-profdata/llvm-profdata.cpp projects/routing/contrib/llvm/tools/llvm-readobj/ARMEHABIPrinter.h projects/routing/contrib/llvm/tools/llvm-readobj/ARMWinEHPrinter.cpp projects/routing/contrib/llvm/tools/llvm-readobj/COFFDumper.cpp projects/routing/contrib/llvm/tools/llvm-readobj/ELFDumper.cpp projects/routing/contrib/llvm/tools/llvm-readobj/MachODumper.cpp projects/routing/contrib/llvm/tools/llvm-readobj/ObjDumper.h projects/routing/contrib/llvm/tools/llvm-readobj/StreamWriter.h projects/routing/contrib/llvm/tools/llvm-readobj/Win64EHDumper.cpp projects/routing/contrib/llvm/tools/llvm-readobj/llvm-readobj.cpp projects/routing/contrib/llvm/tools/llvm-readobj/llvm-readobj.h projects/routing/contrib/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp projects/routing/contrib/llvm/tools/llvm-stress/llvm-stress.cpp projects/routing/contrib/llvm/tools/llvm-symbolizer/LLVMSymbolize.cpp projects/routing/contrib/llvm/tools/llvm-symbolizer/LLVMSymbolize.h projects/routing/contrib/llvm/tools/llvm-symbolizer/llvm-symbolizer.cpp projects/routing/contrib/llvm/tools/macho-dump/macho-dump.cpp projects/routing/contrib/llvm/tools/opt/BreakpointPrinter.cpp projects/routing/contrib/llvm/tools/opt/NewPMDriver.cpp projects/routing/contrib/llvm/tools/opt/NewPMDriver.h projects/routing/contrib/llvm/tools/opt/opt.cpp projects/routing/contrib/llvm/utils/TableGen/AsmMatcherEmitter.cpp projects/routing/contrib/llvm/utils/TableGen/AsmWriterEmitter.cpp projects/routing/contrib/llvm/utils/TableGen/AsmWriterInst.cpp projects/routing/contrib/llvm/utils/TableGen/AsmWriterInst.h projects/routing/contrib/llvm/utils/TableGen/CTagsEmitter.cpp projects/routing/contrib/llvm/utils/TableGen/CallingConvEmitter.cpp projects/routing/contrib/llvm/utils/TableGen/CodeEmitterGen.cpp projects/routing/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.cpp projects/routing/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.h projects/routing/contrib/llvm/utils/TableGen/CodeGenInstruction.cpp projects/routing/contrib/llvm/utils/TableGen/CodeGenInstruction.h projects/routing/contrib/llvm/utils/TableGen/CodeGenIntrinsics.h projects/routing/contrib/llvm/utils/TableGen/CodeGenMapTable.cpp projects/routing/contrib/llvm/utils/TableGen/CodeGenRegisters.cpp projects/routing/contrib/llvm/utils/TableGen/CodeGenRegisters.h projects/routing/contrib/llvm/utils/TableGen/CodeGenSchedule.cpp projects/routing/contrib/llvm/utils/TableGen/CodeGenTarget.cpp projects/routing/contrib/llvm/utils/TableGen/DAGISelMatcher.h projects/routing/contrib/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp projects/routing/contrib/llvm/utils/TableGen/DAGISelMatcherGen.cpp projects/routing/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.cpp projects/routing/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp projects/routing/contrib/llvm/utils/TableGen/InstrInfoEmitter.cpp projects/routing/contrib/llvm/utils/TableGen/IntrinsicEmitter.cpp projects/routing/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.cpp projects/routing/contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp projects/routing/contrib/llvm/utils/TableGen/SubtargetEmitter.cpp projects/routing/contrib/llvm/utils/TableGen/X86DisassemblerShared.h projects/routing/contrib/llvm/utils/TableGen/X86DisassemblerTables.cpp projects/routing/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp projects/routing/contrib/mdocml/lib.in projects/routing/contrib/netbsd-tests/bin/dd/t_dd.sh projects/routing/contrib/netbsd-tests/lib/libc/locale/t_mbstowcs.c projects/routing/contrib/netbsd-tests/lib/libc/ssp/h_readlink.c projects/routing/contrib/netbsd-tests/lib/libc/sys/t_getcontext.c projects/routing/contrib/netcat/nc.1 projects/routing/contrib/netcat/netcat.c projects/routing/contrib/netcat/socks.c projects/routing/contrib/ntp/ChangeLog projects/routing/contrib/ntp/CommitLog projects/routing/contrib/ntp/Makefile.am projects/routing/contrib/ntp/Makefile.in projects/routing/contrib/ntp/NEWS projects/routing/contrib/ntp/aclocal.m4 projects/routing/contrib/ntp/adjtimed/Makefile.in projects/routing/contrib/ntp/adjtimed/adjtimed.c projects/routing/contrib/ntp/clockstuff/Makefile.in projects/routing/contrib/ntp/clockstuff/chutest.c projects/routing/contrib/ntp/clockstuff/propdelay.c projects/routing/contrib/ntp/configure projects/routing/contrib/ntp/configure.ac projects/routing/contrib/ntp/html/decode.html projects/routing/contrib/ntp/html/miscopt.html projects/routing/contrib/ntp/html/stats.html projects/routing/contrib/ntp/include/Makefile.am projects/routing/contrib/ntp/include/Makefile.in projects/routing/contrib/ntp/include/isc/Makefile.in projects/routing/contrib/ntp/include/ntp_assert.h projects/routing/contrib/ntp/include/ntp_calendar.h projects/routing/contrib/ntp/include/ntp_config.h projects/routing/contrib/ntp/include/ntp_control.h projects/routing/contrib/ntp/include/ntp_lists.h projects/routing/contrib/ntp/include/ntp_stdlib.h projects/routing/contrib/ntp/include/ntp_syslog.h projects/routing/contrib/ntp/include/ntp_types.h projects/routing/contrib/ntp/kernel/Makefile.in projects/routing/contrib/ntp/kernel/sys/Makefile.in projects/routing/contrib/ntp/libntp/Makefile.in projects/routing/contrib/ntp/libntp/atolfp.c projects/routing/contrib/ntp/libntp/audio.c projects/routing/contrib/ntp/libntp/authkeys.c projects/routing/contrib/ntp/libntp/authreadkeys.c projects/routing/contrib/ntp/libntp/caljulian.c projects/routing/contrib/ntp/libntp/caltontp.c projects/routing/contrib/ntp/libntp/decodenetnum.c projects/routing/contrib/ntp/libntp/emalloc.c projects/routing/contrib/ntp/libntp/icom.c projects/routing/contrib/ntp/libntp/machines.c projects/routing/contrib/ntp/libntp/msyslog.c projects/routing/contrib/ntp/libntp/ntp_calendar.c projects/routing/contrib/ntp/libntp/ntp_intres.c projects/routing/contrib/ntp/libntp/ntp_lineedit.c projects/routing/contrib/ntp/libntp/ntp_rfc2553.c projects/routing/contrib/ntp/libntp/ntp_worker.c projects/routing/contrib/ntp/libntp/prettydate.c projects/routing/contrib/ntp/libntp/recvbuff.c projects/routing/contrib/ntp/libntp/socket.c projects/routing/contrib/ntp/libntp/socktohost.c projects/routing/contrib/ntp/libntp/statestr.c projects/routing/contrib/ntp/libparse/Makefile.in projects/routing/contrib/ntp/ntpd/Makefile.am projects/routing/contrib/ntp/ntpd/Makefile.in projects/routing/contrib/ntp/ntpd/invoke-ntp.conf.texi projects/routing/contrib/ntp/ntpd/invoke-ntp.keys.texi projects/routing/contrib/ntp/ntpd/invoke-ntpd.texi projects/routing/contrib/ntp/ntpd/ntp.conf.5man projects/routing/contrib/ntp/ntpd/ntp.conf.5mdoc projects/routing/contrib/ntp/ntpd/ntp.conf.def projects/routing/contrib/ntp/ntpd/ntp.conf.html projects/routing/contrib/ntp/ntpd/ntp.conf.man.in projects/routing/contrib/ntp/ntpd/ntp.conf.mdoc.in projects/routing/contrib/ntp/ntpd/ntp.keys.5man projects/routing/contrib/ntp/ntpd/ntp.keys.5mdoc projects/routing/contrib/ntp/ntpd/ntp.keys.html projects/routing/contrib/ntp/ntpd/ntp.keys.man.in projects/routing/contrib/ntp/ntpd/ntp.keys.mdoc.in projects/routing/contrib/ntp/ntpd/ntp_config.c projects/routing/contrib/ntp/ntpd/ntp_control.c projects/routing/contrib/ntp/ntpd/ntp_crypto.c projects/routing/contrib/ntp/ntpd/ntp_io.c projects/routing/contrib/ntp/ntpd/ntp_loopfilter.c projects/routing/contrib/ntp/ntpd/ntp_monitor.c projects/routing/contrib/ntp/ntpd/ntp_parser.c projects/routing/contrib/ntp/ntpd/ntp_parser.h projects/routing/contrib/ntp/ntpd/ntp_peer.c projects/routing/contrib/ntp/ntpd/ntp_proto.c projects/routing/contrib/ntp/ntpd/ntp_refclock.c projects/routing/contrib/ntp/ntpd/ntp_request.c projects/routing/contrib/ntp/ntpd/ntp_restrict.c projects/routing/contrib/ntp/ntpd/ntp_timer.c projects/routing/contrib/ntp/ntpd/ntpd-opts.c projects/routing/contrib/ntp/ntpd/ntpd-opts.def projects/routing/contrib/ntp/ntpd/ntpd-opts.h projects/routing/contrib/ntp/ntpd/ntpd.1ntpdman projects/routing/contrib/ntp/ntpd/ntpd.1ntpdmdoc projects/routing/contrib/ntp/ntpd/ntpd.c projects/routing/contrib/ntp/ntpd/ntpd.html projects/routing/contrib/ntp/ntpd/ntpd.man.in projects/routing/contrib/ntp/ntpd/ntpd.mdoc.in projects/routing/contrib/ntp/ntpd/rc_cmdlength.c (contents, props changed) projects/routing/contrib/ntp/ntpd/refclock_arc.c projects/routing/contrib/ntp/ntpd/refclock_chu.c projects/routing/contrib/ntp/ntpd/refclock_gpsdjson.c projects/routing/contrib/ntp/ntpd/refclock_local.c projects/routing/contrib/ntp/ntpd/refclock_nmea.c projects/routing/contrib/ntp/ntpd/refclock_palisade.c projects/routing/contrib/ntp/ntpd/refclock_parse.c projects/routing/contrib/ntp/ntpd/refclock_wwv.c projects/routing/contrib/ntp/ntpdate/Makefile.in projects/routing/contrib/ntp/ntpdate/ntpdate.c projects/routing/contrib/ntp/ntpdc/Makefile.in projects/routing/contrib/ntp/ntpdc/invoke-ntpdc.texi projects/routing/contrib/ntp/ntpdc/ntpdc-opts.c projects/routing/contrib/ntp/ntpdc/ntpdc-opts.h projects/routing/contrib/ntp/ntpdc/ntpdc.1ntpdcman projects/routing/contrib/ntp/ntpdc/ntpdc.1ntpdcmdoc projects/routing/contrib/ntp/ntpdc/ntpdc.c projects/routing/contrib/ntp/ntpdc/ntpdc.html projects/routing/contrib/ntp/ntpdc/ntpdc.man.in projects/routing/contrib/ntp/ntpdc/ntpdc.mdoc.in projects/routing/contrib/ntp/ntpq/Makefile.in projects/routing/contrib/ntp/ntpq/invoke-ntpq.texi projects/routing/contrib/ntp/ntpq/libntpq.h projects/routing/contrib/ntp/ntpq/ntpq-opts.c projects/routing/contrib/ntp/ntpq/ntpq-opts.h projects/routing/contrib/ntp/ntpq/ntpq-subs.c projects/routing/contrib/ntp/ntpq/ntpq.1ntpqman projects/routing/contrib/ntp/ntpq/ntpq.1ntpqmdoc projects/routing/contrib/ntp/ntpq/ntpq.c projects/routing/contrib/ntp/ntpq/ntpq.html projects/routing/contrib/ntp/ntpq/ntpq.man.in projects/routing/contrib/ntp/ntpq/ntpq.mdoc.in projects/routing/contrib/ntp/ntpsnmpd/Makefile.in projects/routing/contrib/ntp/ntpsnmpd/invoke-ntpsnmpd.texi projects/routing/contrib/ntp/ntpsnmpd/ntpsnmpd-opts.c projects/routing/contrib/ntp/ntpsnmpd/ntpsnmpd-opts.h projects/routing/contrib/ntp/ntpsnmpd/ntpsnmpd.1ntpsnmpdman projects/routing/contrib/ntp/ntpsnmpd/ntpsnmpd.1ntpsnmpdmdoc projects/routing/contrib/ntp/ntpsnmpd/ntpsnmpd.html projects/routing/contrib/ntp/ntpsnmpd/ntpsnmpd.man.in projects/routing/contrib/ntp/ntpsnmpd/ntpsnmpd.mdoc.in projects/routing/contrib/ntp/packageinfo.sh projects/routing/contrib/ntp/parseutil/Makefile.in projects/routing/contrib/ntp/scripts/Makefile.in projects/routing/contrib/ntp/scripts/build/Makefile.in projects/routing/contrib/ntp/scripts/calc_tickadj/Makefile.in projects/routing/contrib/ntp/scripts/calc_tickadj/calc_tickadj.1calc_tickadjman projects/routing/contrib/ntp/scripts/calc_tickadj/calc_tickadj.1calc_tickadjmdoc projects/routing/contrib/ntp/scripts/calc_tickadj/calc_tickadj.html projects/routing/contrib/ntp/scripts/calc_tickadj/calc_tickadj.man.in projects/routing/contrib/ntp/scripts/calc_tickadj/calc_tickadj.mdoc.in projects/routing/contrib/ntp/scripts/calc_tickadj/invoke-calc_tickadj.texi projects/routing/contrib/ntp/scripts/invoke-plot_summary.texi projects/routing/contrib/ntp/scripts/invoke-summary.texi projects/routing/contrib/ntp/scripts/lib/Makefile.in projects/routing/contrib/ntp/scripts/lib/NTP/Util.pm projects/routing/contrib/ntp/scripts/ntp-wait/Makefile.in projects/routing/contrib/ntp/scripts/ntp-wait/invoke-ntp-wait.texi projects/routing/contrib/ntp/scripts/ntp-wait/ntp-wait-opts projects/routing/contrib/ntp/scripts/ntp-wait/ntp-wait.1ntp-waitman projects/routing/contrib/ntp/scripts/ntp-wait/ntp-wait.1ntp-waitmdoc projects/routing/contrib/ntp/scripts/ntp-wait/ntp-wait.html projects/routing/contrib/ntp/scripts/ntp-wait/ntp-wait.man.in projects/routing/contrib/ntp/scripts/ntp-wait/ntp-wait.mdoc.in projects/routing/contrib/ntp/scripts/ntpsweep/Makefile.in projects/routing/contrib/ntp/scripts/ntpsweep/invoke-ntpsweep.texi projects/routing/contrib/ntp/scripts/ntpsweep/ntpsweep-opts projects/routing/contrib/ntp/scripts/ntpsweep/ntpsweep.1ntpsweepman projects/routing/contrib/ntp/scripts/ntpsweep/ntpsweep.1ntpsweepmdoc projects/routing/contrib/ntp/scripts/ntpsweep/ntpsweep.html projects/routing/contrib/ntp/scripts/ntpsweep/ntpsweep.in projects/routing/contrib/ntp/scripts/ntpsweep/ntpsweep.man.in projects/routing/contrib/ntp/scripts/ntpsweep/ntpsweep.mdoc.in projects/routing/contrib/ntp/scripts/ntptrace/Makefile.in projects/routing/contrib/ntp/scripts/ntptrace/invoke-ntptrace.texi projects/routing/contrib/ntp/scripts/ntptrace/ntptrace-opts projects/routing/contrib/ntp/scripts/ntptrace/ntptrace.1ntptraceman projects/routing/contrib/ntp/scripts/ntptrace/ntptrace.1ntptracemdoc projects/routing/contrib/ntp/scripts/ntptrace/ntptrace.html projects/routing/contrib/ntp/scripts/ntptrace/ntptrace.man.in projects/routing/contrib/ntp/scripts/ntptrace/ntptrace.mdoc.in projects/routing/contrib/ntp/scripts/plot_summary-opts projects/routing/contrib/ntp/scripts/plot_summary.1plot_summaryman projects/routing/contrib/ntp/scripts/plot_summary.1plot_summarymdoc projects/routing/contrib/ntp/scripts/plot_summary.html projects/routing/contrib/ntp/scripts/plot_summary.man.in projects/routing/contrib/ntp/scripts/plot_summary.mdoc.in projects/routing/contrib/ntp/scripts/summary-opts projects/routing/contrib/ntp/scripts/summary.1summaryman projects/routing/contrib/ntp/scripts/summary.1summarymdoc projects/routing/contrib/ntp/scripts/summary.html projects/routing/contrib/ntp/scripts/summary.man.in projects/routing/contrib/ntp/scripts/summary.mdoc.in projects/routing/contrib/ntp/scripts/update-leap/Makefile.in (contents, props changed) projects/routing/contrib/ntp/scripts/update-leap/invoke-update-leap.texi projects/routing/contrib/ntp/scripts/update-leap/update-leap-opts projects/routing/contrib/ntp/scripts/update-leap/update-leap.1update-leapman projects/routing/contrib/ntp/scripts/update-leap/update-leap.1update-leapmdoc projects/routing/contrib/ntp/scripts/update-leap/update-leap.html (contents, props changed) projects/routing/contrib/ntp/scripts/update-leap/update-leap.man.in (contents, props changed) projects/routing/contrib/ntp/scripts/update-leap/update-leap.mdoc.in (contents, props changed) projects/routing/contrib/ntp/sntp/Makefile.am projects/routing/contrib/ntp/sntp/Makefile.in projects/routing/contrib/ntp/sntp/configure projects/routing/contrib/ntp/sntp/configure.ac projects/routing/contrib/ntp/sntp/include/Makefile.in projects/routing/contrib/ntp/sntp/include/version.def projects/routing/contrib/ntp/sntp/include/version.texi projects/routing/contrib/ntp/sntp/invoke-sntp.texi projects/routing/contrib/ntp/sntp/libevent/Makefile.am projects/routing/contrib/ntp/sntp/libevent/Makefile.in projects/routing/contrib/ntp/sntp/libevent/test/bench_httpclient.c projects/routing/contrib/ntp/sntp/libevent/test/regress.c projects/routing/contrib/ntp/sntp/libevent/test/regress_dns.c projects/routing/contrib/ntp/sntp/libevent/test/regress_http.c projects/routing/contrib/ntp/sntp/libevent/test/regress_minheap.c projects/routing/contrib/ntp/sntp/libevent/test/test-ratelim.c projects/routing/contrib/ntp/sntp/libevent/test/test-time.c projects/routing/contrib/ntp/sntp/libopts/Makefile.in projects/routing/contrib/ntp/sntp/libopts/compat/pathfind.c projects/routing/contrib/ntp/sntp/log.c projects/routing/contrib/ntp/sntp/log.h projects/routing/contrib/ntp/sntp/m4/ntp_libevent.m4 projects/routing/contrib/ntp/sntp/m4/ntp_libntp.m4 projects/routing/contrib/ntp/sntp/m4/ntp_rlimit.m4 projects/routing/contrib/ntp/sntp/m4/openldap-thread-check.m4 projects/routing/contrib/ntp/sntp/m4/os_cflags.m4 projects/routing/contrib/ntp/sntp/m4/version.m4 projects/routing/contrib/ntp/sntp/networking.c projects/routing/contrib/ntp/sntp/scripts/Makefile.in projects/routing/contrib/ntp/sntp/sntp-opts.c projects/routing/contrib/ntp/sntp/sntp-opts.h projects/routing/contrib/ntp/sntp/sntp.1sntpman projects/routing/contrib/ntp/sntp/sntp.1sntpmdoc projects/routing/contrib/ntp/sntp/sntp.html projects/routing/contrib/ntp/sntp/sntp.man.in projects/routing/contrib/ntp/sntp/sntp.mdoc.in projects/routing/contrib/ntp/sntp/tests/Makefile.am projects/routing/contrib/ntp/sntp/tests/Makefile.in projects/routing/contrib/ntp/sntp/tests/crypto.c (contents, props changed) projects/routing/contrib/ntp/sntp/tests/fileHandlingTest.h.in (contents, props changed) projects/routing/contrib/ntp/sntp/tests/keyFile.c (contents, props changed) projects/routing/contrib/ntp/sntp/tests/kodDatabase.c (contents, props changed) projects/routing/contrib/ntp/sntp/tests/kodFile.c (contents, props changed) projects/routing/contrib/ntp/sntp/tests/packetHandling.c (contents, props changed) projects/routing/contrib/ntp/sntp/tests/packetProcessing.c (contents, props changed) projects/routing/contrib/ntp/sntp/tests/run-crypto.c (contents, props changed) projects/routing/contrib/ntp/sntp/tests/run-keyFile.c (contents, props changed) projects/routing/contrib/ntp/sntp/tests/run-kodDatabase.c (contents, props changed) projects/routing/contrib/ntp/sntp/tests/run-kodFile.c (contents, props changed) projects/routing/contrib/ntp/sntp/tests/run-networking.c (contents, props changed) projects/routing/contrib/ntp/sntp/tests/run-packetHandling.c (contents, props changed) projects/routing/contrib/ntp/sntp/tests/run-packetProcessing.c (contents, props changed) projects/routing/contrib/ntp/sntp/tests/run-utilities.c (contents, props changed) projects/routing/contrib/ntp/sntp/tests/sntptest.h projects/routing/contrib/ntp/sntp/tests/utilities.c (contents, props changed) projects/routing/contrib/ntp/sntp/unity/Makefile.am (contents, props changed) projects/routing/contrib/ntp/sntp/unity/Makefile.in (contents, props changed) projects/routing/contrib/ntp/sntp/unity/auto/generate_test_runner.rb (contents, props changed) projects/routing/contrib/ntp/sntp/unity/auto/unity_test_summary.rb (contents, props changed) projects/routing/contrib/ntp/sntp/unity/unity.c (contents, props changed) projects/routing/contrib/ntp/sntp/unity/unity_internals.h (contents, props changed) projects/routing/contrib/ntp/sntp/version.c (contents, props changed) projects/routing/contrib/ntp/tests/Makefile.am projects/routing/contrib/ntp/tests/Makefile.in projects/routing/contrib/ntp/tests/bug-2803/Makefile.am (contents, props changed) projects/routing/contrib/ntp/tests/bug-2803/Makefile.in (contents, props changed) projects/routing/contrib/ntp/tests/bug-2803/run-bug-2803.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/Makefile.am projects/routing/contrib/ntp/tests/libntp/Makefile.in projects/routing/contrib/ntp/tests/libntp/a_md5encrypt.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/atoint.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/atouint.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/authkeys.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/buftvtots.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/calendar.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/caljulian.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/caltontp.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/calyearstart.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/clocktime.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/decodenetnum.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/hextoint.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/hextolfp.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/humandate.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/lfpfunc.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/lfptest.h projects/routing/contrib/ntp/tests/libntp/lfptostr.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/modetoa.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/msyslog.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/netof.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/numtoa.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/numtohost.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/octtoint.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/prettydate.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/recvbuff.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/refidsmear.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/refnumtoa.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-a_md5encrypt.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-atoint.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-atouint.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-authkeys.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-buftvtots.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-calendar.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-caljulian.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-caltontp.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-calyearstart.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-clocktime.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-decodenetnum.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-hextoint.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-hextolfp.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-humandate.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-lfpfunc.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-lfptostr.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-modetoa.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-msyslog.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-netof.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-numtoa.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-numtohost.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-octtoint.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-prettydate.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-recvbuff.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-refidsmear.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-refnumtoa.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-sfptostr.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-socktoa.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-ssl_init.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-statestr.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-strtolfp.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-timespecops.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-timevalops.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-tstotv.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-tvtots.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-uglydate.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-vi64ops.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/run-ymd2yd.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/sfptostr.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/sockaddrtest.h projects/routing/contrib/ntp/tests/libntp/socktoa.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/ssl_init.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/statestr.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/strtolfp.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/test-libntp.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/test-libntp.h (contents, props changed) projects/routing/contrib/ntp/tests/libntp/timespecops.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/timevalops.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/tstotv.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/tvtots.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/uglydate.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/vi64ops.c (contents, props changed) projects/routing/contrib/ntp/tests/libntp/ymd2yd.c (contents, props changed) projects/routing/contrib/ntp/tests/ntpd/Makefile.am projects/routing/contrib/ntp/tests/ntpd/Makefile.in projects/routing/contrib/ntp/tests/sandbox/Makefile.am (contents, props changed) projects/routing/contrib/ntp/tests/sandbox/Makefile.in (contents, props changed) projects/routing/contrib/ntp/tests/sandbox/run-modetoa.c (contents, props changed) projects/routing/contrib/ntp/tests/sandbox/run-uglydate.c (contents, props changed) projects/routing/contrib/ntp/tests/sandbox/run-ut-2803.c (contents, props changed) projects/routing/contrib/ntp/tests/sandbox/smeartest.c (contents, props changed) projects/routing/contrib/ntp/tests/sec-2853/Makefile.am (contents, props changed) projects/routing/contrib/ntp/tests/sec-2853/Makefile.in (contents, props changed) projects/routing/contrib/ntp/tests/sec-2853/run-sec-2853.c (contents, props changed) projects/routing/contrib/ntp/tests/sec-2853/sec-2853.c (contents, props changed) projects/routing/contrib/ntp/util/Makefile.in projects/routing/contrib/ntp/util/invoke-ntp-keygen.texi projects/routing/contrib/ntp/util/ntp-keygen-opts.c projects/routing/contrib/ntp/util/ntp-keygen-opts.h projects/routing/contrib/ntp/util/ntp-keygen.1ntp-keygenman projects/routing/contrib/ntp/util/ntp-keygen.1ntp-keygenmdoc projects/routing/contrib/ntp/util/ntp-keygen.c projects/routing/contrib/ntp/util/ntp-keygen.html projects/routing/contrib/ntp/util/ntp-keygen.man.in projects/routing/contrib/ntp/util/ntp-keygen.mdoc.in projects/routing/contrib/ntp/util/ntptime.c projects/routing/contrib/openpam/lib/libpam/openpam_constants.c projects/routing/contrib/subversion/CHANGES projects/routing/contrib/subversion/COMMITTERS projects/routing/contrib/subversion/INSTALL projects/routing/contrib/subversion/LICENSE projects/routing/contrib/subversion/Makefile.in projects/routing/contrib/subversion/NOTICE projects/routing/contrib/subversion/autogen.sh projects/routing/contrib/subversion/build-outputs.mk projects/routing/contrib/subversion/build.conf projects/routing/contrib/subversion/configure projects/routing/contrib/subversion/configure.ac projects/routing/contrib/subversion/doc/user/svn-best-practices.html projects/routing/contrib/subversion/gen-make.py projects/routing/contrib/subversion/get-deps.sh projects/routing/contrib/subversion/subversion/include/mod_dav_svn.h projects/routing/contrib/subversion/subversion/include/private/svn_atomic.h projects/routing/contrib/subversion/subversion/include/private/svn_auth_private.h projects/routing/contrib/subversion/subversion/include/private/svn_cache.h projects/routing/contrib/subversion/subversion/include/private/svn_client_private.h projects/routing/contrib/subversion/subversion/include/private/svn_cmdline_private.h projects/routing/contrib/subversion/subversion/include/private/svn_delta_private.h projects/routing/contrib/subversion/subversion/include/private/svn_dep_compat.h projects/routing/contrib/subversion/subversion/include/private/svn_diff_private.h projects/routing/contrib/subversion/subversion/include/private/svn_diff_tree.h projects/routing/contrib/subversion/subversion/include/private/svn_editor.h projects/routing/contrib/subversion/subversion/include/private/svn_error_private.h projects/routing/contrib/subversion/subversion/include/private/svn_fs_private.h projects/routing/contrib/subversion/subversion/include/private/svn_fs_util.h projects/routing/contrib/subversion/subversion/include/private/svn_io_private.h projects/routing/contrib/subversion/subversion/include/private/svn_log.h projects/routing/contrib/subversion/subversion/include/private/svn_magic.h projects/routing/contrib/subversion/subversion/include/private/svn_mergeinfo_private.h projects/routing/contrib/subversion/subversion/include/private/svn_mutex.h projects/routing/contrib/subversion/subversion/include/private/svn_opt_private.h projects/routing/contrib/subversion/subversion/include/private/svn_ra_private.h projects/routing/contrib/subversion/subversion/include/private/svn_ra_svn_private.h projects/routing/contrib/subversion/subversion/include/private/svn_repos_private.h projects/routing/contrib/subversion/subversion/include/private/svn_sqlite.h projects/routing/contrib/subversion/subversion/include/private/svn_string_private.h projects/routing/contrib/subversion/subversion/include/private/svn_subr_private.h projects/routing/contrib/subversion/subversion/include/private/svn_temp_serializer.h projects/routing/contrib/subversion/subversion/include/private/svn_utf_private.h projects/routing/contrib/subversion/subversion/include/private/svn_wc_private.h projects/routing/contrib/subversion/subversion/include/svn_auth.h projects/routing/contrib/subversion/subversion/include/svn_cache_config.h projects/routing/contrib/subversion/subversion/include/svn_checksum.h projects/routing/contrib/subversion/subversion/include/svn_client.h projects/routing/contrib/subversion/subversion/include/svn_cmdline.h projects/routing/contrib/subversion/subversion/include/svn_compat.h projects/routing/contrib/subversion/subversion/include/svn_config.h projects/routing/contrib/subversion/subversion/include/svn_delta.h projects/routing/contrib/subversion/subversion/include/svn_diff.h projects/routing/contrib/subversion/subversion/include/svn_dirent_uri.h projects/routing/contrib/subversion/subversion/include/svn_error.h projects/routing/contrib/subversion/subversion/include/svn_error_codes.h projects/routing/contrib/subversion/subversion/include/svn_fs.h projects/routing/contrib/subversion/subversion/include/svn_hash.h projects/routing/contrib/subversion/subversion/include/svn_io.h projects/routing/contrib/subversion/subversion/include/svn_iter.h projects/routing/contrib/subversion/subversion/include/svn_mergeinfo.h projects/routing/contrib/subversion/subversion/include/svn_opt.h projects/routing/contrib/subversion/subversion/include/svn_path.h projects/routing/contrib/subversion/subversion/include/svn_props.h projects/routing/contrib/subversion/subversion/include/svn_ra.h projects/routing/contrib/subversion/subversion/include/svn_ra_svn.h projects/routing/contrib/subversion/subversion/include/svn_repos.h projects/routing/contrib/subversion/subversion/include/svn_sorts.h projects/routing/contrib/subversion/subversion/include/svn_string.h projects/routing/contrib/subversion/subversion/include/svn_types.h projects/routing/contrib/subversion/subversion/include/svn_version.h projects/routing/contrib/subversion/subversion/include/svn_wc.h projects/routing/contrib/subversion/subversion/include/svn_xml.h projects/routing/contrib/subversion/subversion/libsvn_auth_kwallet/kwallet.cpp projects/routing/contrib/subversion/subversion/libsvn_client/add.c projects/routing/contrib/subversion/subversion/libsvn_client/blame.c projects/routing/contrib/subversion/subversion/libsvn_client/cat.c projects/routing/contrib/subversion/subversion/libsvn_client/checkout.c projects/routing/contrib/subversion/subversion/libsvn_client/cleanup.c projects/routing/contrib/subversion/subversion/libsvn_client/client.h projects/routing/contrib/subversion/subversion/libsvn_client/cmdline.c projects/routing/contrib/subversion/subversion/libsvn_client/commit.c projects/routing/contrib/subversion/subversion/libsvn_client/commit_util.c projects/routing/contrib/subversion/subversion/libsvn_client/compat_providers.c projects/routing/contrib/subversion/subversion/libsvn_client/copy.c projects/routing/contrib/subversion/subversion/libsvn_client/copy_foreign.c projects/routing/contrib/subversion/subversion/libsvn_client/ctx.c projects/routing/contrib/subversion/subversion/libsvn_client/delete.c projects/routing/contrib/subversion/subversion/libsvn_client/deprecated.c projects/routing/contrib/subversion/subversion/libsvn_client/diff.c projects/routing/contrib/subversion/subversion/libsvn_client/diff_local.c projects/routing/contrib/subversion/subversion/libsvn_client/diff_summarize.c projects/routing/contrib/subversion/subversion/libsvn_client/export.c projects/routing/contrib/subversion/subversion/libsvn_client/externals.c projects/routing/contrib/subversion/subversion/libsvn_client/import.c projects/routing/contrib/subversion/subversion/libsvn_client/info.c projects/routing/contrib/subversion/subversion/libsvn_client/iprops.c projects/routing/contrib/subversion/subversion/libsvn_client/list.c projects/routing/contrib/subversion/subversion/libsvn_client/locking_commands.c projects/routing/contrib/subversion/subversion/libsvn_client/log.c projects/routing/contrib/subversion/subversion/libsvn_client/merge.c projects/routing/contrib/subversion/subversion/libsvn_client/mergeinfo.c projects/routing/contrib/subversion/subversion/libsvn_client/mergeinfo.h projects/routing/contrib/subversion/subversion/libsvn_client/patch.c projects/routing/contrib/subversion/subversion/libsvn_client/prop_commands.c projects/routing/contrib/subversion/subversion/libsvn_client/ra.c projects/routing/contrib/subversion/subversion/libsvn_client/relocate.c projects/routing/contrib/subversion/subversion/libsvn_client/repos_diff.c projects/routing/contrib/subversion/subversion/libsvn_client/resolved.c projects/routing/contrib/subversion/subversion/libsvn_client/revert.c projects/routing/contrib/subversion/subversion/libsvn_client/revisions.c projects/routing/contrib/subversion/subversion/libsvn_client/status.c projects/routing/contrib/subversion/subversion/libsvn_client/switch.c projects/routing/contrib/subversion/subversion/libsvn_client/update.c projects/routing/contrib/subversion/subversion/libsvn_client/upgrade.c projects/routing/contrib/subversion/subversion/libsvn_client/util.c projects/routing/contrib/subversion/subversion/libsvn_delta/compat.c projects/routing/contrib/subversion/subversion/libsvn_delta/compose_delta.c projects/routing/contrib/subversion/subversion/libsvn_delta/debug_editor.c projects/routing/contrib/subversion/subversion/libsvn_delta/debug_editor.h projects/routing/contrib/subversion/subversion/libsvn_delta/editor.c projects/routing/contrib/subversion/subversion/libsvn_delta/path_driver.c projects/routing/contrib/subversion/subversion/libsvn_delta/svndiff.c projects/routing/contrib/subversion/subversion/libsvn_delta/text_delta.c projects/routing/contrib/subversion/subversion/libsvn_delta/xdelta.c projects/routing/contrib/subversion/subversion/libsvn_diff/deprecated.c projects/routing/contrib/subversion/subversion/libsvn_diff/diff4.c projects/routing/contrib/subversion/subversion/libsvn_diff/diff_file.c projects/routing/contrib/subversion/subversion/libsvn_diff/diff_memory.c projects/routing/contrib/subversion/subversion/libsvn_diff/lcs.c projects/routing/contrib/subversion/subversion/libsvn_diff/parse-diff.c projects/routing/contrib/subversion/subversion/libsvn_diff/util.c projects/routing/contrib/subversion/subversion/libsvn_fs/access.c projects/routing/contrib/subversion/subversion/libsvn_fs/editor.c projects/routing/contrib/subversion/subversion/libsvn_fs/fs-loader.c projects/routing/contrib/subversion/subversion/libsvn_fs/fs-loader.h projects/routing/contrib/subversion/subversion/libsvn_fs_base/bdb/changes-table.c projects/routing/contrib/subversion/subversion/libsvn_fs_base/bdb/locks-table.c projects/routing/contrib/subversion/subversion/libsvn_fs_base/bdb/strings-table.c projects/routing/contrib/subversion/subversion/libsvn_fs_base/dag.c projects/routing/contrib/subversion/subversion/libsvn_fs_base/dag.h projects/routing/contrib/subversion/subversion/libsvn_fs_base/fs.c projects/routing/contrib/subversion/subversion/libsvn_fs_base/fs.h projects/routing/contrib/subversion/subversion/libsvn_fs_base/id.c projects/routing/contrib/subversion/subversion/libsvn_fs_base/id.h projects/routing/contrib/subversion/subversion/libsvn_fs_base/key-gen.c projects/routing/contrib/subversion/subversion/libsvn_fs_base/key-gen.h projects/routing/contrib/subversion/subversion/libsvn_fs_base/lock.c projects/routing/contrib/subversion/subversion/libsvn_fs_base/lock.h projects/routing/contrib/subversion/subversion/libsvn_fs_base/reps-strings.c projects/routing/contrib/subversion/subversion/libsvn_fs_base/revs-txns.c projects/routing/contrib/subversion/subversion/libsvn_fs_base/tree.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/caching.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/dag.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/dag.h projects/routing/contrib/subversion/subversion/libsvn_fs_fs/fs.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/fs.h projects/routing/contrib/subversion/subversion/libsvn_fs_fs/fs_fs.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/fs_fs.h projects/routing/contrib/subversion/subversion/libsvn_fs_fs/id.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/id.h projects/routing/contrib/subversion/subversion/libsvn_fs_fs/lock.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/lock.h projects/routing/contrib/subversion/subversion/libsvn_fs_fs/rep-cache-db.h projects/routing/contrib/subversion/subversion/libsvn_fs_fs/rep-cache-db.sql projects/routing/contrib/subversion/subversion/libsvn_fs_fs/rep-cache.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/rep-cache.h projects/routing/contrib/subversion/subversion/libsvn_fs_fs/structure projects/routing/contrib/subversion/subversion/libsvn_fs_fs/temp_serializer.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/temp_serializer.h projects/routing/contrib/subversion/subversion/libsvn_fs_fs/tree.c projects/routing/contrib/subversion/subversion/libsvn_fs_fs/tree.h projects/routing/contrib/subversion/subversion/libsvn_fs_util/fs-util.c projects/routing/contrib/subversion/subversion/libsvn_ra/compat.c projects/routing/contrib/subversion/subversion/libsvn_ra/ra_loader.c projects/routing/contrib/subversion/subversion/libsvn_ra/ra_loader.h projects/routing/contrib/subversion/subversion/libsvn_ra/wrapper_template.h projects/routing/contrib/subversion/subversion/libsvn_ra_local/ra_local.h projects/routing/contrib/subversion/subversion/libsvn_ra_local/ra_plugin.c projects/routing/contrib/subversion/subversion/libsvn_ra_local/split_url.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/README projects/routing/contrib/subversion/subversion/libsvn_ra_serf/blame.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/blncache.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/blncache.h projects/routing/contrib/subversion/subversion/libsvn_ra_serf/commit.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/get_deleted_rev.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/getdate.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/getlocations.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/getlocationsegments.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/getlocks.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/inherited_props.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/log.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/merge.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/mergeinfo.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/options.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/property.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/ra_serf.h projects/routing/contrib/subversion/subversion/libsvn_ra_serf/replay.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/serf.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/update.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/util.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/util_error.c projects/routing/contrib/subversion/subversion/libsvn_ra_serf/xml.c projects/routing/contrib/subversion/subversion/libsvn_ra_svn/client.c projects/routing/contrib/subversion/subversion/libsvn_ra_svn/cram.c projects/routing/contrib/subversion/subversion/libsvn_ra_svn/cyrus_auth.c projects/routing/contrib/subversion/subversion/libsvn_ra_svn/deprecated.c projects/routing/contrib/subversion/subversion/libsvn_ra_svn/editorp.c projects/routing/contrib/subversion/subversion/libsvn_ra_svn/internal_auth.c projects/routing/contrib/subversion/subversion/libsvn_ra_svn/marshal.c projects/routing/contrib/subversion/subversion/libsvn_ra_svn/protocol projects/routing/contrib/subversion/subversion/libsvn_ra_svn/ra_svn.h projects/routing/contrib/subversion/subversion/libsvn_ra_svn/streams.c projects/routing/contrib/subversion/subversion/libsvn_repos/authz.c projects/routing/contrib/subversion/subversion/libsvn_repos/commit.c projects/routing/contrib/subversion/subversion/libsvn_repos/delta.c projects/routing/contrib/subversion/subversion/libsvn_repos/deprecated.c projects/routing/contrib/subversion/subversion/libsvn_repos/dump.c projects/routing/contrib/subversion/subversion/libsvn_repos/fs-wrap.c projects/routing/contrib/subversion/subversion/libsvn_repos/hooks.c projects/routing/contrib/subversion/subversion/libsvn_repos/load-fs-vtable.c projects/routing/contrib/subversion/subversion/libsvn_repos/load.c projects/routing/contrib/subversion/subversion/libsvn_repos/log.c projects/routing/contrib/subversion/subversion/libsvn_repos/replay.c projects/routing/contrib/subversion/subversion/libsvn_repos/reporter.c projects/routing/contrib/subversion/subversion/libsvn_repos/repos.c projects/routing/contrib/subversion/subversion/libsvn_repos/repos.h projects/routing/contrib/subversion/subversion/libsvn_repos/rev_hunt.c projects/routing/contrib/subversion/subversion/libsvn_subr/adler32.c projects/routing/contrib/subversion/subversion/libsvn_subr/auth.c projects/routing/contrib/subversion/subversion/libsvn_subr/auth.h projects/routing/contrib/subversion/subversion/libsvn_subr/cache-inprocess.c projects/routing/contrib/subversion/subversion/libsvn_subr/cache-membuffer.c projects/routing/contrib/subversion/subversion/libsvn_subr/cache-memcache.c projects/routing/contrib/subversion/subversion/libsvn_subr/cache.c projects/routing/contrib/subversion/subversion/libsvn_subr/cache.h projects/routing/contrib/subversion/subversion/libsvn_subr/cache_config.c projects/routing/contrib/subversion/subversion/libsvn_subr/checksum.c projects/routing/contrib/subversion/subversion/libsvn_subr/cmdline.c projects/routing/contrib/subversion/subversion/libsvn_subr/compat.c projects/routing/contrib/subversion/subversion/libsvn_subr/config.c projects/routing/contrib/subversion/subversion/libsvn_subr/config_auth.c projects/routing/contrib/subversion/subversion/libsvn_subr/config_file.c projects/routing/contrib/subversion/subversion/libsvn_subr/config_impl.h projects/routing/contrib/subversion/subversion/libsvn_subr/config_win.c projects/routing/contrib/subversion/subversion/libsvn_subr/ctype.c projects/routing/contrib/subversion/subversion/libsvn_subr/debug.c projects/routing/contrib/subversion/subversion/libsvn_subr/deprecated.c projects/routing/contrib/subversion/subversion/libsvn_subr/dirent_uri.c projects/routing/contrib/subversion/subversion/libsvn_subr/dso.c projects/routing/contrib/subversion/subversion/libsvn_subr/eol.c projects/routing/contrib/subversion/subversion/libsvn_subr/error.c projects/routing/contrib/subversion/subversion/libsvn_subr/gpg_agent.c projects/routing/contrib/subversion/subversion/libsvn_subr/hash.c projects/routing/contrib/subversion/subversion/libsvn_subr/internal_statements.h projects/routing/contrib/subversion/subversion/libsvn_subr/io.c projects/routing/contrib/subversion/subversion/libsvn_subr/iter.c projects/routing/contrib/subversion/subversion/libsvn_subr/log.c projects/routing/contrib/subversion/subversion/libsvn_subr/macos_keychain.c projects/routing/contrib/subversion/subversion/libsvn_subr/magic.c projects/routing/contrib/subversion/subversion/libsvn_subr/md5.c projects/routing/contrib/subversion/subversion/libsvn_subr/mergeinfo.c projects/routing/contrib/subversion/subversion/libsvn_subr/mutex.c projects/routing/contrib/subversion/subversion/libsvn_subr/nls.c projects/routing/contrib/subversion/subversion/libsvn_subr/opt.c projects/routing/contrib/subversion/subversion/libsvn_subr/path.c projects/routing/contrib/subversion/subversion/libsvn_subr/pool.c projects/routing/contrib/subversion/subversion/libsvn_subr/prompt.c projects/routing/contrib/subversion/subversion/libsvn_subr/simple_providers.c projects/routing/contrib/subversion/subversion/libsvn_subr/sorts.c projects/routing/contrib/subversion/subversion/libsvn_subr/spillbuf.c projects/routing/contrib/subversion/subversion/libsvn_subr/sqlite.c projects/routing/contrib/subversion/subversion/libsvn_subr/sqlite3wrapper.c projects/routing/contrib/subversion/subversion/libsvn_subr/ssl_client_cert_providers.c projects/routing/contrib/subversion/subversion/libsvn_subr/ssl_client_cert_pw_providers.c projects/routing/contrib/subversion/subversion/libsvn_subr/ssl_server_trust_providers.c projects/routing/contrib/subversion/subversion/libsvn_subr/stream.c projects/routing/contrib/subversion/subversion/libsvn_subr/string.c projects/routing/contrib/subversion/subversion/libsvn_subr/subst.c projects/routing/contrib/subversion/subversion/libsvn_subr/sysinfo.c projects/routing/contrib/subversion/subversion/libsvn_subr/sysinfo.h projects/routing/contrib/subversion/subversion/libsvn_subr/temp_serializer.c projects/routing/contrib/subversion/subversion/libsvn_subr/time.c projects/routing/contrib/subversion/subversion/libsvn_subr/types.c projects/routing/contrib/subversion/subversion/libsvn_subr/username_providers.c projects/routing/contrib/subversion/subversion/libsvn_subr/utf.c projects/routing/contrib/subversion/subversion/libsvn_subr/utf_validate.c projects/routing/contrib/subversion/subversion/libsvn_subr/utf_width.c projects/routing/contrib/subversion/subversion/libsvn_subr/version.c projects/routing/contrib/subversion/subversion/libsvn_subr/win32_crashrpt.c projects/routing/contrib/subversion/subversion/libsvn_subr/win32_crypto.c projects/routing/contrib/subversion/subversion/libsvn_subr/win32_xlate.c projects/routing/contrib/subversion/subversion/libsvn_subr/win32_xlate.h projects/routing/contrib/subversion/subversion/libsvn_subr/xml.c projects/routing/contrib/subversion/subversion/libsvn_wc/adm_crawler.c projects/routing/contrib/subversion/subversion/libsvn_wc/adm_files.c projects/routing/contrib/subversion/subversion/libsvn_wc/adm_files.h projects/routing/contrib/subversion/subversion/libsvn_wc/adm_ops.c projects/routing/contrib/subversion/subversion/libsvn_wc/cleanup.c projects/routing/contrib/subversion/subversion/libsvn_wc/conflicts.c projects/routing/contrib/subversion/subversion/libsvn_wc/conflicts.h projects/routing/contrib/subversion/subversion/libsvn_wc/copy.c projects/routing/contrib/subversion/subversion/libsvn_wc/crop.c projects/routing/contrib/subversion/subversion/libsvn_wc/delete.c projects/routing/contrib/subversion/subversion/libsvn_wc/deprecated.c projects/routing/contrib/subversion/subversion/libsvn_wc/diff.h projects/routing/contrib/subversion/subversion/libsvn_wc/diff_editor.c projects/routing/contrib/subversion/subversion/libsvn_wc/diff_local.c projects/routing/contrib/subversion/subversion/libsvn_wc/entries.c projects/routing/contrib/subversion/subversion/libsvn_wc/externals.c projects/routing/contrib/subversion/subversion/libsvn_wc/info.c projects/routing/contrib/subversion/subversion/libsvn_wc/lock.c projects/routing/contrib/subversion/subversion/libsvn_wc/merge.c projects/routing/contrib/subversion/subversion/libsvn_wc/node.c projects/routing/contrib/subversion/subversion/libsvn_wc/old-and-busted.c projects/routing/contrib/subversion/subversion/libsvn_wc/props.c projects/routing/contrib/subversion/subversion/libsvn_wc/props.h projects/routing/contrib/subversion/subversion/libsvn_wc/questions.c projects/routing/contrib/subversion/subversion/libsvn_wc/relocate.c projects/routing/contrib/subversion/subversion/libsvn_wc/revert.c projects/routing/contrib/subversion/subversion/libsvn_wc/revision_status.c projects/routing/contrib/subversion/subversion/libsvn_wc/status.c projects/routing/contrib/subversion/subversion/libsvn_wc/token-map.h projects/routing/contrib/subversion/subversion/libsvn_wc/translate.c projects/routing/contrib/subversion/subversion/libsvn_wc/tree_conflicts.c projects/routing/contrib/subversion/subversion/libsvn_wc/update_editor.c projects/routing/contrib/subversion/subversion/libsvn_wc/upgrade.c projects/routing/contrib/subversion/subversion/libsvn_wc/util.c projects/routing/contrib/subversion/subversion/libsvn_wc/wc-checks.h projects/routing/contrib/subversion/subversion/libsvn_wc/wc-checks.sql projects/routing/contrib/subversion/subversion/libsvn_wc/wc-metadata.h projects/routing/contrib/subversion/subversion/libsvn_wc/wc-metadata.sql projects/routing/contrib/subversion/subversion/libsvn_wc/wc-queries.h projects/routing/contrib/subversion/subversion/libsvn_wc/wc-queries.sql projects/routing/contrib/subversion/subversion/libsvn_wc/wc.h projects/routing/contrib/subversion/subversion/libsvn_wc/wc_db.c projects/routing/contrib/subversion/subversion/libsvn_wc/wc_db.h projects/routing/contrib/subversion/subversion/libsvn_wc/wc_db_pristine.c projects/routing/contrib/subversion/subversion/libsvn_wc/wc_db_private.h projects/routing/contrib/subversion/subversion/libsvn_wc/wc_db_update_move.c projects/routing/contrib/subversion/subversion/libsvn_wc/wc_db_util.c projects/routing/contrib/subversion/subversion/libsvn_wc/wc_db_wcroot.c projects/routing/contrib/subversion/subversion/libsvn_wc/workqueue.c projects/routing/contrib/subversion/subversion/libsvn_wc/workqueue.h projects/routing/contrib/subversion/subversion/svn/add-cmd.c projects/routing/contrib/subversion/subversion/svn/blame-cmd.c projects/routing/contrib/subversion/subversion/svn/cat-cmd.c projects/routing/contrib/subversion/subversion/svn/changelist-cmd.c projects/routing/contrib/subversion/subversion/svn/checkout-cmd.c projects/routing/contrib/subversion/subversion/svn/cl-conflicts.c projects/routing/contrib/subversion/subversion/svn/cl-conflicts.h projects/routing/contrib/subversion/subversion/svn/cl.h projects/routing/contrib/subversion/subversion/svn/cleanup-cmd.c projects/routing/contrib/subversion/subversion/svn/commit-cmd.c projects/routing/contrib/subversion/subversion/svn/conflict-callbacks.c projects/routing/contrib/subversion/subversion/svn/copy-cmd.c projects/routing/contrib/subversion/subversion/svn/diff-cmd.c projects/routing/contrib/subversion/subversion/svn/export-cmd.c projects/routing/contrib/subversion/subversion/svn/file-merge.c projects/routing/contrib/subversion/subversion/svn/help-cmd.c projects/routing/contrib/subversion/subversion/svn/info-cmd.c projects/routing/contrib/subversion/subversion/svn/list-cmd.c projects/routing/contrib/subversion/subversion/svn/log-cmd.c projects/routing/contrib/subversion/subversion/svn/merge-cmd.c projects/routing/contrib/subversion/subversion/svn/mergeinfo-cmd.c projects/routing/contrib/subversion/subversion/svn/notify.c projects/routing/contrib/subversion/subversion/svn/propget-cmd.c projects/routing/contrib/subversion/subversion/svn/proplist-cmd.c projects/routing/contrib/subversion/subversion/svn/props.c projects/routing/contrib/subversion/subversion/svn/resolve-cmd.c projects/routing/contrib/subversion/subversion/svn/revert-cmd.c projects/routing/contrib/subversion/subversion/svn/status-cmd.c projects/routing/contrib/subversion/subversion/svn/status.c projects/routing/contrib/subversion/subversion/svn/svn.c projects/routing/contrib/subversion/subversion/svn/util.c projects/routing/contrib/subversion/subversion/svn_private_config.h.in projects/routing/contrib/subversion/subversion/svn_private_config.hw projects/routing/contrib/subversion/subversion/svnadmin/svnadmin.c projects/routing/contrib/subversion/subversion/svndumpfilter/svndumpfilter.c projects/routing/contrib/subversion/subversion/svnlook/svnlook.c projects/routing/contrib/subversion/subversion/svnmucc/svnmucc.c projects/routing/contrib/subversion/subversion/svnrdump/dump_editor.c projects/routing/contrib/subversion/subversion/svnrdump/load_editor.c projects/routing/contrib/subversion/subversion/svnrdump/svnrdump.c projects/routing/contrib/subversion/subversion/svnrdump/svnrdump.h projects/routing/contrib/subversion/subversion/svnrdump/util.c projects/routing/contrib/subversion/subversion/svnserve/cyrus_auth.c projects/routing/contrib/subversion/subversion/svnserve/serve.c projects/routing/contrib/subversion/subversion/svnserve/server.h projects/routing/contrib/subversion/subversion/svnserve/svnserve.c projects/routing/contrib/subversion/subversion/svnsync/svnsync.c projects/routing/contrib/subversion/subversion/svnsync/sync.c projects/routing/contrib/subversion/subversion/svnversion/svnversion.c projects/routing/contrib/subversion/win-tests.py projects/routing/contrib/tzcode/stdtime/difftime.c projects/routing/contrib/tzcode/stdtime/localtime.c projects/routing/contrib/tzcode/stdtime/private.h projects/routing/contrib/tzdata/asia projects/routing/contrib/tzdata/australasia projects/routing/contrib/tzdata/europe projects/routing/contrib/tzdata/northamerica projects/routing/contrib/tzdata/zone.tab projects/routing/contrib/tzdata/zone1970.tab projects/routing/contrib/unbound/Makefile.in projects/routing/contrib/unbound/acx_nlnetlabs.m4 projects/routing/contrib/unbound/compat/getentropy_linux.c projects/routing/contrib/unbound/config.h projects/routing/contrib/unbound/config.h.in projects/routing/contrib/unbound/configure projects/routing/contrib/unbound/configure.ac projects/routing/contrib/unbound/daemon/cachedump.c projects/routing/contrib/unbound/daemon/daemon.c projects/routing/contrib/unbound/daemon/remote.c projects/routing/contrib/unbound/daemon/stats.c projects/routing/contrib/unbound/daemon/stats.h projects/routing/contrib/unbound/daemon/worker.c projects/routing/contrib/unbound/daemon/worker.h projects/routing/contrib/unbound/dns64/dns64.c projects/routing/contrib/unbound/dnstap/dnstap.c projects/routing/contrib/unbound/doc/Changelog projects/routing/contrib/unbound/doc/README projects/routing/contrib/unbound/doc/example.conf projects/routing/contrib/unbound/doc/example.conf.in projects/routing/contrib/unbound/doc/libunbound.3 projects/routing/contrib/unbound/doc/libunbound.3.in projects/routing/contrib/unbound/doc/unbound-anchor.8 projects/routing/contrib/unbound/doc/unbound-anchor.8.in projects/routing/contrib/unbound/doc/unbound-checkconf.8 projects/routing/contrib/unbound/doc/unbound-checkconf.8.in projects/routing/contrib/unbound/doc/unbound-control.8 projects/routing/contrib/unbound/doc/unbound-control.8.in projects/routing/contrib/unbound/doc/unbound-host.1 projects/routing/contrib/unbound/doc/unbound-host.1.in projects/routing/contrib/unbound/doc/unbound.8 projects/routing/contrib/unbound/doc/unbound.8.in projects/routing/contrib/unbound/doc/unbound.conf.5 projects/routing/contrib/unbound/doc/unbound.conf.5.in projects/routing/contrib/unbound/freebsd-configure.sh projects/routing/contrib/unbound/iterator/iter_delegpt.c projects/routing/contrib/unbound/iterator/iter_fwd.c projects/routing/contrib/unbound/iterator/iter_hints.c projects/routing/contrib/unbound/iterator/iter_priv.c projects/routing/contrib/unbound/iterator/iter_resptype.c projects/routing/contrib/unbound/iterator/iter_scrub.c projects/routing/contrib/unbound/iterator/iter_utils.c projects/routing/contrib/unbound/iterator/iter_utils.h projects/routing/contrib/unbound/iterator/iterator.c projects/routing/contrib/unbound/iterator/iterator.h projects/routing/contrib/unbound/libunbound/context.c projects/routing/contrib/unbound/libunbound/libunbound.c projects/routing/contrib/unbound/libunbound/libworker.c projects/routing/contrib/unbound/libunbound/python/Makefile projects/routing/contrib/unbound/libunbound/python/examples/async-lookup.py projects/routing/contrib/unbound/libunbound/python/examples/dns-lookup.py projects/routing/contrib/unbound/libunbound/python/examples/dnssec-valid.py projects/routing/contrib/unbound/libunbound/python/examples/dnssec_test.py projects/routing/contrib/unbound/libunbound/python/examples/example8-1.py projects/routing/contrib/unbound/libunbound/python/examples/idn-lookup.py projects/routing/contrib/unbound/libunbound/python/examples/mx-lookup.py projects/routing/contrib/unbound/libunbound/python/examples/ns-lookup.py projects/routing/contrib/unbound/libunbound/python/examples/reverse-lookup.py projects/routing/contrib/unbound/libunbound/python/libunbound.i projects/routing/contrib/unbound/libunbound/worker.h projects/routing/contrib/unbound/services/cache/dns.c projects/routing/contrib/unbound/services/cache/infra.c projects/routing/contrib/unbound/services/cache/infra.h projects/routing/contrib/unbound/services/cache/rrset.c projects/routing/contrib/unbound/services/listen_dnsport.c projects/routing/contrib/unbound/services/listen_dnsport.h projects/routing/contrib/unbound/services/localzone.c projects/routing/contrib/unbound/services/localzone.h projects/routing/contrib/unbound/services/mesh.c projects/routing/contrib/unbound/services/outside_network.c projects/routing/contrib/unbound/smallapp/unbound-anchor.c projects/routing/contrib/unbound/smallapp/unbound-checkconf.c projects/routing/contrib/unbound/smallapp/unbound-control-setup.sh projects/routing/contrib/unbound/smallapp/unbound-control-setup.sh.in projects/routing/contrib/unbound/smallapp/unbound-control.c projects/routing/contrib/unbound/smallapp/unbound-host.c projects/routing/contrib/unbound/util/alloc.c projects/routing/contrib/unbound/util/alloc.h projects/routing/contrib/unbound/util/config_file.c projects/routing/contrib/unbound/util/config_file.h projects/routing/contrib/unbound/util/configlexer.lex projects/routing/contrib/unbound/util/configparser.y projects/routing/contrib/unbound/util/data/dname.c projects/routing/contrib/unbound/util/data/msgencode.c projects/routing/contrib/unbound/util/data/msgparse.c projects/routing/contrib/unbound/util/data/msgparse.h projects/routing/contrib/unbound/util/data/msgreply.c projects/routing/contrib/unbound/util/data/msgreply.h projects/routing/contrib/unbound/util/data/packed_rrset.c projects/routing/contrib/unbound/util/data/packed_rrset.h projects/routing/contrib/unbound/util/fptr_wlist.c projects/routing/contrib/unbound/util/iana_ports.inc projects/routing/contrib/unbound/util/log.c projects/routing/contrib/unbound/util/log.h projects/routing/contrib/unbound/util/net_help.c projects/routing/contrib/unbound/util/netevent.c projects/routing/contrib/unbound/util/netevent.h projects/routing/contrib/unbound/validator/autotrust.c projects/routing/contrib/unbound/validator/val_anchor.c projects/routing/contrib/unbound/validator/val_kentry.c projects/routing/contrib/unbound/validator/val_neg.c projects/routing/contrib/unbound/validator/val_nsec3.c projects/routing/contrib/unbound/validator/val_secalgo.c projects/routing/contrib/unbound/validator/val_sigcrypt.c projects/routing/contrib/unbound/validator/validator.c projects/routing/contrib/wpa/hostapd/ChangeLog projects/routing/contrib/wpa/hostapd/config_file.c projects/routing/contrib/wpa/hostapd/config_file.h projects/routing/contrib/wpa/hostapd/ctrl_iface.c projects/routing/contrib/wpa/hostapd/defconfig projects/routing/contrib/wpa/hostapd/hlr_auc_gw.c projects/routing/contrib/wpa/hostapd/hlr_auc_gw.milenage_db projects/routing/contrib/wpa/hostapd/hostapd.conf projects/routing/contrib/wpa/hostapd/hostapd_cli.c projects/routing/contrib/wpa/hostapd/main.c projects/routing/contrib/wpa/hs20/client/Makefile projects/routing/contrib/wpa/hs20/client/osu_client.c projects/routing/contrib/wpa/hs20/client/spp_client.c projects/routing/contrib/wpa/src/ap/accounting.c projects/routing/contrib/wpa/src/ap/acs.c projects/routing/contrib/wpa/src/ap/ap_config.c projects/routing/contrib/wpa/src/ap/ap_config.h projects/routing/contrib/wpa/src/ap/ap_drv_ops.c projects/routing/contrib/wpa/src/ap/ap_drv_ops.h projects/routing/contrib/wpa/src/ap/ap_list.c projects/routing/contrib/wpa/src/ap/ap_list.h projects/routing/contrib/wpa/src/ap/authsrv.c projects/routing/contrib/wpa/src/ap/beacon.c projects/routing/contrib/wpa/src/ap/beacon.h projects/routing/contrib/wpa/src/ap/ctrl_iface_ap.c projects/routing/contrib/wpa/src/ap/dfs.c projects/routing/contrib/wpa/src/ap/drv_callbacks.c projects/routing/contrib/wpa/src/ap/eap_user_db.c projects/routing/contrib/wpa/src/ap/hostapd.c projects/routing/contrib/wpa/src/ap/hostapd.h projects/routing/contrib/wpa/src/ap/hw_features.c projects/routing/contrib/wpa/src/ap/hw_features.h projects/routing/contrib/wpa/src/ap/ieee802_11.c projects/routing/contrib/wpa/src/ap/ieee802_11.h projects/routing/contrib/wpa/src/ap/ieee802_11_auth.c projects/routing/contrib/wpa/src/ap/ieee802_11_auth.h projects/routing/contrib/wpa/src/ap/ieee802_11_ht.c projects/routing/contrib/wpa/src/ap/ieee802_11_vht.c projects/routing/contrib/wpa/src/ap/ieee802_1x.c projects/routing/contrib/wpa/src/ap/ieee802_1x.h projects/routing/contrib/wpa/src/ap/ndisc_snoop.c projects/routing/contrib/wpa/src/ap/sta_info.c projects/routing/contrib/wpa/src/ap/sta_info.h projects/routing/contrib/wpa/src/ap/utils.c projects/routing/contrib/wpa/src/ap/vlan_init.c projects/routing/contrib/wpa/src/ap/vlan_init.h projects/routing/contrib/wpa/src/ap/vlan_util.c projects/routing/contrib/wpa/src/ap/wmm.c projects/routing/contrib/wpa/src/ap/wpa_auth.c projects/routing/contrib/wpa/src/ap/wpa_auth.h projects/routing/contrib/wpa/src/ap/wpa_auth_ft.c projects/routing/contrib/wpa/src/ap/wpa_auth_glue.c projects/routing/contrib/wpa/src/ap/wpa_auth_i.h projects/routing/contrib/wpa/src/ap/wpa_auth_ie.c projects/routing/contrib/wpa/src/ap/wps_hostapd.c projects/routing/contrib/wpa/src/ap/x_snoop.c projects/routing/contrib/wpa/src/common/common_module_tests.c projects/routing/contrib/wpa/src/common/defs.h projects/routing/contrib/wpa/src/common/hw_features_common.c projects/routing/contrib/wpa/src/common/hw_features_common.h projects/routing/contrib/wpa/src/common/ieee802_11_common.c projects/routing/contrib/wpa/src/common/ieee802_11_common.h projects/routing/contrib/wpa/src/common/ieee802_11_defs.h projects/routing/contrib/wpa/src/common/privsep_commands.h projects/routing/contrib/wpa/src/common/qca-vendor.h projects/routing/contrib/wpa/src/common/sae.c projects/routing/contrib/wpa/src/common/sae.h projects/routing/contrib/wpa/src/common/version.h projects/routing/contrib/wpa/src/common/wpa_common.c projects/routing/contrib/wpa/src/common/wpa_common.h projects/routing/contrib/wpa/src/common/wpa_ctrl.c projects/routing/contrib/wpa/src/common/wpa_ctrl.h projects/routing/contrib/wpa/src/crypto/crypto.h projects/routing/contrib/wpa/src/crypto/crypto_module_tests.c projects/routing/contrib/wpa/src/crypto/crypto_openssl.c projects/routing/contrib/wpa/src/crypto/dh_groups.c projects/routing/contrib/wpa/src/crypto/fips_prf_openssl.c projects/routing/contrib/wpa/src/crypto/ms_funcs.c projects/routing/contrib/wpa/src/crypto/ms_funcs.h projects/routing/contrib/wpa/src/crypto/random.c projects/routing/contrib/wpa/src/crypto/sha1-tlsprf.c projects/routing/contrib/wpa/src/crypto/sha1-tprf.c projects/routing/contrib/wpa/src/crypto/sha256-kdf.c projects/routing/contrib/wpa/src/crypto/sha384.h projects/routing/contrib/wpa/src/crypto/tls.h projects/routing/contrib/wpa/src/crypto/tls_gnutls.c projects/routing/contrib/wpa/src/crypto/tls_internal.c projects/routing/contrib/wpa/src/crypto/tls_none.c projects/routing/contrib/wpa/src/crypto/tls_openssl.c projects/routing/contrib/wpa/src/drivers/driver.h projects/routing/contrib/wpa/src/drivers/driver_bsd.c projects/routing/contrib/wpa/src/drivers/driver_ndis.c projects/routing/contrib/wpa/src/drivers/driver_nl80211.h projects/routing/contrib/wpa/src/drivers/driver_nl80211_android.c projects/routing/contrib/wpa/src/drivers/driver_nl80211_capa.c projects/routing/contrib/wpa/src/drivers/driver_nl80211_event.c projects/routing/contrib/wpa/src/drivers/driver_nl80211_scan.c projects/routing/contrib/wpa/src/drivers/driver_privsep.c projects/routing/contrib/wpa/src/drivers/drivers.c projects/routing/contrib/wpa/src/eap_common/eap_common.c projects/routing/contrib/wpa/src/eap_common/eap_fast_common.c projects/routing/contrib/wpa/src/eap_common/eap_pwd_common.c projects/routing/contrib/wpa/src/eap_common/eap_pwd_common.h projects/routing/contrib/wpa/src/eap_common/eap_sake_common.c projects/routing/contrib/wpa/src/eap_common/ikev2_common.c projects/routing/contrib/wpa/src/eap_peer/eap.c projects/routing/contrib/wpa/src/eap_peer/eap.h projects/routing/contrib/wpa/src/eap_peer/eap_aka.c projects/routing/contrib/wpa/src/eap_peer/eap_eke.c projects/routing/contrib/wpa/src/eap_peer/eap_fast.c projects/routing/contrib/wpa/src/eap_peer/eap_gpsk.c projects/routing/contrib/wpa/src/eap_peer/eap_i.h projects/routing/contrib/wpa/src/eap_peer/eap_mschapv2.c projects/routing/contrib/wpa/src/eap_peer/eap_pax.c projects/routing/contrib/wpa/src/eap_peer/eap_peap.c projects/routing/contrib/wpa/src/eap_peer/eap_pwd.c projects/routing/contrib/wpa/src/eap_peer/eap_sake.c projects/routing/contrib/wpa/src/eap_peer/eap_sim.c projects/routing/contrib/wpa/src/eap_peer/eap_tls.c projects/routing/contrib/wpa/src/eap_peer/eap_tls_common.c projects/routing/contrib/wpa/src/eap_peer/eap_tls_common.h projects/routing/contrib/wpa/src/eap_peer/eap_ttls.c projects/routing/contrib/wpa/src/eap_peer/eap_wsc.c projects/routing/contrib/wpa/src/eap_server/eap.h projects/routing/contrib/wpa/src/eap_server/eap_i.h projects/routing/contrib/wpa/src/eap_server/eap_server.c projects/routing/contrib/wpa/src/eap_server/eap_server_eke.c projects/routing/contrib/wpa/src/eap_server/eap_server_fast.c projects/routing/contrib/wpa/src/eap_server/eap_server_mschapv2.c projects/routing/contrib/wpa/src/eap_server/eap_server_peap.c projects/routing/contrib/wpa/src/eap_server/eap_server_pwd.c projects/routing/contrib/wpa/src/eap_server/eap_server_tls.c projects/routing/contrib/wpa/src/eap_server/eap_server_tls_common.c projects/routing/contrib/wpa/src/eap_server/eap_server_ttls.c projects/routing/contrib/wpa/src/eap_server/eap_tls_common.h projects/routing/contrib/wpa/src/eapol_auth/eapol_auth_sm.c projects/routing/contrib/wpa/src/eapol_auth/eapol_auth_sm.h projects/routing/contrib/wpa/src/eapol_supp/eapol_supp_sm.c projects/routing/contrib/wpa/src/p2p/p2p.c projects/routing/contrib/wpa/src/p2p/p2p.h projects/routing/contrib/wpa/src/p2p/p2p_build.c projects/routing/contrib/wpa/src/p2p/p2p_dev_disc.c projects/routing/contrib/wpa/src/p2p/p2p_go_neg.c projects/routing/contrib/wpa/src/p2p/p2p_group.c projects/routing/contrib/wpa/src/p2p/p2p_i.h projects/routing/contrib/wpa/src/p2p/p2p_invitation.c projects/routing/contrib/wpa/src/p2p/p2p_parse.c projects/routing/contrib/wpa/src/p2p/p2p_pd.c projects/routing/contrib/wpa/src/p2p/p2p_utils.c projects/routing/contrib/wpa/src/radius/radius.c projects/routing/contrib/wpa/src/radius/radius_das.c projects/routing/contrib/wpa/src/radius/radius_server.c projects/routing/contrib/wpa/src/radius/radius_server.h projects/routing/contrib/wpa/src/rsn_supp/tdls.c projects/routing/contrib/wpa/src/rsn_supp/wpa.c projects/routing/contrib/wpa/src/rsn_supp/wpa_ft.c projects/routing/contrib/wpa/src/rsn_supp/wpa_ie.c projects/routing/contrib/wpa/src/rsn_supp/wpa_ie.h projects/routing/contrib/wpa/src/tls/libtommath.c projects/routing/contrib/wpa/src/tls/tlsv1_client.c projects/routing/contrib/wpa/src/tls/tlsv1_client.h projects/routing/contrib/wpa/src/tls/tlsv1_server.c projects/routing/contrib/wpa/src/tls/tlsv1_server.h projects/routing/contrib/wpa/src/tls/x509v3.c projects/routing/contrib/wpa/src/utils/browser-wpadebug.c projects/routing/contrib/wpa/src/utils/common.c projects/routing/contrib/wpa/src/utils/common.h projects/routing/contrib/wpa/src/utils/eloop.c projects/routing/contrib/wpa/src/utils/http_curl.c projects/routing/contrib/wpa/src/utils/includes.h projects/routing/contrib/wpa/src/utils/os.h projects/routing/contrib/wpa/src/utils/os_internal.c projects/routing/contrib/wpa/src/utils/os_none.c projects/routing/contrib/wpa/src/utils/os_unix.c projects/routing/contrib/wpa/src/utils/os_win32.c projects/routing/contrib/wpa/src/utils/radiotap.c projects/routing/contrib/wpa/src/utils/utils_module_tests.c projects/routing/contrib/wpa/src/utils/wpa_debug.c projects/routing/contrib/wpa/src/utils/wpa_debug.h projects/routing/contrib/wpa/src/utils/wpabuf.c projects/routing/contrib/wpa/src/wps/http_client.c projects/routing/contrib/wpa/src/wps/http_server.c projects/routing/contrib/wpa/src/wps/httpread.c projects/routing/contrib/wpa/src/wps/ndef.c projects/routing/contrib/wpa/src/wps/wps.c projects/routing/contrib/wpa/src/wps/wps.h projects/routing/contrib/wpa/src/wps/wps_attr_parse.c projects/routing/contrib/wpa/src/wps/wps_attr_parse.h projects/routing/contrib/wpa/src/wps/wps_common.c projects/routing/contrib/wpa/src/wps/wps_defs.h projects/routing/contrib/wpa/src/wps/wps_enrollee.c projects/routing/contrib/wpa/src/wps/wps_er.c projects/routing/contrib/wpa/src/wps/wps_er_ssdp.c projects/routing/contrib/wpa/src/wps/wps_module_tests.c projects/routing/contrib/wpa/src/wps/wps_registrar.c projects/routing/contrib/wpa/src/wps/wps_upnp.c projects/routing/contrib/wpa/src/wps/wps_upnp_ap.c projects/routing/contrib/wpa/src/wps/wps_upnp_event.c projects/routing/contrib/wpa/src/wps/wps_upnp_ssdp.c projects/routing/contrib/wpa/src/wps/wps_upnp_web.c projects/routing/contrib/wpa/src/wps/wps_validate.c projects/routing/contrib/wpa/wpa_supplicant/ChangeLog projects/routing/contrib/wpa/wpa_supplicant/ap.c projects/routing/contrib/wpa/wpa_supplicant/ap.h projects/routing/contrib/wpa/wpa_supplicant/bss.c projects/routing/contrib/wpa/wpa_supplicant/bss.h projects/routing/contrib/wpa/wpa_supplicant/config.c projects/routing/contrib/wpa/wpa_supplicant/config.h projects/routing/contrib/wpa/wpa_supplicant/config_file.c projects/routing/contrib/wpa/wpa_supplicant/config_ssid.h projects/routing/contrib/wpa/wpa_supplicant/ctrl_iface.c projects/routing/contrib/wpa/wpa_supplicant/ctrl_iface_named_pipe.c projects/routing/contrib/wpa/wpa_supplicant/ctrl_iface_udp.c projects/routing/contrib/wpa/wpa_supplicant/ctrl_iface_unix.c projects/routing/contrib/wpa/wpa_supplicant/dbus/dbus_new.c projects/routing/contrib/wpa/wpa_supplicant/dbus/dbus_new.h projects/routing/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers.c projects/routing/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers.h projects/routing/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_p2p.c projects/routing/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_p2p.h projects/routing/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_wps.c projects/routing/contrib/wpa/wpa_supplicant/dbus/dbus_new_helpers.c projects/routing/contrib/wpa/wpa_supplicant/dbus/dbus_new_introspect.c projects/routing/contrib/wpa/wpa_supplicant/dbus/dbus_old.c projects/routing/contrib/wpa/wpa_supplicant/dbus/dbus_old_handlers.c projects/routing/contrib/wpa/wpa_supplicant/defconfig projects/routing/contrib/wpa/wpa_supplicant/driver_i.h projects/routing/contrib/wpa/wpa_supplicant/eapol_test.c projects/routing/contrib/wpa/wpa_supplicant/events.c projects/routing/contrib/wpa/wpa_supplicant/hs20_supplicant.c projects/routing/contrib/wpa/wpa_supplicant/ibss_rsn.c projects/routing/contrib/wpa/wpa_supplicant/interworking.c projects/routing/contrib/wpa/wpa_supplicant/main.c projects/routing/contrib/wpa/wpa_supplicant/mesh.c projects/routing/contrib/wpa/wpa_supplicant/mesh_mpm.c projects/routing/contrib/wpa/wpa_supplicant/mesh_rsn.c projects/routing/contrib/wpa/wpa_supplicant/notify.c projects/routing/contrib/wpa/wpa_supplicant/notify.h projects/routing/contrib/wpa/wpa_supplicant/p2p_supplicant.c projects/routing/contrib/wpa/wpa_supplicant/p2p_supplicant.h projects/routing/contrib/wpa/wpa_supplicant/preauth_test.c projects/routing/contrib/wpa/wpa_supplicant/scan.c projects/routing/contrib/wpa/wpa_supplicant/sme.c projects/routing/contrib/wpa/wpa_supplicant/wpa_cli.c projects/routing/contrib/wpa/wpa_supplicant/wpa_priv.c projects/routing/contrib/wpa/wpa_supplicant/wpa_supplicant.c projects/routing/contrib/wpa/wpa_supplicant/wpa_supplicant.conf projects/routing/contrib/wpa/wpa_supplicant/wpa_supplicant_i.h projects/routing/contrib/wpa/wpa_supplicant/wpas_glue.c projects/routing/contrib/wpa/wpa_supplicant/wpas_glue.h projects/routing/contrib/wpa/wpa_supplicant/wps_supplicant.c projects/routing/contrib/wpa/wpa_supplicant/wps_supplicant.h projects/routing/crypto/openssh/auth.c projects/routing/crypto/openssh/auth2.c projects/routing/crypto/openssh/buffer.c projects/routing/crypto/openssh/channels.c projects/routing/crypto/openssh/cipher.c projects/routing/crypto/openssh/clientloop.c projects/routing/crypto/openssh/compat.c projects/routing/crypto/openssh/contrib/ssh-copy-id.1 projects/routing/crypto/openssh/kex.c projects/routing/crypto/openssh/misc.c projects/routing/crypto/openssh/moduli.5 projects/routing/crypto/openssh/mux.c projects/routing/crypto/openssh/openbsd-compat/blowfish.c projects/routing/crypto/openssh/openbsd-compat/bsd-misc.h projects/routing/crypto/openssh/packet.c projects/routing/crypto/openssh/readconf.c projects/routing/crypto/openssh/scp.1 projects/routing/crypto/openssh/servconf.c projects/routing/crypto/openssh/serverloop.c projects/routing/crypto/openssh/session.c projects/routing/crypto/openssh/sftp-common.c projects/routing/crypto/openssh/sftp-server.8 projects/routing/crypto/openssh/sftp.1 projects/routing/crypto/openssh/sftp.c projects/routing/crypto/openssh/ssh-add.1 projects/routing/crypto/openssh/ssh-agent.c projects/routing/crypto/openssh/ssh-keygen.1 projects/routing/crypto/openssh/ssh-keyscan.1 projects/routing/crypto/openssh/ssh-keysign.8 projects/routing/crypto/openssh/ssh-pkcs11-helper.8 projects/routing/crypto/openssh/ssh.1 projects/routing/crypto/openssh/ssh.c projects/routing/crypto/openssh/ssh_config.5 projects/routing/crypto/openssh/sshconnect.c projects/routing/crypto/openssh/sshconnect2.c projects/routing/crypto/openssh/sshd.8 projects/routing/crypto/openssh/sshd.c projects/routing/crypto/openssh/sshd_config.5 projects/routing/crypto/openssl/CHANGES projects/routing/crypto/openssl/Configure projects/routing/crypto/openssl/FAQ projects/routing/crypto/openssl/Makefile projects/routing/crypto/openssl/Makefile.org projects/routing/crypto/openssl/NEWS projects/routing/crypto/openssl/README projects/routing/crypto/openssl/apps/apps.c projects/routing/crypto/openssl/apps/apps.h projects/routing/crypto/openssl/apps/ca.c projects/routing/crypto/openssl/apps/ciphers.c projects/routing/crypto/openssl/apps/cms.c projects/routing/crypto/openssl/apps/crl.c projects/routing/crypto/openssl/apps/dgst.c projects/routing/crypto/openssl/apps/dhparam.c projects/routing/crypto/openssl/apps/ecparam.c projects/routing/crypto/openssl/apps/genrsa.c projects/routing/crypto/openssl/apps/ocsp.c projects/routing/crypto/openssl/apps/openssl.cnf projects/routing/crypto/openssl/apps/pkcs8.c projects/routing/crypto/openssl/apps/s_apps.h projects/routing/crypto/openssl/apps/s_cb.c projects/routing/crypto/openssl/apps/s_client.c projects/routing/crypto/openssl/apps/s_server.c projects/routing/crypto/openssl/apps/s_socket.c projects/routing/crypto/openssl/apps/smime.c projects/routing/crypto/openssl/apps/speed.c projects/routing/crypto/openssl/apps/verify.c projects/routing/crypto/openssl/apps/x509.c projects/routing/crypto/openssl/config projects/routing/crypto/openssl/crypto/Makefile projects/routing/crypto/openssl/crypto/aes/Makefile projects/routing/crypto/openssl/crypto/aes/aes_wrap.c projects/routing/crypto/openssl/crypto/aes/aes_x86core.c projects/routing/crypto/openssl/crypto/aes/asm/aes-586.pl projects/routing/crypto/openssl/crypto/aes/asm/aes-armv4.pl projects/routing/crypto/openssl/crypto/aes/asm/aes-mips.pl projects/routing/crypto/openssl/crypto/aes/asm/aes-ppc.pl projects/routing/crypto/openssl/crypto/aes/asm/aes-x86_64.pl projects/routing/crypto/openssl/crypto/aes/asm/aesni-sha1-x86_64.pl projects/routing/crypto/openssl/crypto/aes/asm/aesni-x86.pl projects/routing/crypto/openssl/crypto/aes/asm/aesni-x86_64.pl projects/routing/crypto/openssl/crypto/aes/asm/bsaes-x86_64.pl projects/routing/crypto/openssl/crypto/aes/asm/vpaes-x86.pl projects/routing/crypto/openssl/crypto/aes/asm/vpaes-x86_64.pl projects/routing/crypto/openssl/crypto/arm_arch.h projects/routing/crypto/openssl/crypto/armcap.c projects/routing/crypto/openssl/crypto/armv4cpuid.S projects/routing/crypto/openssl/crypto/asn1/Makefile projects/routing/crypto/openssl/crypto/asn1/a_gentm.c projects/routing/crypto/openssl/crypto/asn1/a_time.c projects/routing/crypto/openssl/crypto/asn1/a_utctm.c projects/routing/crypto/openssl/crypto/asn1/ameth_lib.c projects/routing/crypto/openssl/crypto/asn1/asn1.h projects/routing/crypto/openssl/crypto/asn1/asn1_locl.h projects/routing/crypto/openssl/crypto/asn1/t_x509.c projects/routing/crypto/openssl/crypto/asn1/x_crl.c projects/routing/crypto/openssl/crypto/asn1/x_x509.c projects/routing/crypto/openssl/crypto/bio/b_dump.c projects/routing/crypto/openssl/crypto/bio/b_sock.c projects/routing/crypto/openssl/crypto/bio/bio.h projects/routing/crypto/openssl/crypto/bio/bio_err.c projects/routing/crypto/openssl/crypto/bio/bss_acpt.c projects/routing/crypto/openssl/crypto/bio/bss_conn.c projects/routing/crypto/openssl/crypto/bio/bss_dgram.c projects/routing/crypto/openssl/crypto/bio/bss_fd.c projects/routing/crypto/openssl/crypto/bn/Makefile projects/routing/crypto/openssl/crypto/bn/asm/armv4-gf2m.pl projects/routing/crypto/openssl/crypto/bn/asm/armv4-mont.pl projects/routing/crypto/openssl/crypto/bn/asm/mips-mont.pl projects/routing/crypto/openssl/crypto/bn/asm/mips.pl projects/routing/crypto/openssl/crypto/bn/asm/ppc-mont.pl projects/routing/crypto/openssl/crypto/bn/asm/ppc.pl projects/routing/crypto/openssl/crypto/bn/asm/ppc64-mont.pl projects/routing/crypto/openssl/crypto/bn/asm/x86_64-gcc.c projects/routing/crypto/openssl/crypto/bn/asm/x86_64-mont.pl projects/routing/crypto/openssl/crypto/bn/asm/x86_64-mont5.pl projects/routing/crypto/openssl/crypto/bn/bn.h projects/routing/crypto/openssl/crypto/bn/bn_asm.c projects/routing/crypto/openssl/crypto/bn/bn_exp.c projects/routing/crypto/openssl/crypto/bn/bn_gf2m.c projects/routing/crypto/openssl/crypto/bn/bn_lcl.h projects/routing/crypto/openssl/crypto/bn/bntest.c projects/routing/crypto/openssl/crypto/buffer/buf_str.c projects/routing/crypto/openssl/crypto/buffer/buffer.h projects/routing/crypto/openssl/crypto/camellia/Makefile projects/routing/crypto/openssl/crypto/camellia/asm/cmll-x86_64.pl projects/routing/crypto/openssl/crypto/cast/cast_lcl.h projects/routing/crypto/openssl/crypto/cms/Makefile projects/routing/crypto/openssl/crypto/cms/cms.h projects/routing/crypto/openssl/crypto/cms/cms_asn1.c projects/routing/crypto/openssl/crypto/cms/cms_env.c projects/routing/crypto/openssl/crypto/cms/cms_err.c projects/routing/crypto/openssl/crypto/cms/cms_lcl.h projects/routing/crypto/openssl/crypto/cms/cms_lib.c projects/routing/crypto/openssl/crypto/cms/cms_sd.c projects/routing/crypto/openssl/crypto/cms/cms_smime.c projects/routing/crypto/openssl/crypto/cryptlib.c projects/routing/crypto/openssl/crypto/cversion.c projects/routing/crypto/openssl/crypto/des/Makefile projects/routing/crypto/openssl/crypto/des/asm/des-586.pl projects/routing/crypto/openssl/crypto/des/asm/des_enc.m4 projects/routing/crypto/openssl/crypto/des/des_locl.h projects/routing/crypto/openssl/crypto/des/read_pwd.c projects/routing/crypto/openssl/crypto/dh/Makefile projects/routing/crypto/openssl/crypto/dh/dh.h projects/routing/crypto/openssl/crypto/dh/dh_ameth.c projects/routing/crypto/openssl/crypto/dh/dh_asn1.c projects/routing/crypto/openssl/crypto/dh/dh_check.c projects/routing/crypto/openssl/crypto/dh/dh_err.c projects/routing/crypto/openssl/crypto/dh/dh_key.c projects/routing/crypto/openssl/crypto/dh/dh_pmeth.c projects/routing/crypto/openssl/crypto/dh/dhtest.c projects/routing/crypto/openssl/crypto/dsa/dsa.h projects/routing/crypto/openssl/crypto/dsa/dsa_ameth.c projects/routing/crypto/openssl/crypto/dsa/dsa_err.c projects/routing/crypto/openssl/crypto/dsa/dsa_gen.c projects/routing/crypto/openssl/crypto/dsa/dsa_locl.h projects/routing/crypto/openssl/crypto/dsa/dsa_ossl.c projects/routing/crypto/openssl/crypto/dsa/dsa_pmeth.c projects/routing/crypto/openssl/crypto/ebcdic.c projects/routing/crypto/openssl/crypto/ec/Makefile projects/routing/crypto/openssl/crypto/ec/ec.h projects/routing/crypto/openssl/crypto/ec/ec_ameth.c projects/routing/crypto/openssl/crypto/ec/ec_curve.c projects/routing/crypto/openssl/crypto/ec/ec_cvt.c projects/routing/crypto/openssl/crypto/ec/ec_err.c projects/routing/crypto/openssl/crypto/ec/ec_lcl.h projects/routing/crypto/openssl/crypto/ec/ec_lib.c projects/routing/crypto/openssl/crypto/ec/ec_pmeth.c projects/routing/crypto/openssl/crypto/ec/eck_prn.c projects/routing/crypto/openssl/crypto/ec/ecp_nistp521.c projects/routing/crypto/openssl/crypto/ecdh/Makefile projects/routing/crypto/openssl/crypto/ecdh/ecdh.h projects/routing/crypto/openssl/crypto/ecdh/ecdhtest.c projects/routing/crypto/openssl/crypto/ecdh/ech_ossl.c projects/routing/crypto/openssl/crypto/ecdsa/ecdsa.h projects/routing/crypto/openssl/crypto/ecdsa/ecs_err.c projects/routing/crypto/openssl/crypto/ecdsa/ecs_lib.c projects/routing/crypto/openssl/crypto/ecdsa/ecs_locl.h projects/routing/crypto/openssl/crypto/ecdsa/ecs_ossl.c projects/routing/crypto/openssl/crypto/engine/Makefile projects/routing/crypto/openssl/crypto/engine/eng_all.c projects/routing/crypto/openssl/crypto/engine/eng_cryptodev.c projects/routing/crypto/openssl/crypto/engine/engine.h projects/routing/crypto/openssl/crypto/evp/Makefile projects/routing/crypto/openssl/crypto/evp/c_allc.c projects/routing/crypto/openssl/crypto/evp/digest.c projects/routing/crypto/openssl/crypto/evp/e_aes.c projects/routing/crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c projects/routing/crypto/openssl/crypto/evp/e_camellia.c projects/routing/crypto/openssl/crypto/evp/e_des.c projects/routing/crypto/openssl/crypto/evp/e_des3.c projects/routing/crypto/openssl/crypto/evp/e_null.c projects/routing/crypto/openssl/crypto/evp/encode.c projects/routing/crypto/openssl/crypto/evp/evp.h projects/routing/crypto/openssl/crypto/evp/evp_enc.c projects/routing/crypto/openssl/crypto/evp/evp_err.c projects/routing/crypto/openssl/crypto/evp/evp_extra_test.c projects/routing/crypto/openssl/crypto/evp/evp_lib.c projects/routing/crypto/openssl/crypto/evp/evp_locl.h projects/routing/crypto/openssl/crypto/evp/evp_test.c projects/routing/crypto/openssl/crypto/evp/evptests.txt projects/routing/crypto/openssl/crypto/evp/m_dss.c projects/routing/crypto/openssl/crypto/evp/m_dss1.c projects/routing/crypto/openssl/crypto/evp/m_ecdsa.c projects/routing/crypto/openssl/crypto/evp/m_sha1.c projects/routing/crypto/openssl/crypto/evp/m_sigver.c projects/routing/crypto/openssl/crypto/evp/p_lib.c projects/routing/crypto/openssl/crypto/evp/pmeth_lib.c projects/routing/crypto/openssl/crypto/hmac/hm_ameth.c projects/routing/crypto/openssl/crypto/hmac/hmac.c projects/routing/crypto/openssl/crypto/hmac/hmactest.c projects/routing/crypto/openssl/crypto/jpake/jpake.c projects/routing/crypto/openssl/crypto/md32_common.h projects/routing/crypto/openssl/crypto/md5/Makefile projects/routing/crypto/openssl/crypto/md5/md5_locl.h projects/routing/crypto/openssl/crypto/modes/Makefile projects/routing/crypto/openssl/crypto/modes/asm/ghash-armv4.pl projects/routing/crypto/openssl/crypto/modes/asm/ghash-s390x.pl projects/routing/crypto/openssl/crypto/modes/asm/ghash-sparcv9.pl projects/routing/crypto/openssl/crypto/modes/asm/ghash-x86.pl projects/routing/crypto/openssl/crypto/modes/asm/ghash-x86_64.pl projects/routing/crypto/openssl/crypto/modes/cbc128.c projects/routing/crypto/openssl/crypto/modes/gcm128.c projects/routing/crypto/openssl/crypto/modes/modes.h projects/routing/crypto/openssl/crypto/modes/modes_lcl.h projects/routing/crypto/openssl/crypto/o_str.c projects/routing/crypto/openssl/crypto/o_time.c projects/routing/crypto/openssl/crypto/o_time.h projects/routing/crypto/openssl/crypto/objects/obj_dat.h projects/routing/crypto/openssl/crypto/objects/obj_mac.h projects/routing/crypto/openssl/crypto/objects/obj_mac.num projects/routing/crypto/openssl/crypto/objects/obj_xref.h projects/routing/crypto/openssl/crypto/objects/obj_xref.txt projects/routing/crypto/openssl/crypto/objects/objects.txt projects/routing/crypto/openssl/crypto/objects/objxref.pl projects/routing/crypto/openssl/crypto/ocsp/ocsp.h projects/routing/crypto/openssl/crypto/ocsp/ocsp_ht.c projects/routing/crypto/openssl/crypto/ocsp/ocsp_lib.c projects/routing/crypto/openssl/crypto/opensslconf.h projects/routing/crypto/openssl/crypto/opensslv.h projects/routing/crypto/openssl/crypto/ossl_typ.h projects/routing/crypto/openssl/crypto/pem/Makefile projects/routing/crypto/openssl/crypto/pem/pem.h projects/routing/crypto/openssl/crypto/pem/pem_all.c projects/routing/crypto/openssl/crypto/pem/pem_err.c projects/routing/crypto/openssl/crypto/pem/pem_lib.c projects/routing/crypto/openssl/crypto/pem/pem_pkey.c projects/routing/crypto/openssl/crypto/perlasm/ppc-xlate.pl projects/routing/crypto/openssl/crypto/perlasm/x86_64-xlate.pl projects/routing/crypto/openssl/crypto/perlasm/x86asm.pl projects/routing/crypto/openssl/crypto/perlasm/x86gas.pl projects/routing/crypto/openssl/crypto/perlasm/x86masm.pl projects/routing/crypto/openssl/crypto/perlasm/x86nasm.pl projects/routing/crypto/openssl/crypto/pkcs12/p12_decr.c projects/routing/crypto/openssl/crypto/pkcs12/p12_p8e.c projects/routing/crypto/openssl/crypto/ppccap.c projects/routing/crypto/openssl/crypto/ppccpuid.pl projects/routing/crypto/openssl/crypto/rc4/Makefile projects/routing/crypto/openssl/crypto/rc4/asm/rc4-586.pl projects/routing/crypto/openssl/crypto/rc4/rc4_enc.c projects/routing/crypto/openssl/crypto/rc5/rc5_locl.h projects/routing/crypto/openssl/crypto/rsa/Makefile projects/routing/crypto/openssl/crypto/rsa/rsa.h projects/routing/crypto/openssl/crypto/rsa/rsa_ameth.c projects/routing/crypto/openssl/crypto/rsa/rsa_asn1.c projects/routing/crypto/openssl/crypto/rsa/rsa_err.c projects/routing/crypto/openssl/crypto/rsa/rsa_oaep.c projects/routing/crypto/openssl/crypto/rsa/rsa_pmeth.c projects/routing/crypto/openssl/crypto/rsa/rsa_sign.c projects/routing/crypto/openssl/crypto/sha/Makefile projects/routing/crypto/openssl/crypto/sha/asm/sha1-586.pl projects/routing/crypto/openssl/crypto/sha/asm/sha1-armv4-large.pl projects/routing/crypto/openssl/crypto/sha/asm/sha1-mips.pl projects/routing/crypto/openssl/crypto/sha/asm/sha1-ppc.pl projects/routing/crypto/openssl/crypto/sha/asm/sha1-sparcv9.pl projects/routing/crypto/openssl/crypto/sha/asm/sha1-x86_64.pl projects/routing/crypto/openssl/crypto/sha/asm/sha256-586.pl projects/routing/crypto/openssl/crypto/sha/asm/sha256-armv4.pl projects/routing/crypto/openssl/crypto/sha/asm/sha512-586.pl projects/routing/crypto/openssl/crypto/sha/asm/sha512-armv4.pl projects/routing/crypto/openssl/crypto/sha/asm/sha512-ia64.pl projects/routing/crypto/openssl/crypto/sha/asm/sha512-mips.pl projects/routing/crypto/openssl/crypto/sha/asm/sha512-ppc.pl projects/routing/crypto/openssl/crypto/sha/asm/sha512-sparcv9.pl projects/routing/crypto/openssl/crypto/sha/asm/sha512-x86_64.pl projects/routing/crypto/openssl/crypto/sha/sha512.c projects/routing/crypto/openssl/crypto/sparccpuid.S projects/routing/crypto/openssl/crypto/sparcv9cap.c projects/routing/crypto/openssl/crypto/srp/Makefile projects/routing/crypto/openssl/crypto/srp/srptest.c projects/routing/crypto/openssl/crypto/stack/safestack.h projects/routing/crypto/openssl/crypto/stack/stack.c projects/routing/crypto/openssl/crypto/stack/stack.h projects/routing/crypto/openssl/crypto/symhacks.h projects/routing/crypto/openssl/crypto/ts/ts_rsp_sign.c projects/routing/crypto/openssl/crypto/ts/ts_rsp_verify.c projects/routing/crypto/openssl/crypto/ui/ui_openssl.c projects/routing/crypto/openssl/crypto/whrlpool/asm/wp-mmx.pl projects/routing/crypto/openssl/crypto/whrlpool/asm/wp-x86_64.pl projects/routing/crypto/openssl/crypto/x509/Makefile projects/routing/crypto/openssl/crypto/x509/verify_extra_test.c projects/routing/crypto/openssl/crypto/x509/x509.h projects/routing/crypto/openssl/crypto/x509/x509_cmp.c projects/routing/crypto/openssl/crypto/x509/x509_err.c projects/routing/crypto/openssl/crypto/x509/x509_lu.c projects/routing/crypto/openssl/crypto/x509/x509_set.c projects/routing/crypto/openssl/crypto/x509/x509_trs.c projects/routing/crypto/openssl/crypto/x509/x509_txt.c projects/routing/crypto/openssl/crypto/x509/x509_vfy.c projects/routing/crypto/openssl/crypto/x509/x509_vfy.h projects/routing/crypto/openssl/crypto/x509/x509_vpm.c projects/routing/crypto/openssl/crypto/x509/x_all.c projects/routing/crypto/openssl/crypto/x509v3/Makefile projects/routing/crypto/openssl/crypto/x509v3/ext_dat.h projects/routing/crypto/openssl/crypto/x509v3/v3_lib.c projects/routing/crypto/openssl/crypto/x509v3/v3_purp.c projects/routing/crypto/openssl/crypto/x509v3/v3_utl.c projects/routing/crypto/openssl/crypto/x509v3/v3err.c projects/routing/crypto/openssl/crypto/x509v3/x509v3.h projects/routing/crypto/openssl/crypto/x86_64cpuid.pl projects/routing/crypto/openssl/crypto/x86cpuid.pl projects/routing/crypto/openssl/doc/apps/c_rehash.pod projects/routing/crypto/openssl/doc/apps/ciphers.pod projects/routing/crypto/openssl/doc/apps/cms.pod projects/routing/crypto/openssl/doc/apps/genpkey.pod projects/routing/crypto/openssl/doc/apps/ocsp.pod projects/routing/crypto/openssl/doc/apps/pkcs8.pod projects/routing/crypto/openssl/doc/apps/req.pod projects/routing/crypto/openssl/doc/apps/s_client.pod projects/routing/crypto/openssl/doc/apps/s_server.pod projects/routing/crypto/openssl/doc/apps/smime.pod projects/routing/crypto/openssl/doc/apps/verify.pod projects/routing/crypto/openssl/doc/apps/x509.pod projects/routing/crypto/openssl/doc/crypto/ASN1_STRING_length.pod projects/routing/crypto/openssl/doc/crypto/ASN1_STRING_print_ex.pod projects/routing/crypto/openssl/doc/crypto/BIO_f_ssl.pod projects/routing/crypto/openssl/doc/crypto/BIO_find_type.pod projects/routing/crypto/openssl/doc/crypto/BIO_s_accept.pod projects/routing/crypto/openssl/doc/crypto/BIO_s_connect.pod projects/routing/crypto/openssl/doc/crypto/BN_BLINDING_new.pod projects/routing/crypto/openssl/doc/crypto/BN_CTX_new.pod projects/routing/crypto/openssl/doc/crypto/BN_generate_prime.pod projects/routing/crypto/openssl/doc/crypto/BN_rand.pod projects/routing/crypto/openssl/doc/crypto/CMS_add0_cert.pod projects/routing/crypto/openssl/doc/crypto/CMS_get0_RecipientInfos.pod projects/routing/crypto/openssl/doc/crypto/CMS_get0_SignerInfos.pod projects/routing/crypto/openssl/doc/crypto/CMS_verify.pod projects/routing/crypto/openssl/doc/crypto/DH_generate_parameters.pod projects/routing/crypto/openssl/doc/crypto/DSA_generate_parameters.pod projects/routing/crypto/openssl/doc/crypto/ERR_remove_state.pod projects/routing/crypto/openssl/doc/crypto/EVP_BytesToKey.pod projects/routing/crypto/openssl/doc/crypto/EVP_DigestInit.pod projects/routing/crypto/openssl/doc/crypto/EVP_DigestVerifyInit.pod projects/routing/crypto/openssl/doc/crypto/EVP_EncryptInit.pod projects/routing/crypto/openssl/doc/crypto/EVP_PKEY_CTX_ctrl.pod projects/routing/crypto/openssl/doc/crypto/EVP_PKEY_cmp.pod projects/routing/crypto/openssl/doc/crypto/OPENSSL_VERSION_NUMBER.pod projects/routing/crypto/openssl/doc/crypto/OPENSSL_config.pod projects/routing/crypto/openssl/doc/crypto/OPENSSL_ia32cap.pod projects/routing/crypto/openssl/doc/crypto/OPENSSL_load_builtin_modules.pod projects/routing/crypto/openssl/doc/crypto/OpenSSL_add_all_algorithms.pod projects/routing/crypto/openssl/doc/crypto/PKCS7_verify.pod projects/routing/crypto/openssl/doc/crypto/RAND_egd.pod projects/routing/crypto/openssl/doc/crypto/RSA_generate_key.pod projects/routing/crypto/openssl/doc/crypto/X509_NAME_add_entry_by_txt.pod projects/routing/crypto/openssl/doc/crypto/X509_STORE_CTX_get_error.pod projects/routing/crypto/openssl/doc/crypto/X509_VERIFY_PARAM_set_flags.pod projects/routing/crypto/openssl/doc/crypto/crypto.pod projects/routing/crypto/openssl/doc/crypto/d2i_DSAPublicKey.pod projects/routing/crypto/openssl/doc/crypto/d2i_X509.pod projects/routing/crypto/openssl/doc/crypto/d2i_X509_CRL.pod projects/routing/crypto/openssl/doc/crypto/ecdsa.pod projects/routing/crypto/openssl/doc/crypto/evp.pod projects/routing/crypto/openssl/doc/crypto/hmac.pod projects/routing/crypto/openssl/doc/crypto/i2d_PKCS7_bio_stream.pod projects/routing/crypto/openssl/doc/crypto/rand.pod projects/routing/crypto/openssl/doc/crypto/sha.pod projects/routing/crypto/openssl/doc/ssl/SSL_CIPHER_get_name.pod projects/routing/crypto/openssl/doc/ssl/SSL_COMP_add_compression_method.pod projects/routing/crypto/openssl/doc/ssl/SSL_CTX_add_extra_chain_cert.pod projects/routing/crypto/openssl/doc/ssl/SSL_CTX_sess_set_cache_size.pod projects/routing/crypto/openssl/doc/ssl/SSL_CTX_set_cert_store.pod projects/routing/crypto/openssl/doc/ssl/SSL_CTX_set_cipher_list.pod projects/routing/crypto/openssl/doc/ssl/SSL_CTX_set_tmp_rsa_callback.pod projects/routing/crypto/openssl/doc/ssl/SSL_CTX_use_certificate.pod projects/routing/crypto/openssl/doc/ssl/SSL_CTX_use_psk_identity_hint.pod projects/routing/crypto/openssl/doc/ssl/SSL_accept.pod projects/routing/crypto/openssl/doc/ssl/SSL_do_handshake.pod projects/routing/crypto/openssl/doc/ssl/SSL_shutdown.pod projects/routing/crypto/openssl/doc/ssl/ssl.pod projects/routing/crypto/openssl/doc/ssleay.txt projects/routing/crypto/openssl/e_os.h projects/routing/crypto/openssl/e_os2.h projects/routing/crypto/openssl/engines/Makefile projects/routing/crypto/openssl/engines/ccgost/Makefile projects/routing/crypto/openssl/engines/ccgost/gost89.c projects/routing/crypto/openssl/engines/ccgost/gost_crypt.c projects/routing/crypto/openssl/engines/ccgost/gost_pmeth.c projects/routing/crypto/openssl/engines/e_capi.c projects/routing/crypto/openssl/engines/vendor_defns/hwcryptohook.h projects/routing/crypto/openssl/ssl/Makefile projects/routing/crypto/openssl/ssl/d1_both.c projects/routing/crypto/openssl/ssl/d1_clnt.c projects/routing/crypto/openssl/ssl/d1_lib.c projects/routing/crypto/openssl/ssl/d1_meth.c projects/routing/crypto/openssl/ssl/d1_pkt.c projects/routing/crypto/openssl/ssl/d1_srtp.c projects/routing/crypto/openssl/ssl/d1_srvr.c projects/routing/crypto/openssl/ssl/dtls1.h projects/routing/crypto/openssl/ssl/heartbeat_test.c projects/routing/crypto/openssl/ssl/s23_clnt.c projects/routing/crypto/openssl/ssl/s23_srvr.c projects/routing/crypto/openssl/ssl/s2_clnt.c projects/routing/crypto/openssl/ssl/s2_lib.c projects/routing/crypto/openssl/ssl/s3_both.c projects/routing/crypto/openssl/ssl/s3_cbc.c projects/routing/crypto/openssl/ssl/s3_clnt.c projects/routing/crypto/openssl/ssl/s3_enc.c projects/routing/crypto/openssl/ssl/s3_lib.c projects/routing/crypto/openssl/ssl/s3_pkt.c projects/routing/crypto/openssl/ssl/s3_srvr.c projects/routing/crypto/openssl/ssl/srtp.h projects/routing/crypto/openssl/ssl/ssl.h projects/routing/crypto/openssl/ssl/ssl3.h projects/routing/crypto/openssl/ssl/ssl_algs.c projects/routing/crypto/openssl/ssl/ssl_cert.c projects/routing/crypto/openssl/ssl/ssl_ciph.c projects/routing/crypto/openssl/ssl/ssl_err.c projects/routing/crypto/openssl/ssl/ssl_lib.c projects/routing/crypto/openssl/ssl/ssl_locl.h projects/routing/crypto/openssl/ssl/ssl_rsa.c projects/routing/crypto/openssl/ssl/ssl_sess.c projects/routing/crypto/openssl/ssl/ssl_txt.c projects/routing/crypto/openssl/ssl/ssltest.c projects/routing/crypto/openssl/ssl/t1_clnt.c projects/routing/crypto/openssl/ssl/t1_enc.c projects/routing/crypto/openssl/ssl/t1_lib.c projects/routing/crypto/openssl/ssl/t1_meth.c projects/routing/crypto/openssl/ssl/t1_srvr.c projects/routing/crypto/openssl/ssl/tls1.h projects/routing/crypto/openssl/util/files.pl projects/routing/crypto/openssl/util/libeay.num projects/routing/crypto/openssl/util/mk1mf.pl projects/routing/crypto/openssl/util/mkdef.pl projects/routing/crypto/openssl/util/mkerr.pl projects/routing/crypto/openssl/util/mkstack.pl projects/routing/crypto/openssl/util/pl/BC-32.pl projects/routing/crypto/openssl/util/pl/VC-32.pl projects/routing/crypto/openssl/util/pl/unix.pl projects/routing/crypto/openssl/util/ssleay.num projects/routing/etc/Makefile projects/routing/etc/defaults/periodic.conf projects/routing/etc/defaults/rc.conf projects/routing/etc/etc.aarch64/ttys projects/routing/etc/etc.amd64/ttys projects/routing/etc/etc.i386/ttys projects/routing/etc/etc.mips/ttys projects/routing/etc/etc.pc98/ttys projects/routing/etc/etc.powerpc/ttys projects/routing/etc/etc.sparc64/ttys projects/routing/etc/login.conf projects/routing/etc/mtree/BSD.debug.dist projects/routing/etc/mtree/BSD.tests.dist projects/routing/etc/mtree/BSD.usr.dist projects/routing/etc/mtree/BSD.var.dist projects/routing/etc/mtree/Makefile projects/routing/etc/netstart projects/routing/etc/ntp.conf projects/routing/etc/periodic/Makefile projects/routing/etc/periodic/daily/400.status-disks projects/routing/etc/periodic/daily/480.status-ntpd projects/routing/etc/periodic/daily/Makefile projects/routing/etc/periodic/security/520.pfdenied projects/routing/etc/rc.d/automount projects/routing/etc/rc.d/automountd projects/routing/etc/rc.d/autounmountd projects/routing/etc/rc.d/bgfsck projects/routing/etc/rc.d/fsck projects/routing/etc/rc.d/jail projects/routing/etc/rc.d/local_unbound projects/routing/etc/rc.d/mdconfig projects/routing/etc/rc.d/mdconfig2 projects/routing/etc/rc.d/mountcritlocal projects/routing/etc/rc.d/netif projects/routing/etc/rc.d/othermta projects/routing/etc/rc.d/ugidfw projects/routing/etc/rc.d/var projects/routing/etc/rc.shutdown projects/routing/etc/rc.subr projects/routing/etc/sendmail/Makefile projects/routing/etc/sendmail/Makefile.depend projects/routing/gnu/Makefile projects/routing/gnu/lib/Makefile projects/routing/gnu/lib/csu/Makefile projects/routing/gnu/lib/libreadline/readline/Makefile projects/routing/gnu/lib/libssp/Makefile.depend projects/routing/gnu/lib/tests/Makefile projects/routing/gnu/tests/Makefile projects/routing/gnu/usr.bin/binutils/ld/Makefile projects/routing/gnu/usr.bin/binutils/ld/Makefile.amd64 projects/routing/gnu/usr.bin/binutils/ld/Makefile.depend.host projects/routing/gnu/usr.bin/binutils/ld/Makefile.mips projects/routing/gnu/usr.bin/binutils/ld/Makefile.powerpc64 projects/routing/gnu/usr.bin/binutils/ld/Makefile.sparc64 projects/routing/gnu/usr.bin/binutils/ld/genscripts.sh projects/routing/gnu/usr.bin/binutils/libbfd/Makefile.i386 projects/routing/gnu/usr.bin/cc/Makefile projects/routing/gnu/usr.bin/cc/c++/Makefile.depend projects/routing/gnu/usr.bin/cc/cc/Makefile.depend projects/routing/gnu/usr.bin/cc/cc1/Makefile.depend projects/routing/gnu/usr.bin/cc/cc1plus/Makefile.depend projects/routing/gnu/usr.bin/cc/cc_int/Makefile.depend projects/routing/gnu/usr.bin/cc/cc_tools/Makefile projects/routing/gnu/usr.bin/cc/cc_tools/Makefile.depend projects/routing/gnu/usr.bin/cc/cpp/Makefile.depend projects/routing/gnu/usr.bin/cc/gcov/Makefile.depend projects/routing/gnu/usr.bin/cc/include/Makefile.depend projects/routing/gnu/usr.bin/cc/libcpp/Makefile.depend projects/routing/gnu/usr.bin/cc/libdecnumber/Makefile.depend projects/routing/gnu/usr.bin/cc/libiberty/Makefile.depend projects/routing/gnu/usr.bin/diff/Makefile.depend projects/routing/gnu/usr.bin/diff/tests/Makefile projects/routing/gnu/usr.bin/dtc/Makefile.depend projects/routing/gnu/usr.bin/gdb/kgdb/trgt_amd64.c projects/routing/gnu/usr.bin/gdb/kgdb/trgt_arm.c projects/routing/gnu/usr.bin/gperf/Makefile.depend projects/routing/gnu/usr.bin/grep/Makefile.depend projects/routing/gnu/usr.bin/grep/savedir.c projects/routing/gnu/usr.bin/groff/Makefile projects/routing/gnu/usr.bin/groff/src/utils/indxbib/Makefile projects/routing/gnu/usr.bin/groff/tmac/Makefile projects/routing/gnu/usr.bin/rcs/Makefile projects/routing/gnu/usr.bin/tests/Makefile projects/routing/include/Makefile projects/routing/include/_ctype.h projects/routing/include/ctype.h projects/routing/include/limits.h projects/routing/include/resolv.h projects/routing/include/stdio.h projects/routing/include/unistd.h projects/routing/include/wctype.h projects/routing/include/xlocale/_ctype.h projects/routing/kerberos5/Makefile projects/routing/kerberos5/lib/Makefile projects/routing/kerberos5/libexec/Makefile projects/routing/kerberos5/libexec/kdigest/Makefile projects/routing/kerberos5/tools/Makefile projects/routing/kerberos5/usr.bin/Makefile projects/routing/kerberos5/usr.bin/hxtool/Makefile projects/routing/kerberos5/usr.bin/kadmin/Makefile projects/routing/kerberos5/usr.bin/kcc/Makefile projects/routing/kerberos5/usr.sbin/Makefile projects/routing/kerberos5/usr.sbin/iprop-log/Makefile projects/routing/kerberos5/usr.sbin/ktutil/Makefile projects/routing/lib/Makefile projects/routing/lib/atf/libatf-c++/tests/Makefile projects/routing/lib/atf/libatf-c++/tests/detail/Makefile projects/routing/lib/atf/libatf-c/tests/Makefile projects/routing/lib/atf/libatf-c/tests/detail/Makefile projects/routing/lib/atf/tests/Makefile projects/routing/lib/atf/tests/test-programs/Makefile projects/routing/lib/clang/Makefile projects/routing/lib/clang/clang.build.mk projects/routing/lib/clang/include/Makefile projects/routing/lib/clang/include/clang/Basic/Version.inc projects/routing/lib/clang/include/clang/Config/config.h projects/routing/lib/clang/include/llvm/Config/config.h projects/routing/lib/clang/include/llvm/Config/llvm-config.h projects/routing/lib/clang/libclanganalysis/Makefile projects/routing/lib/clang/libclangbasic/Makefile projects/routing/lib/clang/libclangcodegen/Makefile projects/routing/lib/clang/libclangdriver/Makefile projects/routing/lib/clang/libclangfrontend/Makefile projects/routing/lib/clang/libclangstaticanalyzercheckers/Makefile projects/routing/lib/clang/libclangstaticanalyzercore/Makefile projects/routing/lib/clang/liblldb/Makefile projects/routing/lib/clang/liblldbAPI/Makefile projects/routing/lib/clang/liblldbCommands/Makefile projects/routing/lib/clang/liblldbCore/Makefile projects/routing/lib/clang/liblldbDataFormatters/Makefile projects/routing/lib/clang/liblldbHostCommon/Makefile projects/routing/lib/clang/liblldbHostPOSIX/Makefile projects/routing/lib/clang/liblldbInterpreter/Makefile projects/routing/lib/clang/liblldbPluginProcessElfCore/Makefile projects/routing/lib/clang/liblldbPluginProcessFreeBSD/Makefile projects/routing/lib/clang/liblldbPluginProcessGDBRemote/Makefile projects/routing/lib/clang/liblldbPluginProcessPOSIX/Makefile projects/routing/lib/clang/liblldbPluginProcessUtility/Makefile projects/routing/lib/clang/liblldbTarget/Makefile projects/routing/lib/clang/liblldbUtility/Makefile projects/routing/lib/clang/libllvmanalysis/Makefile projects/routing/lib/clang/libllvmarmcodegen/Makefile projects/routing/lib/clang/libllvmasmprinter/Makefile projects/routing/lib/clang/libllvmbitwriter/Makefile projects/routing/lib/clang/libllvmcodegen/Makefile projects/routing/lib/clang/libllvmcore/Makefile projects/routing/lib/clang/libllvmexecutionengine/Makefile projects/routing/lib/clang/libllvminstrumentation/Makefile projects/routing/lib/clang/libllvminterpreter/Makefile.depend projects/routing/lib/clang/libllvmipo/Makefile projects/routing/lib/clang/libllvmmc/Makefile projects/routing/lib/clang/libllvmmcdisassembler/Makefile projects/routing/lib/clang/libllvmmcjit/Makefile projects/routing/lib/clang/libllvmmipscodegen/Makefile projects/routing/lib/clang/libllvmobjcarcopts/Makefile projects/routing/lib/clang/libllvmobject/Makefile projects/routing/lib/clang/libllvmpowerpccodegen/Makefile projects/routing/lib/clang/libllvmprofiledata/Makefile projects/routing/lib/clang/libllvmruntimedyld/Makefile projects/routing/lib/clang/libllvmscalaropts/Makefile projects/routing/lib/clang/libllvmsparccodegen/Makefile projects/routing/lib/clang/libllvmsupport/Makefile projects/routing/lib/clang/libllvmtablegen/Makefile projects/routing/lib/clang/libllvmtarget/Makefile projects/routing/lib/clang/libllvmtransformutils/Makefile projects/routing/lib/clang/libllvmvectorize/Makefile projects/routing/lib/clang/libllvmx86codegen/Makefile projects/routing/lib/csu/Makefile.inc projects/routing/lib/csu/aarch64/Makefile projects/routing/lib/csu/amd64/Makefile projects/routing/lib/csu/arm/Makefile projects/routing/lib/csu/arm/Makefile.depend projects/routing/lib/csu/arm/crti.S projects/routing/lib/csu/arm/crtn.S projects/routing/lib/csu/i386/Makefile projects/routing/lib/csu/i386/Makefile.depend projects/routing/lib/csu/mips/Makefile projects/routing/lib/csu/mips/Makefile.depend projects/routing/lib/csu/powerpc/Makefile projects/routing/lib/csu/powerpc/Makefile.depend projects/routing/lib/csu/powerpc64/Makefile projects/routing/lib/csu/powerpc64/Makefile.depend projects/routing/lib/csu/sparc64/Makefile projects/routing/lib/csu/sparc64/Makefile.depend projects/routing/lib/libarchive/Makefile projects/routing/lib/libblocksruntime/Makefile.depend projects/routing/lib/libc++/Makefile projects/routing/lib/libc/Makefile.depend projects/routing/lib/libc/aarch64/gen/_set_tp.c projects/routing/lib/libc/amd64/gen/_set_tp.c projects/routing/lib/libc/arm/aeabi/aeabi_asm_double.S projects/routing/lib/libc/arm/aeabi/aeabi_asm_float.S projects/routing/lib/libc/arm/aeabi/aeabi_vfp_double.S projects/routing/lib/libc/arm/aeabi/aeabi_vfp_float.S projects/routing/lib/libc/arm/gen/__aeabi_read_tp.S projects/routing/lib/libc/arm/gen/_ctx_start.S projects/routing/lib/libc/arm/gen/_set_tp.c projects/routing/lib/libc/arm/gen/_setjmp.S projects/routing/lib/libc/arm/gen/alloca.S projects/routing/lib/libc/arm/gen/divsi3.S projects/routing/lib/libc/arm/gen/setjmp.S projects/routing/lib/libc/arm/gen/sigsetjmp.S projects/routing/lib/libc/arm/string/ffs.S projects/routing/lib/libc/arm/string/memcmp.S projects/routing/lib/libc/arm/string/memcpy_arm.S projects/routing/lib/libc/arm/string/memcpy_xscale.S projects/routing/lib/libc/arm/string/memmove.S projects/routing/lib/libc/arm/string/memset.S projects/routing/lib/libc/arm/string/strcmp.S projects/routing/lib/libc/arm/string/strlen.S projects/routing/lib/libc/arm/string/strncmp.S projects/routing/lib/libc/arm/sys/Ovfork.S projects/routing/lib/libc/arm/sys/brk.S projects/routing/lib/libc/arm/sys/cerror.S projects/routing/lib/libc/arm/sys/pipe.S projects/routing/lib/libc/arm/sys/ptrace.S projects/routing/lib/libc/arm/sys/sbrk.S projects/routing/lib/libc/arm/sys/shmat.S projects/routing/lib/libc/arm/sys/sigreturn.S projects/routing/lib/libc/arm/sys/syscall.S projects/routing/lib/libc/compat-43/creat.c projects/routing/lib/libc/compat-43/sigcompat.c projects/routing/lib/libc/db/hash/ndbm.c projects/routing/lib/libc/db/recno/rec_open.c projects/routing/lib/libc/gdtoa/_ldtoa.c projects/routing/lib/libc/gen/alarm.c projects/routing/lib/libc/gen/assert.c projects/routing/lib/libc/gen/clock.c projects/routing/lib/libc/gen/dlfcn.c projects/routing/lib/libc/gen/dup3.c projects/routing/lib/libc/gen/elf_utils.c projects/routing/lib/libc/gen/err.c projects/routing/lib/libc/gen/exec.c projects/routing/lib/libc/gen/feature_present.c projects/routing/lib/libc/gen/fmtcheck.c projects/routing/lib/libc/gen/fnmatch.c projects/routing/lib/libc/gen/ftok.c projects/routing/lib/libc/gen/fts-compat.c projects/routing/lib/libc/gen/fts.c projects/routing/lib/libc/gen/getbsize.c projects/routing/lib/libc/gen/getcwd.c projects/routing/lib/libc/gen/getdomainname.c projects/routing/lib/libc/gen/getgrent.c projects/routing/lib/libc/gen/gethostname.c projects/routing/lib/libc/gen/getloadavg.c projects/routing/lib/libc/gen/getmntinfo.c projects/routing/lib/libc/gen/getpagesize.c projects/routing/lib/libc/gen/getpwent.c projects/routing/lib/libc/gen/getusershell.c projects/routing/lib/libc/gen/getvfsbyname.c projects/routing/lib/libc/gen/glob.c projects/routing/lib/libc/gen/initgroups.c projects/routing/lib/libc/gen/isatty.c projects/routing/lib/libc/gen/nlist.c projects/routing/lib/libc/gen/pause.c projects/routing/lib/libc/gen/popen.c projects/routing/lib/libc/gen/psignal.c projects/routing/lib/libc/gen/raise.c projects/routing/lib/libc/gen/readdir.c projects/routing/lib/libc/gen/rewinddir.c projects/routing/lib/libc/gen/seekdir.c projects/routing/lib/libc/gen/semctl.c projects/routing/lib/libc/gen/setjmperr.c projects/routing/lib/libc/gen/sigsetops.c projects/routing/lib/libc/gen/sleep.c projects/routing/lib/libc/gen/strtofflags.c projects/routing/lib/libc/gen/sysconf.c projects/routing/lib/libc/gen/sysctl.3 projects/routing/lib/libc/gen/telldir.c projects/routing/lib/libc/gen/tls.c projects/routing/lib/libc/gen/ttyslot.c projects/routing/lib/libc/gen/ualarm.c projects/routing/lib/libc/gen/uname.c projects/routing/lib/libc/gen/unvis-compat.c projects/routing/lib/libc/gen/usleep.c projects/routing/lib/libc/gen/utime.c projects/routing/lib/libc/gen/wait.c projects/routing/lib/libc/gen/wait3.c projects/routing/lib/libc/gen/waitid.c projects/routing/lib/libc/gen/waitpid.c projects/routing/lib/libc/gen/wordexp.3 projects/routing/lib/libc/gen/wordexp.c projects/routing/lib/libc/gmon/gmon.c projects/routing/lib/libc/iconv/bsd_iconv.c projects/routing/lib/libc/iconv/citrus_esdb.c projects/routing/lib/libc/inet/inet_lnaof.c projects/routing/lib/libc/inet/inet_makeaddr.c projects/routing/lib/libc/inet/inet_net_ntop.c projects/routing/lib/libc/inet/inet_neta.c projects/routing/lib/libc/inet/inet_netof.c projects/routing/lib/libc/inet/inet_network.c projects/routing/lib/libc/isc/ev_timers.c projects/routing/lib/libc/locale/big5.c projects/routing/lib/libc/locale/collate.c projects/routing/lib/libc/locale/collate.h projects/routing/lib/libc/locale/collcmp.c projects/routing/lib/libc/locale/euc.c projects/routing/lib/libc/locale/gb18030.c projects/routing/lib/libc/locale/gb2312.c projects/routing/lib/libc/locale/gbk.c projects/routing/lib/libc/locale/isctype.c projects/routing/lib/libc/locale/iswctype.c projects/routing/lib/libc/locale/mblocal.h projects/routing/lib/libc/locale/mbsnrtowcs.c projects/routing/lib/libc/locale/mskanji.c projects/routing/lib/libc/locale/nl_langinfo.c projects/routing/lib/libc/locale/none.c projects/routing/lib/libc/locale/rune.c projects/routing/lib/libc/locale/setlocale.c projects/routing/lib/libc/locale/setrunelocale.c projects/routing/lib/libc/locale/table.c projects/routing/lib/libc/locale/tolower.c projects/routing/lib/libc/locale/toupper.c projects/routing/lib/libc/locale/utf8.c projects/routing/lib/libc/locale/wcsnrtombs.c projects/routing/lib/libc/locale/wctype.c projects/routing/lib/libc/mips/gen/_set_tp.c projects/routing/lib/libc/net/getaddrinfo.3 projects/routing/lib/libc/net/getaddrinfo.c projects/routing/lib/libc/net/gethostbydns.c projects/routing/lib/libc/net/gethostnamadr.c projects/routing/lib/libc/net/getnameinfo.3 projects/routing/lib/libc/net/getnameinfo.c projects/routing/lib/libc/net/getnetbydns.c projects/routing/lib/libc/net/getnetnamadr.c projects/routing/lib/libc/net/getproto.c projects/routing/lib/libc/net/getservent.c projects/routing/lib/libc/net/if_nametoindex.c projects/routing/lib/libc/net/linkaddr.c projects/routing/lib/libc/net/map_v4v6.c projects/routing/lib/libc/net/netdb_private.h projects/routing/lib/libc/net/nscache.c projects/routing/lib/libc/net/nslexer.l projects/routing/lib/libc/net/nsparser.y projects/routing/lib/libc/net/nss_compat.c projects/routing/lib/libc/net/ntoh.c projects/routing/lib/libc/net/rcmd.c projects/routing/lib/libc/net/recv.c projects/routing/lib/libc/net/rthdr.c projects/routing/lib/libc/net/send.c projects/routing/lib/libc/net/sockatmark.c projects/routing/lib/libc/posix1e/acl_compat.c projects/routing/lib/libc/posix1e/acl_entry.c projects/routing/lib/libc/posix1e/acl_support.h projects/routing/lib/libc/powerpc/gen/_set_tp.c projects/routing/lib/libc/powerpc64/gen/_set_tp.c projects/routing/lib/libc/resolv/h_errno.c projects/routing/lib/libc/resolv/res_data.c projects/routing/lib/libc/resolv/res_debug.c projects/routing/lib/libc/resolv/res_init.c projects/routing/lib/libc/resolv/res_mkupdate.c projects/routing/lib/libc/resolv/res_send.c projects/routing/lib/libc/resolv/res_state.c projects/routing/lib/libc/rpc/auth_unix.c projects/routing/lib/libc/rpc/authdes_prot.c projects/routing/lib/libc/rpc/authunix_prot.c projects/routing/lib/libc/rpc/bindresvport.c projects/routing/lib/libc/rpc/clnt_bcast.c projects/routing/lib/libc/rpc/clnt_perror.c projects/routing/lib/libc/rpc/clnt_raw.c projects/routing/lib/libc/rpc/clnt_simple.c projects/routing/lib/libc/rpc/clnt_vc.c projects/routing/lib/libc/rpc/des_crypt.c projects/routing/lib/libc/rpc/getnetconfig.c projects/routing/lib/libc/rpc/getnetpath.c projects/routing/lib/libc/rpc/getpublickey.c projects/routing/lib/libc/rpc/getrpcent.c projects/routing/lib/libc/rpc/getrpcport.c projects/routing/lib/libc/rpc/key_call.c projects/routing/lib/libc/rpc/mt_misc.c projects/routing/lib/libc/rpc/netname.c projects/routing/lib/libc/rpc/netnamer.c projects/routing/lib/libc/rpc/pmap_getmaps.c projects/routing/lib/libc/rpc/pmap_getport.c projects/routing/lib/libc/rpc/pmap_prot.c projects/routing/lib/libc/rpc/pmap_prot2.c projects/routing/lib/libc/rpc/pmap_rmt.c projects/routing/lib/libc/rpc/rpc_callmsg.c projects/routing/lib/libc/rpc/rpc_generic.c projects/routing/lib/libc/rpc/rpc_prot.c projects/routing/lib/libc/rpc/rpc_soc.c projects/routing/lib/libc/rpc/rpcb_clnt.c projects/routing/lib/libc/rpc/rpcb_prot.c projects/routing/lib/libc/rpc/rpcb_st_xdr.c projects/routing/lib/libc/rpc/svc.c projects/routing/lib/libc/rpc/svc_auth.c projects/routing/lib/libc/rpc/svc_auth_unix.c projects/routing/lib/libc/rpc/svc_dg.c projects/routing/lib/libc/rpc/svc_generic.c projects/routing/lib/libc/rpc/svc_raw.c projects/routing/lib/libc/rpc/svc_run.c projects/routing/lib/libc/rpc/svc_simple.c projects/routing/lib/libc/rpc/svc_vc.c projects/routing/lib/libc/sparc64/gen/_set_tp.c projects/routing/lib/libc/stdio/_flock_stub.c projects/routing/lib/libc/stdio/fdopen.c projects/routing/lib/libc/stdio/fgetwln.c projects/routing/lib/libc/stdio/findfp.c projects/routing/lib/libc/stdio/fmemopen.c projects/routing/lib/libc/stdio/fopen.c projects/routing/lib/libc/stdio/freopen.c projects/routing/lib/libc/stdio/ftell.c projects/routing/lib/libc/stdio/getchar.c projects/routing/lib/libc/stdio/stdio.c projects/routing/lib/libc/stdio/vfscanf.c projects/routing/lib/libc/stdlib/abort.c projects/routing/lib/libc/stdlib/abs.c projects/routing/lib/libc/stdlib/atexit.c projects/routing/lib/libc/stdlib/atof.c projects/routing/lib/libc/stdlib/atoi.c projects/routing/lib/libc/stdlib/atol.c projects/routing/lib/libc/stdlib/atoll.c projects/routing/lib/libc/stdlib/bsearch.c projects/routing/lib/libc/stdlib/exit.c projects/routing/lib/libc/stdlib/heapsort.c projects/routing/lib/libc/stdlib/labs.c projects/routing/lib/libc/stdlib/merge.c projects/routing/lib/libc/stdlib/qsort.c projects/routing/lib/libc/stdlib/radixsort.c projects/routing/lib/libc/stdlib/rand.c projects/routing/lib/libc/stdlib/tfind.c projects/routing/lib/libc/stdtime/strftime.c projects/routing/lib/libc/string/ffs.3 projects/routing/lib/libc/string/strchrnul.c projects/routing/lib/libc/string/strcoll.c projects/routing/lib/libc/string/strxfrm.c projects/routing/lib/libc/string/wcscoll.c projects/routing/lib/libc/string/wcsxfrm.c projects/routing/lib/libc/sys/Makefile.inc projects/routing/lib/libc/sys/__error.c projects/routing/lib/libc/sys/close.c projects/routing/lib/libc/sys/cpuset.2 projects/routing/lib/libc/sys/cpuset_getaffinity.2 projects/routing/lib/libc/sys/fsync.c projects/routing/lib/libc/sys/msync.c projects/routing/lib/libc/sys/posix_fadvise.2 projects/routing/lib/libc/sys/ptrace.2 projects/routing/lib/libc/sys/readv.c projects/routing/lib/libc/sys/reboot.2 projects/routing/lib/libc/sys/setuid.2 projects/routing/lib/libc/sys/shmctl.2 projects/routing/lib/libc/sys/utrace.2 projects/routing/lib/libc/sys/writev.c projects/routing/lib/libc/tests/Makefile projects/routing/lib/libc/tests/Makefile.netbsd-tests projects/routing/lib/libc/tests/c063/Makefile projects/routing/lib/libc/tests/db/Makefile projects/routing/lib/libc/tests/gen/Makefile projects/routing/lib/libc/tests/gen/arc4random_test.c projects/routing/lib/libc/tests/gen/execve/Makefile projects/routing/lib/libc/tests/gen/posix_spawn/Makefile projects/routing/lib/libc/tests/hash/Makefile projects/routing/lib/libc/tests/inet/Makefile projects/routing/lib/libc/tests/locale/Makefile projects/routing/lib/libc/tests/net/Makefile projects/routing/lib/libc/tests/net/getaddrinfo/Makefile projects/routing/lib/libc/tests/regex/Makefile projects/routing/lib/libc/tests/rpc/Makefile projects/routing/lib/libc/tests/setjmp/Makefile projects/routing/lib/libc/tests/ssp/Makefile projects/routing/lib/libc/tests/stdio/Makefile projects/routing/lib/libc/tests/stdio/fmemopen2_test.c projects/routing/lib/libc/tests/stdlib/Makefile projects/routing/lib/libc/tests/string/Makefile projects/routing/lib/libc/tests/sys/Makefile projects/routing/lib/libc/tests/termios/Makefile projects/routing/lib/libc/tests/time/Makefile projects/routing/lib/libc/tests/tls/Makefile projects/routing/lib/libc/tests/tls/dso/Makefile projects/routing/lib/libc/tests/ttyio/Makefile projects/routing/lib/libc/xdr/xdr_float.c projects/routing/lib/libcam/camlib.c projects/routing/lib/libclang_rt/Makefile projects/routing/lib/libclang_rt/Makefile.inc projects/routing/lib/libclang_rt/asan/Makefile projects/routing/lib/libclang_rt/asan_cxx/Makefile projects/routing/lib/libclang_rt/profile/Makefile projects/routing/lib/libcompiler_rt/Makefile projects/routing/lib/libcrypt/tests/Makefile projects/routing/lib/libcrypt/tests/Makefile.depend projects/routing/lib/libcuse/Makefile.depend projects/routing/lib/libcxxrt/Makefile.depend.host projects/routing/lib/libcxxrt/Version.map projects/routing/lib/libdpv/dialogrc.c projects/routing/lib/libdpv/dialogrc.h projects/routing/lib/libdpv/dpv.3 projects/routing/lib/libedit/vi.c projects/routing/lib/libevent/Makefile.depend projects/routing/lib/libfetch/common.c projects/routing/lib/libfetch/file.c projects/routing/lib/libfetch/http.c projects/routing/lib/libfigpar/figpar.3 projects/routing/lib/libfigpar/figpar.c projects/routing/lib/libfigpar/figpar.h projects/routing/lib/libiconv_modules/BIG5/Makefile.depend projects/routing/lib/libiconv_modules/DECHanyu/Makefile.depend projects/routing/lib/libiconv_modules/EUC/Makefile.depend projects/routing/lib/libiconv_modules/EUCTW/Makefile.depend projects/routing/lib/libiconv_modules/GBK2K/Makefile.depend projects/routing/lib/libiconv_modules/HZ/Makefile.depend projects/routing/lib/libiconv_modules/ISO2022/Makefile.depend projects/routing/lib/libiconv_modules/JOHAB/Makefile.depend projects/routing/lib/libiconv_modules/MSKanji/Makefile.depend projects/routing/lib/libiconv_modules/Makefile projects/routing/lib/libiconv_modules/UES/Makefile.depend projects/routing/lib/libiconv_modules/UTF1632/Makefile.depend projects/routing/lib/libiconv_modules/UTF7/Makefile.depend projects/routing/lib/libiconv_modules/UTF8/Makefile.depend projects/routing/lib/libiconv_modules/VIQR/Makefile.depend projects/routing/lib/libiconv_modules/ZW/Makefile.depend projects/routing/lib/libiconv_modules/iconv_none/Makefile.depend projects/routing/lib/libiconv_modules/iconv_std/Makefile.depend projects/routing/lib/libiconv_modules/mapper_646/Makefile.depend projects/routing/lib/libiconv_modules/mapper_none/Makefile.depend projects/routing/lib/libiconv_modules/mapper_parallel/Makefile.depend projects/routing/lib/libiconv_modules/mapper_serial/Makefile.depend projects/routing/lib/libiconv_modules/mapper_std/Makefile.depend projects/routing/lib/libiconv_modules/mapper_zone/Makefile.depend projects/routing/lib/liblzma/Makefile projects/routing/lib/libmagic/config.h projects/routing/lib/libmilter/Makefile.depend projects/routing/lib/libmp/tests/Makefile projects/routing/lib/libnetbsd/README projects/routing/lib/libnv/tests/Makefile projects/routing/lib/libpam/Makefile.inc projects/routing/lib/libpam/libpam/Makefile projects/routing/lib/libpam/libpam/tests/Makefile projects/routing/lib/libpmc/libpmc.c projects/routing/lib/libproc/tests/Makefile projects/routing/lib/libprocstat/libprocstat.c projects/routing/lib/librpcsec_gss/Makefile.depend projects/routing/lib/librt/tests/Makefile projects/routing/lib/libsm/Makefile.depend projects/routing/lib/libsmb/Makefile.depend projects/routing/lib/libstand/Makefile.depend projects/routing/lib/libstand/open.c projects/routing/lib/libstdbuf/Makefile.depend projects/routing/lib/libstdthreads/Makefile.depend projects/routing/lib/libthr/tests/Makefile projects/routing/lib/libthr/tests/dlopen/Makefile projects/routing/lib/libthr/tests/dlopen/dso/Makefile projects/routing/lib/libthr/thread/thr_once.c projects/routing/lib/libucl/Makefile projects/routing/lib/libugidfw/ugidfw.c projects/routing/lib/libunbound/Makefile projects/routing/lib/libunbound/Makefile.depend projects/routing/lib/libusb/Makefile projects/routing/lib/libutil/kinfo_getvmmap.c projects/routing/lib/libutil/pty.3 projects/routing/lib/libutil/tests/Makefile projects/routing/lib/libvgl/Makefile.depend projects/routing/lib/libxo/Makefile projects/routing/lib/libxo/Makefile.depend projects/routing/lib/libz/Makefile projects/routing/lib/libz/inflate.c projects/routing/lib/msun/Makefile projects/routing/lib/msun/man/exp.3 projects/routing/lib/msun/tests/Makefile projects/routing/lib/ncurses/form/Makefile.depend projects/routing/lib/ncurses/formw/Makefile.depend projects/routing/lib/ncurses/menu/Makefile.depend projects/routing/lib/ncurses/menuw/Makefile.depend projects/routing/lib/ncurses/ncurses/Makefile projects/routing/lib/tests/Makefile projects/routing/libexec/Makefile projects/routing/libexec/atf/atf-check/tests/Makefile projects/routing/libexec/atf/atf-sh/tests/Makefile projects/routing/libexec/atf/tests/Makefile projects/routing/libexec/bootpd/Makefile.depend projects/routing/libexec/rtld-elf/Makefile projects/routing/libexec/rtld-elf/arm/rtld_start.S projects/routing/libexec/rtld-elf/libmap.c projects/routing/libexec/rtld-elf/malloc.c projects/routing/libexec/rtld-elf/map_object.c projects/routing/libexec/rtld-elf/powerpc64/reloc.c projects/routing/libexec/rtld-elf/rtld.c projects/routing/libexec/rtld-elf/rtld.h projects/routing/libexec/rtld-elf/tests/Makefile projects/routing/libexec/tests/Makefile projects/routing/release/Makefile projects/routing/release/Makefile.mirrors projects/routing/release/Makefile.vm projects/routing/release/amd64/mkisoimages.sh projects/routing/release/arm/BEAGLEBONE.conf projects/routing/release/arm/CUBOX-HUMMINGBOARD.conf projects/routing/release/arm/GUMSTIX.conf projects/routing/release/arm/PANDABOARD.conf projects/routing/release/arm/RPI-B.conf projects/routing/release/arm/RPI2.conf projects/routing/release/arm/WANDBOARD.conf projects/routing/release/doc/en_US.ISO8859-1/hardware/article.xml projects/routing/release/doc/en_US.ISO8859-1/relnotes/article.xml projects/routing/release/doc/share/misc/dev.archlist.txt projects/routing/release/doc/share/xml/sponsor.ent projects/routing/release/i386/mkisoimages.sh projects/routing/release/pc98/mkisoimages.sh projects/routing/release/powerpc/mkisoimages.sh projects/routing/release/release.sh projects/routing/release/scripts/list-new-changesets.py projects/routing/release/scripts/mm-mtree.sh projects/routing/release/sparc64/mkisoimages.sh projects/routing/release/tools/arm.subr projects/routing/release/tools/vmimage.subr projects/routing/rescue/librescue/Makefile.depend projects/routing/rescue/rescue/Makefile projects/routing/sbin/atm/atmconfig/Makefile projects/routing/sbin/camcontrol/modeedit.c projects/routing/sbin/casperd/casperd.8 projects/routing/sbin/casperd/casperd.c projects/routing/sbin/devd/devd.cc projects/routing/sbin/devd/tests/Makefile projects/routing/sbin/dhclient/tests/Makefile projects/routing/sbin/fdisk_pc98/Makefile.depend projects/routing/sbin/fsck_ffs/fsck.h projects/routing/sbin/fsck_ffs/globs.c projects/routing/sbin/geom/class/nop/geom_nop.c projects/routing/sbin/geom/class/nop/gnop.8 projects/routing/sbin/geom/class/raid/graid.8 projects/routing/sbin/growfs/tests/Makefile projects/routing/sbin/ifconfig/af_inet6.c projects/routing/sbin/ifconfig/carp.c projects/routing/sbin/ifconfig/ifbridge.c projects/routing/sbin/ifconfig/ifclone.c projects/routing/sbin/ifconfig/ifconfig.8 projects/routing/sbin/ifconfig/ifconfig.c projects/routing/sbin/ifconfig/iffib.c projects/routing/sbin/ifconfig/ifgif.c projects/routing/sbin/ifconfig/ifgre.c projects/routing/sbin/ifconfig/ifgroup.c projects/routing/sbin/ifconfig/ifieee80211.c projects/routing/sbin/ifconfig/iflagg.c projects/routing/sbin/ifconfig/ifmac.c projects/routing/sbin/ifconfig/ifmedia.c projects/routing/sbin/ifconfig/ifpfsync.c projects/routing/sbin/ifconfig/ifvlan.c projects/routing/sbin/ifconfig/ifvxlan.c projects/routing/sbin/ifconfig/tests/Makefile projects/routing/sbin/init/Makefile projects/routing/sbin/init/init.c projects/routing/sbin/init/pathnames.h projects/routing/sbin/ipf/Makefile projects/routing/sbin/ipf/ipftest/Makefile projects/routing/sbin/ipf/ipftest/Makefile.depend projects/routing/sbin/ipfw/ipfw2.c projects/routing/sbin/ipfw/ipfw2.h projects/routing/sbin/ipfw/tables.c projects/routing/sbin/mdconfig/mdconfig.8 projects/routing/sbin/mdconfig/mdconfig.c projects/routing/sbin/mdconfig/tests/Makefile projects/routing/sbin/mount/mount.8 projects/routing/sbin/mount/mount.conf.8 projects/routing/sbin/natd/natd.c projects/routing/sbin/newfs_msdos/Makefile projects/routing/sbin/newfs_msdos/newfs_msdos.c projects/routing/sbin/newfs_nandfs/newfs_nandfs.c projects/routing/sbin/pfctl/pfctl.c projects/routing/sbin/rcorder/rcorder.c projects/routing/sbin/reboot/reboot.8 projects/routing/sbin/reboot/reboot.c projects/routing/sbin/route/route.c projects/routing/sbin/routed/Makefile.depend projects/routing/sbin/rtsol/Makefile projects/routing/sbin/savecore/Makefile projects/routing/sbin/savecore/Makefile.depend projects/routing/sbin/savecore/savecore.c projects/routing/sbin/sconfig/Makefile.depend projects/routing/sbin/sunlabel/Makefile.depend projects/routing/sbin/sysctl/sysctl.c projects/routing/sbin/tests/Makefile projects/routing/secure/Makefile projects/routing/secure/lib/libcrypto/Makefile projects/routing/secure/lib/libcrypto/Makefile.asm projects/routing/secure/lib/libcrypto/Makefile.inc projects/routing/secure/lib/libcrypto/Makefile.man projects/routing/secure/lib/libcrypto/amd64/aes-x86_64.S projects/routing/secure/lib/libcrypto/amd64/aesni-sha1-x86_64.S projects/routing/secure/lib/libcrypto/amd64/aesni-x86_64.S projects/routing/secure/lib/libcrypto/amd64/bsaes-x86_64.S projects/routing/secure/lib/libcrypto/amd64/cmll-x86_64.S projects/routing/secure/lib/libcrypto/amd64/ghash-x86_64.S projects/routing/secure/lib/libcrypto/amd64/md5-x86_64.S projects/routing/secure/lib/libcrypto/amd64/rc4-x86_64.S projects/routing/secure/lib/libcrypto/amd64/sha1-x86_64.S projects/routing/secure/lib/libcrypto/amd64/sha256-x86_64.S projects/routing/secure/lib/libcrypto/amd64/sha512-x86_64.S projects/routing/secure/lib/libcrypto/amd64/vpaes-x86_64.S projects/routing/secure/lib/libcrypto/amd64/wp-x86_64.S projects/routing/secure/lib/libcrypto/amd64/x86_64-gf2m.S projects/routing/secure/lib/libcrypto/amd64/x86_64-mont.S projects/routing/secure/lib/libcrypto/amd64/x86_64-mont5.S projects/routing/secure/lib/libcrypto/amd64/x86_64cpuid.S projects/routing/secure/lib/libcrypto/engines/Makefile projects/routing/secure/lib/libcrypto/engines/libgost/Makefile projects/routing/secure/lib/libcrypto/i386/aes-586.s projects/routing/secure/lib/libcrypto/i386/aesni-x86.s projects/routing/secure/lib/libcrypto/i386/bn-586.s projects/routing/secure/lib/libcrypto/i386/des-586.s projects/routing/secure/lib/libcrypto/i386/ghash-x86.s projects/routing/secure/lib/libcrypto/i386/rc4-586.s projects/routing/secure/lib/libcrypto/i386/sha1-586.s projects/routing/secure/lib/libcrypto/i386/sha256-586.s projects/routing/secure/lib/libcrypto/i386/sha512-586.s projects/routing/secure/lib/libcrypto/i386/vpaes-x86.s projects/routing/secure/lib/libcrypto/i386/wp-mmx.s projects/routing/secure/lib/libcrypto/i386/x86-gf2m.s projects/routing/secure/lib/libcrypto/i386/x86-mont.s projects/routing/secure/lib/libcrypto/i386/x86cpuid.s projects/routing/secure/lib/libcrypto/man/ASN1_OBJECT_new.3 projects/routing/secure/lib/libcrypto/man/ASN1_STRING_length.3 projects/routing/secure/lib/libcrypto/man/ASN1_STRING_new.3 projects/routing/secure/lib/libcrypto/man/ASN1_STRING_print_ex.3 projects/routing/secure/lib/libcrypto/man/ASN1_generate_nconf.3 projects/routing/secure/lib/libcrypto/man/BIO_ctrl.3 projects/routing/secure/lib/libcrypto/man/BIO_f_base64.3 projects/routing/secure/lib/libcrypto/man/BIO_f_buffer.3 projects/routing/secure/lib/libcrypto/man/BIO_f_cipher.3 projects/routing/secure/lib/libcrypto/man/BIO_f_md.3 projects/routing/secure/lib/libcrypto/man/BIO_f_null.3 projects/routing/secure/lib/libcrypto/man/BIO_f_ssl.3 projects/routing/secure/lib/libcrypto/man/BIO_find_type.3 projects/routing/secure/lib/libcrypto/man/BIO_new.3 projects/routing/secure/lib/libcrypto/man/BIO_new_CMS.3 projects/routing/secure/lib/libcrypto/man/BIO_push.3 projects/routing/secure/lib/libcrypto/man/BIO_read.3 projects/routing/secure/lib/libcrypto/man/BIO_s_accept.3 projects/routing/secure/lib/libcrypto/man/BIO_s_bio.3 projects/routing/secure/lib/libcrypto/man/BIO_s_connect.3 projects/routing/secure/lib/libcrypto/man/BIO_s_fd.3 projects/routing/secure/lib/libcrypto/man/BIO_s_file.3 projects/routing/secure/lib/libcrypto/man/BIO_s_mem.3 projects/routing/secure/lib/libcrypto/man/BIO_s_null.3 projects/routing/secure/lib/libcrypto/man/BIO_s_socket.3 projects/routing/secure/lib/libcrypto/man/BIO_set_callback.3 projects/routing/secure/lib/libcrypto/man/BIO_should_retry.3 projects/routing/secure/lib/libcrypto/man/BN_BLINDING_new.3 projects/routing/secure/lib/libcrypto/man/BN_CTX_new.3 projects/routing/secure/lib/libcrypto/man/BN_CTX_start.3 projects/routing/secure/lib/libcrypto/man/BN_add.3 projects/routing/secure/lib/libcrypto/man/BN_add_word.3 projects/routing/secure/lib/libcrypto/man/BN_bn2bin.3 projects/routing/secure/lib/libcrypto/man/BN_cmp.3 projects/routing/secure/lib/libcrypto/man/BN_copy.3 projects/routing/secure/lib/libcrypto/man/BN_generate_prime.3 projects/routing/secure/lib/libcrypto/man/BN_mod_inverse.3 projects/routing/secure/lib/libcrypto/man/BN_mod_mul_montgomery.3 projects/routing/secure/lib/libcrypto/man/BN_mod_mul_reciprocal.3 projects/routing/secure/lib/libcrypto/man/BN_new.3 projects/routing/secure/lib/libcrypto/man/BN_num_bytes.3 projects/routing/secure/lib/libcrypto/man/BN_rand.3 projects/routing/secure/lib/libcrypto/man/BN_set_bit.3 projects/routing/secure/lib/libcrypto/man/BN_swap.3 projects/routing/secure/lib/libcrypto/man/BN_zero.3 projects/routing/secure/lib/libcrypto/man/CMS_add0_cert.3 projects/routing/secure/lib/libcrypto/man/CMS_add1_recipient_cert.3 projects/routing/secure/lib/libcrypto/man/CMS_add1_signer.3 projects/routing/secure/lib/libcrypto/man/CMS_compress.3 projects/routing/secure/lib/libcrypto/man/CMS_decrypt.3 projects/routing/secure/lib/libcrypto/man/CMS_encrypt.3 projects/routing/secure/lib/libcrypto/man/CMS_final.3 projects/routing/secure/lib/libcrypto/man/CMS_get0_RecipientInfos.3 projects/routing/secure/lib/libcrypto/man/CMS_get0_SignerInfos.3 projects/routing/secure/lib/libcrypto/man/CMS_get0_type.3 projects/routing/secure/lib/libcrypto/man/CMS_get1_ReceiptRequest.3 projects/routing/secure/lib/libcrypto/man/CMS_sign.3 projects/routing/secure/lib/libcrypto/man/CMS_sign_receipt.3 projects/routing/secure/lib/libcrypto/man/CMS_uncompress.3 projects/routing/secure/lib/libcrypto/man/CMS_verify.3 projects/routing/secure/lib/libcrypto/man/CMS_verify_receipt.3 projects/routing/secure/lib/libcrypto/man/CONF_modules_free.3 projects/routing/secure/lib/libcrypto/man/CONF_modules_load_file.3 projects/routing/secure/lib/libcrypto/man/CRYPTO_set_ex_data.3 projects/routing/secure/lib/libcrypto/man/DH_generate_key.3 projects/routing/secure/lib/libcrypto/man/DH_generate_parameters.3 projects/routing/secure/lib/libcrypto/man/DH_get_ex_new_index.3 projects/routing/secure/lib/libcrypto/man/DH_new.3 projects/routing/secure/lib/libcrypto/man/DH_set_method.3 projects/routing/secure/lib/libcrypto/man/DH_size.3 projects/routing/secure/lib/libcrypto/man/DSA_SIG_new.3 projects/routing/secure/lib/libcrypto/man/DSA_do_sign.3 projects/routing/secure/lib/libcrypto/man/DSA_dup_DH.3 projects/routing/secure/lib/libcrypto/man/DSA_generate_key.3 projects/routing/secure/lib/libcrypto/man/DSA_generate_parameters.3 projects/routing/secure/lib/libcrypto/man/DSA_get_ex_new_index.3 projects/routing/secure/lib/libcrypto/man/DSA_new.3 projects/routing/secure/lib/libcrypto/man/DSA_set_method.3 projects/routing/secure/lib/libcrypto/man/DSA_sign.3 projects/routing/secure/lib/libcrypto/man/DSA_size.3 projects/routing/secure/lib/libcrypto/man/ERR_GET_LIB.3 projects/routing/secure/lib/libcrypto/man/ERR_clear_error.3 projects/routing/secure/lib/libcrypto/man/ERR_error_string.3 projects/routing/secure/lib/libcrypto/man/ERR_get_error.3 projects/routing/secure/lib/libcrypto/man/ERR_load_crypto_strings.3 projects/routing/secure/lib/libcrypto/man/ERR_load_strings.3 projects/routing/secure/lib/libcrypto/man/ERR_print_errors.3 projects/routing/secure/lib/libcrypto/man/ERR_put_error.3 projects/routing/secure/lib/libcrypto/man/ERR_remove_state.3 projects/routing/secure/lib/libcrypto/man/ERR_set_mark.3 projects/routing/secure/lib/libcrypto/man/EVP_BytesToKey.3 projects/routing/secure/lib/libcrypto/man/EVP_DigestInit.3 projects/routing/secure/lib/libcrypto/man/EVP_DigestSignInit.3 projects/routing/secure/lib/libcrypto/man/EVP_DigestVerifyInit.3 projects/routing/secure/lib/libcrypto/man/EVP_EncryptInit.3 projects/routing/secure/lib/libcrypto/man/EVP_OpenInit.3 projects/routing/secure/lib/libcrypto/man/EVP_PKEY_CTX_ctrl.3 projects/routing/secure/lib/libcrypto/man/EVP_PKEY_CTX_new.3 projects/routing/secure/lib/libcrypto/man/EVP_PKEY_cmp.3 projects/routing/secure/lib/libcrypto/man/EVP_PKEY_decrypt.3 projects/routing/secure/lib/libcrypto/man/EVP_PKEY_derive.3 projects/routing/secure/lib/libcrypto/man/EVP_PKEY_encrypt.3 projects/routing/secure/lib/libcrypto/man/EVP_PKEY_get_default_digest.3 projects/routing/secure/lib/libcrypto/man/EVP_PKEY_keygen.3 projects/routing/secure/lib/libcrypto/man/EVP_PKEY_new.3 projects/routing/secure/lib/libcrypto/man/EVP_PKEY_print_private.3 projects/routing/secure/lib/libcrypto/man/EVP_PKEY_set1_RSA.3 projects/routing/secure/lib/libcrypto/man/EVP_PKEY_sign.3 projects/routing/secure/lib/libcrypto/man/EVP_PKEY_verify.3 projects/routing/secure/lib/libcrypto/man/EVP_PKEY_verify_recover.3 projects/routing/secure/lib/libcrypto/man/EVP_SealInit.3 projects/routing/secure/lib/libcrypto/man/EVP_SignInit.3 projects/routing/secure/lib/libcrypto/man/EVP_VerifyInit.3 projects/routing/secure/lib/libcrypto/man/OBJ_nid2obj.3 projects/routing/secure/lib/libcrypto/man/OPENSSL_Applink.3 projects/routing/secure/lib/libcrypto/man/OPENSSL_VERSION_NUMBER.3 projects/routing/secure/lib/libcrypto/man/OPENSSL_config.3 projects/routing/secure/lib/libcrypto/man/OPENSSL_ia32cap.3 projects/routing/secure/lib/libcrypto/man/OPENSSL_load_builtin_modules.3 projects/routing/secure/lib/libcrypto/man/OpenSSL_add_all_algorithms.3 projects/routing/secure/lib/libcrypto/man/PEM_write_bio_CMS_stream.3 projects/routing/secure/lib/libcrypto/man/PEM_write_bio_PKCS7_stream.3 projects/routing/secure/lib/libcrypto/man/PKCS12_create.3 projects/routing/secure/lib/libcrypto/man/PKCS12_parse.3 projects/routing/secure/lib/libcrypto/man/PKCS7_decrypt.3 projects/routing/secure/lib/libcrypto/man/PKCS7_encrypt.3 projects/routing/secure/lib/libcrypto/man/PKCS7_sign.3 projects/routing/secure/lib/libcrypto/man/PKCS7_sign_add_signer.3 projects/routing/secure/lib/libcrypto/man/PKCS7_verify.3 projects/routing/secure/lib/libcrypto/man/RAND_add.3 projects/routing/secure/lib/libcrypto/man/RAND_bytes.3 projects/routing/secure/lib/libcrypto/man/RAND_cleanup.3 projects/routing/secure/lib/libcrypto/man/RAND_egd.3 projects/routing/secure/lib/libcrypto/man/RAND_load_file.3 projects/routing/secure/lib/libcrypto/man/RAND_set_rand_method.3 projects/routing/secure/lib/libcrypto/man/RSA_blinding_on.3 projects/routing/secure/lib/libcrypto/man/RSA_check_key.3 projects/routing/secure/lib/libcrypto/man/RSA_generate_key.3 projects/routing/secure/lib/libcrypto/man/RSA_get_ex_new_index.3 projects/routing/secure/lib/libcrypto/man/RSA_new.3 projects/routing/secure/lib/libcrypto/man/RSA_padding_add_PKCS1_type_1.3 projects/routing/secure/lib/libcrypto/man/RSA_print.3 projects/routing/secure/lib/libcrypto/man/RSA_private_encrypt.3 projects/routing/secure/lib/libcrypto/man/RSA_public_encrypt.3 projects/routing/secure/lib/libcrypto/man/RSA_set_method.3 projects/routing/secure/lib/libcrypto/man/RSA_sign.3 projects/routing/secure/lib/libcrypto/man/RSA_sign_ASN1_OCTET_STRING.3 projects/routing/secure/lib/libcrypto/man/RSA_size.3 projects/routing/secure/lib/libcrypto/man/SMIME_read_CMS.3 projects/routing/secure/lib/libcrypto/man/SMIME_read_PKCS7.3 projects/routing/secure/lib/libcrypto/man/SMIME_write_CMS.3 projects/routing/secure/lib/libcrypto/man/SMIME_write_PKCS7.3 projects/routing/secure/lib/libcrypto/man/X509_NAME_ENTRY_get_object.3 projects/routing/secure/lib/libcrypto/man/X509_NAME_add_entry_by_txt.3 projects/routing/secure/lib/libcrypto/man/X509_NAME_get_index_by_NID.3 projects/routing/secure/lib/libcrypto/man/X509_NAME_print_ex.3 projects/routing/secure/lib/libcrypto/man/X509_STORE_CTX_get_error.3 projects/routing/secure/lib/libcrypto/man/X509_STORE_CTX_get_ex_new_index.3 projects/routing/secure/lib/libcrypto/man/X509_STORE_CTX_new.3 projects/routing/secure/lib/libcrypto/man/X509_STORE_CTX_set_verify_cb.3 projects/routing/secure/lib/libcrypto/man/X509_STORE_set_verify_cb_func.3 projects/routing/secure/lib/libcrypto/man/X509_VERIFY_PARAM_set_flags.3 projects/routing/secure/lib/libcrypto/man/X509_new.3 projects/routing/secure/lib/libcrypto/man/X509_verify_cert.3 projects/routing/secure/lib/libcrypto/man/bio.3 projects/routing/secure/lib/libcrypto/man/blowfish.3 projects/routing/secure/lib/libcrypto/man/bn.3 projects/routing/secure/lib/libcrypto/man/bn_internal.3 projects/routing/secure/lib/libcrypto/man/buffer.3 projects/routing/secure/lib/libcrypto/man/crypto.3 projects/routing/secure/lib/libcrypto/man/d2i_ASN1_OBJECT.3 projects/routing/secure/lib/libcrypto/man/d2i_CMS_ContentInfo.3 projects/routing/secure/lib/libcrypto/man/d2i_DHparams.3 projects/routing/secure/lib/libcrypto/man/d2i_DSAPublicKey.3 projects/routing/secure/lib/libcrypto/man/d2i_ECPrivateKey.3 projects/routing/secure/lib/libcrypto/man/d2i_PKCS8PrivateKey.3 projects/routing/secure/lib/libcrypto/man/d2i_RSAPublicKey.3 projects/routing/secure/lib/libcrypto/man/d2i_X509.3 projects/routing/secure/lib/libcrypto/man/d2i_X509_ALGOR.3 projects/routing/secure/lib/libcrypto/man/d2i_X509_CRL.3 projects/routing/secure/lib/libcrypto/man/d2i_X509_NAME.3 projects/routing/secure/lib/libcrypto/man/d2i_X509_REQ.3 projects/routing/secure/lib/libcrypto/man/d2i_X509_SIG.3 projects/routing/secure/lib/libcrypto/man/des.3 projects/routing/secure/lib/libcrypto/man/dh.3 projects/routing/secure/lib/libcrypto/man/dsa.3 projects/routing/secure/lib/libcrypto/man/ecdsa.3 projects/routing/secure/lib/libcrypto/man/engine.3 projects/routing/secure/lib/libcrypto/man/err.3 projects/routing/secure/lib/libcrypto/man/evp.3 projects/routing/secure/lib/libcrypto/man/hmac.3 projects/routing/secure/lib/libcrypto/man/i2d_CMS_bio_stream.3 projects/routing/secure/lib/libcrypto/man/i2d_PKCS7_bio_stream.3 projects/routing/secure/lib/libcrypto/man/lh_stats.3 projects/routing/secure/lib/libcrypto/man/lhash.3 projects/routing/secure/lib/libcrypto/man/md5.3 projects/routing/secure/lib/libcrypto/man/mdc2.3 projects/routing/secure/lib/libcrypto/man/pem.3 projects/routing/secure/lib/libcrypto/man/rand.3 projects/routing/secure/lib/libcrypto/man/rc4.3 projects/routing/secure/lib/libcrypto/man/ripemd.3 projects/routing/secure/lib/libcrypto/man/rsa.3 projects/routing/secure/lib/libcrypto/man/sha.3 projects/routing/secure/lib/libcrypto/man/threads.3 projects/routing/secure/lib/libcrypto/man/ui.3 projects/routing/secure/lib/libcrypto/man/ui_compat.3 projects/routing/secure/lib/libcrypto/man/x509.3 projects/routing/secure/lib/libcrypto/opensslconf-aarch64.h projects/routing/secure/lib/libcrypto/opensslconf-arm.h projects/routing/secure/lib/libcrypto/opensslconf-mips.h projects/routing/secure/lib/libcrypto/opensslconf-powerpc.h projects/routing/secure/lib/libcrypto/opensslconf-sparc64.h projects/routing/secure/lib/libcrypto/opensslconf-x86.h projects/routing/secure/lib/libssl/Makefile projects/routing/secure/lib/libssl/Makefile.man projects/routing/secure/lib/libssl/man/SSL_CIPHER_get_name.3 projects/routing/secure/lib/libssl/man/SSL_COMP_add_compression_method.3 projects/routing/secure/lib/libssl/man/SSL_CTX_add_extra_chain_cert.3 projects/routing/secure/lib/libssl/man/SSL_CTX_add_session.3 projects/routing/secure/lib/libssl/man/SSL_CTX_ctrl.3 projects/routing/secure/lib/libssl/man/SSL_CTX_flush_sessions.3 projects/routing/secure/lib/libssl/man/SSL_CTX_free.3 projects/routing/secure/lib/libssl/man/SSL_CTX_get_ex_new_index.3 projects/routing/secure/lib/libssl/man/SSL_CTX_get_verify_mode.3 projects/routing/secure/lib/libssl/man/SSL_CTX_load_verify_locations.3 projects/routing/secure/lib/libssl/man/SSL_CTX_new.3 projects/routing/secure/lib/libssl/man/SSL_CTX_sess_number.3 projects/routing/secure/lib/libssl/man/SSL_CTX_sess_set_cache_size.3 projects/routing/secure/lib/libssl/man/SSL_CTX_sess_set_get_cb.3 projects/routing/secure/lib/libssl/man/SSL_CTX_sessions.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_cert_store.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_cert_verify_callback.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_cipher_list.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_client_CA_list.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_client_cert_cb.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_default_passwd_cb.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_generate_session_id.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_info_callback.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_max_cert_list.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_mode.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_msg_callback.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_options.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_psk_client_callback.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_quiet_shutdown.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_read_ahead.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_session_cache_mode.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_session_id_context.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_ssl_version.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_timeout.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_tlsext_ticket_key_cb.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_tmp_dh_callback.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_tmp_rsa_callback.3 projects/routing/secure/lib/libssl/man/SSL_CTX_set_verify.3 projects/routing/secure/lib/libssl/man/SSL_CTX_use_certificate.3 projects/routing/secure/lib/libssl/man/SSL_CTX_use_psk_identity_hint.3 projects/routing/secure/lib/libssl/man/SSL_SESSION_free.3 projects/routing/secure/lib/libssl/man/SSL_SESSION_get_ex_new_index.3 projects/routing/secure/lib/libssl/man/SSL_SESSION_get_time.3 projects/routing/secure/lib/libssl/man/SSL_accept.3 projects/routing/secure/lib/libssl/man/SSL_alert_type_string.3 projects/routing/secure/lib/libssl/man/SSL_clear.3 projects/routing/secure/lib/libssl/man/SSL_connect.3 projects/routing/secure/lib/libssl/man/SSL_do_handshake.3 projects/routing/secure/lib/libssl/man/SSL_free.3 projects/routing/secure/lib/libssl/man/SSL_get_SSL_CTX.3 projects/routing/secure/lib/libssl/man/SSL_get_ciphers.3 projects/routing/secure/lib/libssl/man/SSL_get_client_CA_list.3 projects/routing/secure/lib/libssl/man/SSL_get_current_cipher.3 projects/routing/secure/lib/libssl/man/SSL_get_default_timeout.3 projects/routing/secure/lib/libssl/man/SSL_get_error.3 projects/routing/secure/lib/libssl/man/SSL_get_ex_data_X509_STORE_CTX_idx.3 projects/routing/secure/lib/libssl/man/SSL_get_ex_new_index.3 projects/routing/secure/lib/libssl/man/SSL_get_fd.3 projects/routing/secure/lib/libssl/man/SSL_get_peer_cert_chain.3 projects/routing/secure/lib/libssl/man/SSL_get_peer_certificate.3 projects/routing/secure/lib/libssl/man/SSL_get_psk_identity.3 projects/routing/secure/lib/libssl/man/SSL_get_rbio.3 projects/routing/secure/lib/libssl/man/SSL_get_session.3 projects/routing/secure/lib/libssl/man/SSL_get_verify_result.3 projects/routing/secure/lib/libssl/man/SSL_get_version.3 projects/routing/secure/lib/libssl/man/SSL_library_init.3 projects/routing/secure/lib/libssl/man/SSL_load_client_CA_file.3 projects/routing/secure/lib/libssl/man/SSL_new.3 projects/routing/secure/lib/libssl/man/SSL_pending.3 projects/routing/secure/lib/libssl/man/SSL_read.3 projects/routing/secure/lib/libssl/man/SSL_rstate_string.3 projects/routing/secure/lib/libssl/man/SSL_session_reused.3 projects/routing/secure/lib/libssl/man/SSL_set_bio.3 projects/routing/secure/lib/libssl/man/SSL_set_connect_state.3 projects/routing/secure/lib/libssl/man/SSL_set_fd.3 projects/routing/secure/lib/libssl/man/SSL_set_session.3 projects/routing/secure/lib/libssl/man/SSL_set_shutdown.3 projects/routing/secure/lib/libssl/man/SSL_set_verify_result.3 projects/routing/secure/lib/libssl/man/SSL_shutdown.3 projects/routing/secure/lib/libssl/man/SSL_state_string.3 projects/routing/secure/lib/libssl/man/SSL_want.3 projects/routing/secure/lib/libssl/man/SSL_write.3 projects/routing/secure/lib/libssl/man/d2i_SSL_SESSION.3 projects/routing/secure/lib/libssl/man/ssl.3 projects/routing/secure/lib/tests/Makefile projects/routing/secure/libexec/Makefile projects/routing/secure/libexec/tests/Makefile projects/routing/secure/tests/Makefile projects/routing/secure/usr.bin/Makefile projects/routing/secure/usr.bin/openssl/Makefile projects/routing/secure/usr.bin/openssl/man/CA.pl.1 projects/routing/secure/usr.bin/openssl/man/asn1parse.1 projects/routing/secure/usr.bin/openssl/man/c_rehash.1 projects/routing/secure/usr.bin/openssl/man/ca.1 projects/routing/secure/usr.bin/openssl/man/ciphers.1 projects/routing/secure/usr.bin/openssl/man/cms.1 projects/routing/secure/usr.bin/openssl/man/crl.1 projects/routing/secure/usr.bin/openssl/man/crl2pkcs7.1 projects/routing/secure/usr.bin/openssl/man/dgst.1 projects/routing/secure/usr.bin/openssl/man/dhparam.1 projects/routing/secure/usr.bin/openssl/man/dsa.1 projects/routing/secure/usr.bin/openssl/man/dsaparam.1 projects/routing/secure/usr.bin/openssl/man/ec.1 projects/routing/secure/usr.bin/openssl/man/ecparam.1 projects/routing/secure/usr.bin/openssl/man/enc.1 projects/routing/secure/usr.bin/openssl/man/errstr.1 projects/routing/secure/usr.bin/openssl/man/gendsa.1 projects/routing/secure/usr.bin/openssl/man/genpkey.1 projects/routing/secure/usr.bin/openssl/man/genrsa.1 projects/routing/secure/usr.bin/openssl/man/nseq.1 projects/routing/secure/usr.bin/openssl/man/ocsp.1 projects/routing/secure/usr.bin/openssl/man/openssl.1 projects/routing/secure/usr.bin/openssl/man/passwd.1 projects/routing/secure/usr.bin/openssl/man/pkcs12.1 projects/routing/secure/usr.bin/openssl/man/pkcs7.1 projects/routing/secure/usr.bin/openssl/man/pkcs8.1 projects/routing/secure/usr.bin/openssl/man/pkey.1 projects/routing/secure/usr.bin/openssl/man/pkeyparam.1 projects/routing/secure/usr.bin/openssl/man/pkeyutl.1 projects/routing/secure/usr.bin/openssl/man/rand.1 projects/routing/secure/usr.bin/openssl/man/req.1 projects/routing/secure/usr.bin/openssl/man/rsa.1 projects/routing/secure/usr.bin/openssl/man/rsautl.1 projects/routing/secure/usr.bin/openssl/man/s_client.1 projects/routing/secure/usr.bin/openssl/man/s_server.1 projects/routing/secure/usr.bin/openssl/man/s_time.1 projects/routing/secure/usr.bin/openssl/man/sess_id.1 projects/routing/secure/usr.bin/openssl/man/smime.1 projects/routing/secure/usr.bin/openssl/man/speed.1 projects/routing/secure/usr.bin/openssl/man/spkac.1 projects/routing/secure/usr.bin/openssl/man/ts.1 projects/routing/secure/usr.bin/openssl/man/tsget.1 projects/routing/secure/usr.bin/openssl/man/verify.1 projects/routing/secure/usr.bin/openssl/man/version.1 projects/routing/secure/usr.bin/openssl/man/x509.1 projects/routing/secure/usr.bin/openssl/man/x509v3_config.1 projects/routing/secure/usr.bin/tests/Makefile projects/routing/secure/usr.sbin/Makefile projects/routing/secure/usr.sbin/tests/Makefile projects/routing/share/Makefile projects/routing/share/colldef/Makefile projects/routing/share/doc/Makefile projects/routing/share/doc/legal/Makefile projects/routing/share/doc/legal/intel_ipw/Makefile projects/routing/share/doc/legal/intel_iwi/Makefile projects/routing/share/doc/legal/intel_iwn/Makefile projects/routing/share/doc/legal/intel_wpi/Makefile projects/routing/share/doc/legal/realtek/Makefile projects/routing/share/doc/legal/realtek/Makefile.depend projects/routing/share/doc/llvm/Makefile.depend projects/routing/share/doc/papers/Makefile projects/routing/share/doc/psd/Makefile projects/routing/share/doc/smm/Makefile projects/routing/share/doc/usd/Makefile projects/routing/share/dtrace/Makefile projects/routing/share/dtrace/nfsattrstats projects/routing/share/dtrace/nfsclienttime projects/routing/share/examples/Makefile projects/routing/share/examples/bhyve/vmrun.sh projects/routing/share/examples/etc/make.conf projects/routing/share/examples/libvgl/Makefile.depend projects/routing/share/examples/mdoc/example.4 projects/routing/share/examples/smbfs/Makefile projects/routing/share/examples/smbfs/print/Makefile projects/routing/share/examples/tests/Makefile projects/routing/share/i18n/Makefile projects/routing/share/i18n/csmapper/Makefile projects/routing/share/i18n/esdb/Makefile projects/routing/share/keys/pkg/trusted/Makefile projects/routing/share/man/Makefile projects/routing/share/man/man3/bitstring.3 projects/routing/share/man/man4/Makefile projects/routing/share/man/man4/ada.4 projects/routing/share/man/man4/blackhole.4 projects/routing/share/man/man4/cloudabi.4 projects/routing/share/man/man4/ctl.4 projects/routing/share/man/man4/da.4 projects/routing/share/man/man4/ddb.4 projects/routing/share/man/man4/dtrace_ip.4 projects/routing/share/man/man4/geom_fox.4 projects/routing/share/man/man4/gif.4 projects/routing/share/man/man4/ioat.4 projects/routing/share/man/man4/ipw.4 projects/routing/share/man/man4/ipwfw.4 projects/routing/share/man/man4/isp.4 projects/routing/share/man/man4/iwi.4 projects/routing/share/man/man4/iwifw.4 projects/routing/share/man/man4/lagg.4 projects/routing/share/man/man4/man4.arm/Makefile.depend projects/routing/share/man/man4/man4.i386/Makefile.depend projects/routing/share/man/man4/man4.powerpc/Makefile.depend projects/routing/share/man/man4/man4.sparc64/Makefile.depend projects/routing/share/man/man4/ng_pppoe.4 projects/routing/share/man/man4/rsu.4 projects/routing/share/man/man4/tcp.4 projects/routing/share/man/man4/urtwn.4 projects/routing/share/man/man4/urtwnfw.4 projects/routing/share/man/man4/usb_quirk.4 projects/routing/share/man/man4/vtnet.4 projects/routing/share/man/man4/wlan.4 projects/routing/share/man/man4/wpi.4 projects/routing/share/man/man4/xnb.4 projects/routing/share/man/man5/Makefile projects/routing/share/man/man5/core.5 projects/routing/share/man/man5/devfs.conf.5 projects/routing/share/man/man5/make.conf.5 projects/routing/share/man/man5/rc.conf.5 projects/routing/share/man/man5/resolver.5 projects/routing/share/man/man5/src.conf.5 projects/routing/share/man/man5/style.Makefile.5 projects/routing/share/man/man7/build.7 projects/routing/share/man/man7/hier.7 projects/routing/share/man/man9/BUS_ADD_CHILD.9 projects/routing/share/man/man9/Makefile projects/routing/share/man/man9/VOP_ADVISE.9 projects/routing/share/man/man9/device_add_child.9 projects/routing/share/man/man9/getenv.9 projects/routing/share/man/man9/mbuf.9 projects/routing/share/man/man9/pci.9 projects/routing/share/man/man9/stack.9 projects/routing/share/man/man9/sysctl.9 projects/routing/share/man/man9/sysctl_add_oid.9 projects/routing/share/man/man9/timeout.9 projects/routing/share/misc/bsd-family-tree projects/routing/share/misc/committers-src.dot projects/routing/share/misc/scsi_modes projects/routing/share/mk/Makefile projects/routing/share/mk/bsd.README projects/routing/share/mk/bsd.compiler.mk projects/routing/share/mk/bsd.cpu.mk projects/routing/share/mk/bsd.crunchgen.mk projects/routing/share/mk/bsd.dep.mk projects/routing/share/mk/bsd.doc.mk projects/routing/share/mk/bsd.files.mk projects/routing/share/mk/bsd.incs.mk projects/routing/share/mk/bsd.info.mk projects/routing/share/mk/bsd.lib.mk projects/routing/share/mk/bsd.man.mk projects/routing/share/mk/bsd.nls.mk projects/routing/share/mk/bsd.opts.mk projects/routing/share/mk/bsd.own.mk projects/routing/share/mk/bsd.prog.mk projects/routing/share/mk/bsd.progs.mk projects/routing/share/mk/bsd.subdir.mk projects/routing/share/mk/bsd.sys.mk projects/routing/share/mk/bsd.test.mk projects/routing/share/mk/local.autodep.mk projects/routing/share/mk/local.gendirdeps.mk projects/routing/share/mk/local.init.mk projects/routing/share/mk/local.meta.sys.mk projects/routing/share/mk/local.sys.mk projects/routing/share/mk/meta.stage.mk projects/routing/share/mk/netbsd-tests.test.mk projects/routing/share/mk/src.libnames.mk projects/routing/share/mk/src.opts.mk projects/routing/share/mk/src.sys.env.mk projects/routing/share/mk/src.sys.mk projects/routing/share/mk/suite.test.mk projects/routing/share/mk/sys.mk projects/routing/share/monetdef/Makefile projects/routing/share/monetdef/am_ET.UTF-8.src (contents, props changed) projects/routing/share/monetdef/be_BY.CP1131.src (contents, props changed) projects/routing/share/monetdef/be_BY.CP1251.src (contents, props changed) projects/routing/share/monetdef/be_BY.ISO8859-5.src (contents, props changed) projects/routing/share/monetdef/be_BY.UTF-8.src (contents, props changed) projects/routing/share/monetdef/bg_BG.CP1251.src (contents, props changed) projects/routing/share/monetdef/bg_BG.UTF-8.src (contents, props changed) projects/routing/share/monetdef/cs_CZ.ISO8859-2.src (contents, props changed) projects/routing/share/monetdef/cs_CZ.UTF-8.src (contents, props changed) projects/routing/share/monetdef/de_AT.UTF-8.src (contents, props changed) projects/routing/share/monetdef/en_GB.UTF-8.src (contents, props changed) projects/routing/share/monetdef/en_IE.UTF-8.src (contents, props changed) projects/routing/share/monetdef/fr_CA.ISO8859-1.src (contents, props changed) projects/routing/share/monetdef/he_IL.UTF-8.src (contents, props changed) projects/routing/share/monetdef/hi_IN.ISCII-DEV.src (contents, props changed) projects/routing/share/monetdef/hu_HU.ISO8859-2.src (contents, props changed) projects/routing/share/monetdef/hy_AM.ARMSCII-8.src (contents, props changed) projects/routing/share/monetdef/hy_AM.UTF-8.src (contents, props changed) projects/routing/share/monetdef/ja_JP.UTF-8.src (contents, props changed) projects/routing/share/monetdef/ja_JP.eucJP.src (contents, props changed) projects/routing/share/monetdef/ko_KR.UTF-8.src (contents, props changed) projects/routing/share/monetdef/ko_KR.eucKR.src (contents, props changed) projects/routing/share/monetdef/lv_LV.ISO8859-13.src (contents, props changed) projects/routing/share/monetdef/nl_NL.UTF-8.src (contents, props changed) projects/routing/share/monetdef/pl_PL.ISO8859-2.src (contents, props changed) projects/routing/share/monetdef/pl_PL.UTF-8.src (contents, props changed) projects/routing/share/monetdef/ru_RU.CP1251.src (contents, props changed) projects/routing/share/monetdef/ru_RU.CP866.src (contents, props changed) projects/routing/share/monetdef/ru_RU.ISO8859-5.src (contents, props changed) projects/routing/share/monetdef/ru_RU.KOI8-R.src (contents, props changed) projects/routing/share/monetdef/ru_RU.UTF-8.src (contents, props changed) projects/routing/share/monetdef/tr_TR.ISO8859-9.src (contents, props changed) projects/routing/share/monetdef/uk_UA.CP1251.src (contents, props changed) projects/routing/share/monetdef/uk_UA.ISO8859-5.src (contents, props changed) projects/routing/share/monetdef/uk_UA.KOI8-U.src (contents, props changed) projects/routing/share/monetdef/uk_UA.UTF-8.src (contents, props changed) projects/routing/share/msgdef/Makefile projects/routing/share/msgdef/am_ET.UTF-8.src (contents, props changed) projects/routing/share/msgdef/be_BY.CP1131.src (contents, props changed) projects/routing/share/msgdef/be_BY.CP1251.src (contents, props changed) projects/routing/share/msgdef/be_BY.ISO8859-5.src (contents, props changed) projects/routing/share/msgdef/be_BY.UTF-8.src (contents, props changed) projects/routing/share/msgdef/bg_BG.CP1251.src (contents, props changed) projects/routing/share/msgdef/bg_BG.UTF-8.src (contents, props changed) projects/routing/share/msgdef/el_GR.ISO8859-7.src (contents, props changed) projects/routing/share/msgdef/el_GR.UTF-8.src (contents, props changed) projects/routing/share/msgdef/he_IL.UTF-8.src (contents, props changed) projects/routing/share/msgdef/hi_IN.ISCII-DEV.src (contents, props changed) projects/routing/share/msgdef/hy_AM.ARMSCII-8.src (contents, props changed) projects/routing/share/msgdef/hy_AM.UTF-8.src (contents, props changed) projects/routing/share/msgdef/ja_JP.SJIS.src (contents, props changed) projects/routing/share/msgdef/ja_JP.UTF-8.src (contents, props changed) projects/routing/share/msgdef/ja_JP.eucJP.src (contents, props changed) projects/routing/share/msgdef/ko_KR.UTF-8.src (contents, props changed) projects/routing/share/msgdef/ko_KR.eucKR.src (contents, props changed) projects/routing/share/msgdef/lv_LV.ISO8859-13.src (contents, props changed) projects/routing/share/msgdef/lv_LV.UTF-8.src (contents, props changed) projects/routing/share/msgdef/ru_RU.CP1251.src (contents, props changed) projects/routing/share/msgdef/ru_RU.CP866.src (contents, props changed) projects/routing/share/msgdef/ru_RU.ISO8859-5.src (contents, props changed) projects/routing/share/msgdef/ru_RU.KOI8-R.src (contents, props changed) projects/routing/share/msgdef/ru_RU.UTF-8.src (contents, props changed) projects/routing/share/msgdef/tr_TR.ISO8859-9.src (contents, props changed) projects/routing/share/msgdef/uk_UA.CP1251.src (contents, props changed) projects/routing/share/msgdef/uk_UA.ISO8859-5.src (contents, props changed) projects/routing/share/msgdef/uk_UA.KOI8-U.src (contents, props changed) projects/routing/share/msgdef/uk_UA.UTF-8.src (contents, props changed) projects/routing/share/numericdef/Makefile projects/routing/share/security/Makefile.depend projects/routing/share/sendmail/Makefile projects/routing/share/skel/Makefile projects/routing/share/syscons/Makefile projects/routing/share/tests/Makefile projects/routing/share/timedef/Makefile projects/routing/share/timedef/am_ET.UTF-8.src (contents, props changed) projects/routing/share/timedef/be_BY.CP1131.src (contents, props changed) projects/routing/share/timedef/be_BY.CP1251.src (contents, props changed) projects/routing/share/timedef/be_BY.ISO8859-5.src (contents, props changed) projects/routing/share/timedef/be_BY.UTF-8.src (contents, props changed) projects/routing/share/timedef/bg_BG.CP1251.src (contents, props changed) projects/routing/share/timedef/bg_BG.UTF-8.src (contents, props changed) projects/routing/share/timedef/cs_CZ.ISO8859-2.src (contents, props changed) projects/routing/share/timedef/cs_CZ.UTF-8.src (contents, props changed) projects/routing/share/timedef/da_DK.UTF-8.src (contents, props changed) projects/routing/share/timedef/de_AT.UTF-8.src (contents, props changed) projects/routing/share/timedef/el_GR.ISO8859-7.src (contents, props changed) projects/routing/share/timedef/el_GR.UTF-8.src (contents, props changed) projects/routing/share/timedef/es_ES.UTF-8.src (contents, props changed) projects/routing/share/timedef/et_EE.ISO8859-15.src (contents, props changed) projects/routing/share/timedef/et_EE.UTF-8.src (contents, props changed) projects/routing/share/timedef/fi_FI.UTF-8.src (contents, props changed) projects/routing/share/timedef/fr_FR.UTF-8.src (contents, props changed) projects/routing/share/timedef/he_IL.UTF-8.src (contents, props changed) projects/routing/share/timedef/hi_IN.ISCII-DEV.src (contents, props changed) projects/routing/share/timedef/hr_HR.ISO8859-2.src (contents, props changed) projects/routing/share/timedef/hr_HR.UTF-8.src (contents, props changed) projects/routing/share/timedef/hu_HU.ISO8859-2.src (contents, props changed) projects/routing/share/timedef/hu_HU.UTF-8.src (contents, props changed) projects/routing/share/timedef/hy_AM.ARMSCII-8.src (contents, props changed) projects/routing/share/timedef/hy_AM.UTF-8.src (contents, props changed) projects/routing/share/timedef/is_IS.UTF-8.src (contents, props changed) projects/routing/share/timedef/it_IT.UTF-8.src (contents, props changed) projects/routing/share/timedef/ja_JP.SJIS.src (contents, props changed) projects/routing/share/timedef/ja_JP.UTF-8.src (contents, props changed) projects/routing/share/timedef/ja_JP.eucJP.src (contents, props changed) projects/routing/share/timedef/ko_KR.UTF-8.src (contents, props changed) projects/routing/share/timedef/ko_KR.eucKR.src (contents, props changed) projects/routing/share/timedef/lt_LT.ISO8859-13.src (contents, props changed) projects/routing/share/timedef/lt_LT.UTF-8.src (contents, props changed) projects/routing/share/timedef/lv_LV.ISO8859-13.src (contents, props changed) projects/routing/share/timedef/lv_LV.UTF-8.src (contents, props changed) projects/routing/share/timedef/nb_NO.UTF-8.src (contents, props changed) projects/routing/share/timedef/nn_NO.UTF-8.src (contents, props changed) projects/routing/share/timedef/pl_PL.ISO8859-2.src (contents, props changed) projects/routing/share/timedef/pl_PL.UTF-8.src (contents, props changed) projects/routing/share/timedef/pt_BR.ISO8859-1.src (contents, props changed) projects/routing/share/timedef/pt_BR.UTF-8.src (contents, props changed) projects/routing/share/timedef/pt_PT.UTF-8.src (contents, props changed) projects/routing/share/timedef/ro_RO.ISO8859-2.src (contents, props changed) projects/routing/share/timedef/ro_RO.UTF-8.src (contents, props changed) projects/routing/share/timedef/ru_RU.CP1251.src (contents, props changed) projects/routing/share/timedef/ru_RU.CP866.src (contents, props changed) projects/routing/share/timedef/ru_RU.ISO8859-5.src (contents, props changed) projects/routing/share/timedef/ru_RU.KOI8-R.src (contents, props changed) projects/routing/share/timedef/ru_RU.UTF-8.src (contents, props changed) projects/routing/share/timedef/sk_SK.ISO8859-2.src (contents, props changed) projects/routing/share/timedef/sk_SK.UTF-8.src (contents, props changed) projects/routing/share/timedef/sl_SI.ISO8859-2.src (contents, props changed) projects/routing/share/timedef/sl_SI.UTF-8.src (contents, props changed) projects/routing/share/timedef/sv_SE.UTF-8.src (contents, props changed) projects/routing/share/timedef/tr_TR.ISO8859-9.src (contents, props changed) projects/routing/share/timedef/tr_TR.UTF-8.src (contents, props changed) projects/routing/share/timedef/uk_UA.CP1251.src (contents, props changed) projects/routing/share/timedef/uk_UA.ISO8859-5.src (contents, props changed) projects/routing/share/timedef/uk_UA.KOI8-U.src (contents, props changed) projects/routing/share/timedef/uk_UA.UTF-8.src (contents, props changed) projects/routing/share/vt/fonts/Makefile projects/routing/share/zoneinfo/Makefile projects/routing/sys/amd64/Makefile projects/routing/sys/amd64/amd64/elf_machdep.c projects/routing/sys/amd64/amd64/initcpu.c projects/routing/sys/amd64/amd64/pmap.c projects/routing/sys/amd64/amd64/support.S projects/routing/sys/amd64/amd64/trap.c projects/routing/sys/amd64/cloudabi64/cloudabi64_sysvec.c projects/routing/sys/amd64/conf/GENERIC projects/routing/sys/amd64/include/cpufunc.h projects/routing/sys/amd64/include/intr_machdep.h projects/routing/sys/amd64/include/pcb.h projects/routing/sys/amd64/include/smp.h projects/routing/sys/amd64/include/stack.h projects/routing/sys/amd64/include/xen/hypercall.h projects/routing/sys/amd64/include/xen/xen-os.h projects/routing/sys/amd64/linux/linux_proto.h projects/routing/sys/amd64/linux/linux_syscall.h projects/routing/sys/amd64/linux/linux_syscalls.c projects/routing/sys/amd64/linux/linux_sysent.c projects/routing/sys/amd64/linux/linux_systrace_args.c projects/routing/sys/amd64/linux/linux_sysvec.c projects/routing/sys/amd64/linux/syscalls.master projects/routing/sys/amd64/linux32/linux.h projects/routing/sys/amd64/linux32/linux32_locore.s projects/routing/sys/amd64/linux32/linux32_proto.h projects/routing/sys/amd64/linux32/linux32_syscall.h projects/routing/sys/amd64/linux32/linux32_syscalls.c projects/routing/sys/amd64/linux32/linux32_sysent.c projects/routing/sys/amd64/linux32/linux32_sysvec.c projects/routing/sys/amd64/linux32/syscalls.conf projects/routing/sys/amd64/linux32/syscalls.master projects/routing/sys/arm/allwinner/a20/a20_mp.c projects/routing/sys/arm/allwinner/a20/files.a20 projects/routing/sys/arm/altera/socfpga/files.socfpga projects/routing/sys/arm/altera/socfpga/socfpga_mp.c projects/routing/sys/arm/amlogic/aml8726/aml8726_machdep.c projects/routing/sys/arm/amlogic/aml8726/aml8726_mp.c projects/routing/sys/arm/amlogic/aml8726/files.aml8726 projects/routing/sys/arm/annapurna/alpine/alpine_machdep_mp.c projects/routing/sys/arm/annapurna/alpine/common.c projects/routing/sys/arm/arm/bcopy_page.S projects/routing/sys/arm/arm/bcopyinout.S projects/routing/sys/arm/arm/bcopyinout_xscale.S projects/routing/sys/arm/arm/busdma_machdep-v6.c projects/routing/sys/arm/arm/busdma_machdep.c projects/routing/sys/arm/arm/copystr.S projects/routing/sys/arm/arm/cpufunc.c projects/routing/sys/arm/arm/cpuinfo.c projects/routing/sys/arm/arm/db_interface.c projects/routing/sys/arm/arm/elf_machdep.c projects/routing/sys/arm/arm/fusu.S projects/routing/sys/arm/arm/genassym.c projects/routing/sys/arm/arm/gic.c projects/routing/sys/arm/arm/locore-v6.S projects/routing/sys/arm/arm/machdep.c projects/routing/sys/arm/arm/mp_machdep.c projects/routing/sys/arm/arm/nexus.c projects/routing/sys/arm/arm/pmap-v6-new.c projects/routing/sys/arm/arm/pmap-v6.c projects/routing/sys/arm/arm/pmu.c projects/routing/sys/arm/arm/stack_machdep.c projects/routing/sys/arm/arm/stdatomic.c projects/routing/sys/arm/arm/trap-v6.c projects/routing/sys/arm/arm/trap.c projects/routing/sys/arm/arm/vfp.c projects/routing/sys/arm/arm/vm_machdep.c projects/routing/sys/arm/at91/at91_pmc.c projects/routing/sys/arm/at91/if_ate.c projects/routing/sys/arm/at91/if_macb.c projects/routing/sys/arm/at91/if_macbreg.h projects/routing/sys/arm/at91/if_macbvar.h projects/routing/sys/arm/broadcom/bcm2835/bcm2835_audio.c projects/routing/sys/arm/broadcom/bcm2835/bcm2835_cpufreq.c projects/routing/sys/arm/broadcom/bcm2835/bcm2835_fbd.c projects/routing/sys/arm/broadcom/bcm2835/bcm2835_intr.c projects/routing/sys/arm/broadcom/bcm2835/bcm2835_mbox.c projects/routing/sys/arm/broadcom/bcm2835/bcm2835_mbox_prop.h projects/routing/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c projects/routing/sys/arm/broadcom/bcm2835/bcm2835_vcbus.h projects/routing/sys/arm/broadcom/bcm2835/bcm2836.c projects/routing/sys/arm/broadcom/bcm2835/bcm2836.h projects/routing/sys/arm/broadcom/bcm2835/bcm2836_mp.c projects/routing/sys/arm/broadcom/bcm2835/bcm283x_dwc_fdt.c projects/routing/sys/arm/broadcom/bcm2835/files.bcm283x projects/routing/sys/arm/conf/A20 projects/routing/sys/arm/conf/ALPINE projects/routing/sys/arm/conf/ARMADAXP projects/routing/sys/arm/conf/BEAGLEBONE projects/routing/sys/arm/conf/CRB projects/routing/sys/arm/conf/CUBIEBOARD projects/routing/sys/arm/conf/DB-78XXX projects/routing/sys/arm/conf/DB-88F5XXX projects/routing/sys/arm/conf/DB-88F6XXX projects/routing/sys/arm/conf/DOCKSTAR projects/routing/sys/arm/conf/DREAMPLUG-1001 projects/routing/sys/arm/conf/EFIKA_MX projects/routing/sys/arm/conf/HL201 projects/routing/sys/arm/conf/IMX53 projects/routing/sys/arm/conf/IMX6 projects/routing/sys/arm/conf/NOTES projects/routing/sys/arm/conf/PANDABOARD projects/routing/sys/arm/conf/SAM9260EK projects/routing/sys/arm/conf/SAM9G20EK projects/routing/sys/arm/conf/SHEEVAPLUG projects/routing/sys/arm/conf/TS7800 projects/routing/sys/arm/conf/ZEDBOARD projects/routing/sys/arm/freescale/imx/files.imx6 projects/routing/sys/arm/freescale/imx/imx6_ccm.c projects/routing/sys/arm/freescale/imx/imx6_machdep.c projects/routing/sys/arm/freescale/imx/imx6_mp.c projects/routing/sys/arm/freescale/imx/imx_gpio.c projects/routing/sys/arm/freescale/imx/imx_i2c.c projects/routing/sys/arm/freescale/vybrid/vf_i2c.c projects/routing/sys/arm/include/_stdint.h projects/routing/sys/arm/include/armreg.h projects/routing/sys/arm/include/asm.h projects/routing/sys/arm/include/atags.h projects/routing/sys/arm/include/atomic-v4.h projects/routing/sys/arm/include/atomic-v6.h projects/routing/sys/arm/include/atomic.h projects/routing/sys/arm/include/board.h projects/routing/sys/arm/include/bus.h projects/routing/sys/arm/include/bus_dma.h projects/routing/sys/arm/include/cpu-v6.h projects/routing/sys/arm/include/cpu.h projects/routing/sys/arm/include/cpufunc.h projects/routing/sys/arm/include/cpuinfo.h projects/routing/sys/arm/include/db_machdep.h projects/routing/sys/arm/include/devmap.h projects/routing/sys/arm/include/disassem.h projects/routing/sys/arm/include/endian.h projects/routing/sys/arm/include/fdt.h projects/routing/sys/arm/include/intr.h projects/routing/sys/arm/include/machdep.h projects/routing/sys/arm/include/md_var.h projects/routing/sys/arm/include/param.h projects/routing/sys/arm/include/pcb.h projects/routing/sys/arm/include/pcpu.h projects/routing/sys/arm/include/physmem.h projects/routing/sys/arm/include/pl310.h projects/routing/sys/arm/include/pmap-v6.h projects/routing/sys/arm/include/pmap.h projects/routing/sys/arm/include/proc.h projects/routing/sys/arm/include/smp.h projects/routing/sys/arm/include/sysreg.h projects/routing/sys/arm/include/vfp.h projects/routing/sys/arm/mv/armadaxp/armadaxp_mp.c projects/routing/sys/arm/mv/mpic.c projects/routing/sys/arm/mv/std-pj4b.mv projects/routing/sys/arm/qemu/virt_common.c projects/routing/sys/arm/qemu/virt_mp.c projects/routing/sys/arm/rockchip/rk30xx_mp.c projects/routing/sys/arm/samsung/exynos/exynos5_i2c.c projects/routing/sys/arm/samsung/exynos/exynos5_mp.c projects/routing/sys/arm/ti/aintc.c projects/routing/sys/arm/ti/am335x/am335x_gpio.c projects/routing/sys/arm/ti/am335x/am335x_lcd.c projects/routing/sys/arm/ti/am335x/am335x_pmic.c projects/routing/sys/arm/ti/am335x/files.am335x projects/routing/sys/arm/ti/am335x/tda19988.c projects/routing/sys/arm/ti/files.ti projects/routing/sys/arm/ti/omap4/omap4_gpio.c projects/routing/sys/arm/ti/omap4/omap4_mp.c projects/routing/sys/arm/ti/omap4/std.omap4 projects/routing/sys/arm/ti/ti_common.c projects/routing/sys/arm/ti/ti_i2c.c projects/routing/sys/arm/versatile/versatile_pci.c projects/routing/sys/arm/xilinx/zy7_mp.c projects/routing/sys/arm/xscale/i80321/i80321_pci.c projects/routing/sys/arm/xscale/i8134x/i81342_pci.c projects/routing/sys/arm/xscale/ixp425/ixp425_pci.c projects/routing/sys/arm64/arm64/busdma_bounce.c projects/routing/sys/arm64/arm64/copyinout.S projects/routing/sys/arm64/arm64/elf_machdep.c projects/routing/sys/arm64/arm64/exception.S projects/routing/sys/arm64/arm64/genassym.c projects/routing/sys/arm64/arm64/gic_v3_its.c projects/routing/sys/arm64/arm64/gic_v3_var.h projects/routing/sys/arm64/arm64/locore.S projects/routing/sys/arm64/arm64/machdep.c projects/routing/sys/arm64/arm64/mp_machdep.c projects/routing/sys/arm64/arm64/nexus.c projects/routing/sys/arm64/arm64/pmap.c projects/routing/sys/arm64/arm64/stack_machdep.c projects/routing/sys/arm64/arm64/support.S projects/routing/sys/arm64/arm64/swtch.S projects/routing/sys/arm64/arm64/trap.c projects/routing/sys/arm64/cavium/thunder_pcie.c projects/routing/sys/arm64/cavium/thunder_pcie_pem.c projects/routing/sys/arm64/conf/GENERIC projects/routing/sys/arm64/include/armreg.h projects/routing/sys/arm64/include/asm.h projects/routing/sys/arm64/include/cpu.h projects/routing/sys/arm64/include/cpufunc.h projects/routing/sys/boot/common/newvers.sh projects/routing/sys/boot/efi/boot1/Makefile projects/routing/sys/boot/efi/libefi/Makefile.depend projects/routing/sys/boot/efi/loader/Makefile projects/routing/sys/boot/efi/loader/arch/amd64/framebuffer.c projects/routing/sys/boot/efi/loader/copy.c projects/routing/sys/boot/fdt/dts/arm/bcm2835.dtsi projects/routing/sys/boot/fdt/dts/arm/bcm2836.dtsi projects/routing/sys/boot/fdt/dts/arm/cubieboard2.dts projects/routing/sys/boot/fdt/dts/arm/rpi.dts projects/routing/sys/boot/fdt/dts/arm/rpi2.dts projects/routing/sys/boot/ficl/Makefile.depend projects/routing/sys/boot/i386/boot0/Makefile.depend projects/routing/sys/boot/i386/boot0sio/Makefile.depend projects/routing/sys/boot/i386/boot2/Makefile.depend projects/routing/sys/boot/i386/gptboot/gptldr.S projects/routing/sys/boot/i386/loader/Makefile.depend projects/routing/sys/boot/i386/zfsloader/Makefile.depend projects/routing/sys/boot/usb/usbcore.mk projects/routing/sys/cam/ata/ata_da.c projects/routing/sys/cam/ata/ata_pmp.c projects/routing/sys/cam/cam_compat.c projects/routing/sys/cam/cam_periph.c projects/routing/sys/cam/cam_periph.h projects/routing/sys/cam/cam_xpt.c projects/routing/sys/cam/cam_xpt.h projects/routing/sys/cam/ctl/README.ctl.txt projects/routing/sys/cam/ctl/ctl.c projects/routing/sys/cam/ctl/ctl.h projects/routing/sys/cam/ctl/ctl_backend.c projects/routing/sys/cam/ctl/ctl_backend.h projects/routing/sys/cam/ctl/ctl_backend_block.c projects/routing/sys/cam/ctl/ctl_backend_ramdisk.c projects/routing/sys/cam/ctl/ctl_cmd_table.c projects/routing/sys/cam/ctl/ctl_error.c projects/routing/sys/cam/ctl/ctl_error.h projects/routing/sys/cam/ctl/ctl_frontend.c projects/routing/sys/cam/ctl/ctl_frontend.h projects/routing/sys/cam/ctl/ctl_frontend_cam_sim.c projects/routing/sys/cam/ctl/ctl_frontend_ioctl.c projects/routing/sys/cam/ctl/ctl_frontend_iscsi.c projects/routing/sys/cam/ctl/ctl_ha.h projects/routing/sys/cam/ctl/ctl_io.h projects/routing/sys/cam/ctl/ctl_ioctl.h projects/routing/sys/cam/ctl/ctl_private.h projects/routing/sys/cam/ctl/ctl_scsi_all.c projects/routing/sys/cam/ctl/ctl_ser_table.c projects/routing/sys/cam/ctl/ctl_tpc.c projects/routing/sys/cam/ctl/ctl_tpc_local.c projects/routing/sys/cam/ctl/ctl_util.c projects/routing/sys/cam/ctl/ctl_util.h projects/routing/sys/cam/ctl/scsi_ctl.c projects/routing/sys/cam/scsi/scsi_all.c projects/routing/sys/cam/scsi/scsi_all.h projects/routing/sys/cam/scsi/scsi_cd.c projects/routing/sys/cam/scsi/scsi_cd.h projects/routing/sys/cam/scsi/scsi_ch.c projects/routing/sys/cam/scsi/scsi_da.c projects/routing/sys/cam/scsi/scsi_message.h projects/routing/sys/cam/scsi/scsi_pass.c projects/routing/sys/cam/scsi/scsi_sg.c projects/routing/sys/cam/scsi/scsi_target.c projects/routing/sys/cddl/contrib/opensolaris/common/avl/avl.c projects/routing/sys/cddl/contrib/opensolaris/common/nvpair/opensolaris_nvpair.c projects/routing/sys/cddl/contrib/opensolaris/common/zfs/zfeature_common.c projects/routing/sys/cddl/contrib/opensolaris/common/zfs/zfeature_common.h projects/routing/sys/cddl/contrib/opensolaris/common/zfs/zfs_fletcher.c projects/routing/sys/cddl/contrib/opensolaris/common/zfs/zfs_fletcher.h projects/routing/sys/cddl/contrib/opensolaris/common/zfs/zfs_ioctl_compat.c projects/routing/sys/cddl/contrib/opensolaris/common/zfs/zfs_ioctl_compat.h projects/routing/sys/cddl/contrib/opensolaris/common/zfs/zfs_prop.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/dtrace/fasttrap.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/ddt.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_objset.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_traverse.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_zfetch.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode_sync.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_destroy.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dir.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_prop.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_scan.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sha256.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/space_reftree.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/arc.h projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dbuf.h projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu.h projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_impl.h projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_objset.h projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_send.h projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_traverse.h projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_zfetch.h projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dataset.h projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dir.h projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_prop.h projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa.h projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa_impl.h projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_ioctl.h projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio.h projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_checksum.h projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zrlock.h projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap_leaf.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfeature.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_dir.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_log.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_replay.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio_checksum.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zrlock.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c projects/routing/sys/cddl/contrib/opensolaris/uts/common/sys/debug.h projects/routing/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace_impl.h projects/routing/sys/cddl/contrib/opensolaris/uts/common/sys/fs/zfs.h projects/routing/sys/cddl/contrib/opensolaris/uts/common/sys/sysevent/eventdefs.h projects/routing/sys/cddl/dev/dtrace/amd64/dtrace_isa.c projects/routing/sys/cddl/dev/dtrace/powerpc/dtrace_isa.c projects/routing/sys/cddl/dev/sdt/sdt.c projects/routing/sys/cddl/dev/systrace/systrace.c projects/routing/sys/compat/cloudabi/cloudabi_syscalldefs.h projects/routing/sys/compat/cloudabi64/cloudabi64_util.h projects/routing/sys/compat/linux/linux_dtrace.h projects/routing/sys/compat/linux/linux_fork.c projects/routing/sys/compat/linux/linux_misc.c projects/routing/sys/conf/Makefile.arm64 projects/routing/sys/conf/NOTES projects/routing/sys/conf/dtb.mk projects/routing/sys/conf/files projects/routing/sys/conf/files.amd64 projects/routing/sys/conf/files.arm projects/routing/sys/conf/files.arm64 projects/routing/sys/conf/files.i386 projects/routing/sys/conf/files.mips projects/routing/sys/conf/files.pc98 projects/routing/sys/conf/files.powerpc projects/routing/sys/conf/files.sparc64 projects/routing/sys/conf/kern.mk projects/routing/sys/conf/kern.opts.mk projects/routing/sys/conf/kern.post.mk projects/routing/sys/conf/kern.pre.mk projects/routing/sys/conf/kmod.mk projects/routing/sys/conf/options projects/routing/sys/conf/options.arm projects/routing/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_attach.c projects/routing/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c projects/routing/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.h projects/routing/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_stub_funcs.c projects/routing/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_stub_funcs.h projects/routing/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c (contents, props changed) projects/routing/sys/contrib/ipfilter/netinet/ip_nat.c projects/routing/sys/contrib/ipfilter/netinet/ip_state.c projects/routing/sys/contrib/rdma/krping/krping.c projects/routing/sys/contrib/vchiq/interface/compat/vchi_bsd.h projects/routing/sys/contrib/vchiq/interface/vchi/vchi.h projects/routing/sys/contrib/vchiq/interface/vchi/vchi_common.h projects/routing/sys/contrib/vchiq/interface/vchiq_arm/vchiq.h projects/routing/sys/contrib/vchiq/interface/vchiq_arm/vchiq_2835_arm.c projects/routing/sys/contrib/vchiq/interface/vchiq_arm/vchiq_arm.c projects/routing/sys/contrib/vchiq/interface/vchiq_arm/vchiq_arm.h projects/routing/sys/contrib/vchiq/interface/vchiq_arm/vchiq_cfg.h projects/routing/sys/contrib/vchiq/interface/vchiq_arm/vchiq_connected.c projects/routing/sys/contrib/vchiq/interface/vchiq_arm/vchiq_connected.h projects/routing/sys/contrib/vchiq/interface/vchiq_arm/vchiq_core.c projects/routing/sys/contrib/vchiq/interface/vchiq_arm/vchiq_core.h projects/routing/sys/contrib/vchiq/interface/vchiq_arm/vchiq_if.h projects/routing/sys/contrib/vchiq/interface/vchiq_arm/vchiq_ioctl.h projects/routing/sys/contrib/vchiq/interface/vchiq_arm/vchiq_kern_lib.c projects/routing/sys/contrib/vchiq/interface/vchiq_arm/vchiq_kmod.c projects/routing/sys/contrib/vchiq/interface/vchiq_arm/vchiq_pagelist.h projects/routing/sys/contrib/vchiq/interface/vchiq_arm/vchiq_shim.c projects/routing/sys/contrib/vchiq/interface/vchiq_arm/vchiq_util.c projects/routing/sys/contrib/vchiq/interface/vchiq_arm/vchiq_util.h projects/routing/sys/dev/acpica/acpi.c projects/routing/sys/dev/acpica/acpi_pcib.c projects/routing/sys/dev/ahci/ahci_pci.c projects/routing/sys/dev/ata/chipsets/ata-jmicron.c projects/routing/sys/dev/ath/ath_hal/ah.h projects/routing/sys/dev/ath/ath_hal/ar5210/ar5210.h projects/routing/sys/dev/ath/ath_hal/ar5210/ar5210_reset.c projects/routing/sys/dev/ath/ath_hal/ar5211/ar5211.h projects/routing/sys/dev/ath/ath_hal/ar5211/ar5211_reset.c projects/routing/sys/dev/ath/ath_hal/ar5212/ar5212.h projects/routing/sys/dev/ath/ath_hal/ar5212/ar5212_reset.c projects/routing/sys/dev/ath/ath_hal/ar5312/ar5312.h projects/routing/sys/dev/ath/ath_hal/ar5312/ar5312_reset.c projects/routing/sys/dev/ath/ath_hal/ar5416/ar5416.h projects/routing/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c projects/routing/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c projects/routing/sys/dev/ath/if_ath.c projects/routing/sys/dev/ath/if_ath_ahb.c projects/routing/sys/dev/ath/if_ath_beacon.c projects/routing/sys/dev/ath/if_ath_keycache.c projects/routing/sys/dev/ath/if_ath_keycache.h projects/routing/sys/dev/ath/if_ath_pci.c projects/routing/sys/dev/ath/if_ath_tdma.c projects/routing/sys/dev/ath/if_ath_tx.c projects/routing/sys/dev/ath/if_ath_tx.h projects/routing/sys/dev/ath/if_athvar.h projects/routing/sys/dev/bwi/bwimac.c projects/routing/sys/dev/bwi/bwiphy.c projects/routing/sys/dev/bwi/bwirf.c projects/routing/sys/dev/bwi/if_bwi.c projects/routing/sys/dev/bwn/if_bwn.c projects/routing/sys/dev/bxe/bxe.c projects/routing/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb.c projects/routing/sys/dev/cxgbe/firmware/t4fw_cfg.txt projects/routing/sys/dev/cxgbe/firmware/t5fw_cfg.txt projects/routing/sys/dev/cxgbe/iw_cxgbe/cm.c projects/routing/sys/dev/cxgbe/iw_cxgbe/device.c projects/routing/sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h projects/routing/sys/dev/cxgbe/iw_cxgbe/qp.c projects/routing/sys/dev/cxgbe/t4_main.c projects/routing/sys/dev/cxgbe/tom/t4_cpl_io.c projects/routing/sys/dev/cxgbe/tom/t4_ddp.c projects/routing/sys/dev/drm2/drmP.h projects/routing/sys/dev/drm2/drm_crtc.c projects/routing/sys/dev/drm2/drm_fops.c projects/routing/sys/dev/drm2/drm_lock.c projects/routing/sys/dev/drm2/drm_pci.c projects/routing/sys/dev/drm2/drm_stub.c projects/routing/sys/dev/drm2/i915/i915_dma.c projects/routing/sys/dev/drm2/i915/i915_drv.c projects/routing/sys/dev/drm2/i915/i915_gem.c projects/routing/sys/dev/drm2/i915/i915_gem_execbuffer.c projects/routing/sys/dev/drm2/i915/i915_irq.c projects/routing/sys/dev/drm2/i915/intel_crt.c projects/routing/sys/dev/drm2/i915/intel_display.c projects/routing/sys/dev/drm2/i915/intel_dp.c projects/routing/sys/dev/drm2/i915/intel_drv.h projects/routing/sys/dev/drm2/i915/intel_fb.c projects/routing/sys/dev/drm2/i915/intel_iic.c projects/routing/sys/dev/drm2/i915/intel_opregion.c projects/routing/sys/dev/drm2/i915/intel_pm.c projects/routing/sys/dev/drm2/i915/intel_ringbuffer.c projects/routing/sys/dev/drm2/i915/intel_ringbuffer.h projects/routing/sys/dev/drm2/i915/intel_sdvo_regs.h projects/routing/sys/dev/drm2/radeon/radeon_device.c projects/routing/sys/dev/drm2/ttm/ttm_bo.c projects/routing/sys/dev/dwc/if_dwc.c projects/routing/sys/dev/dwc/if_dwc.h projects/routing/sys/dev/e1000/if_igb.c projects/routing/sys/dev/etherswitch/arswitch/arswitch_8327.c projects/routing/sys/dev/filemon/filemon.c projects/routing/sys/dev/flash/mx25l.c projects/routing/sys/dev/hptmv/hptproc.c projects/routing/sys/dev/hwpmc/hwpmc_mod.c projects/routing/sys/dev/hwpmc/pmc_events.h projects/routing/sys/dev/if_ndis/if_ndis.c projects/routing/sys/dev/iicbus/icee.c projects/routing/sys/dev/iicbus/iicbb.c projects/routing/sys/dev/iicbus/iicbus.c projects/routing/sys/dev/iicbus/iicoc.c projects/routing/sys/dev/iicbus/iiconf.c projects/routing/sys/dev/iicbus/iiconf.h projects/routing/sys/dev/iicbus/iicsmb.c projects/routing/sys/dev/ioat/ioat.c projects/routing/sys/dev/ioat/ioat.h projects/routing/sys/dev/ioat/ioat_hw.h projects/routing/sys/dev/ioat/ioat_internal.h projects/routing/sys/dev/ioat/ioat_test.c projects/routing/sys/dev/ioat/ioat_test.h projects/routing/sys/dev/ipw/if_ipw.c projects/routing/sys/dev/isci/isci.c projects/routing/sys/dev/isci/isci_interrupt.c projects/routing/sys/dev/isp/isp.c projects/routing/sys/dev/isp/isp_freebsd.c projects/routing/sys/dev/isp/isp_freebsd.h projects/routing/sys/dev/isp/isp_library.c projects/routing/sys/dev/isp/isp_library.h projects/routing/sys/dev/isp/isp_pci.c projects/routing/sys/dev/isp/isp_sbus.c projects/routing/sys/dev/isp/isp_stds.h projects/routing/sys/dev/isp/isp_target.c projects/routing/sys/dev/isp/isp_target.h projects/routing/sys/dev/isp/ispmbox.h projects/routing/sys/dev/isp/ispreg.h projects/routing/sys/dev/isp/ispvar.h projects/routing/sys/dev/ispfw/asm_2400.h projects/routing/sys/dev/ispfw/asm_2500.h projects/routing/sys/dev/ispfw/ispfw.c projects/routing/sys/dev/iwi/if_iwi.c projects/routing/sys/dev/iwi/if_iwivar.h projects/routing/sys/dev/iwm/if_iwm.c projects/routing/sys/dev/iwm/if_iwmvar.h projects/routing/sys/dev/iwn/if_iwn.c projects/routing/sys/dev/ixgbe/if_ix.c projects/routing/sys/dev/ixgbe/if_ixv.c projects/routing/sys/dev/ixgbe/ix_txrx.c projects/routing/sys/dev/ixgbe/ixgbe.h projects/routing/sys/dev/ixl/if_ixl.c projects/routing/sys/dev/malo/if_malo.c projects/routing/sys/dev/malo/if_malo_pci.c projects/routing/sys/dev/mge/if_mge.c projects/routing/sys/dev/mge/if_mgevar.h projects/routing/sys/dev/mpr/mpr.c projects/routing/sys/dev/mpr/mprvar.h projects/routing/sys/dev/mps/mps.c projects/routing/sys/dev/mps/mpsvar.h projects/routing/sys/dev/mwl/if_mwl.c projects/routing/sys/dev/netmap/netmap.c projects/routing/sys/dev/ntb/if_ntb/if_ntb.c projects/routing/sys/dev/ntb/ntb_hw/ntb_hw.c projects/routing/sys/dev/ntb/ntb_hw/ntb_hw.h projects/routing/sys/dev/ntb/ntb_hw/ntb_regs.h projects/routing/sys/dev/nvd/nvd.c projects/routing/sys/dev/nvme/nvme.h projects/routing/sys/dev/nvme/nvme_ns.c projects/routing/sys/dev/nxge/if_nxge.c projects/routing/sys/dev/nxge/xgehal/xgehal-fifo.c projects/routing/sys/dev/nxge/xgehal/xgehal-ring.c projects/routing/sys/dev/ofw/ofw_iicbus.c projects/routing/sys/dev/pcf/pcf.c projects/routing/sys/dev/pci/pci.c projects/routing/sys/dev/pci/pci_pci.c projects/routing/sys/dev/pci/pcib_if.m projects/routing/sys/dev/pci/pcivar.h projects/routing/sys/dev/qlxgbe/ql_hw.c projects/routing/sys/dev/qlxgbe/ql_os.c projects/routing/sys/dev/qlxgbe/ql_ver.h projects/routing/sys/dev/ral/rt2560.c projects/routing/sys/dev/ral/rt2560var.h projects/routing/sys/dev/ral/rt2661.c projects/routing/sys/dev/ral/rt2661var.h projects/routing/sys/dev/ral/rt2860.c projects/routing/sys/dev/ral/rt2860var.h projects/routing/sys/dev/random/random_harvestq.c projects/routing/sys/dev/rccgpio/rccgpio.c projects/routing/sys/dev/re/if_re.c projects/routing/sys/dev/rl/if_rlreg.h projects/routing/sys/dev/sdhci/sdhci.c projects/routing/sys/dev/sdhci/sdhci.h projects/routing/sys/dev/sdhci/sdhci_pci.c projects/routing/sys/dev/sound/midi/midi.c projects/routing/sys/dev/sym/sym_hipd.c projects/routing/sys/dev/uart/uart_bus_pci.c projects/routing/sys/dev/uart/uart_cpu_fdt.c projects/routing/sys/dev/usb/controller/dwc_otg.c projects/routing/sys/dev/usb/controller/dwc_otg.h projects/routing/sys/dev/usb/controller/uhci_pci.c projects/routing/sys/dev/usb/controller/xhci_pci.c projects/routing/sys/dev/usb/input/wsp.c projects/routing/sys/dev/usb/net/if_cdce.c projects/routing/sys/dev/usb/net/if_urndis.c projects/routing/sys/dev/usb/quirk/usb_quirk.c projects/routing/sys/dev/usb/serial/u3g.c projects/routing/sys/dev/usb/usb_busdma.c projects/routing/sys/dev/usb/usb_busdma.h projects/routing/sys/dev/usb/usb_device.c projects/routing/sys/dev/usb/usb_dynamic.c projects/routing/sys/dev/usb/usb_dynamic.h projects/routing/sys/dev/usb/usbdevs projects/routing/sys/dev/usb/wlan/if_rsu.c projects/routing/sys/dev/usb/wlan/if_rsureg.h projects/routing/sys/dev/usb/wlan/if_rum.c projects/routing/sys/dev/usb/wlan/if_rumreg.h projects/routing/sys/dev/usb/wlan/if_rumvar.h projects/routing/sys/dev/usb/wlan/if_run.c projects/routing/sys/dev/usb/wlan/if_runreg.h projects/routing/sys/dev/usb/wlan/if_runvar.h projects/routing/sys/dev/usb/wlan/if_uath.c projects/routing/sys/dev/usb/wlan/if_uathvar.h projects/routing/sys/dev/usb/wlan/if_upgt.c projects/routing/sys/dev/usb/wlan/if_upgtvar.h projects/routing/sys/dev/usb/wlan/if_ural.c projects/routing/sys/dev/usb/wlan/if_uralvar.h projects/routing/sys/dev/usb/wlan/if_urtw.c projects/routing/sys/dev/usb/wlan/if_urtwn.c projects/routing/sys/dev/usb/wlan/if_urtwnreg.h projects/routing/sys/dev/usb/wlan/if_urtwvar.h projects/routing/sys/dev/usb/wlan/if_zyd.c projects/routing/sys/dev/usb/wlan/if_zydreg.h projects/routing/sys/dev/wi/if_wi.c projects/routing/sys/dev/wi/if_wivar.h projects/routing/sys/dev/wpi/if_wpi.c projects/routing/sys/dev/wpi/if_wpireg.h projects/routing/sys/dev/wpi/if_wpivar.h projects/routing/sys/dev/wtap/if_wtap.c projects/routing/sys/dev/wtap/if_wtapvar.h projects/routing/sys/dev/xen/balloon/balloon.c projects/routing/sys/dev/xen/blkback/blkback.c projects/routing/sys/dev/xen/blkfront/blkfront.c projects/routing/sys/dev/xen/control/control.c projects/routing/sys/dev/xen/grant_table/grant_table.c projects/routing/sys/dev/xen/netback/netback.c projects/routing/sys/dev/xen/netfront/netfront.c projects/routing/sys/dev/xen/pcifront/pcifront.c projects/routing/sys/dev/xen/xenpci/xenpci.c projects/routing/sys/dev/xen/xenstore/xenstore.c projects/routing/sys/fs/fifofs/fifo_vnops.c projects/routing/sys/fs/procfs/procfs_dbregs.c projects/routing/sys/fs/procfs/procfs_fpregs.c projects/routing/sys/geom/eli/g_eli.c projects/routing/sys/geom/geom_dev.c projects/routing/sys/geom/nop/g_nop.c projects/routing/sys/geom/nop/g_nop.h projects/routing/sys/geom/raid/g_raid.c projects/routing/sys/gnu/fs/reiserfs/reiserfs_vfsops.c projects/routing/sys/i386/conf/GENERIC projects/routing/sys/i386/conf/XBOX projects/routing/sys/i386/i386/elf_machdep.c projects/routing/sys/i386/i386/exception.s projects/routing/sys/i386/i386/initcpu.c projects/routing/sys/i386/i386/pmap.c projects/routing/sys/i386/i386/support.s projects/routing/sys/i386/i386/trap.c projects/routing/sys/i386/include/asmacros.h projects/routing/sys/i386/include/cpufunc.h projects/routing/sys/i386/include/intr_machdep.h projects/routing/sys/i386/include/pcb.h projects/routing/sys/i386/include/stack.h projects/routing/sys/i386/include/xen/hypercall.h projects/routing/sys/i386/include/xen/xen-os.h projects/routing/sys/i386/linux/linux_sysvec.c projects/routing/sys/kern/Make.tags.inc projects/routing/sys/kern/bus_if.m projects/routing/sys/kern/imgact_elf.c projects/routing/sys/kern/init_sysent.c projects/routing/sys/kern/kern_descrip.c projects/routing/sys/kern/kern_event.c projects/routing/sys/kern/kern_exec.c projects/routing/sys/kern/kern_exit.c projects/routing/sys/kern/kern_fork.c projects/routing/sys/kern/kern_linker.c projects/routing/sys/kern/kern_mib.c projects/routing/sys/kern/kern_module.c projects/routing/sys/kern/kern_physio.c projects/routing/sys/kern/kern_proc.c projects/routing/sys/kern/kern_racct.c projects/routing/sys/kern/kern_rctl.c projects/routing/sys/kern/kern_rmlock.c projects/routing/sys/kern/kern_shutdown.c projects/routing/sys/kern/kern_sig.c projects/routing/sys/kern/kern_sysctl.c projects/routing/sys/kern/kern_tc.c projects/routing/sys/kern/kern_thread.c projects/routing/sys/kern/kern_timeout.c projects/routing/sys/kern/kern_umtx.c projects/routing/sys/kern/link_elf.c projects/routing/sys/kern/link_elf_obj.c projects/routing/sys/kern/makesyscalls.sh projects/routing/sys/kern/subr_busdma_bufalloc.c projects/routing/sys/kern/subr_param.c projects/routing/sys/kern/subr_rman.c projects/routing/sys/kern/subr_sbuf.c projects/routing/sys/kern/subr_smp.c projects/routing/sys/kern/subr_syscall.c projects/routing/sys/kern/subr_taskqueue.c projects/routing/sys/kern/sys_process.c projects/routing/sys/kern/syscalls.c projects/routing/sys/kern/sysv_shm.c projects/routing/sys/kern/uipc_mbuf.c projects/routing/sys/kern/uipc_usrreq.c projects/routing/sys/kern/vfs_aio.c projects/routing/sys/kern/vfs_bio.c projects/routing/sys/kern/vfs_cache.c projects/routing/sys/kern/vfs_default.c projects/routing/sys/kern/vfs_hash.c projects/routing/sys/kern/vfs_init.c projects/routing/sys/kern/vfs_lookup.c projects/routing/sys/kern/vfs_mountroot.c projects/routing/sys/kern/vfs_subr.c projects/routing/sys/kern/vfs_syscalls.c projects/routing/sys/kern/vfs_vnops.c projects/routing/sys/kern/vnode_if.src projects/routing/sys/libkern/arm/memclr.S projects/routing/sys/libkern/ffs.c projects/routing/sys/libkern/ffsl.c projects/routing/sys/libkern/fls.c projects/routing/sys/libkern/flsl.c projects/routing/sys/libkern/flsll.c projects/routing/sys/mips/adm5120/admpci.c projects/routing/sys/mips/atheros/ar71xx_pci.c projects/routing/sys/mips/atheros/ar724x_pci.c projects/routing/sys/mips/atheros/files.ar71xx projects/routing/sys/mips/atheros/if_arge.c projects/routing/sys/mips/atheros/if_argevar.h projects/routing/sys/mips/atheros/qca955x_pci.c projects/routing/sys/mips/cavium/octopci.c projects/routing/sys/mips/conf/AP135.hints projects/routing/sys/mips/conf/AR933X_BASE projects/routing/sys/mips/conf/OCTEON1 projects/routing/sys/mips/conf/TP-MR3020 projects/routing/sys/mips/conf/TP-MR3020.hints projects/routing/sys/mips/conf/WZR-300HP projects/routing/sys/mips/conf/WZR-300HP.hints projects/routing/sys/mips/conf/std.SWARM projects/routing/sys/mips/idt/idtpci.c projects/routing/sys/mips/include/cpuregs.h projects/routing/sys/mips/include/pmap.h projects/routing/sys/mips/malta/gt_pci.c projects/routing/sys/mips/mips/busdma_machdep.c projects/routing/sys/mips/mips/elf_machdep.c projects/routing/sys/mips/mips/pmap.c projects/routing/sys/mips/mips/stack_machdep.c projects/routing/sys/mips/mips/trap.c projects/routing/sys/mips/nlm/xlp_pci.c projects/routing/sys/mips/rmi/xlr_pci.c projects/routing/sys/modules/Makefile projects/routing/sys/modules/Makefile.inc projects/routing/sys/modules/cloudabi64/Makefile projects/routing/sys/modules/ctl/Makefile projects/routing/sys/modules/cxgb/iw_cxgb/Makefile projects/routing/sys/modules/cxgbe/if_cxgbe/Makefile projects/routing/sys/modules/cxgbe/iw_cxgbe/Makefile projects/routing/sys/modules/drm2/Makefile projects/routing/sys/modules/drm2/radeonkmsfw/Makefile projects/routing/sys/modules/dtb/imx6/Makefile projects/routing/sys/modules/dtrace/Makefile projects/routing/sys/modules/dtrace/systrace_linux32/Makefile projects/routing/sys/modules/hwpmc/Makefile projects/routing/sys/modules/i2c/iicbb/Makefile projects/routing/sys/modules/ibcore/Makefile projects/routing/sys/modules/ipoib/Makefile projects/routing/sys/modules/ispfw/Makefile projects/routing/sys/modules/mlx4/Makefile projects/routing/sys/modules/mlx4ib/Makefile projects/routing/sys/modules/mlxen/Makefile projects/routing/sys/modules/mthca/Makefile projects/routing/sys/modules/rdma/krping/Makefile projects/routing/sys/modules/uart/Makefile projects/routing/sys/modules/usb/Makefile projects/routing/sys/modules/usb/rsu/Makefile projects/routing/sys/modules/usb/urtwn/Makefile projects/routing/sys/modules/usb/usb/Makefile projects/routing/sys/modules/zfs/Makefile projects/routing/sys/net/flowtable.c projects/routing/sys/net/ieee8023ad_lacp.c projects/routing/sys/net/if.c projects/routing/sys/net/if_arcsubr.c projects/routing/sys/net/if_ethersubr.c projects/routing/sys/net/if_fddisubr.c projects/routing/sys/net/if_fwsubr.c projects/routing/sys/net/if_gif.c projects/routing/sys/net/if_gif.h projects/routing/sys/net/if_gre.c projects/routing/sys/net/if_iso88025subr.c projects/routing/sys/net/if_lagg.c projects/routing/sys/net/if_lagg.h projects/routing/sys/net/if_llatbl.c projects/routing/sys/net/if_llatbl.h projects/routing/sys/net/if_me.c projects/routing/sys/net/if_tap.c projects/routing/sys/net/if_var.h projects/routing/sys/net/pfvar.h projects/routing/sys/net/route.c projects/routing/sys/net/route.h projects/routing/sys/net80211/_ieee80211.h projects/routing/sys/net80211/ieee80211.c projects/routing/sys/net80211/ieee80211.h projects/routing/sys/net80211/ieee80211_crypto.c projects/routing/sys/net80211/ieee80211_crypto.h projects/routing/sys/net80211/ieee80211_crypto_ccmp.c projects/routing/sys/net80211/ieee80211_crypto_none.c projects/routing/sys/net80211/ieee80211_crypto_tkip.c projects/routing/sys/net80211/ieee80211_crypto_wep.c projects/routing/sys/net80211/ieee80211_freebsd.c projects/routing/sys/net80211/ieee80211_freebsd.h projects/routing/sys/net80211/ieee80211_hostap.c projects/routing/sys/net80211/ieee80211_ht.c projects/routing/sys/net80211/ieee80211_ht.h projects/routing/sys/net80211/ieee80211_input.c projects/routing/sys/net80211/ieee80211_ioctl.c projects/routing/sys/net80211/ieee80211_mesh.c projects/routing/sys/net80211/ieee80211_node.h projects/routing/sys/net80211/ieee80211_output.c projects/routing/sys/net80211/ieee80211_power.c projects/routing/sys/net80211/ieee80211_proto.c projects/routing/sys/net80211/ieee80211_proto.h projects/routing/sys/net80211/ieee80211_scan_sta.c projects/routing/sys/net80211/ieee80211_superg.c projects/routing/sys/net80211/ieee80211_var.h projects/routing/sys/net80211/ieee80211_wds.c projects/routing/sys/netgraph/bluetooth/hci/ng_hci_evnt.c projects/routing/sys/netgraph/bluetooth/hci/ng_hci_ulpi.c projects/routing/sys/netgraph/bluetooth/hci/ng_hci_ulpi.h projects/routing/sys/netgraph/bluetooth/include/ng_btsocket.h projects/routing/sys/netgraph/bluetooth/include/ng_btsocket_l2cap.h projects/routing/sys/netgraph/bluetooth/include/ng_hci.h projects/routing/sys/netgraph/bluetooth/include/ng_l2cap.h projects/routing/sys/netgraph/bluetooth/l2cap/ng_l2cap_evnt.c projects/routing/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c projects/routing/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.h projects/routing/sys/netgraph/bluetooth/l2cap/ng_l2cap_main.c projects/routing/sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c projects/routing/sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c projects/routing/sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.h projects/routing/sys/netgraph/bluetooth/l2cap/ng_l2cap_var.h projects/routing/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c projects/routing/sys/netgraph/ng_eiface.c projects/routing/sys/netgraph/ng_ether.c projects/routing/sys/netgraph/ng_pppoe.c projects/routing/sys/netgraph/ng_pppoe.h projects/routing/sys/netinet/if_ether.c projects/routing/sys/netinet/if_ether.h projects/routing/sys/netinet/in.c projects/routing/sys/netinet/in_kdtrace.c projects/routing/sys/netinet/in_kdtrace.h projects/routing/sys/netinet/in_rmx.c projects/routing/sys/netinet/in_var.h projects/routing/sys/netinet/ip_carp.c projects/routing/sys/netinet/ip_fastfwd.c projects/routing/sys/netinet/ip_fw.h projects/routing/sys/netinet/ip_input.c projects/routing/sys/netinet/ip_ipsec.c projects/routing/sys/netinet/sctp.h projects/routing/sys/netinet/sctp_auth.c projects/routing/sys/netinet/sctp_constants.h projects/routing/sys/netinet/sctp_header.h projects/routing/sys/netinet/sctp_indata.c projects/routing/sys/netinet/sctp_input.c projects/routing/sys/netinet/sctp_output.c projects/routing/sys/netinet/sctp_pcb.c projects/routing/sys/netinet/sctp_sysctl.h projects/routing/sys/netinet/sctp_timer.c projects/routing/sys/netinet/sctp_uio.h projects/routing/sys/netinet/sctp_usrreq.c projects/routing/sys/netinet/sctputil.c projects/routing/sys/netinet/tcp.h projects/routing/sys/netinet/tcp_input.c projects/routing/sys/netinet/tcp_output.c projects/routing/sys/netinet/tcp_reass.c projects/routing/sys/netinet/tcp_sack.c projects/routing/sys/netinet/tcp_subr.c projects/routing/sys/netinet/tcp_timer.c projects/routing/sys/netinet/tcp_usrreq.c projects/routing/sys/netinet/tcp_var.h projects/routing/sys/netinet/toecore.c projects/routing/sys/netinet6/frag6.c projects/routing/sys/netinet6/icmp6.c projects/routing/sys/netinet6/in6.c projects/routing/sys/netinet6/in6.h projects/routing/sys/netinet6/in6_fib.c projects/routing/sys/netinet6/in6_ifattach.c projects/routing/sys/netinet6/in6_rss.c projects/routing/sys/netinet6/in6_var.h projects/routing/sys/netinet6/ip6_forward.c projects/routing/sys/netinet6/ip6_input.c projects/routing/sys/netinet6/ip6_ipsec.c projects/routing/sys/netinet6/ip6_output.c projects/routing/sys/netinet6/ip6_var.h projects/routing/sys/netinet6/nd6.c projects/routing/sys/netinet6/nd6.h projects/routing/sys/netinet6/nd6_nbr.c projects/routing/sys/netinet6/nd6_rtr.c projects/routing/sys/netinet6/udp6_usrreq.c projects/routing/sys/netipsec/ipsec.c projects/routing/sys/netipsec/ipsec_output.c projects/routing/sys/netipsec/xform_ah.c projects/routing/sys/netipsec/xform_esp.c projects/routing/sys/netipsec/xform_ipcomp.c projects/routing/sys/netpfil/ipfw/ip_fw2.c projects/routing/sys/netpfil/ipfw/ip_fw_log.c projects/routing/sys/netpfil/ipfw/ip_fw_private.h projects/routing/sys/netpfil/ipfw/ip_fw_sockopt.c projects/routing/sys/netpfil/ipfw/ip_fw_table.c projects/routing/sys/netpfil/ipfw/ip_fw_table.h projects/routing/sys/netpfil/pf/if_pfsync.c projects/routing/sys/netpfil/pf/pf.c projects/routing/sys/netpfil/pf/pf_ioctl.c projects/routing/sys/netpfil/pf/pf_norm.c projects/routing/sys/nfs/nfs_diskless.c projects/routing/sys/ofed/drivers/infiniband/core/addr.c projects/routing/sys/ofed/drivers/infiniband/core/cma.c projects/routing/sys/ofed/drivers/infiniband/core/device.c projects/routing/sys/ofed/drivers/infiniband/core/fmr_pool.c projects/routing/sys/ofed/drivers/infiniband/core/mad.c projects/routing/sys/ofed/drivers/infiniband/core/uverbs_cmd.c projects/routing/sys/ofed/drivers/infiniband/core/uverbs_main.c projects/routing/sys/ofed/drivers/infiniband/hw/mlx4/main.c projects/routing/sys/ofed/drivers/infiniband/hw/mthca/mthca_main.c projects/routing/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c projects/routing/sys/ofed/drivers/net/mlx4/en_main.c projects/routing/sys/ofed/drivers/net/mlx4/en_netdev.c projects/routing/sys/ofed/drivers/net/mlx4/main.c projects/routing/sys/pc98/conf/GENERIC projects/routing/sys/powerpc/include/spr.h projects/routing/sys/powerpc/mpc85xx/i2c.c projects/routing/sys/powerpc/mpc85xx/pci_mpc85xx.c projects/routing/sys/powerpc/ofw/ofw_pci.c projects/routing/sys/powerpc/powerpc/busdma_machdep.c projects/routing/sys/powerpc/powerpc/db_interface.c projects/routing/sys/powerpc/powerpc/elf32_machdep.c projects/routing/sys/powerpc/powerpc/elf64_machdep.c projects/routing/sys/powerpc/powerpc/machdep.c projects/routing/sys/powerpc/powerpc/stack_machdep.c projects/routing/sys/powerpc/powerpc/swtch32.S projects/routing/sys/powerpc/powerpc/swtch64.S projects/routing/sys/powerpc/powerpc/trap.c projects/routing/sys/rpc/rpcsec_gss/svc_rpcsec_gss.c projects/routing/sys/sparc64/ebus/ebus.c projects/routing/sys/sparc64/include/smp.h projects/routing/sys/sparc64/pci/fire.c projects/routing/sys/sparc64/pci/firereg.h projects/routing/sys/sparc64/pci/firevar.h projects/routing/sys/sparc64/pci/ofw_pci.h projects/routing/sys/sparc64/pci/psycho.c projects/routing/sys/sparc64/pci/psychoreg.h projects/routing/sys/sparc64/pci/psychovar.h projects/routing/sys/sparc64/pci/schizo.c projects/routing/sys/sparc64/pci/schizoreg.h projects/routing/sys/sparc64/pci/schizovar.h projects/routing/sys/sparc64/sparc64/bus_machdep.c projects/routing/sys/sparc64/sparc64/elf_machdep.c projects/routing/sys/sparc64/sparc64/stack_machdep.c projects/routing/sys/sparc64/sparc64/trap.c projects/routing/sys/sys/_bitset.h projects/routing/sys/sys/_stdint.h projects/routing/sys/sys/buf.h projects/routing/sys/sys/callout.h projects/routing/sys/sys/cdefs.h projects/routing/sys/sys/conf.h projects/routing/sys/sys/elf_common.h projects/routing/sys/sys/exec.h projects/routing/sys/sys/file.h projects/routing/sys/sys/filedesc.h projects/routing/sys/sys/imgact_elf.h projects/routing/sys/sys/kernel.h projects/routing/sys/sys/ktr_class.h projects/routing/sys/sys/libkern.h projects/routing/sys/sys/linker.h projects/routing/sys/sys/mbuf.h projects/routing/sys/sys/param.h projects/routing/sys/sys/pmc.h projects/routing/sys/sys/proc.h projects/routing/sys/sys/ptrace.h projects/routing/sys/sys/racct.h projects/routing/sys/sys/random.h projects/routing/sys/sys/reboot.h projects/routing/sys/sys/sdt.h projects/routing/sys/sys/stack.h projects/routing/sys/sys/stdint.h projects/routing/sys/sys/syscall.h projects/routing/sys/sys/syscall.mk projects/routing/sys/sys/sysctl.h projects/routing/sys/sys/sysproto.h projects/routing/sys/sys/systm.h projects/routing/sys/sys/types.h projects/routing/sys/sys/umtx.h projects/routing/sys/sys/user.h projects/routing/sys/sys/vmmeter.h projects/routing/sys/sys/vnode.h projects/routing/sys/tools/fw_stub.awk projects/routing/sys/tools/vnode_if.awk projects/routing/sys/ufs/ffs/ffs_alloc.c projects/routing/sys/ufs/ffs/ffs_balloc.c projects/routing/sys/ufs/ffs/ffs_softdep.c projects/routing/sys/vm/swap_pager.c projects/routing/sys/vm/uma_core.c projects/routing/sys/vm/vm_glue.c projects/routing/sys/vm/vm_init.c projects/routing/sys/vm/vm_kern.c projects/routing/sys/vm/vm_map.c projects/routing/sys/vm/vm_meter.c projects/routing/sys/vm/vm_object.c projects/routing/sys/vm/vm_object.h projects/routing/sys/vm/vm_page.c projects/routing/sys/vm/vm_page.h projects/routing/sys/vm/vm_pageout.c projects/routing/sys/vm/vm_pageout.h projects/routing/sys/vm/vm_param.h projects/routing/sys/vm/vnode_pager.c projects/routing/sys/x86/acpica/madt.c projects/routing/sys/x86/include/apicvar.h projects/routing/sys/x86/iommu/intel_ctx.c projects/routing/sys/x86/pci/pci_bus.c projects/routing/sys/x86/pci/qpi.c projects/routing/sys/x86/x86/busdma_bounce.c projects/routing/sys/x86/x86/identcpu.c projects/routing/sys/x86/x86/local_apic.c projects/routing/sys/x86/x86/mp_x86.c projects/routing/sys/x86/x86/mptable_pci.c projects/routing/sys/x86/xen/xen_intr.c projects/routing/sys/xen/blkif.h projects/routing/sys/xen/hypervisor.h projects/routing/sys/xen/interface/arch-arm.h projects/routing/sys/xen/interface/arch-arm/hvm/save.h projects/routing/sys/xen/interface/arch-x86/cpuid.h projects/routing/sys/xen/interface/arch-x86/hvm/save.h projects/routing/sys/xen/interface/arch-x86/xen-mca.h projects/routing/sys/xen/interface/arch-x86/xen-x86_32.h projects/routing/sys/xen/interface/arch-x86/xen-x86_64.h projects/routing/sys/xen/interface/arch-x86/xen.h projects/routing/sys/xen/interface/callback.h projects/routing/sys/xen/interface/dom0_ops.h projects/routing/sys/xen/interface/domctl.h projects/routing/sys/xen/interface/elfnote.h projects/routing/sys/xen/interface/event_channel.h projects/routing/sys/xen/interface/features.h projects/routing/sys/xen/interface/grant_table.h projects/routing/sys/xen/interface/hvm/e820.h projects/routing/sys/xen/interface/hvm/hvm_info_table.h projects/routing/sys/xen/interface/hvm/hvm_op.h projects/routing/sys/xen/interface/hvm/ioreq.h projects/routing/sys/xen/interface/hvm/params.h projects/routing/sys/xen/interface/hvm/save.h projects/routing/sys/xen/interface/io/blkif.h projects/routing/sys/xen/interface/io/console.h projects/routing/sys/xen/interface/io/fbif.h projects/routing/sys/xen/interface/io/kbdif.h projects/routing/sys/xen/interface/io/libxenvchan.h projects/routing/sys/xen/interface/io/netif.h projects/routing/sys/xen/interface/io/pciif.h projects/routing/sys/xen/interface/io/protocols.h projects/routing/sys/xen/interface/io/ring.h projects/routing/sys/xen/interface/io/tpmif.h projects/routing/sys/xen/interface/io/usbif.h projects/routing/sys/xen/interface/io/vscsiif.h projects/routing/sys/xen/interface/io/xenbus.h projects/routing/sys/xen/interface/io/xs_wire.h projects/routing/sys/xen/interface/kexec.h projects/routing/sys/xen/interface/memory.h projects/routing/sys/xen/interface/nmi.h projects/routing/sys/xen/interface/physdev.h projects/routing/sys/xen/interface/platform.h projects/routing/sys/xen/interface/sched.h projects/routing/sys/xen/interface/sysctl.h projects/routing/sys/xen/interface/tmem.h projects/routing/sys/xen/interface/trace.h projects/routing/sys/xen/interface/vcpu.h projects/routing/sys/xen/interface/version.h projects/routing/sys/xen/interface/xen-compat.h projects/routing/sys/xen/interface/xen.h projects/routing/sys/xen/interface/xenoprof.h projects/routing/sys/xen/interface/xsm/flask_op.h projects/routing/sys/xen/xen-os.h projects/routing/sys/xen/xen_intr.h projects/routing/targets/pseudo/bootstrap-tools/Makefile (contents, props changed) projects/routing/targets/pseudo/bootstrap-tools/Makefile.depend.host (contents, props changed) projects/routing/targets/pseudo/clang/Makefile.depend projects/routing/targets/pseudo/gcc/Makefile.depend projects/routing/targets/pseudo/hosttools/Makefile.depend projects/routing/targets/pseudo/kernel/Makefile.depend projects/routing/targets/pseudo/stage/Makefile projects/routing/targets/pseudo/the-lot/Makefile.depend projects/routing/targets/pseudo/toolchain/Makefile.depend projects/routing/targets/pseudo/universe/Makefile.depend projects/routing/targets/pseudo/userland/Makefile.depend projects/routing/targets/pseudo/userland/cddl/Makefile.depend projects/routing/targets/pseudo/userland/games/Makefile.depend projects/routing/targets/pseudo/userland/gnu/Makefile.depend projects/routing/targets/pseudo/userland/include/Makefile.depend projects/routing/targets/pseudo/userland/kerberos5/Makefile.depend projects/routing/targets/pseudo/userland/lib/Makefile.depend projects/routing/targets/pseudo/userland/libexec/Makefile.depend projects/routing/targets/pseudo/userland/misc/Makefile.depend projects/routing/targets/pseudo/userland/secure/Makefile.depend projects/routing/targets/pseudo/userland/share/Makefile.depend projects/routing/tests/Makefile projects/routing/tests/etc/Makefile projects/routing/tests/sys/Makefile projects/routing/tests/sys/kern/Makefile projects/routing/tests/sys/kern/ptrace_test.c projects/routing/tests/sys/mqueue/Makefile projects/routing/tests/sys/pjdfstest/Makefile projects/routing/tests/sys/pjdfstest/tests/Makefile projects/routing/tools/bsdbox/Makefile.base projects/routing/tools/build/Makefile.depend projects/routing/tools/build/mk/OptionalObsoleteFiles.inc projects/routing/tools/build/options/WITH_DIRDEPS_CACHE projects/routing/tools/build/options/WITH_STAGING projects/routing/tools/build/options/WITH_SYSROOT projects/routing/tools/build/options/makeman projects/routing/tools/regression/include/stdatomic/Makefile.depend projects/routing/tools/regression/lib/msun/test-fenv.c projects/routing/tools/regression/net80211/ccmp/test_ccmp.c projects/routing/tools/regression/net80211/tkip/test_tkip.c projects/routing/tools/regression/net80211/wep/test_wep.c projects/routing/tools/regression/security/open_to_operation/Makefile projects/routing/tools/regression/security/open_to_operation/open_to_operation.c projects/routing/tools/test/README projects/routing/tools/tools/ath/ath_ee_9300_print/Makefile.depend projects/routing/tools/tools/drm/radeon/mkregtable/Makefile.depend projects/routing/tools/tools/ioat/Makefile projects/routing/tools/tools/ioat/ioatcontrol.8 projects/routing/tools/tools/ioat/ioatcontrol.c projects/routing/tools/tools/makeroot/Makefile.depend projects/routing/tools/tools/nanobsd/defaults.sh projects/routing/tools/tools/usbtest/Makefile projects/routing/tools/tools/usbtest/Makefile.depend projects/routing/tools/tools/zfsboottest/Makefile projects/routing/tools/tools/zfsboottest/zfsboottest.c projects/routing/usr.bin/Makefile projects/routing/usr.bin/apply/tests/Makefile projects/routing/usr.bin/ar/write.c projects/routing/usr.bin/basename/tests/Makefile projects/routing/usr.bin/bmake/Makefile projects/routing/usr.bin/bmake/Makefile.inc projects/routing/usr.bin/bsdiff/bsdiff/bsdiff.c projects/routing/usr.bin/calendar/parsedata.c projects/routing/usr.bin/calendar/tests/Makefile projects/routing/usr.bin/clang/Makefile projects/routing/usr.bin/clang/bugpoint/Makefile projects/routing/usr.bin/clang/bugpoint/bugpoint.1 projects/routing/usr.bin/clang/clang.prog.mk projects/routing/usr.bin/clang/clang/Makefile projects/routing/usr.bin/clang/llc/Makefile projects/routing/usr.bin/clang/llc/llc.1 projects/routing/usr.bin/clang/lldb/Makefile projects/routing/usr.bin/clang/lli/Makefile projects/routing/usr.bin/clang/lli/lli.1 projects/routing/usr.bin/clang/llvm-ar/Makefile projects/routing/usr.bin/clang/llvm-ar/llvm-ar.1 projects/routing/usr.bin/clang/llvm-as/llvm-as.1 projects/routing/usr.bin/clang/llvm-bcanalyzer/llvm-bcanalyzer.1 projects/routing/usr.bin/clang/llvm-cov/Makefile projects/routing/usr.bin/clang/llvm-cov/llvm-cov.1 projects/routing/usr.bin/clang/llvm-diff/llvm-diff.1 projects/routing/usr.bin/clang/llvm-dis/Makefile projects/routing/usr.bin/clang/llvm-dis/llvm-dis.1 projects/routing/usr.bin/clang/llvm-extract/Makefile projects/routing/usr.bin/clang/llvm-extract/llvm-extract.1 projects/routing/usr.bin/clang/llvm-link/Makefile projects/routing/usr.bin/clang/llvm-link/llvm-link.1 projects/routing/usr.bin/clang/llvm-mc/Makefile projects/routing/usr.bin/clang/llvm-nm/Makefile projects/routing/usr.bin/clang/llvm-nm/llvm-nm.1 projects/routing/usr.bin/clang/llvm-objdump/Makefile projects/routing/usr.bin/clang/llvm-profdata/llvm-profdata.1 projects/routing/usr.bin/clang/llvm-rtdyld/Makefile projects/routing/usr.bin/clang/llvm-symbolizer/Makefile projects/routing/usr.bin/clang/llvm-symbolizer/llvm-symbolizer.1 projects/routing/usr.bin/clang/opt/Makefile projects/routing/usr.bin/clang/opt/opt.1 projects/routing/usr.bin/clang/tblgen/tblgen.1 projects/routing/usr.bin/cmp/tests/Makefile projects/routing/usr.bin/col/tests/Makefile projects/routing/usr.bin/comm/tests/Makefile projects/routing/usr.bin/cpio/Makefile projects/routing/usr.bin/ctlstat/ctlstat.8 projects/routing/usr.bin/ctlstat/ctlstat.c projects/routing/usr.bin/cut/tests/Makefile projects/routing/usr.bin/dirname/tests/Makefile projects/routing/usr.bin/dpv/dpv.1 projects/routing/usr.bin/dtc/HACKING projects/routing/usr.bin/dtc/Makefile projects/routing/usr.bin/dtc/checking.cc projects/routing/usr.bin/dtc/checking.hh projects/routing/usr.bin/dtc/dtb.cc projects/routing/usr.bin/dtc/dtb.hh projects/routing/usr.bin/dtc/dtc.cc projects/routing/usr.bin/dtc/fdt.cc projects/routing/usr.bin/dtc/fdt.hh projects/routing/usr.bin/dtc/input_buffer.cc projects/routing/usr.bin/dtc/input_buffer.hh projects/routing/usr.bin/dtc/string.hh projects/routing/usr.bin/elfdump/elfdump.c projects/routing/usr.bin/file2c/tests/Makefile projects/routing/usr.bin/getconf/sysconf.gperf projects/routing/usr.bin/grep/tests/Makefile projects/routing/usr.bin/gzip/gzip.1 projects/routing/usr.bin/gzip/gzip.c projects/routing/usr.bin/gzip/tests/Makefile projects/routing/usr.bin/ident/tests/Makefile projects/routing/usr.bin/indent/indent.1 projects/routing/usr.bin/iscsictl/Makefile projects/routing/usr.bin/iscsictl/iscsictl.8 projects/routing/usr.bin/iscsictl/iscsictl.c projects/routing/usr.bin/join/tests/Makefile projects/routing/usr.bin/jot/tests/Makefile projects/routing/usr.bin/kdump/Makefile projects/routing/usr.bin/kdump/kdump.c projects/routing/usr.bin/lastcomm/tests/Makefile projects/routing/usr.bin/ldd/ldd.c projects/routing/usr.bin/lex/Makefile.depend projects/routing/usr.bin/limits/Makefile projects/routing/usr.bin/locale/locale.c projects/routing/usr.bin/locate/locate/locate.rc projects/routing/usr.bin/locate/locate/updatedb.sh projects/routing/usr.bin/login/login.c projects/routing/usr.bin/login/login_fbtab.c projects/routing/usr.bin/look/look.1 projects/routing/usr.bin/m4/Makefile projects/routing/usr.bin/m4/Makefile.depend projects/routing/usr.bin/m4/tests/Makefile projects/routing/usr.bin/man/man.sh projects/routing/usr.bin/mandoc/Makefile projects/routing/usr.bin/mandoc/Makefile.depend projects/routing/usr.bin/mkcsmapper_static/Makefile.depend projects/routing/usr.bin/mkdep/mkdep.1 projects/routing/usr.bin/mkimg/ebr.c projects/routing/usr.bin/mkimg/mbr.c projects/routing/usr.bin/mkimg/mkimg.1 projects/routing/usr.bin/mkimg/scheme.c projects/routing/usr.bin/mkimg/scheme.h projects/routing/usr.bin/mkimg/tests/Makefile projects/routing/usr.bin/mt/mt.c projects/routing/usr.bin/ncal/tests/Makefile projects/routing/usr.bin/netstat/Makefile.depend projects/routing/usr.bin/netstat/flowtable.c projects/routing/usr.bin/netstat/if.c projects/routing/usr.bin/netstat/inet.c projects/routing/usr.bin/netstat/inet6.c projects/routing/usr.bin/netstat/main.c projects/routing/usr.bin/netstat/mbuf.c projects/routing/usr.bin/netstat/mroute.c projects/routing/usr.bin/netstat/mroute6.c projects/routing/usr.bin/netstat/netstat.h projects/routing/usr.bin/netstat/route.c projects/routing/usr.bin/netstat/sctp.c projects/routing/usr.bin/pamtest/Makefile.depend projects/routing/usr.bin/patch/pch.c projects/routing/usr.bin/pr/egetopt.c projects/routing/usr.bin/printf/tests/Makefile projects/routing/usr.bin/procstat/Makefile.depend projects/routing/usr.bin/procstat/procstat_auxv.c projects/routing/usr.bin/rctl/rctl.8 projects/routing/usr.bin/rctl/rctl.c projects/routing/usr.bin/sed/compile.c projects/routing/usr.bin/sed/tests/Makefile projects/routing/usr.bin/setchannel/Makefile.depend projects/routing/usr.bin/smbutil/Makefile.depend projects/routing/usr.bin/sockstat/sockstat.c projects/routing/usr.bin/soelim/soelim.1 projects/routing/usr.bin/soelim/tests/Makefile projects/routing/usr.bin/sort/sort.1.in projects/routing/usr.bin/sort/sort.c projects/routing/usr.bin/svn/Makefile projects/routing/usr.bin/svn/Makefile.inc projects/routing/usr.bin/svn/lib/Makefile projects/routing/usr.bin/svn/lib/libapr/Makefile.depend projects/routing/usr.bin/svn/lib/libapr_util/Makefile.depend projects/routing/usr.bin/svn/lib/libserf/Makefile.depend projects/routing/usr.bin/svn/lib/libsvn_client/Makefile projects/routing/usr.bin/svn/lib/libsvn_client/Makefile.depend projects/routing/usr.bin/svn/lib/libsvn_delta/Makefile.depend projects/routing/usr.bin/svn/lib/libsvn_diff/Makefile projects/routing/usr.bin/svn/lib/libsvn_diff/Makefile.depend projects/routing/usr.bin/svn/lib/libsvn_fs/Makefile projects/routing/usr.bin/svn/lib/libsvn_fs/Makefile.depend projects/routing/usr.bin/svn/lib/libsvn_fs_fs/Makefile projects/routing/usr.bin/svn/lib/libsvn_fs_fs/Makefile.depend projects/routing/usr.bin/svn/lib/libsvn_fs_util/Makefile.depend projects/routing/usr.bin/svn/lib/libsvn_ra/Makefile.depend projects/routing/usr.bin/svn/lib/libsvn_ra_local/Makefile.depend projects/routing/usr.bin/svn/lib/libsvn_ra_serf/Makefile projects/routing/usr.bin/svn/lib/libsvn_ra_serf/Makefile.depend projects/routing/usr.bin/svn/lib/libsvn_ra_svn/Makefile.depend projects/routing/usr.bin/svn/lib/libsvn_repos/Makefile projects/routing/usr.bin/svn/lib/libsvn_repos/Makefile.depend projects/routing/usr.bin/svn/lib/libsvn_subr/Makefile projects/routing/usr.bin/svn/lib/libsvn_subr/Makefile.depend projects/routing/usr.bin/svn/lib/libsvn_wc/Makefile.depend projects/routing/usr.bin/svn/svn/Makefile projects/routing/usr.bin/svn/svn/Makefile.depend projects/routing/usr.bin/svn/svn_private_config.h projects/routing/usr.bin/svn/svnadmin/Makefile projects/routing/usr.bin/svn/svnadmin/Makefile.depend projects/routing/usr.bin/svn/svndumpfilter/Makefile projects/routing/usr.bin/svn/svndumpfilter/Makefile.depend projects/routing/usr.bin/svn/svnlook/Makefile projects/routing/usr.bin/svn/svnlook/Makefile.depend projects/routing/usr.bin/svn/svnmucc/Makefile projects/routing/usr.bin/svn/svnmucc/Makefile.depend projects/routing/usr.bin/svn/svnrdump/Makefile projects/routing/usr.bin/svn/svnrdump/Makefile.depend projects/routing/usr.bin/svn/svnserve/Makefile projects/routing/usr.bin/svn/svnserve/Makefile.depend projects/routing/usr.bin/svn/svnsync/Makefile projects/routing/usr.bin/svn/svnsync/Makefile.depend projects/routing/usr.bin/svn/svnversion/Makefile.depend projects/routing/usr.bin/systat/Makefile projects/routing/usr.bin/systat/cmdtab.c projects/routing/usr.bin/systat/extern.h projects/routing/usr.bin/systat/iostat.c projects/routing/usr.bin/systat/main.c projects/routing/usr.bin/systat/netstat.c projects/routing/usr.bin/systat/pigs.c projects/routing/usr.bin/systat/systat.1 projects/routing/usr.bin/systat/systat.h projects/routing/usr.bin/systat/vmstat.c projects/routing/usr.bin/tar/Makefile projects/routing/usr.bin/tests/Makefile projects/routing/usr.bin/timeout/timeout.c projects/routing/usr.bin/tip/tip/Makefile projects/routing/usr.bin/truncate/tests/Makefile projects/routing/usr.bin/truss/Makefile projects/routing/usr.bin/truss/Makefile.depend.amd64 projects/routing/usr.bin/truss/amd64-linux32.c projects/routing/usr.bin/truss/extern.h projects/routing/usr.bin/truss/i386-linux.c projects/routing/usr.bin/truss/main.c projects/routing/usr.bin/truss/setup.c projects/routing/usr.bin/truss/syscall.h projects/routing/usr.bin/truss/syscalls.c projects/routing/usr.bin/truss/truss.1 projects/routing/usr.bin/truss/truss.h projects/routing/usr.bin/units/tests/Makefile projects/routing/usr.bin/usbhidaction/usbhidaction.c projects/routing/usr.bin/uudecode/tests/Makefile projects/routing/usr.bin/uuencode/tests/Makefile projects/routing/usr.bin/vgrind/RETEST/Makefile.depend projects/routing/usr.bin/vgrind/regexp.c projects/routing/usr.bin/vi/catalog/Makefile projects/routing/usr.bin/vmstat/vmstat.c projects/routing/usr.bin/w/Makefile projects/routing/usr.bin/w/w.c projects/routing/usr.bin/wc/Makefile projects/routing/usr.bin/wc/Makefile.depend projects/routing/usr.bin/xargs/tests/Makefile projects/routing/usr.bin/xinstall/install.1 projects/routing/usr.bin/xinstall/xinstall.c projects/routing/usr.bin/xlint/llib/Makefile projects/routing/usr.bin/xo/Makefile projects/routing/usr.bin/yacc/tests/Makefile projects/routing/usr.sbin/Makefile projects/routing/usr.sbin/Makefile.mips projects/routing/usr.sbin/acpi/acpiconf/acpiconf.8 projects/routing/usr.sbin/amd/Makefile projects/routing/usr.sbin/apmd/Makefile.depend projects/routing/usr.sbin/arp/arp.c projects/routing/usr.sbin/bhyve/Makefile projects/routing/usr.sbin/bhyve/acpi.c projects/routing/usr.sbin/bhyve/bhyverun.c projects/routing/usr.sbin/bhyve/pci_ahci.c projects/routing/usr.sbin/bhyve/pci_emul.c projects/routing/usr.sbin/bhyve/pci_virtio_net.c projects/routing/usr.sbin/bhyveload/bhyveload.8 projects/routing/usr.sbin/bhyveload/bhyveload.c projects/routing/usr.sbin/bluetooth/hccontrol/le.c projects/routing/usr.sbin/bluetooth/sdpcontrol/search.c projects/routing/usr.sbin/boot98cfg/Makefile.depend projects/routing/usr.sbin/bootparamd/bootparamd/main.c projects/routing/usr.sbin/bsdconfig/bsdconfig projects/routing/usr.sbin/bsdconfig/packages/Makefile.depend projects/routing/usr.sbin/bsdconfig/packages/include/Makefile.depend projects/routing/usr.sbin/bsdconfig/share/common.subr projects/routing/usr.sbin/bsdconfig/share/packages/Makefile.depend projects/routing/usr.sbin/bsdconfig/share/sysrc.subr projects/routing/usr.sbin/bsdinstall/Makefile projects/routing/usr.sbin/bsdinstall/Makefile.depend projects/routing/usr.sbin/bsdinstall/distfetch/distfetch.c projects/routing/usr.sbin/bsdinstall/scripts/auto projects/routing/usr.sbin/bsdinstall/scripts/config projects/routing/usr.sbin/bsdinstall/scripts/docsinstall projects/routing/usr.sbin/bsdinstall/scripts/hostname projects/routing/usr.sbin/bsdinstall/scripts/jail projects/routing/usr.sbin/bsdinstall/scripts/keymap projects/routing/usr.sbin/bsdinstall/scripts/netconfig_ipv4 projects/routing/usr.sbin/bsdinstall/scripts/netconfig_ipv6 projects/routing/usr.sbin/bsdinstall/scripts/rootpass projects/routing/usr.sbin/bsdinstall/scripts/script projects/routing/usr.sbin/bsdinstall/scripts/wlanconfig projects/routing/usr.sbin/bsdinstall/scripts/zfsboot projects/routing/usr.sbin/bsnmpd/modules/snmp_hast/Makefile.depend projects/routing/usr.sbin/config/config.h projects/routing/usr.sbin/config/mkmakefile.c projects/routing/usr.sbin/ctladm/ctladm.8 projects/routing/usr.sbin/ctladm/ctladm.c projects/routing/usr.sbin/ctld/ctl.conf.5 projects/routing/usr.sbin/ctld/ctld.c projects/routing/usr.sbin/ctld/ctld.h projects/routing/usr.sbin/ctld/kernel.c projects/routing/usr.sbin/ctld/keys.c projects/routing/usr.sbin/ctld/login.c projects/routing/usr.sbin/ctld/parse.y projects/routing/usr.sbin/ctld/token.l projects/routing/usr.sbin/eeprom/Makefile.depend projects/routing/usr.sbin/etcupdate/etcupdate.8 projects/routing/usr.sbin/etcupdate/tests/Makefile projects/routing/usr.sbin/fifolog/Makefile projects/routing/usr.sbin/freebsd-update/freebsd-update.8 projects/routing/usr.sbin/freebsd-update/freebsd-update.sh projects/routing/usr.sbin/fstyp/Makefile projects/routing/usr.sbin/fstyp/tests/Makefile projects/routing/usr.sbin/fstyp/zfs.c projects/routing/usr.sbin/fwcontrol/fwmpegts.c projects/routing/usr.sbin/gssd/gssd.c projects/routing/usr.sbin/gstat/gstat.c projects/routing/usr.sbin/i2c/i2c.c projects/routing/usr.sbin/inetd/inetd.c projects/routing/usr.sbin/iscsid/discovery.c projects/routing/usr.sbin/iscsid/keys.c projects/routing/usr.sbin/iscsid/pdu.c projects/routing/usr.sbin/jail/command.c projects/routing/usr.sbin/jail/jailp.h projects/routing/usr.sbin/jail/jailparse.y projects/routing/usr.sbin/jls/jls.c projects/routing/usr.sbin/kgzip/Makefile.depend projects/routing/usr.sbin/kldxref/kldxref.c projects/routing/usr.sbin/lpr/Makefile projects/routing/usr.sbin/lpr/filters.ru/Makefile.depend projects/routing/usr.sbin/makefs/Makefile projects/routing/usr.sbin/makefs/cd9660.c projects/routing/usr.sbin/makefs/cd9660/cd9660_write.c projects/routing/usr.sbin/makefs/cd9660/iso9660_rrip.c projects/routing/usr.sbin/makefs/ffs.c projects/routing/usr.sbin/makefs/ffs/ffs_bswap.c projects/routing/usr.sbin/makefs/ffs/mkfs.c projects/routing/usr.sbin/makefs/makefs.8 projects/routing/usr.sbin/makefs/makefs.c projects/routing/usr.sbin/makefs/makefs.h projects/routing/usr.sbin/mergemaster/mergemaster.8 projects/routing/usr.sbin/mfiutil/mfiutil.8 projects/routing/usr.sbin/mount_smbfs/Makefile.depend projects/routing/usr.sbin/mptable/mptable.c projects/routing/usr.sbin/nandsim/nandsim.8 projects/routing/usr.sbin/nandsim/nandsim.c projects/routing/usr.sbin/nandsim/nandsim_cfgparse.c projects/routing/usr.sbin/ndiscvt/Makefile projects/routing/usr.sbin/ndiscvt/inf.c projects/routing/usr.sbin/ndiscvt/inf.h projects/routing/usr.sbin/ndp/ndp.c projects/routing/usr.sbin/newsyslog/newsyslog.c projects/routing/usr.sbin/newsyslog/newsyslog.conf.5 projects/routing/usr.sbin/newsyslog/tests/Makefile projects/routing/usr.sbin/ngctl/dot.c projects/routing/usr.sbin/nmtree/Makefile.depend projects/routing/usr.sbin/nmtree/tests/Makefile projects/routing/usr.sbin/ntp/Makefile projects/routing/usr.sbin/ntp/config.h projects/routing/usr.sbin/ntp/doc/ntp-keygen.8 projects/routing/usr.sbin/ntp/doc/ntp.conf.5 projects/routing/usr.sbin/ntp/doc/ntp.keys.5 projects/routing/usr.sbin/ntp/doc/ntpd.8 projects/routing/usr.sbin/ntp/doc/ntpdc.8 projects/routing/usr.sbin/ntp/doc/ntpq.8 projects/routing/usr.sbin/ntp/doc/sntp.8 projects/routing/usr.sbin/ntp/ntpdc/Makefile projects/routing/usr.sbin/ntp/scripts/mkver projects/routing/usr.sbin/ofwdump/Makefile.depend projects/routing/usr.sbin/pc-sysinstall/Makefile projects/routing/usr.sbin/pciconf/cap.c projects/routing/usr.sbin/pciconf/pathnames.h projects/routing/usr.sbin/pciconf/pciconf.8 projects/routing/usr.sbin/pciconf/pciconf.c projects/routing/usr.sbin/pkg/Makefile projects/routing/usr.sbin/pkg/config.c projects/routing/usr.sbin/pkg/config.h projects/routing/usr.sbin/pkg/pkg.c projects/routing/usr.sbin/pmcstat/pmcstat_log.c projects/routing/usr.sbin/pmcstudy/eval_expr.c projects/routing/usr.sbin/pnpinfo/Makefile.depend projects/routing/usr.sbin/ppp/Makefile projects/routing/usr.sbin/ppp/ip.c projects/routing/usr.sbin/ppp/ppp.8 projects/routing/usr.sbin/pw/pw.c projects/routing/usr.sbin/pw/pw_group.c projects/routing/usr.sbin/pw/pw_user.c projects/routing/usr.sbin/pw/tests/Makefile projects/routing/usr.sbin/rpc.yppasswdd/yppasswdd_server.c projects/routing/usr.sbin/rpcbind/rpcb_svc_com.c projects/routing/usr.sbin/rtadvd/Makefile projects/routing/usr.sbin/rtadvd/config.c projects/routing/usr.sbin/rtadvd/if.c projects/routing/usr.sbin/rtadvd/rtadvd.c projects/routing/usr.sbin/rtsold/Makefile projects/routing/usr.sbin/rtsold/if.c projects/routing/usr.sbin/rtsold/rtsold.c projects/routing/usr.sbin/rtsold/rtsold.h projects/routing/usr.sbin/sa/tests/Makefile projects/routing/usr.sbin/service/service.sh projects/routing/usr.sbin/sesutil/Makefile projects/routing/usr.sbin/sesutil/sesutil.8 projects/routing/usr.sbin/sesutil/sesutil.c projects/routing/usr.sbin/sysrc/Makefile projects/routing/usr.sbin/sysrc/sysrc projects/routing/usr.sbin/sysrc/sysrc.8 projects/routing/usr.sbin/tests/Makefile projects/routing/usr.sbin/uefisign/magic.h projects/routing/usr.sbin/uefisign/pe.c projects/routing/usr.sbin/unbound/Makefile projects/routing/usr.sbin/unbound/local-setup/local-unbound-setup.sh projects/routing/usr.sbin/vigr/Makefile projects/routing/usr.sbin/watch/watch.c projects/routing/usr.sbin/wlconfig/Makefile.depend projects/routing/usr.sbin/wpa/Makefile projects/routing/usr.sbin/wpa/Makefile.crypto projects/routing/usr.sbin/wpa/hostapd/Makefile projects/routing/usr.sbin/wpa/wpa_supplicant/Makefile projects/routing/usr.sbin/ypbind/ypbind.c projects/routing/usr.sbin/yppoll/Makefile.depend projects/routing/usr.sbin/ypserv/ypinit.sh projects/routing/usr.sbin/zic/zdump/Makefile projects/routing/usr.sbin/zic/zic/Makefile Directory Properties: projects/routing/ (props changed) projects/routing/cddl/ (props changed) projects/routing/cddl/contrib/opensolaris/ (props changed) projects/routing/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/ (props changed) projects/routing/cddl/contrib/opensolaris/cmd/zfs/ (props changed) projects/routing/cddl/contrib/opensolaris/lib/libzfs/ (props changed) projects/routing/contrib/apr/ (props changed) projects/routing/contrib/binutils/ (props changed) projects/routing/contrib/bmake/ (props changed) projects/routing/contrib/compiler-rt/ (props changed) projects/routing/contrib/dma/ (props changed) projects/routing/contrib/dtc/ (props changed) projects/routing/contrib/elftoolchain/ (props changed) projects/routing/contrib/elftoolchain/ar/ (props changed) projects/routing/contrib/elftoolchain/brandelf/ (props changed) projects/routing/contrib/elftoolchain/elfdump/ (props changed) projects/routing/contrib/expat/ (props changed) projects/routing/contrib/file/ (props changed) projects/routing/contrib/gcc/ (props changed) projects/routing/contrib/gdb/ (props changed) projects/routing/contrib/groff/ (props changed) projects/routing/contrib/ipfilter/ (props changed) projects/routing/contrib/ipfilter/ml_ipl.c (props changed) projects/routing/contrib/ipfilter/mlfk_ipl.c (props changed) projects/routing/contrib/ipfilter/mlh_rule.c (props changed) projects/routing/contrib/ipfilter/mli_ipl.c (props changed) projects/routing/contrib/ipfilter/mln_ipl.c (props changed) projects/routing/contrib/ipfilter/mls_ipl.c (props changed) projects/routing/contrib/libarchive/ (props changed) projects/routing/contrib/libarchive/libarchive/ (props changed) projects/routing/contrib/libcxxrt/ (props changed) projects/routing/contrib/libexecinfo/ (props changed) projects/routing/contrib/libucl/ (props changed) projects/routing/contrib/llvm/ (props changed) projects/routing/contrib/llvm/projects/libunwind/ (props changed) projects/routing/contrib/llvm/tools/clang/ (props changed) projects/routing/contrib/llvm/tools/lldb/ (props changed) projects/routing/contrib/mdocml/ (props changed) projects/routing/contrib/ncurses/ (props changed) projects/routing/contrib/netcat/ (props changed) projects/routing/contrib/ntp/ (props changed) projects/routing/contrib/ntp/html/drivers/driver40-ja.html (props changed) projects/routing/contrib/ntp/include/refidsmear.h (props changed) projects/routing/contrib/ntp/libjsmn/example/jsondump.c (props changed) projects/routing/contrib/ntp/libjsmn/example/simple.c (props changed) projects/routing/contrib/ntp/libntp/refidsmear.c (props changed) projects/routing/contrib/ntp/scripts/update-leap/Makefile.am (props changed) projects/routing/contrib/ntp/scripts/update-leap/update-leap.in (props changed) projects/routing/contrib/ntp/scripts/update-leap/update-leap.sh (props changed) projects/routing/contrib/ntp/sntp/ag-tpl/Mdoc.pm (props changed) projects/routing/contrib/ntp/sntp/libpkgver/colcomp.c (props changed) projects/routing/contrib/ntp/sntp/libpkgver/pkgver.h (props changed) projects/routing/contrib/ntp/sntp/tests/networking.c (props changed) projects/routing/contrib/ntp/sntp/unity/auto/colour_prompt.rb (props changed) projects/routing/contrib/ntp/sntp/unity/auto/colour_reporter.rb (props changed) projects/routing/contrib/ntp/sntp/unity/auto/generate_module.rb (props changed) projects/routing/contrib/ntp/sntp/unity/auto/runner_maybe.c (props changed) projects/routing/contrib/ntp/sntp/unity/auto/test_file_filter.rb (props changed) projects/routing/contrib/ntp/sntp/unity/unity.h (props changed) projects/routing/contrib/ntp/sntp/unity/unity_fixture.c (props changed) projects/routing/contrib/ntp/sntp/unity/unity_fixture.h (props changed) projects/routing/contrib/ntp/sntp/unity/unity_fixture_internals.h (props changed) projects/routing/contrib/ntp/sntp/unity/unity_fixture_malloc_overrides.h (props changed) projects/routing/contrib/ntp/tests/bug-2803/bug-2803.c (props changed) projects/routing/contrib/ntp/tests/sandbox/bug-2803.c (props changed) projects/routing/contrib/ntp/tests/sandbox/modetoa.c (props changed) projects/routing/contrib/ntp/tests/sandbox/uglydate.c (props changed) projects/routing/contrib/ntp/tests/sandbox/ut-2803.c (props changed) projects/routing/contrib/openpam/ (props changed) projects/routing/contrib/pf/ (props changed) projects/routing/contrib/sendmail/ (props changed) projects/routing/contrib/serf/ (props changed) projects/routing/contrib/sqlite3/ (props changed) projects/routing/contrib/subversion/ (props changed) projects/routing/contrib/tcpdump/ (props changed) projects/routing/contrib/top/ (props changed) projects/routing/contrib/tzcode/stdtime/ (props changed) projects/routing/contrib/tzdata/ (props changed) projects/routing/contrib/unbound/ (props changed) projects/routing/contrib/wpa/ (props changed) projects/routing/crypto/openssh/ (props changed) projects/routing/crypto/openssl/ (props changed) projects/routing/etc/ (props changed) projects/routing/gnu/lib/ (props changed) projects/routing/gnu/usr.bin/binutils/ (props changed) projects/routing/gnu/usr.bin/cc/cc_tools/ (props changed) projects/routing/gnu/usr.bin/gdb/ (props changed) projects/routing/include/ (props changed) projects/routing/lib/libc/ (props changed) projects/routing/lib/libc/stdtime/ (props changed) projects/routing/lib/libutil/ (props changed) projects/routing/lib/libvmmapi/ (props changed) projects/routing/lib/libz/ (props changed) projects/routing/sbin/ (props changed) projects/routing/sbin/dumpon/ (props changed) projects/routing/sbin/ipfw/ (props changed) projects/routing/share/ (props changed) projects/routing/share/man/man4/ (props changed) projects/routing/share/zoneinfo/ (props changed) projects/routing/sys/ (props changed) projects/routing/sys/amd64/include/vmm.h (props changed) projects/routing/sys/amd64/include/vmm_dev.h (props changed) projects/routing/sys/amd64/include/xen/ (props changed) projects/routing/sys/amd64/vmm/ (props changed) projects/routing/sys/boot/ (props changed) projects/routing/sys/boot/powerpc/kboot/ (props changed) projects/routing/sys/boot/powerpc/ofw/ (props changed) projects/routing/sys/cddl/contrib/opensolaris/ (props changed) projects/routing/sys/conf/ (props changed) projects/routing/sys/contrib/dev/acpica/ (props changed) projects/routing/sys/contrib/ipfilter/ (props changed) projects/routing/sys/dev/hyperv/ (props changed) projects/routing/sys/modules/hyperv/ (props changed) projects/routing/targets/ (props changed) projects/routing/usr.bin/calendar/ (props changed) projects/routing/usr.bin/mkimg/ (props changed) projects/routing/usr.bin/procstat/ (props changed) projects/routing/usr.sbin/bhyve/ (props changed) projects/routing/usr.sbin/bhyvectl/ (props changed) projects/routing/usr.sbin/bhyveload/ (props changed) projects/routing/usr.sbin/jail/ (props changed) projects/routing/usr.sbin/ndiscvt/ (props changed) projects/routing/usr.sbin/rtadvctl/ (props changed) projects/routing/usr.sbin/rtadvd/ (props changed) projects/routing/usr.sbin/rtsold/ (props changed) projects/routing/usr.sbin/zic/ (props changed) Modified: projects/routing/MAINTAINERS ============================================================================== --- projects/routing/MAINTAINERS Sun Nov 15 12:10:51 2015 (r290857) +++ projects/routing/MAINTAINERS Sun Nov 15 12:16:08 2015 (r290858) @@ -18,9 +18,59 @@ However, this is not a 'big stick', it i of guidance. It does not override the communal nature of the tree. It is not a registry of 'turf' or private property. +*** +This list is prone to becoming stale quickly. The best way to find the recent +maintainer of a sub-system is to check recent logs for that directory or +sub-system. +*** + subsystem login notes ----------------------------- +opencrypto jmg Pre-commit review requested. Documentation Required. kqueue jmg Pre-commit review requested. Documentation Required. +share/mk imp, bapt, bdrewery, emaste, sjg Make is hard. +ath(4) adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org +net80211 adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org +iwn(4) adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org +iwm(4) adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org +otus(4) adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org +dev/usb/wlan adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org +openssl benl,jkim Pre-commit review requested. +release/release.sh gjb,re Pre-commit review and regression tests + requested. +sh(1) jilles Pre-commit review requested. This also applies + to kill(1), printf(1) and test(1) which are + compiled in as builtins. +isci(4) jimharris Pre-commit review requested. +nvme(4) jimharris Pre-commit review requested. +nvd(4) jimharris Pre-commit review requested. +nvmecontrol(8) jimharris Pre-commit review requested. +libfetch des Pre-commit review requested. +fetch des Pre-commit review requested. +libpam des Pre-commit review requested. +openssh des Pre-commit review requested. +pseudofs des Pre-commit review requested. +procfs des Pre-commit review requested. +linprocfs des Pre-commit review requested. +contrib/compiler-rt dim Pre-commit review preferred. +contrib/libc++ dim Pre-commit review preferred. +contrib/libcxxrt dim Pre-commit review preferred. +contrib/llvm dim Pre-commit review preferred. +contrib/llvm/tools/lldb emaste Pre-commit review preferred. +atf freebsd-testing,jmmv,ngie Pre-commit review requested. +contrib/netbsd-tests freebsd-testing,ngie Pre-commit review requested. +contrib/pf kp,glebius Pre-commit review recommended. +contrib/pjdfstest freebsd-testing,ngie,pjd Pre-commit review requested. +share/mk/*.test.mk freebsd-testing,ngie (same list as share/mk too) Pre-commit review requested. +tests freebsd-testing,ngie Pre-commit review requested. +sys/dev/usb hselasky If in doubt, ask. +sys/dev/sound/usb hselasky If in doubt, ask. +sys/compat/linuxkpi hselasky If in doubt, ask. +sys/dev/e1000 erj Pre-commit phabricator review requested. +sys/dev/ixgbe erj Pre-commit phabricator review requested. +sys/dev/ixl erj Pre-commit phabricator review requested. +usr.sbin/pkg pkg@ Please coordinate behavior or flag changes with pkg team. +---- OLD ---- libc/posix1e rwatson Pre-commit review requested. POSIX.1e ACLs rwatson Pre-commit review requested. UFS EAs rwatson Pre-commit review requested. @@ -28,11 +78,8 @@ MAC Framework rwatson Pre-commit review MAC Modules rwatson Pre-commit review requested. contrib/openbsm rwatson Pre-commit review requested. sys/security/audit rwatson Pre-commit review requested. -ath(4) adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org ahc(4) gibbs Pre-commit review requested. ahd(4) gibbs Pre-commit review requested. -PC Card imp Pre-commit review requested. -CardBus imp Pre-commit review requested. pci bus imp,jhb Pre-commit review requested. cdboot jhb Pre-commit review requested. pxeboot jhb Pre-commit review requested. @@ -53,21 +100,11 @@ etc/mail gshapiro Pre-commit review requ Keep in sync with -STABLE. etc/sendmail gshapiro Pre-commit review requested. Keep in sync with -STABLE. -libfetch des Advance notification requested. -fetch des Advance notification requested. -libpam des Pre-commit review requested. -openssh des Pre-commit review requested. -pseudofs des Pre-commit review requested. -procfs des Pre-commit review requested. -linprocfs des Pre-commit review requested. lpr gad Pre-commit review requested, particularly for lpd/recvjob.c and lpd/printjob.c. -net80211 adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org nvi peter Try not to break it. libz peter Try not to break it. groff ru Recommends pre-commit review. -share/mk ru This is a vital component of the build system, so I - offer a pre-commit review for anything non-trivial. ipfw ipfw Pre-commit review preferred. send to ipfw@freebsd.org drm rnoland Just keep me informed of changes, try not to break it. unifdef(1) fanf Pre-commit review requested. @@ -75,12 +112,10 @@ ntp roberto Pre-commit review r inetd dwmalone Recommends pre-commit review. contrib/smbfs bp Open for in-tree committs. In case of functional changes pre-commit review requested. -contrib/pf glebius Pre-commit review recommended. file obrien Insists to keep file blocked from other's unapproved commits contrib/bzip2 obrien Pre-commit review required. -contrib/netbsd-tests freebsd-testing,ngie Pre-commit review requested. -contrib/pjdfstest freebsd-testing,ngie Pre-commit review requested. +geom freebsd-geom@FreeBSD.org geom_concat pjd Pre-commit review preferred. geom_eli pjd Pre-commit review preferred. geom_gate pjd Pre-commit review preferred. @@ -92,16 +127,12 @@ geom_shsec pjd Pre-commit review preferr geom_stripe pjd Pre-commit review preferred. geom_zero pjd Pre-commit review preferred. sbin/geom pjd Pre-commit review preferred. -zfs pjd Pre-commit review preferred. -nfs alfred Will be happy to review code, but not mandatory. -rpc.lockd alfred Will be happy to review code, but not mandatory. -truss alfred Will be happy to review code, but not mandatory. -rpc alfred Pre-commit review requested. +zfs freebsd-fs@FreeBSD.org +nfs freebsd-fs@FreeBSD.org, rmacklem is best for reviews. linux emul emulation Please discuss changes here. bs{diff,patch} cperciva Pre-commit review requested. portsnap cperciva Pre-commit review requested. freebsd-update cperciva Pre-commit review requested. -openssl benl,jkim Pre-commit review requested. sys/netgraph/bluetooth emax Pre-commit review preferred. lib/libbluetooth emax Pre-commit review preferred. lib/libsdp emax Pre-commit review preferred. @@ -116,18 +147,8 @@ usr.sbin/zic edwin Heads-up appreciat lib/libc/stdtime edwin Heads-up appreciated, since parts of this code is maintained by a third party source. sbin/routed bms Pre-commit review; notify vendor at rhyolite.com -isci(4) jimharris Pre-commit review requested. cmx daniel@roe.ch Pre-commit review preferred. filemon obrien Pre-commit review preferred. sysdoc trhodes Pre-commit review preferred. -sh(1) jilles Pre-commit review requested. This also applies - to kill(1), printf(1) and test(1) which are - compiled in as builtins. -nvme(4) jimharris Pre-commit review requested. -nvd(4) jimharris Pre-commit review requested. -nvmecontrol(8) jimharris Pre-commit review requested. -release/release.sh gjb Pre-commit review and regression tests - requested. nanobsd imp Pre-commit review requested for coordination. vmm(4) neel,grehan Pre-commit review requested. -opencrypto jmg Pre-commit review requested. Documentation Required. Modified: projects/routing/Makefile ============================================================================== --- projects/routing/Makefile Sun Nov 15 12:10:51 2015 (r290857) +++ projects/routing/Makefile Sun Nov 15 12:16:08 2015 (r290858) @@ -100,16 +100,20 @@ # For more information, see the build(7) manual page. # +# This is included so CC is set to ccache for -V, and COMPILER_TYPE/VERSION +# can be cached for sub-makes. +.include + # Note: we use this awkward construct to be compatible with FreeBSD's # old make used in 10.0 and 9.2 and earlier. -.if defined(MK_META_MODE) && ${MK_META_MODE} == "yes" && !make(showconfig) +.if defined(MK_DIRDEPS_BUILD) && ${MK_DIRDEPS_BUILD} == "yes" && !make(showconfig) # targets/Makefile plays the role of top-level .include "targets/Makefile" .else TGTS= all all-man buildenv buildenvvars buildkernel buildworld \ check-old check-old-dirs check-old-files check-old-libs \ - checkdpadd clean cleandepend cleandir \ + checkdpadd clean cleandepend cleandir cleanworld \ delete-old delete-old-dirs delete-old-files delete-old-libs \ depend distribute distributekernel distributekernel.debug \ distributeworld distrib-dirs distribution doxygen \ @@ -121,7 +125,7 @@ TGTS= all all-man buildenv buildenvvars _worldtmp _legacy _bootstrap-tools _cleanobj _obj \ _build-tools _cross-tools _includes _libraries _depend \ build32 builddtb distribute32 install32 xdev xdev-build xdev-install \ - xdev-links native-xtools \ + xdev-links native-xtools installconfig \ TGTS+= ${SUBDIR_TARGETS} @@ -208,49 +212,11 @@ buildworld: upgrade_checks .endif # -# This 'cleanworld' target is not included in TGTS, because it is not a -# recursive target. All of the work for it is done right here. It is -# expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be -# created by bsd.obj.mk, except that we don't want to .include that file -# in this makefile. -# -# In the following, the first 'rm' in a series will usually remove all -# files and directories. If it does not, then there are probably some -# files with file flags set, so this unsets them and tries the 'rm' a -# second time. There are situations where this target will be cleaning -# some directories via more than one method, but that duplication is -# needed to correctly handle all the possible situations. Removing all -# files without file flags set in the first 'rm' instance saves time, -# because 'chflags' will need to operate on fewer files afterwards. -# -BW_CANONICALOBJDIR:=${MAKEOBJDIRPREFIX}${.CURDIR} -cleanworld: -.if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR} -.if exists(${BW_CANONICALOBJDIR}/) - -rm -rf ${BW_CANONICALOBJDIR}/* - -chflags -R 0 ${BW_CANONICALOBJDIR} - rm -rf ${BW_CANONICALOBJDIR}/* -.endif - # To be safe in this case, fall back to a 'make cleandir' - ${_+_}@cd ${.CURDIR}; ${_MAKE} cleandir -.else - -rm -rf ${.OBJDIR}/* - -chflags -R 0 ${.OBJDIR} - rm -rf ${.OBJDIR}/* -.endif - -# # Handle the user-driven targets, using the source relative mk files. # -.if empty(.MAKEFLAGS:M-n) -# skip this for -n to avoid changing previous behavior of -# 'make -n buildworld' etc. -${TGTS}: .MAKE tinderbox toolchains kernel-toolchains: .MAKE -.endif - -${TGTS}: +${TGTS}: .PHONY .MAKE ${_+_}@cd ${.CURDIR}; ${_MAKE} ${.TARGET} # The historic default "all" target creates files which may cause stale @@ -259,9 +225,9 @@ ${TGTS}: # if they want the historic behavior. .MAIN: _guard -_guard: +_guard: .PHONY @echo - @echo "Explicit target required (use \"all\" for historic behavior)" + @echo "Explicit target required. Likely \"${SUBDIR_OVERRIDE:Dall:Ubuildworld}\" is wanted. See build(7)." @echo @false @@ -381,17 +347,8 @@ kernel-toolchains: # existing system is. # .if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets) -# XXX Add arm64 to universe only if we have an external binutils installed. -# It does not build with the in-tree linker. -.if exists(/usr/local/aarch64-freebsd/bin/ld) -UNIVERSE_arm64=arm64 -.elif empty(${TARGETS}) -universe: universe_arm64_skip -universe_epilogue: universe_arm64_skip -universe_arm64_skip: universe_prologue - @echo ">> arm64 skipped - install aarch64-binutils port or package to build" -.endif -TARGETS?=amd64 arm ${UNIVERSE_arm64} i386 mips pc98 powerpc sparc64 +TARGETS?=amd64 arm arm64 i386 mips pc98 powerpc sparc64 +_UNIVERSE_TARGETS= ${TARGETS} TARGET_ARCHES_arm?= arm armeb armv6 armv6hf TARGET_ARCHES_arm64?= aarch64 TARGET_ARCHES_mips?= mipsel mips mips64el mips64 mipsn32 @@ -401,6 +358,16 @@ TARGET_ARCHES_pc98?= i386 TARGET_ARCHES_${target}?= ${target} .endfor +# XXX Add arm64 to universe only if we have an external binutils installed. +# It does not build with the in-tree linker. +.if !exists(/usr/local/aarch64-freebsd/bin/ld) && empty(${TARGETS}) +_UNIVERSE_TARGETS:= ${_UNIVERSE_TARGETS:Narm64} +universe: universe_arm64_skip +universe_epilogue: universe_arm64_skip +universe_arm64_skip: universe_prologue + @echo ">> arm64 skipped - install aarch64-binutils port or package to build" +.endif + .if defined(UNIVERSE_TARGET) MAKE_JUST_WORLDS= YES .else @@ -432,7 +399,7 @@ universe_prologue: .if defined(DOING_TINDERBOX) @rm -f ${FAILFILE} .endif -.for target in ${TARGETS} +.for target in ${_UNIVERSE_TARGETS} universe: universe_${target} universe_epilogue: universe_${target} universe_${target}: universe_${target}_prologue @@ -531,15 +498,15 @@ buildLINT: # This makefile does not run in meta mode .MAKE.MODE= normal # Normally the things we run from here don't either. -# Using -DWITH_META_FILES +# Using -DWITH_META_MODE # we can buildworld with meta files created which are useful # for debugging, but without any of the rest of a meta mode build. -MK_META_MODE= no +MK_DIRDEPS_BUILD= no MK_STAGING= no # tell meta.autodep.mk to not even think about updating anything. UPDATE_DEPENDFILE= NO .if !make(showconfig) -.export MK_META_MODE MK_STAGING UPDATE_DEPENDFILE +.export MK_DIRDEPS_BUILD MK_STAGING UPDATE_DEPENDFILE .endif .if make(universe) @@ -549,4 +516,4 @@ MAKE_JOB_ERROR_TOKEN= no .endif .endif # bmake -.endif # META_MODE +.endif # DIRDEPS_BUILD Modified: projects/routing/Makefile.inc1 ============================================================================== --- projects/routing/Makefile.inc1 Sun Nov 15 12:10:51 2015 (r290857) +++ projects/routing/Makefile.inc1 Sun Nov 15 12:16:08 2015 (r290858) @@ -27,9 +27,11 @@ # when NO_ROOT is set. (default: ${DESTDIR}/METALOG) # TARGET="machine" to crossbuild world for a different machine type # TARGET_ARCH= may be required when a TARGET supports multiple endians -# BUILDENV_SHELL= shell to launch for the buildenv target (def:/bin/sh) +# BUILDENV_SHELL= shell to launch for the buildenv target (def:${SHELL}) # WORLD_FLAGS= additional flags to pass to make(1) during buildworld # KERNEL_FLAGS= additional flags to pass to make(1) during buildkernel +# SUBDIR_OVERRIDE="list of dirs" to build rather than everything. +# All libraries and includes, and some build tools will still build. # # The intended user-driven targets are: @@ -46,24 +48,34 @@ .error "Both TARGET and TARGET_ARCH must be defined." .endif -.include "share/mk/src.opts.mk" -.include -.include - -# We must do lib/ and libexec/ before bin/, because if installworld -# installs a new /bin/sh, the 'make' command will *immediately* -# use that new version. And the new (dynamically-linked) /bin/sh -# will expect to find appropriate libraries in /lib and /libexec. -# +# Cross toolchain changes must be in effect before bsd.compiler.mk +# so that gets the right CC, and pass CROSS_TOOLCHAIN to submakes. +.if defined(CROSS_TOOLCHAIN) +LOCALBASE?= /usr/local +.include "${LOCALBASE}/share/toolchains/${CROSS_TOOLCHAIN}.mk" +CROSSENV+=CROSS_TOOLCHAIN="${CROSS_TOOLCHAIN}" +.endif +.include # don't depend on src.opts.mk doing it +.include "share/mk/src.opts.mk" + +# We must do lib/ and libexec/ before bin/ in case of a mid-install error to +# keep the users system reasonably usable. For static->dynamic root upgrades, +# we don't want to install a dynamic binary without rtld and the needed +# libraries. More commonly, for dynamic root, we don't want to install a +# binary that requires a newer library version that hasn't been installed yet. +# This ordering is not a guarantee though. The only guarantee of a working +# system here would require fine-grained ordering of all components based +# on their dependencies. SRCDIR?= ${.CURDIR} -.if defined(SUBDIR_OVERRIDE) +.if !empty(SUBDIR_OVERRIDE) SUBDIR= ${SUBDIR_OVERRIDE} .else SUBDIR= lib libexec -SUBDIR+=bin -.if ${MK_GAMES} != "no" -SUBDIR+=games +.if make(install*) +# Ensure libraries are installed before progressing. +SUBDIR+=.WAIT .endif +SUBDIR+=bin .if ${MK_CDDL} != "no" SUBDIR+=cddl .endif @@ -88,10 +100,6 @@ SUBDIR+= tests .if ${MK_OFED} != "no" SUBDIR+=contrib/ofed .endif -# -# We must do etc/ last for install/distribute to work. -# -SUBDIR+=etc # Local directories are last, since it is nice to at least get the base # system rebuilt before you do them. @@ -113,9 +121,20 @@ SUBDIR+= ${_DIR} .warning ${_DIR} not added to SUBDIR list. See UPDATING 20141121. .endif .endfor + +# We must do etc/ last as it hooks into building the man whatis file +# by calling 'makedb' in share/man. This is only relevant for +# install/distribute so they build the whatis file after every manpage is +# installed. +.if make(install*) +SUBDIR+=.WAIT .endif +SUBDIR+=etc + +.endif # !empty(SUBDIR_OVERRIDE) .if defined(NOCLEAN) +.warning NOCLEAN option is deprecated. Use NO_CLEAN instead. NO_CLEAN= ${NOCLEAN} .endif .if defined(NO_CLEANDIR) @@ -126,7 +145,7 @@ CLEANDIR= cleandir LOCAL_TOOL_DIRS?= -BUILDENV_SHELL?=/bin/sh +BUILDENV_SHELL?=${SHELL} SVN?= /usr/local/bin/svn SVNFLAGS?= -r HEAD @@ -139,14 +158,17 @@ OSRELDATE!= awk '/^\#define[[:space:]]*_ .else OSRELDATE= 0 .endif +.export OSRELDATE .endif +# Set VERSION for CTFMERGE to use via the default CTFFLAGS=-L VERSION. .if !defined(VERSION) REVISION!= ${MAKE} -C ${SRCDIR}/release -V REVISION BRANCH!= ${MAKE} -C ${SRCDIR}/release -V BRANCH SRCRELDATE!= awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \ ${SRCDIR}/sys/sys/param.h VERSION= FreeBSD ${REVISION}-${BRANCH:C/-p[0-9]+$//} ${TARGET_ARCH} ${SRCRELDATE} +.export VERSION .endif KNOWN_ARCHES?= aarch64/arm64 amd64 arm armeb/arm armv6/arm armv6hf/arm i386 i386/pc98 mips mipsel/mips mips64el/mips mips64/mips mipsn32el/mips mipsn32/mips powerpc powerpc64/powerpc sparc64 @@ -238,7 +260,7 @@ INSTALLTMP!= /usr/bin/mktemp -d -u -t in BOOTSTRAPPING?= 0 # Common environment for world related stages -CROSSENV= MAKEOBJDIRPREFIX=${OBJTREE} \ +CROSSENV+= MAKEOBJDIRPREFIX=${OBJTREE} \ MACHINE_ARCH=${TARGET_ARCH} \ MACHINE=${TARGET} \ CPUTYPE=${TARGET_CPUTYPE} @@ -255,11 +277,9 @@ CROSSENV+= ${TARGET_CFLAGS} BMAKEENV= INSTALL="sh ${.CURDIR}/tools/install.sh" \ PATH=${BPATH}:${PATH} \ WORLDTMP=${WORLDTMP} \ - VERSION="${VERSION}" \ MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}" -BMAKE= MAKEOBJDIRPREFIX=${WORLDTMP} \ - ${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \ - DESTDIR= \ +# need to keep this in sync with targets/pseudo/bootstrap-tools/Makefile +BSARGS= DESTDIR= \ BOOTSTRAPPING=${OSRELDATE} \ SSP_CFLAGS= \ MK_HTML=no NO_LINT=yes MK_MAN=no \ @@ -267,7 +287,11 @@ BMAKE= MAKEOBJDIRPREFIX=${WORLDTMP} \ -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \ MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \ MK_LLDB=no MK_TESTS=no \ - MK_INCLUDES=yes + MK_INCLUDES=yes + +BMAKE= MAKEOBJDIRPREFIX=${WORLDTMP} \ + ${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \ + ${BSARGS} # build-tools stage TMAKE= MAKEOBJDIRPREFIX=${OBJTREE} \ @@ -289,8 +313,7 @@ XMAKE= TOOLS_PREFIX=${WORLDTMP} ${BMAKE # kernel-tools stage KTMAKEENV= INSTALL="sh ${.CURDIR}/tools/install.sh" \ PATH=${BPATH}:${PATH} \ - WORLDTMP=${WORLDTMP} \ - VERSION="${VERSION}" + WORLDTMP=${WORLDTMP} KTMAKE= TOOLS_PREFIX=${WORLDTMP} MAKEOBJDIRPREFIX=${WORLDTMP} \ ${KTMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \ DESTDIR= \ @@ -303,7 +326,6 @@ KTMAKE= TOOLS_PREFIX=${WORLDTMP} MAKEOB # world stage WMAKEENV= ${CROSSENV} \ _LDSCRIPTROOT= \ - VERSION="${VERSION}" \ INSTALL="sh ${.CURDIR}/tools/install.sh" \ PATH=${TMPPATH} @@ -313,14 +335,6 @@ HMAKE= PATH=${TMPPATH} ${MAKE} LOCAL_MT HMAKE+= PATH=${TMPPATH} METALOG=${METALOG} -DNO_ROOT .endif -.if ${MK_CDDL} == "no" -WMAKEENV+= MK_CTF=no -.endif - -.if defined(CROSS_TOOLCHAIN) -LOCALBASE?= /usr/local -.include "${LOCALBASE}/share/toolchains/${CROSS_TOOLCHAIN}.mk" -.endif .if defined(CROSS_TOOLCHAIN_PREFIX) CROSS_COMPILER_PREFIX?=${CROSS_TOOLCHAIN_PREFIX} CROSS_BINUTILS_PREFIX?=${CROSS_TOOLCHAIN_PREFIX} @@ -330,6 +344,7 @@ CROSS_BINUTILS_PREFIX?=${CROSS_TOOLCHAIN # support the target architecture), provide a default cross-binutils prefix. # This allows aarch64 builds, for example, to automatically use the # aarch64-binutils port or package. +.if !make(showconfig) .if !empty(BROKEN_OPTIONS:MBINUTILS_BOOTSTRAP) && \ !defined(CROSS_BINUTILS_PREFIX) CROSS_BINUTILS_PREFIX=/usr/local/${TARGET_ARCH}-freebsd/bin/ @@ -337,6 +352,7 @@ CROSS_BINUTILS_PREFIX=/usr/local/${TARGE .error In-tree binutils does not support the ${TARGET_ARCH} architecture. Install the ${TARGET_ARCH}-binutils port or package or set CROSS_BINUTILS_PREFIX. .endif .endif +.endif XCOMPILERS= CC CXX CPP .for COMPILER in ${XCOMPILERS} @@ -355,7 +371,7 @@ X${BINUTIL}?= ${CROSS_BINUTILS_PREFIX}${ X${BINUTIL}?= ${${BINUTIL}} .endif .endfor -WMAKEENV+= CC="${XCC} ${XCFLAGS}" CXX="${XCXX} ${XCFLAGS} ${XCXXFLAGS}" \ +CROSSENV+= CC="${XCC} ${XCFLAGS}" CXX="${XCXX} ${XCFLAGS} ${XCXXFLAGS}" \ DEPFLAGS="${DEPFLAGS}" \ CPP="${XCPP} ${XCFLAGS}" \ AS="${XAS}" AR="${XAR}" LD="${XLD}" NM=${XNM} \ @@ -363,7 +379,7 @@ WMAKEENV+= CC="${XCC} ${XCFLAGS}" CXX="$ RANLIB=${XRANLIB} STRINGS=${XSTRINGS} \ SIZE="${XSIZE}" -.if ${XCC:M/*} +.if ${XCC:N${CCACHE_BIN}:M/*} .if defined(CROSS_BINUTILS_PREFIX) # In the case of xdev-build tools, CROSS_BINUTILS_PREFIX won't be a # directory, but the compiler will look in the right place for it's @@ -384,6 +400,9 @@ TARGET_ABI= gnueabi .if defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc XCFLAGS+= -isystem ${WORLDTMP}/usr/include -L${WORLDTMP}/usr/lib XCXXFLAGS+= -I${WORLDTMP}/usr/include/c++/v1 -std=gnu++11 -L${WORLDTMP}/../lib/libc++ +# XXX: DEPFLAGS is a workaround for not properly passing CXXFLAGS to sub-makes +# due to CXX="${XCXX} ${XCXXFLAGS}". bsd.dep.mk does use CXXFLAGS when +# building C++ files so this can come out if passing CXXFLAGS down is fixed. DEPFLAGS+= -I${WORLDTMP}/usr/include/c++/v1 .else TARGET_ABI?= unknown @@ -437,14 +456,13 @@ LIB32FLAGS= -m32 ${LIB32CPUFLAGS} -DCOMP -isystem ${LIB32TMP}/usr/include/ \ -L${LIB32TMP}/usr/lib32 \ -B${LIB32TMP}/usr/lib32 -.if ${XCC:M/*} +.if ${XCC:N${CCACHE_BIN}:M/*} LIB32FLAGS+= --sysroot=${WORLDTMP} .endif # Yes, the flags are redundant. LIB32WMAKEENV+= MAKEOBJDIRPREFIX=${LIB32_OBJTREE} \ _LDSCRIPTROOT=${LIB32TMP} \ - VERSION="${VERSION}" \ INSTALL="sh ${.CURDIR}/tools/install.sh" \ PATH=${TMPPATH} \ LIBDIR=/usr/lib32 \ @@ -504,7 +522,7 @@ KMAKE= ${KMAKEENV} ${MAKE} ${.MAKEFLAGS # Attempt to rebuild the entire system, with reasonable chance of # success, regardless of how old your existing system is. # -_worldtmp: +_worldtmp: .PHONY .if ${.CURDIR:C/[^,]//g} != "" # The m4 build of sendmail files doesn't like it if ',' is used # anywhere in the path of it's files. @@ -551,10 +569,25 @@ _worldtmp: mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ -p ${WORLDTMP}/usr/lib >/dev/null .endif +.if ${MK_LIB32} != "no" + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ + -p ${WORLDTMP}/usr >/dev/null +.if ${MK_DEBUG_FILES} != "no" + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ + -p ${WORLDTMP}/legacy/usr/lib/debug/usr >/dev/null + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ + -p ${WORLDTMP}/usr/lib/debug/usr >/dev/null +.endif +.endif .if ${MK_TESTS} != "no" mkdir -p ${WORLDTMP}${TESTSBASE} mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ -p ${WORLDTMP}${TESTSBASE} >/dev/null +.if ${MK_DEBUG_FILES} != "no" + mkdir -p ${WORLDTMP}/usr/lib/debug/${TESTSBASE} + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ + -p ${WORLDTMP}/usr/lib/debug/${TESTSBASE} >/dev/null +.endif .endif .for _mtree in ${LOCAL_MTREE} mtree -deU -f ${.CURDIR}/${_mtree} -p ${WORLDTMP} > /dev/null @@ -577,9 +610,9 @@ _cleanobj: @echo "--------------------------------------------------------------" @echo ">>> stage 2.1: cleaning up the object tree" @echo "--------------------------------------------------------------" - ${_+_}cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/} + ${_+_}cd ${.CURDIR}; ${WMAKE} ${CLEANDIR} .if defined(LIB32TMP) - ${_+_}cd ${.CURDIR}; ${LIB32WMAKE} -f Makefile.inc1 ${CLEANDIR:S/^/par-/} + ${_+_}cd ${.CURDIR}; ${LIB32WMAKE} -f Makefile.inc1 ${CLEANDIR} .endif .endif _obj: @@ -587,7 +620,7 @@ _obj: @echo "--------------------------------------------------------------" @echo ">>> stage 2.2: rebuilding the object tree" @echo "--------------------------------------------------------------" - ${_+_}cd ${.CURDIR}; ${WMAKE} par-obj + ${_+_}cd ${.CURDIR}; ${WMAKE} obj _build-tools: @echo @echo "--------------------------------------------------------------" @@ -606,7 +639,16 @@ _includes: @echo "--------------------------------------------------------------" @echo ">>> stage 4.1: building includes" @echo "--------------------------------------------------------------" - ${_+_}cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes +# Special handling for SUBDIR_OVERRIDE in buildworld as they most likely need +# headers from default SUBDIR. Do SUBDIR_OVERRIDE includes last. + ${_+_}cd ${.CURDIR}; ${WMAKE} SUBDIR_OVERRIDE= SHARED=symlinks \ + buildincludes + ${_+_}cd ${.CURDIR}; ${WMAKE} SUBDIR_OVERRIDE= SHARED=symlinks \ + installincludes +.if !empty(SUBDIR_OVERRIDE) && make(buildworld) + ${_+_}cd ${.CURDIR}; ${WMAKE} SHARED=symlinks buildincludes + ${_+_}cd ${.CURDIR}; ${WMAKE} SHARED=symlinks installincludes +.endif _libraries: @echo @echo "--------------------------------------------------------------" @@ -620,7 +662,7 @@ _depend: @echo "--------------------------------------------------------------" @echo ">>> stage 4.3: make dependencies" @echo "--------------------------------------------------------------" - ${_+_}cd ${.CURDIR}; ${WMAKE} par-depend + ${_+_}cd ${.CURDIR}; ${WMAKE} depend everything: @echo @echo "--------------------------------------------------------------" @@ -628,7 +670,7 @@ everything: @echo "--------------------------------------------------------------" ${_+_}cd ${.CURDIR}; ${WMAKE} par-all .if defined(LIB32TMP) -build32: +build32: .PHONY @echo @echo "--------------------------------------------------------------" @echo ">>> stage 5.1: building 32 bit shim libraries" @@ -638,73 +680,76 @@ build32: -p ${LIB32TMP}/usr >/dev/null mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ -p ${LIB32TMP}/usr/include >/dev/null + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ + -p ${LIB32TMP}/usr >/dev/null .if ${MK_DEBUG_FILES} != "no" mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ -p ${LIB32TMP}/usr/lib >/dev/null + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ + -p ${LIB32TMP}/usr/lib/debug/usr >/dev/null .endif mkdir -p ${WORLDTMP} ln -sf ${.CURDIR}/sys ${WORLDTMP} .for _t in obj includes - cd ${.CURDIR}/include; ${LIB32WMAKE} DIRPRFX=include/ ${_t} - cd ${.CURDIR}/lib; ${LIB32WMAKE} DIRPRFX=lib/ ${_t} + ${_+_}cd ${.CURDIR}/include; ${LIB32WMAKE} DIRPRFX=include/ ${_t} + ${_+_}cd ${.CURDIR}/lib; ${LIB32WMAKE} DIRPRFX=lib/ ${_t} .if ${MK_CDDL} != "no" - cd ${.CURDIR}/cddl/lib; ${LIB32WMAKE} DIRPRFX=cddl/lib/ ${_t} + ${_+_}cd ${.CURDIR}/cddl/lib; ${LIB32WMAKE} DIRPRFX=cddl/lib/ ${_t} .endif - cd ${.CURDIR}/gnu/lib; ${LIB32WMAKE} DIRPRFX=gnu/lib/ ${_t} + ${_+_}cd ${.CURDIR}/gnu/lib; ${LIB32WMAKE} DIRPRFX=gnu/lib/ ${_t} .if ${MK_CRYPT} != "no" - cd ${.CURDIR}/secure/lib; ${LIB32WMAKE} DIRPRFX=secure/lib/ ${_t} + ${_+_}cd ${.CURDIR}/secure/lib; ${LIB32WMAKE} DIRPRFX=secure/lib/ ${_t} .endif .if ${MK_KERBEROS} != "no" - cd ${.CURDIR}/kerberos5/lib; ${LIB32WMAKE} DIRPRFX=kerberos5/lib ${_t} + ${_+_}cd ${.CURDIR}/kerberos5/lib; ${LIB32WMAKE} DIRPRFX=kerberos5/lib ${_t} .endif .endfor .for _dir in usr.bin/lex/lib - cd ${.CURDIR}/${_dir}; ${LIB32WMAKE} DIRPRFX=${_dir}/ obj + ${_+_}cd ${.CURDIR}/${_dir}; ${LIB32WMAKE} DIRPRFX=${_dir}/ obj .endfor .for _dir in lib/ncurses/ncurses lib/ncurses/ncursesw lib/libmagic - cd ${.CURDIR}/${_dir}; \ + ${_+_}cd ${.CURDIR}/${_dir}; \ WORLDTMP=${WORLDTMP} \ MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}" \ MAKEOBJDIRPREFIX=${LIB32_OBJTREE} ${MAKE} SSP_CFLAGS= DESTDIR= \ DIRPRFX=${_dir}/ -DNO_LINT -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \ build-tools .endfor - cd ${.CURDIR}; \ - ${LIB32WMAKE} -f Makefile.inc1 libraries + ${_+_}cd ${.CURDIR}; \ + ${LIB32WMAKE} -f Makefile.inc1 -DNO_FSCHG libraries .for _t in obj depend all - cd ${.CURDIR}/libexec/rtld-elf; PROG=ld-elf32.so.1 ${LIB32WMAKE} \ - DIRPRFX=libexec/rtld-elf/ ${_t} - cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32WMAKE} \ + ${_+_}cd ${.CURDIR}/libexec/rtld-elf; PROG=ld-elf32.so.1 ${LIB32WMAKE} \ + -DNO_FSCHG DIRPRFX=libexec/rtld-elf/ ${_t} + ${_+_}cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32WMAKE} \ DIRPRFX=usr.bin/ldd ${_t} .endfor -distribute32 install32: - cd ${.CURDIR}/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} +distribute32 install32: .MAKE .PHONY + ${_+_}cd ${.CURDIR}/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} .if ${MK_CDDL} != "no" - cd ${.CURDIR}/cddl/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} + ${_+_}cd ${.CURDIR}/cddl/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} .endif - cd ${.CURDIR}/gnu/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} + ${_+_}cd ${.CURDIR}/gnu/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} .if ${MK_CRYPT} != "no" - cd ${.CURDIR}/secure/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} + ${_+_}cd ${.CURDIR}/secure/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} .endif .if ${MK_KERBEROS} != "no" - cd ${.CURDIR}/kerberos5/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} + ${_+_}cd ${.CURDIR}/kerberos5/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} .endif - cd ${.CURDIR}/libexec/rtld-elf; \ + ${_+_}cd ${.CURDIR}/libexec/rtld-elf; \ PROG=ld-elf32.so.1 ${LIB32IMAKE} ${.TARGET:S/32$//} - cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32IMAKE} ${.TARGET:S/32$//} + ${_+_}cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32IMAKE} \ + ${.TARGET:S/32$//} .endif WMAKE_TGTS= -.if !defined(SUBDIR_OVERRIDE) -WMAKE_TGTS+= _worldtmp _legacy _bootstrap-tools -.endif -WMAKE_TGTS+= _cleanobj _obj _build-tools -.if !defined(SUBDIR_OVERRIDE) -WMAKE_TGTS+= _cross-tools +WMAKE_TGTS+= _worldtmp _legacy +.if empty(SUBDIR_OVERRIDE) +WMAKE_TGTS+= _bootstrap-tools .endif +WMAKE_TGTS+= _cleanobj _obj _build-tools _cross-tools WMAKE_TGTS+= _includes _libraries _depend everything -.if defined(LIB32TMP) && ${MK_LIB32} != "no" +.if defined(LIB32TMP) && ${MK_LIB32} != "no" && empty(SUBDIR_OVERRIDE) WMAKE_TGTS+= build32 .endif @@ -728,17 +773,22 @@ buildworld_epilogue: # modification of the current environment's PATH. In addition, we need # to quote multiword values. # -buildenvvars: - @echo ${WMAKEENV:Q} +buildenvvars: .PHONY + @echo ${WMAKEENV:Q} ${.MAKE.EXPORTED:@v@$v=\"${$v}\"@} .if ${.TARGETS:Mbuildenv} .if ${.MAKEFLAGS:M-j} .error The buildenv target is incompatible with -j .endif .endif -buildenv: +BUILDENV_DIR?= ${.CURDIR} +buildenv: .PHONY @echo Entering world for ${TARGET_ARCH}:${TARGET} - @cd ${.CURDIR} && env ${WMAKEENV} ${BUILDENV_SHELL} || true +.if ${BUILDENV_SHELL:M*zsh*} + @echo For ZSH you must run: export CPUTYPE=${TARGET_CPUTYPE} +.endif + @cd ${BUILDENV_DIR} && env ${WMAKEENV} BUILDENV=1 ${BUILDENV_SHELL} \ + || true TOOLCHAIN_TGTS= ${WMAKE_TGTS:N_depend:Neverything:Nbuild32} toolchain: ${TOOLCHAIN_TGTS} @@ -813,7 +863,7 @@ _zoneinfo= zic tzsetup ITOOLS= [ awk cap_mkdb cat chflags chmod chown cmp cp \ date echo egrep find grep id install ${_install-info} \ - ln lockf make mkdir mtree mv pwd_mkdb \ + ln make mkdir mtree mv pwd_mkdb \ rm sed services_mkdb sh strip sysctl test true uname wc ${_zoneinfo} \ ${LOCAL_ITOOLS} @@ -886,10 +936,22 @@ distributeworld installworld: _installch mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib >/dev/null .endif +.if ${MK_LIB32} != "no" + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ + -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null +.if ${MK_DEBUG_FILES} != "no" + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ + -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/usr >/dev/null +.endif +.endif .if ${MK_TESTS} != "no" && ${dist} == "tests" -mkdir -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE} mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE} >/dev/null +.if ${MK_DEBUG_FILES} != "no" + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ + -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/${TESTSBASE} >/dev/null +.endif .endif .if defined(NO_ROOT) ${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.root.dist | \ @@ -898,10 +960,14 @@ distributeworld installworld: _installch sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG} ${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.include.dist | \ sed -e 's#^\./#./${dist}/usr/include/#' >> ${METALOG} +.if ${MK_LIB32} != "no" + ${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.lib32.dist | \ + sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG} +.endif .endif .endfor -mkdir ${DESTDIR}/${DISTDIR}/base - cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ + ${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ METALOG=${METALOG} ${IMAKE_INSTALL} ${IMAKE_MTREE} \ DISTBASE=/base DESTDIR=${DESTDIR}/${DISTDIR}/base \ LOCAL_MTREE=${LOCAL_MTREE:Q} distrib-dirs @@ -969,7 +1035,7 @@ packageworld: # and do a 'make reinstall' on the *client* to install new binaries from the # most recent server build. # -reinstall: .MAKE +reinstall: .MAKE .PHONY @echo "--------------------------------------------------------------" @echo ">>> Making hierarchy" @echo "--------------------------------------------------------------" @@ -984,7 +1050,7 @@ reinstall: .MAKE ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install32 .endif -redistribute: .MAKE +redistribute: .MAKE .PHONY @echo "--------------------------------------------------------------" @echo ">>> Distributing everything" @echo "--------------------------------------------------------------" @@ -994,10 +1060,17 @@ redistribute: .MAKE DISTRIBUTION=lib32 .endif -distrib-dirs distribution: .MAKE - cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ +distrib-dirs: .MAKE .PHONY + ${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ ${IMAKE_INSTALL} ${IMAKE_MTREE} METALOG=${METALOG} ${.TARGET} +distribution: .MAKE .PHONY + ${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ + ${IMAKE_INSTALL} ${IMAKE_MTREE} METALOG=${METALOG} ${.TARGET} + ${_+_}cd ${.CURDIR}; ${CROSSENV} PATH=${TMPPATH} \ + ${MAKE} -f Makefile.inc1 ${IMAKE_INSTALL} \ + METALOG=${METALOG} installconfig + # # buildkernel and installkernel # @@ -1045,14 +1118,14 @@ INSTALLKERNEL= ${_kernel} .endif .endfor -buildkernel ${WMAKE_TGTS} ${.ALLTARGETS:M_*}: .MAKE +${WMAKE_TGTS:N_worldtmp:Nbuild32} ${.ALLTARGETS:M_*:N_worldtmp}: .MAKE .PHONY # # buildkernel # # Builds all kernels defined by BUILDKERNELS. # -buildkernel: +buildkernel: .MAKE .PHONY .if empty(BUILDKERNELS) @echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \ false @@ -1079,14 +1152,14 @@ buildkernel: @echo "--------------------------------------------------------------" @echo ">>> stage 2.1: cleaning up the object tree" @echo "--------------------------------------------------------------" - cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR} + ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR} .endif .if !defined(NO_KERNELOBJ) @echo @echo "--------------------------------------------------------------" @echo ">>> stage 2.2: rebuilding the object tree" @echo "--------------------------------------------------------------" - cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj + ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj .endif @echo @echo "--------------------------------------------------------------" @@ -1098,13 +1171,13 @@ buildkernel: @echo "--------------------------------------------------------------" @echo ">>> stage 3.1: making dependencies" @echo "--------------------------------------------------------------" - cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} depend -DNO_MODULES_OBJ + ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} depend -DNO_MODULES_OBJ .endif @echo @echo "--------------------------------------------------------------" @echo ">>> stage 3.2: building everything" @echo "--------------------------------------------------------------" - cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ + ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ @echo "--------------------------------------------------------------" @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`" @echo "--------------------------------------------------------------" @@ -1205,12 +1278,12 @@ packagekernel: # # Build the API documentation with doxygen # -doxygen: +doxygen: .PHONY @if [ ! -x `/usr/bin/which doxygen` ]; then \ echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \ exit 1; \ fi - cd ${.CURDIR}/tools/kerneldoc/subsys && ${MAKE} obj all + ${_+_}cd ${.CURDIR}/tools/kerneldoc/subsys && ${MAKE} obj all # # update @@ -1253,12 +1326,12 @@ update: # ELF Tool Chain libraries are needed for ELF tools and dtrace tools. .if ${BOOTSTRAPPING} < 1100006 -_elftoolchain_libs= lib/libelf lib/libdwarf +_elftoolchain_libs= lib/libelf lib/libdwarf .endif legacy: .if ${BOOTSTRAPPING} < 800107 && ${BOOTSTRAPPING} != 0 - @echo "ERROR: Source upgrades from versions prior to 8.0 not supported."; \ + @echo "ERROR: Source upgrades from versions prior to 8.0 are not supported."; \ false .endif .for _tool in tools/build ${_elftoolchain_libs} @@ -1277,10 +1350,10 @@ legacy: # binaries is usually quite narrow. Bootstrap tools use the host's compiler and # libraries, augmented by -legacy. # -_bt= _bootstrap-tools +_bt= _bootstrap-tools .if ${MK_GAMES} != "no" -_strfile= games/fortune/strfile +_strfile= usr.bin/fortune/strfile .endif .if ${MK_GCC} != "no" && ${MK_CXX} != "no" @@ -1301,10 +1374,10 @@ _sed= usr.bin/sed .endif .if ${BOOTSTRAPPING} < 1000002 -_libohash= lib/libohash +_libopenbsd= lib/libopenbsd _m4= usr.bin/m4 -${_bt}-usr.bin/m4: ${_bt}-lib/libohash +${_bt}-usr.bin/m4: ${_bt}-lib/libopenbsd .endif .if ${BOOTSTRAPPING} < 1000026 @@ -1320,6 +1393,8 @@ _cat= bin/cat .if ${BOOTSTRAPPING} < 1000033 _lex= usr.bin/lex + +${_bt}-usr.bin/lex: ${_bt}-usr.bin/m4 .endif # r277259 crunchide: Correct 64-bit section header offset @@ -1355,20 +1430,6 @@ ${_bt}-usr.bin/clang/clang-tblgen: ${_bt ${_bt}-usr.bin/clang/tblgen: ${_bt}-lib/clang/libllvmtablegen ${_bt}-lib/clang/libllvmsupport .endif -# ELF Tool Chain libraries are needed for ELF tools and dtrace tools. -# dtrace tools are required for older bootstrap env and cross-build -# pre libdwarf -.if ${BOOTSTRAPPING} < 1100006 || (${MACHINE} != ${TARGET} || \ *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@freebsd.org Sun Nov 15 19:30:57 2015 Return-Path: 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 A66A0A30AE5 for ; Sun, 15 Nov 2015 19:30:57 +0000 (UTC) (envelope-from nwhitehorn@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 7748B1A70; Sun, 15 Nov 2015 19:30:57 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAFJUuNH069070; Sun, 15 Nov 2015 19:30:56 GMT (envelope-from nwhitehorn@FreeBSD.org) Received: (from nwhitehorn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAFJUuX2069068; Sun, 15 Nov 2015 19:30:56 GMT (envelope-from nwhitehorn@FreeBSD.org) Message-Id: <201511151930.tAFJUuX2069068@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nwhitehorn set sender to nwhitehorn@FreeBSD.org using -f From: Nathan Whitehorn Date: Sun, 15 Nov 2015 19:30:56 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r290872 - projects/powernv/powerpc/powernv X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Nov 2015 19:30:57 -0000 Author: nwhitehorn Date: Sun Nov 15 19:30:56 2015 New Revision: 290872 URL: https://svnweb.freebsd.org/changeset/base/290872 Log: Let the system read the OPAL RTC. Sponsored by: FreeBSD Foundation Modified: projects/powernv/powerpc/powernv/opal.h projects/powernv/powerpc/powernv/opal_dev.c Modified: projects/powernv/powerpc/powernv/opal.h ============================================================================== --- projects/powernv/powerpc/powernv/opal.h Sun Nov 15 18:56:58 2015 (r290871) +++ projects/powernv/powerpc/powernv/opal.h Sun Nov 15 19:30:56 2015 (r290872) @@ -40,8 +40,11 @@ int opal_call(uint64_t token, ...); #define OPAL_CONSOLE_WRITE 1 #define OPAL_CONSOLE_READ 2 +#define OPAL_RTC_READ 3 +#define OPAL_RTC_WRITE 4 #define OPAL_CEC_POWER_DOWN 5 #define OPAL_CEC_REBOOT 6 +#define OPAL_POLL_EVENTS 10 #define OPAL_PCI_CONFIG_READ_BYTE 13 #define OPAL_PCI_CONFIG_READ_HALF_WORD 14 #define OPAL_PCI_CONFIG_READ_WORD 15 @@ -51,7 +54,7 @@ int opal_call(uint64_t token, ...); #define OPAL_SET_XIVE 19 #define OPAL_GET_XIVE 20 #define OPAL_PCI_SET_PE 31 -#define OPAL_START_CPU 41 +#define OPAL_START_CPU 41 #define OPAL_PCI_MAP_PE_DMA_WINDOW_REAL 45 /* For OPAL_PCI_SET_PE */ Modified: projects/powernv/powerpc/powernv/opal_dev.c ============================================================================== --- projects/powernv/powerpc/powernv/opal_dev.c Sun Nov 15 18:56:58 2015 (r290871) +++ projects/powernv/powerpc/powernv/opal_dev.c Sun Nov 15 19:30:56 2015 (r290872) @@ -37,6 +37,10 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include + +#include +#include #include #include @@ -104,9 +108,19 @@ opaldev_attach(device_t dev) { phandle_t child; device_t cdev; + uint64_t junk; + int rv; struct ofw_bus_devinfo *dinfo; - if (0 /* XXX NOT YET TEST FOR RTC */) + /* Test for RTC support and register clock if it works */ + rv = opal_call(OPAL_RTC_READ, vtophys(&junk), vtophys(&junk)); + do { + rv = opal_call(OPAL_RTC_READ, vtophys(&junk), vtophys(&junk)); + if (rv == OPAL_BUSY_EVENT) + rv = opal_call(OPAL_POLL_EVENTS, 0); + } while (rv == OPAL_BUSY_EVENT); + + if (rv == OPAL_SUCCESS) clock_register(dev, 2000); EVENTHANDLER_REGISTER(shutdown_final, opal_shutdown, NULL, @@ -134,13 +148,56 @@ opaldev_attach(device_t dev) } static int -opal_gettime(device_t dev, struct timespec *ts) { - return (ENXIO); +bcd2bin32(int bcd) +{ + int out = 0; + + out += bcd2bin(bcd & 0xff); + out += 100*bcd2bin((bcd & 0x0000ff00) >> 8); + out += 10000*bcd2bin((bcd & 0x00ff0000) >> 16); + out += 1000000*bcd2bin((bcd & 0xffff0000) >> 24); + + return (out); +} + +static int +opal_gettime(device_t dev, struct timespec *ts) +{ + int rv; + struct clocktime ct; + uint32_t ymd; + uint64_t hmsm; + + do { + rv = opal_call(OPAL_RTC_READ, vtophys(&ymd), vtophys(&hmsm)); + if (rv == OPAL_BUSY_EVENT) { + rv = opal_call(OPAL_POLL_EVENTS, 0); + pause("opalrtc", 1); + } + } while (rv == OPAL_BUSY_EVENT); + + if (rv != OPAL_SUCCESS) + return (ENXIO); + + hmsm = be64toh(hmsm); + ymd = be32toh(ymd); + + ct.nsec = bcd2bin32((hmsm & 0x000000ffffff0000) >> 16) * 1000; + ct.sec = bcd2bin((hmsm & 0x0000ff0000000000) >> 40); + ct.min = bcd2bin((hmsm & 0x00ff000000000000) >> 48); + ct.hour = bcd2bin((hmsm & 0xff00000000000000) >> 56); + + ct.day = bcd2bin((ymd & 0x000000ff) >> 0); + ct.mon = bcd2bin((ymd & 0x0000ff00) >> 8); + ct.year = bcd2bin32((ymd & 0xffff0000) >> 16); + + return (clock_ct_to_ts(&ct, ts)); } static int opal_settime(device_t dev, struct timespec *ts) { + return (0); } From owner-svn-src-projects@freebsd.org Tue Nov 17 03:34:22 2015 Return-Path: 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 239DAA31D09 for ; Tue, 17 Nov 2015 03:34:22 +0000 (UTC) (envelope-from np@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 D5B6B1D6C; Tue, 17 Nov 2015 03:34:21 +0000 (UTC) (envelope-from np@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAH3YK1a002209; Tue, 17 Nov 2015 03:34:20 GMT (envelope-from np@FreeBSD.org) Received: (from np@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAH3YK2r002205; Tue, 17 Nov 2015 03:34:20 GMT (envelope-from np@FreeBSD.org) Message-Id: <201511170334.tAH3YK2r002205@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: np set sender to np@FreeBSD.org using -f From: Navdeep Parhar Date: Tue, 17 Nov 2015 03:34:20 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r290972 - projects/cxl_iscsi/sys/dev/cxgbe/cxgbei X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Nov 2015 03:34:22 -0000 Author: np Date: Tue Nov 17 03:34:20 2015 New Revision: 290972 URL: https://svnweb.freebsd.org/changeset/base/290972 Log: cxgbe/cxgbei: overhaul the iSCSI ULP driver. - icl_cxgbei_conn is _the_ per-connection softc for iSCSI. Retire iscsi_socket by removing all unneeded fields and moving the rest to icl_cxgbei_conn. - Update pdu_queue to use the new t4_push_pdus and associated mbufq in the TOE driver. Throw away all the callbacks registered during MOD_LOAD as t4_push_pdus doesn't need them. - Use the mbuf allocated for the BHS header to store icl_cxgbei_pdu as well. This eliminates the custom zone for the PDUs and reduces the number of allocations on the fast path. For each PDU, the old code used to allocate an icl_cxgbei_pdu, an mbuf for the BHS, and tags for the BHS and data mbufs. The new code allocates just one mbuf per PDU. This is convenient for another reason -- it allows t4_tom to deal with mbufs (which it understands) instead of having to call into the iSCSI driver. - Remove the socket upcalls, calls to ICL_DEBUG and ICL_WARN, and all code within ICL_KERNEL_PROXY. None of this stuff is actually used by cxgbei, it's probably leftover copy/paste from icl_soft. - Fold various icl_foo into icl_cxgbei_foo if the cxgbei implementation was simply a call to the other function. - Remove set_tcb_field and use t4_set_tcb_field that's already available in the base driver. - Fix connection handoff to not assume that there is only one T4/T5 adapter in the system and that's the one handling all offloaded connections. Walk the list of adapters and match tp->t_tod with the adapter's toedev instead. This allows multiple TOE devices of multiple types to coexist. - Fix connection teardown by not reaching for the inp via the toepcb but via the socket instead. If the tid is dead in the hardware then the inp has already been unhooked from the toepcb by t4_tom. - Add more CTRs. The ones on the normal fast path are disabled by default to avoid flooding the log. - Refine pdu_append_data. - Other miscellaneous changes. Modified: projects/cxl_iscsi/sys/dev/cxgbe/cxgbei/cxgbei.c projects/cxl_iscsi/sys/dev/cxgbe/cxgbei/cxgbei.h projects/cxl_iscsi/sys/dev/cxgbe/cxgbei/cxgbei_ulp2_ddp.c projects/cxl_iscsi/sys/dev/cxgbe/cxgbei/cxgbei_ulp2_ddp.h projects/cxl_iscsi/sys/dev/cxgbe/cxgbei/icl_cxgbei.c Modified: projects/cxl_iscsi/sys/dev/cxgbe/cxgbei/cxgbei.c ============================================================================== --- projects/cxl_iscsi/sys/dev/cxgbe/cxgbei/cxgbei.c Tue Nov 17 01:45:24 2015 (r290971) +++ projects/cxl_iscsi/sys/dev/cxgbe/cxgbei/cxgbei.c Tue Nov 17 03:34:20 2015 (r290972) @@ -55,14 +55,6 @@ __FBSDID("$FreeBSD$"); #include #include -#include -#include -#include /* for PCIE_MEM_ACCESS */ -#include -#include "cxgbei.h" - -#include "cxgbei_ulp2_ddp.h" - #include #include #include @@ -73,7 +65,6 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include #include @@ -90,41 +81,18 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include -/* forward declarations */ -struct icl_pdu * icl_pdu_new_empty(struct icl_conn *, int ); -void icl_pdu_free(struct icl_pdu *); - -/* mbuf_tag management functions */ -struct ulp_mbuf_cb * -get_ulp_mbuf_cb(struct mbuf *m) -{ - struct m_tag *mtag = NULL; - - mtag = m_tag_get(CXGBE_ISCSI_MBUF_TAG, sizeof(struct ulp_mbuf_cb), - M_NOWAIT); - if (mtag == NULL) { - printf("%s: mtag alloc failed\n", __func__); - return NULL; - } - bzero(mtag + 1, sizeof(struct ulp_mbuf_cb)); - m_tag_prepend(m, mtag); - - return ((struct ulp_mbuf_cb *)(mtag + 1)); -} - -static struct ulp_mbuf_cb * -find_ulp_mbuf_cb(struct mbuf *m) -{ - struct m_tag *mtag = NULL; - - if ((mtag = m_tag_find(m, CXGBE_ISCSI_MBUF_TAG, NULL)) == NULL) - return (NULL); +#include "common/common.h" +#include "common/t4_msg.h" +#include "common/t4_regs.h" /* for PCIE_MEM_ACCESS */ +#include "tom/t4_tom.h" +#include "cxgbei.h" +#include "cxgbei_ulp2_ddp.h" - return ((struct ulp_mbuf_cb *)(mtag + 1)); -} +/* XXX some header instead. */ +struct icl_pdu *icl_cxgbei_conn_new_pdu(struct icl_conn *, int); +void icl_cxgbei_conn_pdu_free(struct icl_conn *, struct icl_pdu *); /* * Direct Data Placement - @@ -228,12 +196,12 @@ ppod_write_idata(struct cxgbei_data *ci, } int -t4_ddp_set_map(struct cxgbei_data *ci, void *isockp, +t4_ddp_set_map(struct cxgbei_data *ci, void *iccp, struct cxgbei_ulp2_pagepod_hdr *hdr, u_int idx, u_int npods, struct cxgbei_ulp2_gather_list *gl, int reply) { - struct iscsi_socket *isock = (struct iscsi_socket *)isockp; - struct toepcb *toep = isock->toep; + struct icl_cxgbei_conn *icc = (struct icl_cxgbei_conn *)iccp; + struct toepcb *toep = icc->toep; int err; unsigned int pidx = 0, w_npods = 0, cnt; @@ -251,8 +219,7 @@ t4_ddp_set_map(struct cxgbei_data *ci, v cnt = npods - w_npods; if (cnt > ULPMEM_IDATA_MAX_NPPODS) cnt = ULPMEM_IDATA_MAX_NPPODS; - err = ppod_write_idata(ci, hdr, idx, cnt, gl, - pidx, toep); + err = ppod_write_idata(ci, hdr, idx, cnt, gl, pidx, toep); if (err) { printf("%s: ppod_write_idata failed\n", __func__); break; @@ -263,9 +230,9 @@ t4_ddp_set_map(struct cxgbei_data *ci, v void t4_ddp_clear_map(struct cxgbei_data *ci, struct cxgbei_ulp2_gather_list *gl, - u_int tag, u_int idx, u_int npods, struct iscsi_socket *isock) + u_int tag, u_int idx, u_int npods, struct icl_cxgbei_conn *icc) { - struct toepcb *toep = isock->toep; + struct toepcb *toep = icc->toep; int err = -1; u_int pidx = 0; u_int w_npods = 0; @@ -374,16 +341,16 @@ cxgbei_map_sg_tgt(struct cxgbei_sgl *sgl } static int -t4_sk_ddp_tag_reserve(struct cxgbei_data *ci, struct iscsi_socket *isock, +t4_sk_ddp_tag_reserve(struct cxgbei_data *ci, struct icl_cxgbei_conn *icc, u_int xferlen, struct cxgbei_sgl *sgl, u_int sgcnt, u_int *ddp_tag) { struct cxgbei_ulp2_gather_list *gl; int err = -EINVAL; - struct toepcb *toep = isock->toep; + struct toepcb *toep = icc->toep; gl = cxgbei_ulp2_ddp_make_gl_from_iscsi_sgvec(xferlen, sgl, sgcnt, ci, 0); if (gl) { - err = cxgbei_ulp2_ddp_tag_reserve(ci, isock, toep->tid, + err = cxgbei_ulp2_ddp_tag_reserve(ci, icc, toep->tid, &ci->tag_format, ddp_tag, gl, 0, 0); if (err) { cxgbei_ulp2_ddp_release_gl(ci, gl); @@ -397,15 +364,17 @@ static unsigned int cxgbei_task_reserve_itt(struct icl_conn *ic, void **prv, struct ccb_scsiio *scmd, unsigned int *itt) { + struct icl_cxgbei_conn *icc = ic_to_icc(ic); int xferlen = scmd->dxfer_len; struct cxgbei_task_data *tdata = NULL; struct cxgbei_sgl *sge = NULL; - struct iscsi_socket *isock = ic->ic_ofld_prv0; - struct toepcb *toep = isock->toep; + struct toepcb *toep = icc->toep; struct adapter *sc = td_adapter(toep->td); struct cxgbei_data *ci = sc->iscsi_softc; int err = -1; + MPASS(icc->icc_signature == CXGBEI_CONN_SIGNATURE); + tdata = (struct cxgbei_task_data *)*prv; if (xferlen == 0 || tdata == NULL) goto out; @@ -426,7 +395,7 @@ cxgbei_task_reserve_itt(struct icl_conn __func__, *itt, tdata->sc_ddp_tag); if (cxgbei_ulp2_sw_tag_usable(&ci->tag_format, tdata->sc_ddp_tag)) { - err = t4_sk_ddp_tag_reserve(ci, isock, scmd->dxfer_len, + err = t4_sk_ddp_tag_reserve(ci, icc, scmd->dxfer_len, sge, tdata->nsge, &tdata->sc_ddp_tag); } else { CTR3(KTR_CXGBE, @@ -446,14 +415,16 @@ static unsigned int cxgbei_task_reserve_ttt(struct icl_conn *ic, void **prv, union ctl_io *io, unsigned int *ttt) { - struct iscsi_socket *isock = ic->ic_ofld_prv0; - struct toepcb *toep = isock->toep; + struct icl_cxgbei_conn *icc = ic_to_icc(ic); + struct toepcb *toep = icc->toep; struct adapter *sc = td_adapter(toep->td); struct cxgbei_data *ci = sc->iscsi_softc; struct cxgbei_task_data *tdata = NULL; int xferlen, err = -1; struct cxgbei_sgl *sge = NULL; + MPASS(icc->icc_signature == CXGBEI_CONN_SIGNATURE); + xferlen = (io->scsiio.kern_data_len - io->scsiio.ext_data_filled); tdata = (struct cxgbei_task_data *)*prv; if ((xferlen == 0) || (tdata == NULL)) @@ -469,7 +440,7 @@ cxgbei_task_reserve_ttt(struct icl_conn tdata->sc_ddp_tag = *ttt; if (cxgbei_ulp2_sw_tag_usable(&ci->tag_format, tdata->sc_ddp_tag)) { - err = t4_sk_ddp_tag_reserve(ci, isock, xferlen, sge, + err = t4_sk_ddp_tag_reserve(ci, icc, xferlen, sge, tdata->nsge, &tdata->sc_ddp_tag); } else { CTR2(KTR_CXGBE, "%s: sc_ddp_tag:0x%x not usable", @@ -483,13 +454,13 @@ out: } static int -t4_sk_ddp_tag_release(struct iscsi_socket *isock, unsigned int ddp_tag) +t4_sk_ddp_tag_release(struct icl_cxgbei_conn *icc, unsigned int ddp_tag) { - struct toepcb *toep = isock->toep; + struct toepcb *toep = icc->toep; struct adapter *sc = td_adapter(toep->td); struct cxgbei_data *ci = sc->iscsi_softc; - cxgbei_ulp2_ddp_tag_release(ci, ddp_tag, isock); + cxgbei_ulp2_ddp_tag_release(ci, ddp_tag, icc); return (0); } @@ -552,267 +523,73 @@ cxgbei_ddp_init(struct adapter *sc, stru return (rc); } -static void -process_rx_iscsi_hdr(struct toepcb *toep, struct mbuf *m) +static int +do_rx_iscsi_hdr(struct sge_iq *iq, const struct rss_header *rss, struct mbuf *m) { - struct cpl_iscsi_hdr *cpl = mtod(m, struct cpl_iscsi_hdr *); - struct ulp_mbuf_cb *cb, *lcb; - struct mbuf *lmbuf; - u_char *byte; - struct iscsi_socket *isock = toep->ulpcb; - struct tcpcb *tp = intotcpcb(toep->inp); - u_int hlen, dlen, plen; + struct adapter *sc = iq->adapter; + struct cpl_iscsi_hdr *cpl = mtod(m, struct cpl_iscsi_hdr *); + u_int tid = GET_TID(cpl); + struct toepcb *toep = lookup_tid(sc, tid); + struct icl_cxgbei_conn *icc = toep->ulpcb; + struct icl_pdu *ip; + struct icl_cxgbei_pdu *icp; - MPASS(isock != NULL); + MPASS(icc != NULL); + MPASS(icc->icc_signature == CXGBEI_CONN_SIGNATURE); M_ASSERTPKTHDR(m); - mtx_lock(&isock->iscsi_rcvq_lock); - - /* allocate m_tag to hold ulp info */ - cb = get_ulp_mbuf_cb(m); - if (cb == NULL) - CXGBE_UNIMPLEMENTED(__func__); - - /* strip off CPL header */ - m_adj(m, sizeof(*cpl)); - - /* figure out if this is the pdu header or data */ - cb->ulp_mode = ULP_MODE_ISCSI; - if (isock->mbuf_ulp_lhdr == NULL) { - - isock->mbuf_ulp_lhdr = lmbuf = m; - lcb = cb; - cb->flags = SBUF_ULP_FLAG_HDR_RCVD; - /* we only update tp->rcv_nxt once per pdu */ - if (__predict_false(ntohl(cpl->seq) != tp->rcv_nxt)) { - panic("%s: seq# 0x%x (expected 0x%x) for tid %u", - __func__, ntohl(cpl->seq), tp->rcv_nxt, toep->tid); - } - byte = m->m_data; - hlen = ntohs(cpl->len); - dlen = ntohl(*(unsigned int *)(byte + 4)) & 0xFFFFFF; - - plen = ntohs(cpl->pdu_len_ddp); - lcb->pdulen = (hlen + dlen + 3) & (~0x3); - /* workaround for cpl->pdu_len_ddp since it does not include - the data digest count */ - if (dlen) - lcb->pdulen += isock->s_dcrc_len; - - tp->rcv_nxt += lcb->pdulen; - if (tp->rcv_wnd <= lcb->pdulen) - CTR3(KTR_CXGBE, "%s: Neg rcv_wnd:0x%lx pdulen:0x%x", - __func__, tp->rcv_wnd, lcb->pdulen); - tp->rcv_wnd -= lcb->pdulen; - tp->t_rcvtime = ticks; - } else { - lmbuf = isock->mbuf_ulp_lhdr; - lcb = find_ulp_mbuf_cb(lmbuf); - if (lcb == NULL) - CXGBE_UNIMPLEMENTED(__func__); - lcb->flags |= SBUF_ULP_FLAG_DATA_RCVD; - cb->flags = SBUF_ULP_FLAG_DATA_RCVD; - - /* padding */ - if ((m->m_len % 4) != 0) { - m->m_len += 4 - (m->m_len % 4); - } - } - mbufq_enqueue(&isock->iscsi_rcvq, m); - mtx_unlock(&isock->iscsi_rcvq_lock); -} - -/* hand over received PDU to iscsi_initiator */ -static void -iscsi_conn_receive_pdu(struct iscsi_socket *isock) -{ - struct icl_pdu *response = NULL; - struct icl_conn *ic = (struct icl_conn*)isock->s_conn; - struct mbuf *m; - struct ulp_mbuf_cb *cb = NULL; - int data_len; - - response = icl_pdu_new_empty(isock->s_conn, M_NOWAIT); - if (response == NULL) { - panic("%s: failed to alloc icl_pdu\n", __func__); - return; - } - m = mbufq_first(&isock->iscsi_rcvq); - if (m) { - cb = find_ulp_mbuf_cb(m); - if (cb == NULL) { - panic("%s: m:%p cb is NULL\n", __func__, m); - goto err_out; - } - if (!(cb->flags & SBUF_ULP_FLAG_STATUS_RCVD)) - goto err_out; - } - /* BHS */ - mbufq_dequeue(&isock->iscsi_rcvq); - data_len = cb->pdulen; - - CTR5(KTR_CXGBE, "%s: response:%p m:%p m_len:%d data_len:%d", - __func__, response, m, m->m_len, data_len); - response->ip_bhs_mbuf = m; - response->ip_bhs = mtod(response->ip_bhs_mbuf, struct iscsi_bhs *); - - /* data */ - if (cb->flags & SBUF_ULP_FLAG_DATA_RCVD) { - m = mbufq_first(&isock->iscsi_rcvq); - if (m == NULL) { - CTR1(KTR_CXGBE, "%s:No Data", __func__); - goto err_out; - } - mbufq_dequeue(&isock->iscsi_rcvq); - response->ip_data_mbuf = m; - response->ip_data_len += response->ip_data_mbuf->m_len; - } else { - /* Data is DDP'ed */ - response->ip_ofld_prv0 = 1; - } - (ic->ic_receive)(response); - return; - -err_out: - icl_pdu_free(response); - return; -} - -static void -process_rx_data_ddp(struct toepcb *toep, const struct cpl_rx_data_ddp *cpl) -{ - struct mbuf *lmbuf; - struct ulp_mbuf_cb *lcb, *lcb1; - unsigned int val, pdulen; - struct iscsi_socket *isock = toep->ulpcb; - struct inpcb *inp = toep->inp; - - MPASS(isock != NULL); - - if (isock->mbuf_ulp_lhdr == NULL) { - panic("%s: tid 0x%x, rcv RX_DATA_DDP w/o pdu header.\n", - __func__, toep->tid); - return; - } - mtx_lock(&isock->iscsi_rcvq_lock); - lmbuf = isock->mbuf_ulp_lhdr; - if (lmbuf->m_nextpkt) { - lcb1 = find_ulp_mbuf_cb(lmbuf->m_nextpkt); - lcb1->flags |= SBUF_ULP_FLAG_STATUS_RCVD; - } - lcb = find_ulp_mbuf_cb(isock->mbuf_ulp_lhdr); - if (lcb == NULL) { - CTR2(KTR_CXGBE, "%s: mtag NULL lmbuf :%p", __func__, lmbuf); - mtx_unlock(&isock->iscsi_rcvq_lock); - return; - } - lcb->flags |= SBUF_ULP_FLAG_STATUS_RCVD; - isock->mbuf_ulp_lhdr = NULL; - - if (ntohs(cpl->len) != lcb->pdulen) { - CTR3(KTR_CXGBE, "tid 0x%x, RX_DATA_DDP pdulen %u != %u.", - toep->tid, ntohs(cpl->len), lcb->pdulen); - CTR4(KTR_CXGBE, "%s: lmbuf:%p lcb:%p lcb->flags:0x%x", - __func__, lmbuf, lcb, lcb->flags); - } - - lcb->ddigest = ntohl(cpl->ulp_crc); - pdulen = lcb->pdulen; - - val = ntohl(cpl->ddpvld); - if (val & F_DDP_PADDING_ERR) - lcb->flags |= SBUF_ULP_FLAG_PAD_ERROR; - if (val & F_DDP_HDRCRC_ERR) - lcb->flags |= SBUF_ULP_FLAG_HCRC_ERROR; - if (val & F_DDP_DATACRC_ERR) - lcb->flags |= SBUF_ULP_FLAG_DCRC_ERROR; - if (!(lcb->flags & SBUF_ULP_FLAG_DATA_RCVD)) { - lcb->flags |= SBUF_ULP_FLAG_DATA_DDPED; - } -#ifdef __T4_DBG_DDP_FAILURE__ -// else - { - unsigned char *bhs = lmbuf->m_data; - unsigned char opcode = bhs[0]; - unsigned int dlen = ntohl(*(unsigned int *)(bhs + 4)) & 0xFFFFFF; - unsigned int ttt = ntohl(*(unsigned int *)(bhs + 20)); - unsigned int offset = ntohl(*(unsigned int *)(bhs + 40)); - - if (dlen >= 2096) { - /* data_out and should be ddp'ed */ - if ((opcode & 0x3F) == 0x05 && ttt != 0xFFFFFFFF) { - printf("CPL_RX_DATA_DDP: tid 0x%x, data-out %s ddp'ed\ - (%u+%u), ttt 0x%x, seq 0x%x, ddpvld 0x%x.\n", - toep->tid, - (lcb->flags & SBUF_ULP_FLAG_DATA_DDPED) ? "IS" : "NOT", - offset, dlen, ttt, ntohl(cpl->seq), ntohl(cpl->ddpvld)); - } - if ((opcode & 0x3F) == 0x25) { - //if (!(lcb->flags & SBUF_ULP_FLAG_DATA_DDPED)) - printf("CPL_RX_DATA_DDP: tid 0x%x, data-in %s ddp'ed\ - (%u+%u), seq 0x%x, ddpvld 0x%x.\n", - toep->tid, - (lcb->flags & SBUF_ULP_FLAG_DATA_DDPED) ? "IS" : "NOT", - offset, dlen, ntohl(cpl->seq), ntohl(cpl->ddpvld)); - } - } - } + ip = icl_cxgbei_conn_new_pdu(&icc->ic, M_NOWAIT); + if (ip == NULL) + CXGBE_UNIMPLEMENTED("PDU allocation failure"); + icp = ip_to_icp(ip); + bcopy(mtod(m, caddr_t) + sizeof(*cpl), icp->ip.ip_bhs, sizeof(struct + iscsi_bhs)); + icp->pdu_flags = SBUF_ULP_FLAG_HDR_RCVD; + + /* This is the start of a new PDU. There should be no old state. */ + MPASS(icc->icp == NULL); + icc->icp = icp; + icc->pdu_seq = ntohl(cpl->seq); + +#if 0 + CTR4(KTR_CXGBE, "%s: tid %u, cpl->len hlen %u, m->m_len hlen %u", + __func__, tid, ntohs(cpl->len), m->m_len); #endif - iscsi_conn_receive_pdu(isock); - mtx_unlock(&isock->iscsi_rcvq_lock); - - /* update rx credits */ - INP_WLOCK(inp); - /* XXXNP: does this want the so_rcv lock? (happens to be the same) */ - SOCK_LOCK(inp->inp_socket); - toep->sb_cc += pdulen; - SOCK_UNLOCK(inp->inp_socket); - t4_rcvd(&toep->td->tod, intotcpcb(inp)); - INP_WUNLOCK(inp); - return; -} - -static void -drop_fw_acked_ulp_data(struct toepcb *toep, int len) -{ - struct mbuf *m, *next; - struct ulp_mbuf_cb *cb; - struct icl_pdu *req; - struct iscsi_socket *isock = toep->ulpcb; - - MPASS(len > 0); - - mtx_lock(&isock->ulp2_wrq_lock); - while (len > 0) { - m = mbufq_dequeue(&isock->ulp2_wrq); - MPASS(m != NULL); /* excess credits */ - - for (next = m; next != NULL; next = next->m_next) { - MPASS(len >= next->m_len); /* excess credits */ - len -= next->m_len; - } - - cb = find_ulp_mbuf_cb(m); - if (cb && cb->pdu) { - req = (struct icl_pdu *)cb->pdu; - req->ip_bhs_mbuf = NULL; - icl_pdu_free(req); - } - m_freem(m); - } - mtx_unlock(&isock->ulp2_wrq_lock); + m_freem(m); + return (0); } static int -do_rx_iscsi_hdr(struct sge_iq *iq, const struct rss_header *rss, struct mbuf *m) +do_rx_iscsi_data(struct sge_iq *iq, const struct rss_header *rss, struct mbuf *m) { struct adapter *sc = iq->adapter; - struct cpl_iscsi_hdr *cpl = mtod(m, struct cpl_iscsi_hdr *); /* XXXNP */ + struct cpl_iscsi_data *cpl = mtod(m, struct cpl_iscsi_data *); u_int tid = GET_TID(cpl); struct toepcb *toep = lookup_tid(sc, tid); + struct icl_cxgbei_conn *icc = toep->ulpcb; + struct icl_cxgbei_pdu *icp = icc->icp; + + MPASS(icc != NULL); + MPASS(icc->icc_signature == CXGBEI_CONN_SIGNATURE); + M_ASSERTPKTHDR(m); + + /* Must already have received the header (but not the data). */ + MPASS(icp != NULL); + MPASS(icp->pdu_flags == SBUF_ULP_FLAG_HDR_RCVD); + MPASS(icp->ip.ip_data_mbuf == NULL); + MPASS(icp->ip.ip_data_len == 0); - process_rx_iscsi_hdr(toep, m); + m_adj(m, sizeof(*cpl)); + + icp->pdu_flags |= SBUF_ULP_FLAG_DATA_RCVD; + icp->ip.ip_data_mbuf = m; + icp->ip.ip_data_len = m->m_pkthdr.len; /* XXXNP: round up to 4? */ + +#if 0 + CTR4(KTR_CXGBE, "%s: tid %u, cpl->len dlen %u, m->m_len dlen %u", + __func__, tid, ntohs(cpl->len), m->m_len); +#endif return (0); } @@ -824,53 +601,59 @@ do_rx_iscsi_ddp(struct sge_iq *iq, const const struct cpl_rx_data_ddp *cpl = (const void *)(rss + 1); u_int tid = GET_TID(cpl); struct toepcb *toep = lookup_tid(sc, tid); + struct inpcb *inp = toep->inp; + struct tcpcb *tp; + struct icl_cxgbei_conn *icc = toep->ulpcb; + struct icl_conn *ic = &icc->ic; + struct icl_cxgbei_pdu *icp = icc->icp; + u_int pdu_len, val; + + MPASS(icc != NULL); + MPASS(icc->icc_signature == CXGBEI_CONN_SIGNATURE); + MPASS(m == NULL); + + /* Must already be assembling a PDU. */ + MPASS(icp != NULL); + MPASS(icp->pdu_flags & SBUF_ULP_FLAG_HDR_RCVD); /* Data is optional. */ - process_rx_data_ddp(toep, cpl); - - return (0); -} - -static int -t4_ulp_mbuf_push(struct iscsi_socket *isock, struct mbuf *m) -{ - struct toepcb *toep = isock->toep; - - /* append mbuf to ULP queue */ - mtx_lock(&isock->ulp2_writeq_lock); - mbufq_enqueue(&isock->ulp2_writeq, m); - mtx_unlock(&isock->ulp2_writeq_lock); - - INP_WLOCK(toep->inp); - t4_ulp_push_frames(toep->td->tod.tod_softc, toep, 0); - INP_WUNLOCK(toep->inp); + icp->pdu_flags |= SBUF_ULP_FLAG_STATUS_RCVD; - return (0); -} + pdu_len = ntohs(cpl->len); /* includes everything. */ -static struct mbuf * -get_writeq_len(struct toepcb *toep, int *qlen) -{ - struct iscsi_socket *isock = toep->ulpcb; + INP_WLOCK(inp); + /* XXXNP: check inp for dropped etc., and toep for abort in progress. */ - *qlen = mbufq_len(&isock->ulp2_writeq); - return (mbufq_first(&isock->ulp2_writeq)); -} + tp = intotcpcb(inp); + MPASS(icc->pdu_seq == tp->rcv_nxt); + MPASS(tp->rcv_wnd >= pdu_len); + tp->rcv_nxt += pdu_len; + tp->rcv_wnd -= pdu_len; + tp->t_rcvtime = ticks; -static struct mbuf * -do_writeq_next(struct toepcb *toep) -{ - struct iscsi_socket *isock = toep->ulpcb; - struct mbuf *m; + /* update rx credits */ + toep->rx_credits += pdu_len; + t4_rcvd(&toep->td->tod, tp); /* XXX: sc->tom_softc.tod */ + INP_WUNLOCK(inp); - mtx_lock(&isock->ulp2_writeq_lock); - m = mbufq_dequeue(&isock->ulp2_writeq); - mtx_unlock(&isock->ulp2_writeq_lock); + val = ntohl(cpl->ddpvld); + if (val & F_DDP_PADDING_ERR) + icp->pdu_flags |= SBUF_ULP_FLAG_PAD_ERROR; + if (val & F_DDP_HDRCRC_ERR) + icp->pdu_flags |= SBUF_ULP_FLAG_HCRC_ERROR; + if (val & F_DDP_DATACRC_ERR) + icp->pdu_flags |= SBUF_ULP_FLAG_DCRC_ERROR; + if (icp->ip.ip_data_mbuf == NULL) + icp->pdu_flags |= SBUF_ULP_FLAG_DATA_DDPED; + +#if 0 + CTR4(KTR_CXGBE, "%s: tid %u, pdu_len %u, pdu_flags 0x%x", + __func__, tid, pdu_len, icp->pdu_flags); +#endif - mtx_lock(&isock->ulp2_wrq_lock); - mbufq_enqueue(&isock->ulp2_wrq, m); - mtx_unlock(&isock->ulp2_wrq_lock); + icc->icp = NULL; + ic->ic_receive(&icp->ip); - return (mbufq_first(&isock->ulp2_writeq)); + return (0); } static void @@ -878,7 +661,7 @@ t4_register_cpl_handler_with_tom(struct { t4_register_cpl_handler(sc, CPL_ISCSI_HDR, do_rx_iscsi_hdr); - t4_register_cpl_handler(sc, CPL_ISCSI_DATA, do_rx_iscsi_hdr); + t4_register_cpl_handler(sc, CPL_ISCSI_DATA, do_rx_iscsi_data); t4_register_cpl_handler(sc, CPL_RX_ISCSI_DDP, do_rx_iscsi_ddp); } @@ -891,45 +674,6 @@ t4_unregister_cpl_handler_with_tom(struc t4_register_cpl_handler(sc, CPL_RX_ISCSI_DDP, NULL); } -static int -send_set_tcb_field(struct toepcb * toep, uint16_t word, uint64_t mask, - uint64_t val, int no_reply) -{ - struct wrqe *wr; - struct cpl_set_tcb_field *req; - - wr = alloc_wrqe(sizeof(*req), toep->ctrlq); - if (wr == NULL) - return EINVAL; - req = wrtod(wr); - - INIT_TP_WR_MIT_CPL(req, CPL_SET_TCB_FIELD, toep->tid); - req->reply_ctrl = htobe16(V_NO_REPLY(no_reply) | - V_QUEUENO(toep->ofld_rxq->iq.abs_id)); - req->word_cookie = htobe16(V_WORD(word) | V_COOKIE(0)); - req->mask = htobe64(mask); - req->val = htobe64(val); - - t4_wrq_tx(toep->td->tod.tod_softc, wr); - - return (0); -} - -static int -cxgbei_set_ulp_mode(struct toepcb *toep, u_char hcrc, u_char dcrc) -{ - int val = 0; - - if (hcrc) - val |= ULP_CRC_HEADER; - if (dcrc) - val |= ULP_CRC_DATA; - val <<= 4; - val |= ULP_MODE_ISCSI; - - return (send_set_tcb_field(toep, 0, 0xfff, val, 1)); -} - /* initiator */ void cxgbei_conn_task_reserve_itt(void *conn, void **prv, @@ -958,153 +702,19 @@ void cxgbei_cleanup_task(void *conn, void *ofld_priv) { struct icl_conn *ic = (struct icl_conn *)conn; + struct icl_cxgbei_conn *icc = ic_to_icc(ic); struct cxgbei_task_data *tdata = ofld_priv; - struct iscsi_socket *isock = ic->ic_ofld_prv0; - struct toepcb *toep = isock->toep; - struct adapter *sc = td_adapter(toep->td); + struct adapter *sc = icc->sc; struct cxgbei_data *ci = sc->iscsi_softc; - MPASS(isock != NULL); + MPASS(icc->icc_signature == CXGBEI_CONN_SIGNATURE); MPASS(tdata != NULL); if (cxgbei_ulp2_is_ddp_tag(&ci->tag_format, tdata->sc_ddp_tag)) - t4_sk_ddp_tag_release(isock, tdata->sc_ddp_tag); + t4_sk_ddp_tag_release(icc, tdata->sc_ddp_tag); memset(tdata, 0, sizeof(*tdata)); } -static void -t4_sk_tx_mbuf_setmode(struct icl_pdu *req, void *toep, void *mbuf, - unsigned char mode, unsigned char hcrc, unsigned char dcrc) -{ - struct mbuf *m = (struct mbuf *)mbuf; - struct ulp_mbuf_cb *cb; - - cb = get_ulp_mbuf_cb(m); - if (cb == NULL) - return; - cb->ulp_mode = ULP_MODE_ISCSI << 4; - if (hcrc) - cb->ulp_mode |= 1; - if (dcrc) - cb->ulp_mode |= 2; - cb->pdu = req; - return; -} - -int -cxgbei_conn_xmit_pdu(struct icl_conn *ic, struct icl_pdu *req) -{ - struct mbuf *m = req->ip_bhs_mbuf; - struct iscsi_socket *isock = ic->ic_ofld_prv0; - struct toepcb *toep = isock->toep; - - t4_sk_tx_mbuf_setmode(req, toep, m, 2, - ic->ic_header_crc32c ? ISCSI_HEADER_DIGEST_SIZE : 0, - (req->ip_data_len && ic->ic_data_crc32c) ? ISCSI_DATA_DIGEST_SIZE : 0); - - t4_ulp_mbuf_push(isock, m); - return (0); -} - -int -cxgbei_conn_handoff(struct icl_conn *ic) -{ - struct tcpcb *tp = so_sototcpcb(ic->ic_socket); - struct toepcb *toep; - struct iscsi_socket *isock; - - if (!(tp->t_flags & TF_TOE)) - return (ENOTSUP); /* Connection is not offloaded. */ - MPASS(tp->tod != NULL); - MPASS(tp->t_toe != NULL); - - /* - * XXXNP: Seems broken. How can we assume that the tod/toep is what we - * think it is? - */ - - toep = tp->t_toe; - if (toep->ulp_mode) - return (EBUSY); /* Stay away if ulp_mode is already set. */ - - isock = malloc(sizeof(struct iscsi_socket), M_CXGBE, M_NOWAIT | M_ZERO); - if (isock == NULL) - return (ENOMEM); - isock->s_conn = ic; - isock->toep = toep; - isock->s_dcrc_len = ic->ic_data_crc32c ? 4 : 0; - - mbufq_init(&isock->iscsi_rcvq, INT_MAX); - mtx_init(&isock->iscsi_rcvq_lock,"isock_lock" , NULL, MTX_DEF); - - mbufq_init(&isock->ulp2_wrq, INT_MAX); - mtx_init(&isock->ulp2_wrq_lock,"ulp2_wrq lock" , NULL, MTX_DEF); - - mbufq_init(&isock->ulp2_writeq, INT_MAX); - mtx_init(&isock->ulp2_writeq_lock,"ulp2_writeq lock" , NULL, MTX_DEF); - - /* Move connection to ULP mode. */ - ic->ic_socket->so_options |= SO_NO_DDP; - toep->ulp_mode = ULP_MODE_ISCSI; - toep->ulpcb = isock; - ic->ic_ofld_prv0 = isock; - - return (cxgbei_set_ulp_mode(toep, ic->ic_header_crc32c, ic->ic_data_crc32c)); -} - -int -cxgbei_conn_close(struct icl_conn *ic) -{ - struct iscsi_socket *isock = ic->ic_ofld_prv0; - struct toepcb *toep = isock->toep; - struct mbuf *m; - struct ulp_mbuf_cb *cb; - struct icl_pdu *req; - - MPASS(isock != NULL); - - /* free isock Qs */ - /* - * XXXNP: some drained with lock held, some without. And the test for - * whether the lock has even been initialized is after it has been - * grabbed and released already. - * - * An even larger issue is whether the TCP connection is going down - * gracefully or not. Can't simply throw away stuff in send/rcv buffers - * if the TCP shutdown is supposed to be graceful. - */ - mbufq_drain(&isock->iscsi_rcvq); - mbufq_drain(&isock->ulp2_writeq); - - mtx_lock(&isock->ulp2_wrq_lock); - while ((m = mbufq_dequeue(&isock->ulp2_wrq)) != NULL) { - cb = find_ulp_mbuf_cb(m); - if (cb && cb->pdu) { - req = (struct icl_pdu *)cb->pdu; - req->ip_bhs_mbuf = NULL; - icl_pdu_free(req); - } - m_freem(m); - } - mtx_unlock(&isock->ulp2_wrq_lock); - - if (mtx_initialized(&isock->iscsi_rcvq_lock)) - mtx_destroy(&isock->iscsi_rcvq_lock); - - if (mtx_initialized(&isock->ulp2_wrq_lock)) - mtx_destroy(&isock->ulp2_wrq_lock); - - if (mtx_initialized(&isock->ulp2_writeq_lock)) - mtx_destroy(&isock->ulp2_writeq_lock); - - /* XXXNP: Should the ulpcb and ulp_mode be cleared here? */ - toep->ulp_mode = ULP_MODE_NONE; /* dubious without inp lock */ - - free(isock, M_CXGBE); - - return (0); -} - static int cxgbei_activate(struct adapter *sc) { @@ -1299,22 +909,11 @@ stop_worker_threads(void) free(cwt_softc, M_CXGBE); } -extern void (*cxgbei_fw4_ack)(struct toepcb *, int); -extern void (*cxgbei_rx_data_ddp)(struct toepcb *, - const struct cpl_rx_data_ddp *); -extern struct mbuf *(*cxgbei_writeq_len)(struct toepcb *, int *); -extern struct mbuf *(*cxgbei_writeq_next)(struct toepcb *); - static int cxgbei_mod_load(void) { int rc; - cxgbei_fw4_ack = drop_fw_acked_ulp_data; - cxgbei_rx_data_ddp = process_rx_data_ddp; - cxgbei_writeq_len = get_writeq_len; - cxgbei_writeq_next = do_writeq_next; - rc = start_worker_threads(); if (rc != 0) return (rc); Modified: projects/cxl_iscsi/sys/dev/cxgbe/cxgbei/cxgbei.h ============================================================================== --- projects/cxl_iscsi/sys/dev/cxgbe/cxgbei/cxgbei.h Tue Nov 17 01:45:24 2015 (r290971) +++ projects/cxl_iscsi/sys/dev/cxgbe/cxgbei/cxgbei.h Tue Nov 17 03:34:20 2015 (r290972) @@ -29,43 +29,47 @@ #include -struct iscsi_socket { - u_char s_dcrc_len; - void *s_conn; /* ic_conn pointer */ - struct toepcb *toep; - - /* - * XXXNP: locks on the same line. - * XXXNP: are the locks even needed? Why not use so_snd/so_rcv mtx to - * guard the write and rcv queues? - */ - struct mbufq iscsi_rcvq; /* rx - ULP mbufs */ - struct mtx iscsi_rcvq_lock; - - struct mbufq ulp2_writeq; /* tx - ULP mbufs */ - struct mtx ulp2_writeq_lock; - - struct mbufq ulp2_wrq; /* tx wr- ULP mbufs */ - struct mtx ulp2_wrq_lock; - - struct mbuf *mbuf_ulp_lhdr; - struct mbuf *mbuf_ulp_ldata; -}; +#define CXGBEI_CONN_SIGNATURE 0x56788765 struct icl_cxgbei_conn { struct icl_conn ic; /* cxgbei specific stuff goes here. */ uint32_t icc_signature; + int ulp_submode; + struct adapter *sc; + struct toepcb *toep; + + /* PDU currently being assembled. */ + /* XXXNP: maybe just use ic->ic_receive_pdu instead? */ + struct icl_cxgbei_pdu *icp; + uint32_t pdu_seq; /* For debug only */ }; +static inline struct icl_cxgbei_conn * +ic_to_icc(struct icl_conn *ic) +{ + + return (__containerof(ic, struct icl_cxgbei_conn, ic)); +} + +#define CXGBEI_PDU_SIGNATURE 0x12344321 + struct icl_cxgbei_pdu { struct icl_pdu ip; /* cxgbei specific stuff goes here. */ uint32_t icp_signature; + u_int pdu_flags; }; +static inline struct icl_cxgbei_pdu * +ip_to_icp(struct icl_pdu *ip) +{ + + return (__containerof(ip, struct icl_cxgbei_pdu, ip)); +} + struct cxgbei_sgl { int sg_flag; void *sg_addr; @@ -91,18 +95,6 @@ struct cxgbei_sgl { #define SBUF_ULP_FLAG_PAD_ERROR 0x40 #define SBUF_ULP_FLAG_DATA_DDPED 0x80 -/* - * Similar to tcp_skb_cb but with ULP elements added to support DDP, iSCSI, - * etc. - */ -struct ulp_mbuf_cb { - uint8_t ulp_mode; /* ULP mode/submode of sk_buff */ - uint8_t flags; /* TCP-like flags */ - uint32_t ddigest; /* ULP rx_data_ddp selected field*/ - uint32_t pdulen; /* ULP rx_data_ddp selected field*/ - void *pdu; /* pdu pointer */ -}; - /* private data for each scsi task */ struct cxgbei_task_data { struct cxgbei_sgl sgl[256]; @@ -137,18 +129,14 @@ struct cxgbei_data { struct cxgbei_ulp2_tag_format tag_format; }; -struct ulp_mbuf_cb *get_ulp_mbuf_cb(struct mbuf *); -int cxgbei_conn_handoff(struct icl_conn *); -int cxgbei_conn_close(struct icl_conn *); void cxgbei_conn_task_reserve_itt(void *, void **, void *, unsigned int *); void cxgbei_conn_transfer_reserve_ttt(void *, void **, void *, unsigned int *); void cxgbei_cleanup_task(void *, void *); -int cxgbei_conn_xmit_pdu(struct icl_conn *, struct icl_pdu *); struct cxgbei_ulp2_pagepod_hdr; int t4_ddp_set_map(struct cxgbei_data *, void *, struct cxgbei_ulp2_pagepod_hdr *, u_int, u_int, struct cxgbei_ulp2_gather_list *, int); void t4_ddp_clear_map(struct cxgbei_data *, struct cxgbei_ulp2_gather_list *, - u_int, u_int, u_int, struct iscsi_socket *); + u_int, u_int, u_int, struct icl_cxgbei_conn *); #endif Modified: projects/cxl_iscsi/sys/dev/cxgbe/cxgbei/cxgbei_ulp2_ddp.c ============================================================================== --- projects/cxl_iscsi/sys/dev/cxgbe/cxgbei/cxgbei_ulp2_ddp.c Tue Nov 17 01:45:24 2015 (r290971) +++ projects/cxl_iscsi/sys/dev/cxgbe/cxgbei/cxgbei_ulp2_ddp.c Tue Nov 17 03:34:20 2015 (r290972) @@ -52,11 +52,13 @@ __FBSDID("$FreeBSD$"); #include #include -#include -#include -#include /* for PCIE_MEM_ACCESS */ -#include +#include +#include +#include "common/common.h" +#include "common/t4_msg.h" +#include "common/t4_regs.h" /* for PCIE_MEM_ACCESS */ +#include "tom/t4_tom.h" #include "cxgbei.h" #include "cxgbei_ulp2_ddp.h" @@ -293,7 +295,7 @@ cxgbei_ulp2_ddp_release_gl(struct cxgbei * return 0 if success, < 0 otherwise. */ int -cxgbei_ulp2_ddp_tag_reserve(struct cxgbei_data *ci, void *isock, u_int tid, *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@freebsd.org Tue Nov 17 05:41:50 2015 Return-Path: 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 24D64A31F8C for ; Tue, 17 Nov 2015 05:41:50 +0000 (UTC) (envelope-from melifaro@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 DE52B1D27; Tue, 17 Nov 2015 05:41:49 +0000 (UTC) (envelope-from melifaro@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAH5fngN059610; Tue, 17 Nov 2015 05:41:49 GMT (envelope-from melifaro@FreeBSD.org) Received: (from melifaro@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAH5flGn059592; Tue, 17 Nov 2015 05:41:47 GMT (envelope-from melifaro@FreeBSD.org) Message-Id: <201511170541.tAH5flGn059592@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: melifaro set sender to melifaro@FreeBSD.org using -f From: "Alexander V. Chernikov" Date: Tue, 17 Nov 2015 05:41:47 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r290973 - in projects/routing: . contrib/netbsd-tests/lib/libc/gen contrib/netbsd-tests/lib/libc/regex contrib/netbsd-tests/lib/libc/rpc contrib/netbsd-tests/lib/libc/stdio etc etc/mtre... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Nov 2015 05:41:50 -0000 Author: melifaro Date: Tue Nov 17 05:41:47 2015 New Revision: 290973 URL: https://svnweb.freebsd.org/changeset/base/290973 Log: Merge HEAD r290858 to r290867 Added: projects/routing/lib/libopenbsd/getdtablecount.c - copied unchanged from r290867, head/lib/libopenbsd/getdtablecount.c projects/routing/lib/libopenbsd/sys/ - copied from r290867, head/lib/libopenbsd/sys/ projects/routing/lib/libopenbsd/unistd.h - copied unchanged from r290867, head/lib/libopenbsd/unistd.h projects/routing/share/ctypedef/ca_IT.ISO8859-1.src - copied unchanged from r290867, head/share/ctypedef/ca_IT.ISO8859-1.src projects/routing/share/ctypedef/ja_JP.eucJP.src - copied unchanged from r290867, head/share/ctypedef/ja_JP.eucJP.src projects/routing/share/ctypedef/zh_Hans_CN.eucCN.src - copied unchanged from r290867, head/share/ctypedef/zh_Hans_CN.eucCN.src projects/routing/share/monetdef/de_AT.ISO8859-1.src - copied unchanged from r290867, head/share/monetdef/de_AT.ISO8859-1.src projects/routing/share/monetdef/en_IE.ISO8859-1.src - copied unchanged from r290867, head/share/monetdef/en_IE.ISO8859-1.src projects/routing/share/monetdef/nl_NL.ISO8859-1.src - copied unchanged from r290867, head/share/monetdef/nl_NL.ISO8859-1.src projects/routing/share/monetdef/sv_FI.ISO8859-1.src - copied unchanged from r290867, head/share/monetdef/sv_FI.ISO8859-1.src Deleted: projects/routing/share/ctypedef/ca_IT.ISO8859-15.src projects/routing/share/ctypedef/ja_JP.SJIS.src projects/routing/share/ctypedef/zh_Hans_CN.GB18030.src projects/routing/share/monetdef/sk_SK.ISO8859-2.src Modified: projects/routing/ObsoleteFiles.inc projects/routing/contrib/netbsd-tests/lib/libc/gen/t_glob.c projects/routing/contrib/netbsd-tests/lib/libc/regex/debug.c projects/routing/contrib/netbsd-tests/lib/libc/rpc/t_rpc.c projects/routing/contrib/netbsd-tests/lib/libc/stdio/t_fopen.c projects/routing/etc/Makefile projects/routing/etc/mtree/BSD.usr.dist projects/routing/lib/libc/tests/Makefile.netbsd-tests projects/routing/lib/libc/tests/gen/fnmatch_testcases.h projects/routing/lib/libc/tests/gen/ftw_test.c projects/routing/lib/libc/tests/gen/popen_test.c projects/routing/lib/libc/tests/locale/c16rtomb_test.c projects/routing/lib/libc/tests/locale/iswctype_test.c projects/routing/lib/libc/tests/locale/mblen_test.c projects/routing/lib/libc/tests/locale/mbrlen_test.c projects/routing/lib/libc/tests/locale/mbrtoc16_test.c projects/routing/lib/libc/tests/locale/mbrtowc_test.c projects/routing/lib/libc/tests/locale/mbtowc_test.c projects/routing/lib/libc/tests/stdio/fmemopen2_test.c projects/routing/lib/libc/tests/stdio/getdelim_test.c projects/routing/lib/libc/tests/stdio/perror_test.c projects/routing/lib/libc/tests/stdio/printfloat_test.c projects/routing/lib/libc/tests/stdio/scanfloat_test.c projects/routing/lib/libopenbsd/Makefile projects/routing/share/colldef/Makefile projects/routing/share/ctypedef/Makefile projects/routing/share/locale-links/Makefile projects/routing/share/monetdef/Makefile projects/routing/share/msgdef/Makefile projects/routing/share/numericdef/Makefile projects/routing/share/timedef/Makefile projects/routing/sys/arm/arm/hdmi_if.m projects/routing/sys/arm/freescale/imx/imx6_ccm.c projects/routing/sys/arm/freescale/imx/imx6_ccmreg.h projects/routing/sys/arm/ti/am335x/am335x_lcd.c projects/routing/sys/arm/ti/am335x/tda19988.c projects/routing/sys/dev/ata/chipsets/ata-intel.c projects/routing/sys/dev/isp/isp_freebsd.c projects/routing/sys/dev/isp/isp_freebsd.h projects/routing/sys/kern/kern_jail.c projects/routing/sys/kern/kern_loginclass.c projects/routing/sys/kern/kern_racct.c projects/routing/sys/kern/kern_rctl.c projects/routing/sys/kern/kern_resource.c projects/routing/sys/net/route.c projects/routing/sys/netinet6/in6_fib.c projects/routing/sys/netinet6/ip6_forward.c projects/routing/sys/netinet6/nd6.c projects/routing/sys/netinet6/nd6.h projects/routing/sys/netpfil/pf/pf.c projects/routing/sys/sys/jail.h projects/routing/sys/sys/loginclass.h projects/routing/sys/sys/resourcevar.h projects/routing/tools/tools/locale/Makefile projects/routing/tools/tools/locale/etc/charmaps.xml projects/routing/tools/tools/locale/tools/cldr2def.pl Directory Properties: projects/routing/ (props changed) projects/routing/lib/libc/ (props changed) projects/routing/share/ (props changed) projects/routing/sys/ (props changed) Modified: projects/routing/ObsoleteFiles.inc ============================================================================== --- projects/routing/ObsoleteFiles.inc Tue Nov 17 03:34:20 2015 (r290972) +++ projects/routing/ObsoleteFiles.inc Tue Nov 17 05:41:47 2015 (r290973) @@ -38,9 +38,52 @@ # xargs -n1 | sort | uniq -d; # done +# 20151115: Fox bad upgrade scheme +OLD_FILES+=usr/share/locale/zh_CN.GB18030/zh_Hans_CN.GB18030 +OLD_FILES+=usr/share/locale/zh_CN.GB2312/zh_Hans_CN.GB2312 +OLD_FILES+=usr/share/locale/zh_CN.GBK/zh_Hans_CN.GBK +OLD_FILES+=usr/share/locale/zh_CN.UTF-8/zh_Hans_CN.UTF-8 +OLD_FILES+=usr/share/locale/zh_CN.eucCN/zh_Hans_CN.eucCN +OLD_FILES+=usr/share/locale/zh_TW.Big5/zh_Hant_TW.Big5 +OLD_FILES+=usr/share/locale/zh_TW.UTF-8/zh_Hant_TW.UTF-8 # 20151107: String collation improvements OLD_FILES+=usr/share/locale/UTF-8/LC_CTYPE OLD_DIRS+=usr/share/locale/UTF-8 +OLD_FILES+=usr/share/locale/en_CA.ISO8859-15/LC_NUMERIC +OLD_FILES+=usr/share/locale/en_CA.ISO8859-15/LC_MESSAGES +OLD_FILES+=usr/share/locale/en_CA.ISO8859-15/LC_TIME +OLD_FILES+=usr/share/locale/en_CA.ISO8859-15/LC_CTYPE +OLD_FILES+=usr/share/locale/en_CA.ISO8859-15/LC_COLLATE +OLD_FILES+=usr/share/locale/en_CA.ISO8859-15/LC_MONETARY +OLD_DIRS+=usr/share/locale/en_CA.ISO8859-15 +OLD_FILES+=usr/share/locale/en_AU.ISO8859-15/LC_COLLATE +OLD_FILES+=usr/share/locale/en_AU.ISO8859-15/LC_CTYPE +OLD_FILES+=usr/share/locale/en_AU.ISO8859-15/LC_MESSAGES +OLD_FILES+=usr/share/locale/en_AU.ISO8859-15/LC_TIME +OLD_FILES+=usr/share/locale/en_AU.ISO8859-15/LC_NUMERIC +OLD_FILES+=usr/share/locale/en_AU.ISO8859-15/LC_MONETARY +OLD_DIRS+=usr/share/locale/en_AU.ISO8859-15 +OLD_FILES+=usr/share/locale/en_US.ISO8859-15/LC_CTYPE +OLD_FILES+=usr/share/locale/en_US.ISO8859-15/LC_MESSAGES +OLD_FILES+=usr/share/locale/en_US.ISO8859-15/LC_COLLATE +OLD_FILES+=usr/share/locale/en_US.ISO8859-15/LC_TIME +OLD_FILES+=usr/share/locale/en_US.ISO8859-15/LC_MONETARY +OLD_FILES+=usr/share/locale/en_US.ISO8859-15/LC_NUMERIC +OLD_DIRS+=usr/share/locale/en_US.ISO8859-15 +OLD_FILES+=usr/share/locale/en_NZ.ISO8859-15/LC_MESSAGES +OLD_FILES+=usr/share/locale/en_NZ.ISO8859-15/LC_COLLATE +OLD_FILES+=usr/share/locale/en_NZ.ISO8859-15/LC_TIME +OLD_FILES+=usr/share/locale/en_NZ.ISO8859-15/LC_MONETARY +OLD_FILES+=usr/share/locale/en_NZ.ISO8859-15/LC_NUMERIC +OLD_FILES+=usr/share/locale/en_NZ.ISO8859-15/LC_CTYPE +OLD_DIRS+=usr/share/locale/en_NZ.ISO8859-15 +OLD_FILES+=usr/share/locale/fr_CA.ISO8859-15/LC_COLLATE +OLD_FILES+=usr/share/locale/fr_CA.ISO8859-15/LC_MESSAGES +OLD_FILES+=usr/share/locale/fr_CA.ISO8859-15/LC_CTYPE +OLD_FILES+=usr/share/locale/fr_CA.ISO8859-15/LC_TIME +OLD_FILES+=usr/share/locale/fr_CA.ISO8859-15/LC_NUMERIC +OLD_FILES+=usr/share/locale/fr_CA.ISO8859-15/LC_MONETARY +OLD_DIRS+=usr/share/locale/fr_CA.ISO8859-15 OLD_FILES+=usr/share/locale/kk_KZ.PT154/LC_COLLATE OLD_FILES+=usr/share/locale/kk_KZ.PT154/LC_CTYPE OLD_FILES+=usr/share/locale/kk_KZ.PT154/LC_MESSAGES @@ -78,6 +121,13 @@ OLD_FILES+=usr/share/locale/la_LN.US-ASC OLD_FILES+=usr/share/locale/la_LN.US-ASCII/LC_CTYPE OLD_FILES+=usr/share/locale/la_LN.US-ASCII/LC_TIME OLD_DIRS+=usr/share/locale/la_LN.US-ASCII +OLD_FILES+=usr/share/locale/lt_LT.ISO8859-4/LC_MESSAGES +OLD_FILES+=usr/share/locale/lt_LT.ISO8859-4/LC_TIME +OLD_FILES+=usr/share/locale/lt_LT.ISO8859-4/LC_COLLATE +OLD_FILES+=usr/share/locale/lt_LT.ISO8859-4/LC_MONETARY +OLD_FILES+=usr/share/locale/lt_LT.ISO8859-4/LC_CTYPE +OLD_FILES+=usr/share/locale/lt_LT.ISO8859-4/LC_NUMERIC +OLD_DIRS+=usr/share/locale/lt_LT.ISO8859-4 OLD_FILES+=usr/share/locale/mn_MN.UTF-8/LC_COLLATE OLD_FILES+=usr/share/locale/mn_MN.UTF-8/LC_CTYPE OLD_FILES+=usr/share/locale/mn_MN.UTF-8/LC_MESSAGES @@ -106,6 +156,27 @@ OLD_FILES+=usr/share/locale/no_NO.UTF-8/ OLD_FILES+=usr/share/locale/no_NO.UTF-8/LC_NUMERIC OLD_FILES+=usr/share/locale/no_NO.UTF-8/LC_TIME OLD_DIRS+=usr/share/locale/no_NO.UTF-8 +OLD_FILES+=usr/share/locale/sr_YU.ISO8859-2/LC_COLLATE +OLD_FILES+=usr/share/locale/sr_YU.ISO8859-2/LC_TIME +OLD_FILES+=usr/share/locale/sr_YU.ISO8859-2/LC_CTYPE +OLD_FILES+=usr/share/locale/sr_YU.ISO8859-2/LC_MESSAGES +OLD_FILES+=usr/share/locale/sr_YU.ISO8859-2/LC_NUMERIC +OLD_FILES+=usr/share/locale/sr_YU.ISO8859-2/LC_MONETARY +OLD_DIRS+=usr/share/locale/sr_YU.ISO8859-2 +OLD_FILES+=usr/share/locale/sr_YU.ISO8859-5/LC_COLLATE +OLD_FILES+=usr/share/locale/sr_YU.ISO8859-5/LC_MONETARY +OLD_FILES+=usr/share/locale/sr_YU.ISO8859-5/LC_NUMERIC +OLD_FILES+=usr/share/locale/sr_YU.ISO8859-5/LC_CTYPE +OLD_FILES+=usr/share/locale/sr_YU.ISO8859-5/LC_TIME +OLD_FILES+=usr/share/locale/sr_YU.ISO8859-5/LC_MESSAGES +OLD_DIRS+=usr/share/locale/sr_YU.ISO8859-5 +OLD_FILES+=usr/share/locale/sr_YU.UTF-8/LC_COLLATE +OLD_FILES+=usr/share/locale/sr_YU.UTF-8/LC_MONETARY +OLD_FILES+=usr/share/locale/sr_YU.UTF-8/LC_CTYPE +OLD_FILES+=usr/share/locale/sr_YU.UTF-8/LC_TIME +OLD_FILES+=usr/share/locale/sr_YU.UTF-8/LC_NUMERIC +OLD_FILES+=usr/share/locale/sr_YU.UTF-8/LC_MESSAGES +OLD_DIRS+=usr/share/locale/sr_YU.UTF-8 OLD_FILES+=usr/bin/colldef OLD_FILES+=usr/share/man/man1/colldef.1.gz OLD_FILES+=usr/bin/mklocale Modified: projects/routing/contrib/netbsd-tests/lib/libc/gen/t_glob.c ============================================================================== --- projects/routing/contrib/netbsd-tests/lib/libc/gen/t_glob.c Tue Nov 17 03:34:20 2015 (r290972) +++ projects/routing/contrib/netbsd-tests/lib/libc/gen/t_glob.c Tue Nov 17 05:41:47 2015 (r290973) @@ -91,9 +91,11 @@ static struct gl_dir d[] = { { "a/b", b, __arraycount(b), 0 }, }; +#ifndef __FreeBSD__ static const char *glob_star[] = { "a/1", "a/3", "a/4", "a/b", "a/b/w", "a/b/x", "a/b/y", "a/b/z", }; +#endif static const char *glob_star_not[] = { "a/1", "a/3", "a/4", "a/b", Modified: projects/routing/contrib/netbsd-tests/lib/libc/regex/debug.c ============================================================================== --- projects/routing/contrib/netbsd-tests/lib/libc/regex/debug.c Tue Nov 17 03:34:20 2015 (r290972) +++ projects/routing/contrib/netbsd-tests/lib/libc/regex/debug.c Tue Nov 17 05:41:47 2015 (r290973) @@ -126,11 +126,15 @@ static void s_print(struct re_guts *g, FILE *d) { sop *s; +#ifdef __NetBSD__ cset *cs; +#endif int done = 0; sop opnd; int col = 0; +#ifdef __NetBSD__ ssize_t last; +#endif sopno offset = 2; # define GAP() { if (offset % 5 == 0) { \ if (col > 40) { \ Modified: projects/routing/contrib/netbsd-tests/lib/libc/rpc/t_rpc.c ============================================================================== --- projects/routing/contrib/netbsd-tests/lib/libc/rpc/t_rpc.c Tue Nov 17 03:34:20 2015 (r290972) +++ projects/routing/contrib/netbsd-tests/lib/libc/rpc/t_rpc.c Tue Nov 17 05:41:47 2015 (r290973) @@ -73,8 +73,14 @@ onehost(const char *host, const char *tr tv.tv_sec = 1; tv.tv_usec = 0; +#ifdef __FreeBSD__ + if (clnt_call(clnt, RPCBPROC_NULL, (xdrproc_t)xdr_void, NULL, + (xdrproc_t)xdr_void, NULL, tv) + != RPC_SUCCESS) +#else if (clnt_call(clnt, RPCBPROC_NULL, xdr_void, NULL, xdr_void, NULL, tv) != RPC_SUCCESS) +#endif ERRX(EXIT_FAILURE, "clnt_call (%s)", clnt_sperror(clnt, "")); clnt_control(clnt, CLGET_SVC_ADDR, (char *) &addr); reply(NULL, &addr, NULL); Modified: projects/routing/contrib/netbsd-tests/lib/libc/stdio/t_fopen.c ============================================================================== --- projects/routing/contrib/netbsd-tests/lib/libc/stdio/t_fopen.c Tue Nov 17 03:34:20 2015 (r290972) +++ projects/routing/contrib/netbsd-tests/lib/libc/stdio/t_fopen.c Tue Nov 17 05:41:47 2015 (r290973) @@ -303,6 +303,7 @@ ATF_TC_BODY(fopen_perm, tc) ATF_REQUIRE_ERRNO(EACCES, fopen("/bin/ls", "w+") == NULL); } +#ifdef __NetBSD__ ATF_TC(fopen_regular); ATF_TC_HEAD(fopen_regular, tc) { @@ -335,6 +336,7 @@ ATF_TC_BODY(fopen_regular, tc) } } } +#endif ATF_TC_WITH_CLEANUP(fopen_seek); ATF_TC_HEAD(fopen_seek, tc) Modified: projects/routing/etc/Makefile ============================================================================== --- projects/routing/etc/Makefile Tue Nov 17 03:34:20 2015 (r290972) +++ projects/routing/etc/Makefile Tue Nov 17 05:41:47 2015 (r290973) @@ -408,7 +408,7 @@ distrib-dirs: ${MTREES:N/*} distrib-clea ${METALOG.add} ; \ done; true .endif - ${INSTALL_SYMLINK} usr/src/sys ${DESTDIR}/sys + ${INSTALL_SYMLINK} ${SRCTOP:C/^\///}/sys ${DESTDIR}/sys .if ${MK_MAN} != "no" cd ${DESTDIR}${SHAREDIR}/man; \ for mandir in man*; do \ Modified: projects/routing/etc/mtree/BSD.usr.dist ============================================================================== --- projects/routing/etc/mtree/BSD.usr.dist Tue Nov 17 03:34:20 2015 (r290972) +++ projects/routing/etc/mtree/BSD.usr.dist Tue Nov 17 05:41:47 2015 (r290973) @@ -543,12 +543,20 @@ .. bg_BG.UTF-8 .. + ca_AD.ISO8859-1 + .. ca_AD.ISO8859-15 .. + ca_ES.ISO8859-1 + .. ca_ES.ISO8859-15 .. + ca_FR.ISO8859-1 + .. ca_FR.ISO8859-15 .. + ca_IT.ISO8859-1 + .. ca_IT.ISO8859-15 .. ca_AD.UTF-8 @@ -563,18 +571,26 @@ .. cs_CZ.UTF-8 .. + da_DK.ISO8859-1 + .. da_DK.ISO8859-15 .. da_DK.UTF-8 .. + de_AT.ISO8859-1 + .. de_AT.ISO8859-15 .. de_AT.UTF-8 .. + de_CH.ISO8859-1 + .. de_CH.ISO8859-15 .. de_CH.UTF-8 .. + de_DE.ISO8859-1 + .. de_DE.ISO8859-15 .. de_DE.UTF-8 @@ -595,6 +611,8 @@ .. en_CA.UTF-8 .. + en_GB.ISO8859-1 + .. en_GB.ISO8859-15 .. en_GB.US-ASCII @@ -605,6 +623,8 @@ .. en_HK.UTF-8 .. + en_IE.ISO8859-1 + .. en_IE.ISO8859-15 .. en_IE.UTF-8 @@ -639,6 +659,8 @@ .. es_CR.UTF-8 .. + es_ES.ISO8859-1 + .. es_ES.ISO8859-15 .. es_ES.UTF-8 @@ -647,18 +669,26 @@ .. es_MX.UTF-8 .. + et_EE.ISO8859-1 + .. et_EE.ISO8859-15 .. et_EE.UTF-8 .. + eu_ES.ISO8859-1 + .. eu_ES.ISO8859-15 .. eu_ES.UTF-8 .. + fi_FI.ISO8859-1 + .. fi_FI.ISO8859-15 .. fi_FI.UTF-8 .. + fr_BE.ISO8859-1 + .. fr_BE.ISO8859-15 .. fr_BE.UTF-8 @@ -667,10 +697,14 @@ .. fr_CA.UTF-8 .. + fr_CH.ISO8859-1 + .. fr_CH.ISO8859-15 .. fr_CH.UTF-8 .. + fr_FR.ISO8859-1 + .. fr_FR.ISO8859-15 .. fr_FR.UTF-8 @@ -693,14 +727,20 @@ .. hy_AM.UTF-8 .. + is_IS.ISO8859-1 + .. is_IS.ISO8859-15 .. is_IS.UTF-8 .. + it_CH.ISO8859-1 + .. it_CH.ISO8859-15 .. it_CH.UTF-8 .. + it_IT.ISO8859-1 + .. it_IT.ISO8859-15 .. it_IT.UTF-8 @@ -729,18 +769,26 @@ .. mn_Cyrl_MN.UTF-8 .. + nb_NO.ISO8859-1 + .. nb_NO.ISO8859-15 .. nb_NO.UTF-8 .. + nl_BE.ISO8859-1 + .. nl_BE.ISO8859-15 .. nl_BE.UTF-8 .. + nl_NL.ISO8859-1 + .. nl_NL.ISO8859-15 .. nl_NL.UTF-8 .. + nn_NO.ISO8859-1 + .. nn_NO.ISO8859-15 .. nn_NO.UTF-8 @@ -753,6 +801,8 @@ .. pt_BR.UTF-8 .. + pt_PT.ISO8859-1 + .. pt_PT.ISO8859-15 .. pt_PT.UTF-8 @@ -791,10 +841,14 @@ .. sr_Latn_RS.UTF-8 .. + sv_FI.ISO8859-1 + .. sv_FI.ISO8859-15 .. sv_FI.UTF-8 .. + sv_SE.ISO8859-1 + .. sv_SE.ISO8859-15 .. sv_SE.UTF-8 @@ -811,6 +865,16 @@ .. uk_UA.UTF-8 .. + zh_CN.GB18030 + .. + zh_CN.GB2312 + .. + zh_CN.GBK + .. + zh_CN.eucCN + .. + zh_CN.UTF-8 + .. zh_Hans_CN.GB18030 .. zh_Hans_CN.GB2312 @@ -829,6 +893,14 @@ .. zh_Hant_TW.UTF-8 .. + zh_HK.Big5HKSCS + .. + zh_HK.UTF-8 + .. + zh_TW.Big5 + .. + zh_TW.UTF-8 + .. .. man /set uname=man @@ -1221,22 +1293,8 @@ .. ko_KR.eucKR .. - la_LN.ISO8859-1 - .. - la_LN.ISO8859-13 - .. - la_LN.ISO8859-15 - .. - la_LN.ISO8859-2 - .. - la_LN.ISO8859-4 - .. - la_LN.US-ASCII - .. lt_LT.ISO8859-13 .. - lt_LT.ISO8859-4 - .. lt_LT.UTF-8 .. lv_LV.ISO8859-13 Modified: projects/routing/lib/libc/tests/Makefile.netbsd-tests ============================================================================== --- projects/routing/lib/libc/tests/Makefile.netbsd-tests Tue Nov 17 03:34:20 2015 (r290972) +++ projects/routing/lib/libc/tests/Makefile.netbsd-tests Tue Nov 17 05:41:47 2015 (r290973) @@ -4,4 +4,6 @@ TESTSRC:= ${SRCTOP}/contrib/netbsd-tests TESTSDIR:= ${TESTSBASE}/${RELDIR:C/libc\/tests/libc/} +WARNS?= 2 + .include Modified: projects/routing/lib/libc/tests/gen/fnmatch_testcases.h ============================================================================== --- projects/routing/lib/libc/tests/gen/fnmatch_testcases.h Tue Nov 17 03:34:20 2015 (r290972) +++ projects/routing/lib/libc/tests/gen/fnmatch_testcases.h Tue Nov 17 05:41:47 2015 (r290973) @@ -35,142 +35,142 @@ struct testcase { int flags; int result; } testcases[] = { - "", "", 0, 0, - "a", "a", 0, 0, - "a", "b", 0, FNM_NOMATCH, - "a", "A", 0, FNM_NOMATCH, - "*", "a", 0, 0, - "*", "aa", 0, 0, - "*a", "a", 0, 0, - "*a", "b", 0, FNM_NOMATCH, - "*a*", "b", 0, FNM_NOMATCH, - "*a*b*", "ab", 0, 0, - "*a*b*", "qaqbq", 0, 0, - "*a*bb*", "qaqbqbbq", 0, 0, - "*a*bc*", "qaqbqbcq", 0, 0, - "*a*bb*", "qaqbqbb", 0, 0, - "*a*bc*", "qaqbqbc", 0, 0, - "*a*bb", "qaqbqbb", 0, 0, - "*a*bc", "qaqbqbc", 0, 0, - "*a*bb", "qaqbqbbq", 0, FNM_NOMATCH, - "*a*bc", "qaqbqbcq", 0, FNM_NOMATCH, - "*a*a*a*a*a*a*a*a*a*a*", "aaaaaaaaa", 0, FNM_NOMATCH, - "*a*a*a*a*a*a*a*a*a*a*", "aaaaaaaaaa", 0, 0, - "*a*a*a*a*a*a*a*a*a*a*", "aaaaaaaaaaa", 0, 0, - ".*.*.*.*.*.*.*.*.*.*", ".........", 0, FNM_NOMATCH, - ".*.*.*.*.*.*.*.*.*.*", "..........", 0, 0, - ".*.*.*.*.*.*.*.*.*.*", "...........", 0, 0, - "*?*?*?*?*?*?*?*?*?*?*", "123456789", 0, FNM_NOMATCH, - "??????????*", "123456789", 0, FNM_NOMATCH, - "*??????????", "123456789", 0, FNM_NOMATCH, - "*?*?*?*?*?*?*?*?*?*?*", "1234567890", 0, 0, - "??????????*", "1234567890", 0, 0, - "*??????????", "1234567890", 0, 0, - "*?*?*?*?*?*?*?*?*?*?*", "12345678901", 0, 0, - "??????????*", "12345678901", 0, 0, - "*??????????", "12345678901", 0, 0, - "[x]", "x", 0, 0, - "[*]", "*", 0, 0, - "[?]", "?", 0, 0, - "[", "[", 0, 0, - "[[]", "[", 0, 0, - "[[]", "x", 0, FNM_NOMATCH, - "[*]", "", 0, FNM_NOMATCH, - "[*]", "x", 0, FNM_NOMATCH, - "[?]", "x", 0, FNM_NOMATCH, - "*[*]*", "foo*foo", 0, 0, - "*[*]*", "foo", 0, FNM_NOMATCH, - "[0-9]", "0", 0, 0, - "[0-9]", "5", 0, 0, - "[0-9]", "9", 0, 0, - "[0-9]", "/", 0, FNM_NOMATCH, - "[0-9]", ":", 0, FNM_NOMATCH, - "[0-9]", "*", 0, FNM_NOMATCH, - "[!0-9]", "0", 0, FNM_NOMATCH, - "[!0-9]", "5", 0, FNM_NOMATCH, - "[!0-9]", "9", 0, FNM_NOMATCH, - "[!0-9]", "/", 0, 0, - "[!0-9]", ":", 0, 0, - "[!0-9]", "*", 0, 0, - "*[0-9]", "a0", 0, 0, - "*[0-9]", "a5", 0, 0, - "*[0-9]", "a9", 0, 0, - "*[0-9]", "a/", 0, FNM_NOMATCH, - "*[0-9]", "a:", 0, FNM_NOMATCH, - "*[0-9]", "a*", 0, FNM_NOMATCH, - "*[!0-9]", "a0", 0, FNM_NOMATCH, - "*[!0-9]", "a5", 0, FNM_NOMATCH, - "*[!0-9]", "a9", 0, FNM_NOMATCH, - "*[!0-9]", "a/", 0, 0, - "*[!0-9]", "a:", 0, 0, - "*[!0-9]", "a*", 0, 0, - "*[0-9]", "a00", 0, 0, - "*[0-9]", "a55", 0, 0, - "*[0-9]", "a99", 0, 0, - "*[0-9]", "a0a0", 0, 0, - "*[0-9]", "a5a5", 0, 0, - "*[0-9]", "a9a9", 0, 0, - "\\*", "*", 0, 0, - "\\?", "?", 0, 0, - "\\[x]", "[x]", 0, 0, - "\\[", "[", 0, 0, - "\\\\", "\\", 0, 0, - "*\\**", "foo*foo", 0, 0, - "*\\**", "foo", 0, FNM_NOMATCH, - "*\\\\*", "foo\\foo", 0, 0, - "*\\\\*", "foo", 0, FNM_NOMATCH, - "\\(", "(", 0, 0, - "\\a", "a", 0, 0, - "\\*", "a", 0, FNM_NOMATCH, - "\\?", "a", 0, FNM_NOMATCH, - "\\*", "\\*", 0, FNM_NOMATCH, - "\\?", "\\?", 0, FNM_NOMATCH, - "\\[x]", "\\[x]", 0, FNM_NOMATCH, - "\\[x]", "\\x", 0, FNM_NOMATCH, - "\\[", "\\[", 0, FNM_NOMATCH, - "\\(", "\\(", 0, FNM_NOMATCH, - "\\a", "\\a", 0, FNM_NOMATCH, - "\\", "\\", 0, FNM_NOMATCH, - "\\", "", 0, 0, - "\\*", "\\*", FNM_NOESCAPE, 0, - "\\?", "\\?", FNM_NOESCAPE, 0, - "\\", "\\", FNM_NOESCAPE, 0, - "\\\\", "\\", FNM_NOESCAPE, FNM_NOMATCH, - "\\\\", "\\\\", FNM_NOESCAPE, 0, - "*\\*", "foo\\foo", FNM_NOESCAPE, 0, - "*\\*", "foo", FNM_NOESCAPE, FNM_NOMATCH, - "*", ".", FNM_PERIOD, FNM_NOMATCH, - "?", ".", FNM_PERIOD, FNM_NOMATCH, - ".*", ".", 0, 0, - ".*", "..", 0, 0, - ".*", ".a", 0, 0, - "[0-9]", ".", FNM_PERIOD, FNM_NOMATCH, - "a*", "a.", 0, 0, - "a/a", "a/a", FNM_PATHNAME, 0, - "a/*", "a/a", FNM_PATHNAME, 0, - "*/a", "a/a", FNM_PATHNAME, 0, - "*/*", "a/a", FNM_PATHNAME, 0, - "a*b/*", "abbb/x", FNM_PATHNAME, 0, - "a*b/*", "abbb/.x", FNM_PATHNAME, 0, - "*", "a/a", FNM_PATHNAME, FNM_NOMATCH, - "*/*", "a/a/a", FNM_PATHNAME, FNM_NOMATCH, - "b/*", "b/.x", FNM_PATHNAME | FNM_PERIOD, FNM_NOMATCH, - "b*/*", "a/.x", FNM_PATHNAME | FNM_PERIOD, FNM_NOMATCH, - "b/.*", "b/.x", FNM_PATHNAME | FNM_PERIOD, 0, - "b*/.*", "b/.x", FNM_PATHNAME | FNM_PERIOD, 0, - "a", "A", FNM_CASEFOLD, 0, - "A", "a", FNM_CASEFOLD, 0, - "[a]", "A", FNM_CASEFOLD, 0, - "[A]", "a", FNM_CASEFOLD, 0, - "a", "b", FNM_CASEFOLD, FNM_NOMATCH, - "a", "a/b", FNM_PATHNAME, FNM_NOMATCH, - "*", "a/b", FNM_PATHNAME, FNM_NOMATCH, - "*b", "a/b", FNM_PATHNAME, FNM_NOMATCH, - "a", "a/b", FNM_PATHNAME | FNM_LEADING_DIR, 0, - "*", "a/b", FNM_PATHNAME | FNM_LEADING_DIR, 0, - "*", ".a/b", FNM_PATHNAME | FNM_LEADING_DIR, 0, - "*a", ".a/b", FNM_PATHNAME | FNM_LEADING_DIR, 0, - "*", ".a/b", FNM_PATHNAME | FNM_PERIOD | FNM_LEADING_DIR, FNM_NOMATCH, - "*a", ".a/b", FNM_PATHNAME | FNM_PERIOD | FNM_LEADING_DIR, FNM_NOMATCH, - "a*b/*", "abbb/.x", FNM_PATHNAME | FNM_PERIOD, FNM_NOMATCH, + { "", "", 0, 0 }, + { "a", "a", 0, 0 }, + { "a", "b", 0, FNM_NOMATCH }, + { "a", "A", 0, FNM_NOMATCH }, + { "*", "a", 0, 0 }, + { "*", "aa", 0, 0 }, + { "*a", "a", 0, 0 }, + { "*a", "b", 0, FNM_NOMATCH }, + { "*a*", "b", 0, FNM_NOMATCH }, + { "*a*b*", "ab", 0, 0 }, + { "*a*b*", "qaqbq", 0, 0 }, + { "*a*bb*", "qaqbqbbq", 0, 0 }, + { "*a*bc*", "qaqbqbcq", 0, 0 }, + { "*a*bb*", "qaqbqbb", 0, 0 }, + { "*a*bc*", "qaqbqbc", 0, 0 }, + { "*a*bb", "qaqbqbb", 0, 0 }, + { "*a*bc", "qaqbqbc", 0, 0 }, + { "*a*bb", "qaqbqbbq", 0, FNM_NOMATCH }, + { "*a*bc", "qaqbqbcq", 0, FNM_NOMATCH }, + { "*a*a*a*a*a*a*a*a*a*a*", "aaaaaaaaa", 0, FNM_NOMATCH }, + { "*a*a*a*a*a*a*a*a*a*a*", "aaaaaaaaaa", 0, 0 }, + { "*a*a*a*a*a*a*a*a*a*a*", "aaaaaaaaaaa", 0, 0 }, + { ".*.*.*.*.*.*.*.*.*.*", ".........", 0, FNM_NOMATCH }, + { ".*.*.*.*.*.*.*.*.*.*", "..........", 0, 0 }, + { ".*.*.*.*.*.*.*.*.*.*", "...........", 0, 0 }, + { "*?*?*?*?*?*?*?*?*?*?*", "123456789", 0, FNM_NOMATCH }, + { "??????????*", "123456789", 0, FNM_NOMATCH }, + { "*??????????", "123456789", 0, FNM_NOMATCH }, + { "*?*?*?*?*?*?*?*?*?*?*", "1234567890", 0, 0 }, + { "??????????*", "1234567890", 0, 0 }, + { "*??????????", "1234567890", 0, 0 }, + { "*?*?*?*?*?*?*?*?*?*?*", "12345678901", 0, 0 }, + { "??????????*", "12345678901", 0, 0 }, + { "*??????????", "12345678901", 0, 0 }, + { "[x]", "x", 0, 0 }, + { "[*]", "*", 0, 0 }, + { "[?]", "?", 0, 0 }, + { "[", "[", 0, 0 }, + { "[[]", "[", 0, 0 }, + { "[[]", "x", 0, FNM_NOMATCH }, + { "[*]", "", 0, FNM_NOMATCH }, + { "[*]", "x", 0, FNM_NOMATCH }, + { "[?]", "x", 0, FNM_NOMATCH }, + { "*[*]*", "foo*foo", 0, 0 }, + { "*[*]*", "foo", 0, FNM_NOMATCH }, + { "[0-9]", "0", 0, 0 }, + { "[0-9]", "5", 0, 0 }, + { "[0-9]", "9", 0, 0 }, + { "[0-9]", "/", 0, FNM_NOMATCH }, + { "[0-9]", ":", 0, FNM_NOMATCH }, + { "[0-9]", "*", 0, FNM_NOMATCH }, + { "[!0-9]", "0", 0, FNM_NOMATCH }, + { "[!0-9]", "5", 0, FNM_NOMATCH }, + { "[!0-9]", "9", 0, FNM_NOMATCH }, + { "[!0-9]", "/", 0, 0 }, + { "[!0-9]", ":", 0, 0 }, + { "[!0-9]", "*", 0, 0 }, + { "*[0-9]", "a0", 0, 0 }, + { "*[0-9]", "a5", 0, 0 }, + { "*[0-9]", "a9", 0, 0 }, + { "*[0-9]", "a/", 0, FNM_NOMATCH }, + { "*[0-9]", "a:", 0, FNM_NOMATCH }, + { "*[0-9]", "a*", 0, FNM_NOMATCH }, + { "*[!0-9]", "a0", 0, FNM_NOMATCH }, + { "*[!0-9]", "a5", 0, FNM_NOMATCH }, + { "*[!0-9]", "a9", 0, FNM_NOMATCH }, + { "*[!0-9]", "a/", 0, 0 }, + { "*[!0-9]", "a:", 0, 0 }, + { "*[!0-9]", "a*", 0, 0 }, + { "*[0-9]", "a00", 0, 0 }, + { "*[0-9]", "a55", 0, 0 }, + { "*[0-9]", "a99", 0, 0 }, + { "*[0-9]", "a0a0", 0, 0 }, + { "*[0-9]", "a5a5", 0, 0 }, + { "*[0-9]", "a9a9", 0, 0 }, + { "\\*", "*", 0, 0 }, + { "\\?", "?", 0, 0 }, + { "\\[x]", "[x]", 0, 0 }, + { "\\[", "[", 0, 0 }, + { "\\\\", "\\", 0, 0 }, + { "*\\**", "foo*foo", 0, 0 }, + { "*\\**", "foo", 0, FNM_NOMATCH }, + { "*\\\\*", "foo\\foo", 0, 0 }, + { "*\\\\*", "foo", 0, FNM_NOMATCH }, + { "\\(", "(", 0, 0 }, + { "\\a", "a", 0, 0 }, + { "\\*", "a", 0, FNM_NOMATCH }, + { "\\?", "a", 0, FNM_NOMATCH }, + { "\\*", "\\*", 0, FNM_NOMATCH }, + { "\\?", "\\?", 0, FNM_NOMATCH }, + { "\\[x]", "\\[x]", 0, FNM_NOMATCH }, + { "\\[x]", "\\x", 0, FNM_NOMATCH }, + { "\\[", "\\[", 0, FNM_NOMATCH }, + { "\\(", "\\(", 0, FNM_NOMATCH }, + { "\\a", "\\a", 0, FNM_NOMATCH }, + { "\\", "\\", 0, FNM_NOMATCH }, + { "\\", "", 0, 0 }, + { "\\*", "\\*", FNM_NOESCAPE, 0 }, + { "\\?", "\\?", FNM_NOESCAPE, 0 }, + { "\\", "\\", FNM_NOESCAPE, 0 }, + { "\\\\", "\\", FNM_NOESCAPE, FNM_NOMATCH }, + { "\\\\", "\\\\", FNM_NOESCAPE, 0 }, + { "*\\*", "foo\\foo", FNM_NOESCAPE, 0 }, + { "*\\*", "foo", FNM_NOESCAPE, FNM_NOMATCH }, + { "*", ".", FNM_PERIOD, FNM_NOMATCH }, + { "?", ".", FNM_PERIOD, FNM_NOMATCH }, + { ".*", ".", 0, 0 }, + { ".*", "..", 0, 0 }, + { ".*", ".a", 0, 0 }, + { "[0-9]", ".", FNM_PERIOD, FNM_NOMATCH }, + { "a*", "a.", 0, 0 }, + { "a/a", "a/a", FNM_PATHNAME, 0 }, + { "a/*", "a/a", FNM_PATHNAME, 0 }, + { "*/a", "a/a", FNM_PATHNAME, 0 }, + { "*/*", "a/a", FNM_PATHNAME, 0 }, + { "a*b/*", "abbb/x", FNM_PATHNAME, 0 }, + { "a*b/*", "abbb/.x", FNM_PATHNAME, 0 }, + { "*", "a/a", FNM_PATHNAME, FNM_NOMATCH }, + { "*/*", "a/a/a", FNM_PATHNAME, FNM_NOMATCH }, + { "b/*", "b/.x", FNM_PATHNAME | FNM_PERIOD, FNM_NOMATCH }, + { "b*/*", "a/.x", FNM_PATHNAME | FNM_PERIOD, FNM_NOMATCH }, + { "b/.*", "b/.x", FNM_PATHNAME | FNM_PERIOD, 0 }, + { "b*/.*", "b/.x", FNM_PATHNAME | FNM_PERIOD, 0 }, + { "a", "A", FNM_CASEFOLD, 0 }, + { "A", "a", FNM_CASEFOLD, 0 }, + { "[a]", "A", FNM_CASEFOLD, 0 }, + { "[A]", "a", FNM_CASEFOLD, 0 }, + { "a", "b", FNM_CASEFOLD, FNM_NOMATCH }, + { "a", "a/b", FNM_PATHNAME, FNM_NOMATCH }, + { "*", "a/b", FNM_PATHNAME, FNM_NOMATCH }, + { "*b", "a/b", FNM_PATHNAME, FNM_NOMATCH }, + { "a", "a/b", FNM_PATHNAME | FNM_LEADING_DIR, 0 }, + { "*", "a/b", FNM_PATHNAME | FNM_LEADING_DIR, 0 }, + { "*", ".a/b", FNM_PATHNAME | FNM_LEADING_DIR, 0 }, + { "*a", ".a/b", FNM_PATHNAME | FNM_LEADING_DIR, 0 }, + { "*", ".a/b", FNM_PATHNAME | FNM_PERIOD | FNM_LEADING_DIR, FNM_NOMATCH }, + { "*a", ".a/b", FNM_PATHNAME | FNM_PERIOD | FNM_LEADING_DIR, FNM_NOMATCH }, + { "a*b/*", "abbb/.x", FNM_PATHNAME | FNM_PERIOD, FNM_NOMATCH }, }; Modified: projects/routing/lib/libc/tests/gen/ftw_test.c ============================================================================== --- projects/routing/lib/libc/tests/gen/ftw_test.c Tue Nov 17 03:34:20 2015 (r290972) +++ projects/routing/lib/libc/tests/gen/ftw_test.c Tue Nov 17 05:41:47 2015 (r290973) @@ -49,7 +49,6 @@ extern char **environ; static char template[] = "testftw.XXXXXXXXXX"; static char dir[PATH_MAX]; -static int failures; static int ftwflags; static int Modified: projects/routing/lib/libc/tests/gen/popen_test.c ============================================================================== --- projects/routing/lib/libc/tests/gen/popen_test.c Tue Nov 17 03:34:20 2015 (r290972) +++ projects/routing/lib/libc/tests/gen/popen_test.c Tue Nov 17 05:41:47 2015 (r290973) @@ -71,7 +71,7 @@ check_cloexec(FILE *fp, const char *mode ATF_TC_WITHOUT_HEAD(popen_all_modes_test); ATF_TC_BODY(popen_all_modes_test, tc) { - FILE *fp, *fp2; + FILE *fp; int i, status; const char *mode; const char *allmodes[] = { "r", "w", "r+", "re", "we", "r+e", "re+" }; @@ -92,7 +92,7 @@ ATF_TC_BODY(popen_all_modes_test, tc) ATF_TC_WITHOUT_HEAD(popen_rmodes_test); ATF_TC_BODY(popen_rmodes_test, tc) { - FILE *fp, *fp2; + FILE *fp; const char *rmodes[] = { "r", "r+", "re", "r+e", "re+" }; const char *mode; char buf[80]; @@ -211,7 +211,7 @@ ATF_TC_WITHOUT_HEAD(popen_rwmodes_test); ATF_TC_BODY(popen_rwmodes_test, tc) { const char *rwmodes[] = { "r+", "r+e", "re+" }; - FILE *fp, *fp2; + FILE *fp; const char *mode; char *sres; char buf[80]; Modified: projects/routing/lib/libc/tests/locale/c16rtomb_test.c ============================================================================== --- projects/routing/lib/libc/tests/locale/c16rtomb_test.c Tue Nov 17 03:34:20 2015 (r290972) +++ projects/routing/lib/libc/tests/locale/c16rtomb_test.c Tue Nov 17 05:41:47 2015 (r290973) @@ -42,13 +42,27 @@ __FBSDID("$FreeBSD$"); #include -ATF_TC_WITHOUT_HEAD(c16rtomb_test); -ATF_TC_BODY(c16rtomb_test, tc) +static void +require_lc_ctype(const char *locale_name) { - mbstate_t s; - char buf[MB_LEN_MAX + 1]; + char *lc_ctype_set; - /* C/POSIX locale. */ + lc_ctype_set = setlocale(LC_CTYPE, locale_name); + if (lc_ctype_set == NULL) + atf_tc_fail("setlocale(LC_CTYPE, \"%s\") failed; errno=%d", + locale_name, errno); + + ATF_REQUIRE(strcmp(lc_ctype_set, locale_name) == 0); +} + +static mbstate_t s; +static char buf[MB_LEN_MAX + 1]; + +ATF_TC_WITHOUT_HEAD(c16rtomb_c_locale_test); +ATF_TC_BODY(c16rtomb_c_locale_test, tc) +{ + + require_lc_ctype("C"); /* * If the buffer argument is NULL, c16 is implicitly 0, @@ -80,11 +94,13 @@ ATF_TC_BODY(c16rtomb_test, tc) ATF_REQUIRE(c16rtomb(buf, 0xdca9, &s) == (size_t)-1); ATF_REQUIRE(errno == EILSEQ); ATF_REQUIRE((unsigned char)buf[0] == 0xcc); +} - /* ISO8859-1. */ +ATF_TC_WITHOUT_HEAD(c16rtomb_iso_8859_1_test); +ATF_TC_BODY(c16rtomb_iso_8859_1_test, tc) +{ - ATF_REQUIRE(strcmp(setlocale(LC_CTYPE, "en_US.ISO8859-1"), - "en_US.ISO8859-1") == 0); + require_lc_ctype("en_US.ISO8859-1"); /* Unicode character 'Euro sign'. */ memset(&s, 0, sizeof(s)); @@ -92,21 +108,26 @@ ATF_TC_BODY(c16rtomb_test, tc) ATF_REQUIRE(c16rtomb(buf, 0x20ac, &s) == (size_t)-1); ATF_REQUIRE(errno == EILSEQ); ATF_REQUIRE((unsigned char)buf[0] == 0xcc); +} - /* ISO8859-15. */ +ATF_TC_WITHOUT_HEAD(c16rtomb_iso_8859_15_test); +ATF_TC_BODY(c16rtomb_iso_8859_15_test, tc) +{ - ATF_REQUIRE(strcmp(setlocale(LC_CTYPE, "en_US.ISO8859-15"), - "en_US.ISO8859-15") == 0); + require_lc_ctype("en_US.ISO8859-15"); /* Unicode character 'Euro sign'. */ memset(&s, 0, sizeof(s)); memset(buf, 0xcc, sizeof(buf)); ATF_REQUIRE(c16rtomb(buf, 0x20ac, &s) == 1); ATF_REQUIRE((unsigned char)buf[0] == 0xa4 && (unsigned char)buf[1] == 0xcc); +} - /* UTF-8. */ +ATF_TC_WITHOUT_HEAD(c16rtomb_utf_8_test); +ATF_TC_BODY(c16rtomb_utf_8_test, tc) +{ - ATF_REQUIRE(strcmp(setlocale(LC_CTYPE, "en_US.UTF-8"), "en_US.UTF-8") == 0); + require_lc_ctype("en_US.UTF-8"); /* Unicode character 'Pile of poo'. */ memset(&s, 0, sizeof(s)); @@ -136,7 +157,10 @@ ATF_TC_BODY(c16rtomb_test, tc) ATF_TP_ADD_TCS(tp) { - ATF_TP_ADD_TC(tp, c16rtomb_test); + ATF_TP_ADD_TC(tp, c16rtomb_c_locale_test); + ATF_TP_ADD_TC(tp, c16rtomb_iso_8859_1_test); + ATF_TP_ADD_TC(tp, c16rtomb_iso_8859_15_test); + ATF_TP_ADD_TC(tp, c16rtomb_utf_8_test); return (atf_no_error()); } Modified: projects/routing/lib/libc/tests/locale/iswctype_test.c ============================================================================== --- projects/routing/lib/libc/tests/locale/iswctype_test.c Tue Nov 17 03:34:20 2015 (r290972) +++ projects/routing/lib/libc/tests/locale/iswctype_test.c Tue Nov 17 05:41:47 2015 (r290973) @@ -34,6 +34,8 @@ #include __FBSDID("$FreeBSD$"); +#include +#include #include #include #include @@ -42,31 +44,45 @@ __FBSDID("$FreeBSD$"); #include -ATF_TC_WITHOUT_HEAD(iswctype_test); -ATF_TC_BODY(iswctype_test, tc) +static void +require_lc_ctype(const char *locale_name) { - wctype_t t; - int i, j; - struct { - const char *name; - int (*func)(wint_t); - } cls[] = { - { "alnum", iswalnum }, - { "alpha", iswalpha }, - { "blank", iswblank }, - { "cntrl", iswcntrl }, - { "digit", iswdigit }, - { "graph", iswgraph }, - { "lower", iswlower }, - { "print", iswprint }, - { "punct", iswpunct }, - { "space", iswspace }, - { "upper", iswupper }, - { "xdigit", iswxdigit } - }; + char *lc_ctype_set; - /* C/POSIX locale. */ - for (i = 0; i < sizeof(cls) / sizeof(*cls); i++) { + lc_ctype_set = setlocale(LC_CTYPE, locale_name); + if (lc_ctype_set == NULL) + atf_tc_fail("setlocale(LC_CTYPE, \"%s\") failed; errno=%d", + locale_name, errno); + + ATF_REQUIRE(strcmp(lc_ctype_set, locale_name) == 0); +} + +static wctype_t t; +static int i, j; +static struct { + const char *name; + int (*func)(wint_t); +} cls[] = { + { "alnum", iswalnum }, + { "alpha", iswalpha }, + { "blank", iswblank }, + { "cntrl", iswcntrl }, + { "digit", iswdigit }, + { "graph", iswgraph }, + { "lower", iswlower }, + { "print", iswprint }, + { "punct", iswpunct }, + { "space", iswspace }, + { "upper", iswupper }, + { "xdigit", iswxdigit } +}; + +ATF_TC_WITHOUT_HEAD(iswctype_c_locale_test); +ATF_TC_BODY(iswctype_c_locale_test, tc) +{ + + require_lc_ctype("C"); + for (i = 0; i < nitems(cls); i++) { t = wctype(cls[i].name); ATF_REQUIRE(t != 0); for (j = 0; j < 256; j++) @@ -76,10 +92,15 @@ ATF_TC_BODY(iswctype_test, tc) ATF_REQUIRE(t == 0); for (i = 0; i < 256; i++) ATF_REQUIRE(iswctype(i, t) == 0); +} + +ATF_TC_WITHOUT_HEAD(iswctype_euc_jp_test); +ATF_TC_BODY(iswctype_euc_jp_test, tc) +{ + + require_lc_ctype("ja_JP.eucJP"); - /* Japanese (EUC) locale. */ - ATF_REQUIRE(strcmp(setlocale(LC_CTYPE, "ja_JP.eucJP"), "ja_JP.eucJP") == 0); - for (i = 0; i < sizeof(cls) / sizeof(*cls); i++) { + for (i = 0; i < nitems(cls); i++) { t = wctype(cls[i].name); ATF_REQUIRE(t != 0); for (j = 0; j < 65536; j++) @@ -94,7 +115,8 @@ ATF_TC_BODY(iswctype_test, tc) ATF_TP_ADD_TCS(tp) { - ATF_TP_ADD_TC(tp, iswctype_test); + ATF_TP_ADD_TC(tp, iswctype_c_locale_test); + ATF_TP_ADD_TC(tp, iswctype_euc_jp_test); return (atf_no_error()); } Modified: projects/routing/lib/libc/tests/locale/mblen_test.c ============================================================================== --- projects/routing/lib/libc/tests/locale/mblen_test.c Tue Nov 17 03:34:20 2015 (r290972) +++ projects/routing/lib/libc/tests/locale/mblen_test.c Tue Nov 17 05:41:47 2015 (r290973) @@ -46,7 +46,6 @@ __FBSDID("$FreeBSD$"); ATF_TC_WITHOUT_HEAD(mblen_test); ATF_TC_BODY(mblen_test, tc) { - size_t len; char buf[MB_LEN_MAX + 1]; /* Modified: projects/routing/lib/libc/tests/locale/mbrlen_test.c ============================================================================== --- projects/routing/lib/libc/tests/locale/mbrlen_test.c Tue Nov 17 03:34:20 2015 (r290972) +++ projects/routing/lib/libc/tests/locale/mbrlen_test.c Tue Nov 17 05:41:47 2015 (r290973) @@ -49,7 +49,6 @@ ATF_TC_WITHOUT_HEAD(mbrlen_test); ATF_TC_BODY(mbrlen_test, tc) { mbstate_t s; - size_t len; char buf[MB_LEN_MAX + 1]; /* C/POSIX locale. */ Modified: projects/routing/lib/libc/tests/locale/mbrtoc16_test.c ============================================================================== --- projects/routing/lib/libc/tests/locale/mbrtoc16_test.c Tue Nov 17 03:34:20 2015 (r290972) +++ projects/routing/lib/libc/tests/locale/mbrtoc16_test.c Tue Nov 17 05:41:47 2015 (r290973) @@ -42,16 +42,27 @@ __FBSDID("$FreeBSD$"); #include -ATF_TC_WITHOUT_HEAD(mbrtoc16_test); -ATF_TC_BODY(mbrtoc16_test, tc) +static void +require_lc_ctype(const char *locale_name) { - mbstate_t s; - size_t len; - char16_t c16; - - /* - * C/POSIX locale. - */ + char *lc_ctype_set; + + lc_ctype_set = setlocale(LC_CTYPE, locale_name); + if (lc_ctype_set == NULL) + atf_tc_fail("setlocale(LC_CTYPE, \"%s\") failed; errno=%d", *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@freebsd.org Tue Nov 17 16:16:22 2015 Return-Path: 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 B0F73A31367 for ; Tue, 17 Nov 2015 16:16:22 +0000 (UTC) (envelope-from nwhitehorn@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 78C651561; Tue, 17 Nov 2015 16:16:22 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAHGGLJ9073825; Tue, 17 Nov 2015 16:16:21 GMT (envelope-from nwhitehorn@FreeBSD.org) Received: (from nwhitehorn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAHGGJP6073798; Tue, 17 Nov 2015 16:16:19 GMT (envelope-from nwhitehorn@FreeBSD.org) Message-Id: <201511171616.tAHGGJP6073798@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nwhitehorn set sender to nwhitehorn@FreeBSD.org using -f From: Nathan Whitehorn Date: Tue, 17 Nov 2015 16:16:19 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r290991 - in projects/powernv: arm/arm arm/freescale/imx arm/include arm/samsung/exynos arm/ti/am335x conf dev/ata/chipsets dev/hwpmc dev/isp dev/re dev/vmware/vmxnet3 dev/wpi fs/nfscli... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Nov 2015 16:16:22 -0000 Author: nwhitehorn Date: Tue Nov 17 16:16:18 2015 New Revision: 290991 URL: https://svnweb.freebsd.org/changeset/base/290991 Log: Bring up to date with HEAD. Added: projects/powernv/mips/atheros/qca953x_chip.c - copied unchanged from r290990, head/sys/mips/atheros/qca953x_chip.c projects/powernv/mips/atheros/qca953x_chip.h - copied unchanged from r290990, head/sys/mips/atheros/qca953x_chip.h projects/powernv/mips/atheros/qca953xreg.h - copied unchanged from r290990, head/sys/mips/atheros/qca953xreg.h Modified: projects/powernv/arm/arm/hdmi_if.m projects/powernv/arm/arm/pl310.c projects/powernv/arm/freescale/imx/imx6_ccm.c projects/powernv/arm/freescale/imx/imx6_ccmreg.h projects/powernv/arm/include/pcb.h projects/powernv/arm/include/pl310.h projects/powernv/arm/samsung/exynos/exynos5_ehci.c projects/powernv/arm/ti/am335x/am335x_lcd.c projects/powernv/arm/ti/am335x/tda19988.c projects/powernv/conf/kern.pre.mk projects/powernv/dev/ata/chipsets/ata-intel.c projects/powernv/dev/hwpmc/hwpmc_mod.c projects/powernv/dev/isp/isp.c projects/powernv/dev/isp/isp_freebsd.c projects/powernv/dev/isp/isp_freebsd.h projects/powernv/dev/isp/isp_library.c projects/powernv/dev/isp/ispmbox.h projects/powernv/dev/re/if_re.c projects/powernv/dev/vmware/vmxnet3/if_vmx.c projects/powernv/dev/wpi/if_wpi.c projects/powernv/fs/nfsclient/nfs_clvfsops.c projects/powernv/kern/kern_dump.c projects/powernv/kern/kern_jail.c projects/powernv/kern/kern_loginclass.c projects/powernv/kern/kern_racct.c projects/powernv/kern/kern_rctl.c projects/powernv/kern/kern_resource.c projects/powernv/mips/atheros/apb.c projects/powernv/mips/atheros/ar71xx_ehci.c projects/powernv/mips/atheros/ar71xx_gpio.c projects/powernv/mips/atheros/ar71xx_setup.c projects/powernv/mips/atheros/ar71xx_setup.h projects/powernv/mips/atheros/files.ar71xx projects/powernv/mips/atheros/if_arge.c projects/powernv/net/pfkeyv2.h projects/powernv/netinet6/ip6_forward.c projects/powernv/netinet6/ip6_output.c projects/powernv/netinet6/nd6.c projects/powernv/netinet6/nd6.h projects/powernv/netipsec/ipsec.h projects/powernv/netipsec/key.c projects/powernv/netipsec/xform_esp.c projects/powernv/netpfil/pf/pf.c projects/powernv/netsmb/smb_iod.c projects/powernv/opencrypto/xform.c projects/powernv/powerpc/aim/mmu_oea64.c projects/powernv/powerpc/aim/moea64_native.c projects/powernv/powerpc/ofw/ofw_machdep.c projects/powernv/powerpc/ofw/ofw_pci.c projects/powernv/powerpc/ofw/ofw_pcibus.c projects/powernv/powerpc/ofw/openpic_ofw.c projects/powernv/powerpc/powermac/cpcht.c projects/powernv/powerpc/powermac/kiic.c projects/powernv/powerpc/powermac/macgpio.c projects/powernv/powerpc/pseries/mmu_phyp.c projects/powernv/powerpc/pseries/phyp_console.c projects/powernv/powerpc/pseries/phyp_llan.c projects/powernv/powerpc/pseries/phyp_vscsi.c projects/powernv/powerpc/pseries/platform_chrp.c projects/powernv/powerpc/pseries/plpar_iommu.c projects/powernv/powerpc/pseries/rtas_pci.c projects/powernv/sparc64/include/dump.h projects/powernv/sparc64/sparc64/dump_machdep.c projects/powernv/sys/jail.h projects/powernv/sys/loginclass.h projects/powernv/sys/pmc.h projects/powernv/sys/resourcevar.h projects/powernv/vm/vm_page.h projects/powernv/vm/vm_pageout.c Directory Properties: projects/powernv/ (props changed) projects/powernv/conf/ (props changed) Modified: projects/powernv/arm/arm/hdmi_if.m ============================================================================== --- projects/powernv/arm/arm/hdmi_if.m Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/arm/arm/hdmi_if.m Tue Nov 17 16:16:18 2015 (r290991) @@ -35,8 +35,10 @@ INTERFACE hdmi; HEADER { #include - typedef void (*hdmi_event_hook)(void *, int); + typedef void (*hdmi_event_hook)(void *, device_t, int); EVENTHANDLER_DECLARE(hdmi_event, hdmi_event_hook); + + #define HDMI_EVENT_CONNECTED 0 } # Modified: projects/powernv/arm/arm/pl310.c ============================================================================== --- projects/powernv/arm/arm/pl310.c Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/arm/arm/pl310.c Tue Nov 17 16:16:18 2015 (r290991) @@ -90,7 +90,7 @@ static struct ofw_compat_data compat_dat {NULL, false} }; -void +static void pl310_print_config(struct pl310_softc *sc) { uint32_t aux, prefetch; Modified: projects/powernv/arm/freescale/imx/imx6_ccm.c ============================================================================== --- projects/powernv/arm/freescale/imx/imx6_ccm.c Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/arm/freescale/imx/imx6_ccm.c Tue Nov 17 16:16:18 2015 (r290991) @@ -88,14 +88,42 @@ WR4(struct ccm_softc *sc, bus_size_t off static void ccm_init_gates(struct ccm_softc *sc) { - /* Turns on... */ - WR4(sc, CCM_CCGR0, 0x0000003f); /* ahpbdma, aipstz 1 & 2 busses */ - WR4(sc, CCM_CCGR1, 0x00300c00); /* gpt, enet */ - WR4(sc, CCM_CCGR2, 0x0fffffc0); /* ipmux & ipsync (bridges), iomux, i2c */ - WR4(sc, CCM_CCGR3, 0x3ff00000); /* DDR memory controller */ - WR4(sc, CCM_CCGR4, 0x0000f300); /* pl301 bus crossbar */ - WR4(sc, CCM_CCGR5, 0x0ffc00c0); /* uarts, ssi, sdma */ - WR4(sc, CCM_CCGR6, 0x000003ff); /* usdhc 1-4, usboh3 */ + uint32_t reg; + + /* ahpbdma, aipstz 1 & 2 busses */ + reg = CCGR0_AIPS_TZ1 | CCGR0_AIPS_TZ2 | CCGR0_ABPHDMA; + WR4(sc, CCM_CCGR0, reg); + + /* gpt, enet */ + reg = CCGR1_ENET | CCGR1_GPT; + WR4(sc, CCM_CCGR1, reg); + + /* ipmux & ipsync (bridges), iomux, i2c */ + reg = CCGR2_I2C1 | CCGR2_I2C2 | CCGR2_I2C3 | CCGR2_IIM | + CCGR2_IOMUX_IPT | CCGR2_IPMUX1 | CCGR2_IPMUX2 | CCGR2_IPMUX3 | + CCGR2_IPSYNC_IP2APB_TZASC1 | CCGR2_IPSYNC_IP2APB_TZASC2 | + CCGR2_IPSYNC_VDOA; + WR4(sc, CCM_CCGR2, reg); + + /* DDR memory controller */ + reg = CCGR3_OCRAM | CCGR3_MMDC_CORE_IPG | + CCGR3_MMDC_CORE_ACLK_FAST | CCGR3_CG11 | CCGR3_CG13; + WR4(sc, CCM_CCGR3, reg); + + /* pl301 bus crossbar */ + reg = CCGR4_PL301_MX6QFAST1_S133 | + CCGR4_PL301_MX6QPER1_BCH | CCGR4_PL301_MX6QPER2_MAIN; + WR4(sc, CCM_CCGR4, reg); + + /* uarts, ssi, sdma */ + reg = CCGR5_SDMA | CCGR5_SSI1 | CCGR5_SSI2 | CCGR5_SSI3 | + CCGR5_UART | CCGR5_UART_SERIAL; + WR4(sc, CCM_CCGR5, reg); + + /* usdhc 1-4, usboh3 */ + reg = CCGR6_USBOH3 | CCGR6_USDHC1 | CCGR6_USDHC2 | + CCGR6_USDHC3 | CCGR6_USDHC4; + WR4(sc, CCM_CCGR6, reg); } static int Modified: projects/powernv/arm/freescale/imx/imx6_ccmreg.h ============================================================================== --- projects/powernv/arm/freescale/imx/imx6_ccmreg.h Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/arm/freescale/imx/imx6_ccmreg.h Tue Nov 17 16:16:18 2015 (r290991) @@ -58,12 +58,57 @@ #define CCM_CGPR 0x064 #define CCM_CGPR_INT_MEM_CLK_LPM (1 << 17) #define CCM_CCGR0 0x068 +#define CCGR0_AIPS_TZ1 (0x3 << 0) +#define CCGR0_AIPS_TZ2 (0x3 << 2) +#define CCGR0_ABPHDMA (0x3 << 4) #define CCM_CCGR1 0x06C +#define CCGR1_ENET (0x3 << 10) +#define CCGR1_GPT (0x3 << 20) #define CCM_CCGR2 0x070 +#define CCGR2_HDMI_TX (0x3 << 0) +#define CCGR2_HDMI_TX_ISFR (0x3 << 4) +#define CCGR2_I2C1 (0x3 << 6) +#define CCGR2_I2C2 (0x3 << 8) +#define CCGR2_I2C3 (0x3 << 10) +#define CCGR2_IIM (0x3 << 12) +#define CCGR2_IOMUX_IPT (0x3 << 14) +#define CCGR2_IPMUX1 (0x3 << 16) +#define CCGR2_IPMUX2 (0x3 << 18) +#define CCGR2_IPMUX3 (0x3 << 20) +#define CCGR2_IPSYNC_IP2APB_TZASC1 (0x3 << 22) +#define CCGR2_IPSYNC_IP2APB_TZASC2 (0x3 << 24) +#define CCGR2_IPSYNC_VDOA (0x3 << 26) #define CCM_CCGR3 0x074 +#define CCGR3_IPU1_IPU (0x3 << 0) +#define CCGR3_IPU1_DI0 (0x3 << 2) +#define CCGR3_IPU1_DI1 (0x3 << 4) +#define CCGR3_IPU2_IPU (0x3 << 6) +#define CCGR3_IPU2_DI0 (0x3 << 8) +#define CCGR3_IPU2_DI1 (0x3 << 10) +#define CCGR3_LDB_DI0 (0x3 << 12) +#define CCGR3_LDB_DI1 (0x3 << 14) +#define CCGR3_MMDC_CORE_ACLK_FAST (0x3 << 20) +#define CCGR3_CG11 (0x3 << 22) +#define CCGR3_MMDC_CORE_IPG (0x3 << 24) +#define CCGR3_CG13 (0x3 << 26) +#define CCGR3_OCRAM (0x3 << 28) #define CCM_CCGR4 0x078 +#define CCGR4_PL301_MX6QFAST1_S133 (0x3 << 8) +#define CCGR4_PL301_MX6QPER1_BCH (0x3 << 12) +#define CCGR4_PL301_MX6QPER2_MAIN (0x3 << 14) #define CCM_CCGR5 0x07C +#define CCGR5_SDMA (0x3 << 6) +#define CCGR5_SSI1 (0x3 << 18) +#define CCGR5_SSI2 (0x3 << 20) +#define CCGR5_SSI3 (0x3 << 22) +#define CCGR5_UART (0x3 << 24) +#define CCGR5_UART_SERIAL (0x3 << 26) #define CCM_CCGR6 0x080 +#define CCGR6_USBOH3 (0x3 << 0) +#define CCGR6_USDHC1 (0x3 << 2) +#define CCGR6_USDHC2 (0x3 << 4) +#define CCGR6_USDHC3 (0x3 << 6) +#define CCGR6_USDHC4 (0x3 << 8) #define CCM_CMEOR 0x088 #endif Modified: projects/powernv/arm/include/pcb.h ============================================================================== --- projects/powernv/arm/include/pcb.h Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/arm/include/pcb.h Tue Nov 17 16:16:18 2015 (r290991) @@ -52,14 +52,17 @@ struct pcb { #define PCB_OWNFPU 0x00000001 #define PCB_NOALIGNFLT 0x00000002 caddr_t pcb_onfault; /* On fault handler */ -#ifdef ARM_NEW_PMAP - uint32_t pcb_pagedir; /* TTB0 value */ -#else - vm_offset_t pcb_pagedir; /* PT hooks */ + vm_offset_t pcb_pagedir; /* TTB0 value */ + /* + * XXX: + * Variables pcb_pl1vec, pcb_l1vec, pcb_dacr are used solely + * by old PMAP. Keep them here for PCB binary compatibility + * between old and new PMAP. + */ uint32_t *pcb_pl1vec; /* PTR to vector_base L1 entry*/ uint32_t pcb_l1vec; /* Value to stuff on ctx sw */ u_int pcb_dacr; /* Domain Access Control Reg */ -#endif + struct vfp_state pcb_vfpstate; /* VP/NEON state */ u_int pcb_vfpcpu; /* VP/NEON last cpu */ } __aligned(8); /* Modified: projects/powernv/arm/include/pl310.h ============================================================================== --- projects/powernv/arm/include/pl310.h Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/arm/include/pl310.h Tue Nov 17 16:16:18 2015 (r290991) @@ -177,7 +177,6 @@ pl310_write4(struct pl310_softc *sc, bus bus_write_4(sc->sc_mem_res, off, val); } -void pl310_print_config(struct pl310_softc *sc); void pl310_set_ram_latency(struct pl310_softc *sc, uint32_t which_reg, uint32_t read, uint32_t write, uint32_t setup); Modified: projects/powernv/arm/samsung/exynos/exynos5_ehci.c ============================================================================== --- projects/powernv/arm/samsung/exynos/exynos5_ehci.c Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/arm/samsung/exynos/exynos5_ehci.c Tue Nov 17 16:16:18 2015 (r290991) @@ -122,7 +122,7 @@ static device_method_t ehci_methods[] = static driver_t ehci_driver = { "ehci", ehci_methods, - sizeof(ehci_softc_t) + sizeof(struct exynos_ehci_softc) }; static devclass_t ehci_devclass; Modified: projects/powernv/arm/ti/am335x/am335x_lcd.c ============================================================================== --- projects/powernv/arm/ti/am335x/am335x_lcd.c Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/arm/ti/am335x/am335x_lcd.c Tue Nov 17 16:16:18 2015 (r290991) @@ -800,7 +800,7 @@ done: } static void -am335x_lcd_hdmi_event(void *arg) +am335x_lcd_hdmi_event(void *arg, device_t hdmi, int event) { struct am335x_lcd_softc *sc; const struct videomode *videomode; @@ -1001,7 +1001,7 @@ am335x_lcd_attach(device_t dev) am335x_lcd_configure(sc); else sc->sc_hdmi_evh = EVENTHANDLER_REGISTER(hdmi_event, - am335x_lcd_hdmi_event, sc, 0); + am335x_lcd_hdmi_event, sc, EVENTHANDLER_PRI_ANY); return (0); } Modified: projects/powernv/arm/ti/am335x/tda19988.c ============================================================================== --- projects/powernv/arm/ti/am335x/tda19988.c Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/arm/ti/am335x/tda19988.c Tue Nov 17 16:16:18 2015 (r290991) @@ -635,7 +635,7 @@ tda19988_read_edid(struct tda19988_softc } } - EVENTHANDLER_INVOKE(hdmi_event, 0); + EVENTHANDLER_INVOKE(hdmi_event, sc->sc_dev, HDMI_EVENT_CONNECTED); done: if (sc->sc_version == TDA19988) tda19988_reg_set(sc, TDA_TX4, TX4_PD_RAM); Modified: projects/powernv/conf/kern.pre.mk ============================================================================== --- projects/powernv/conf/kern.pre.mk Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/conf/kern.pre.mk Tue Nov 17 16:16:18 2015 (r290991) @@ -157,15 +157,15 @@ DTRACE_CFLAGS+= -I$S/cddl/contrib/openso .endif DTRACE_CFLAGS+= -I$S/cddl/contrib/opensolaris/common/util -I$S -DDIS_MEM -DSMP DTRACE_ASM_CFLAGS= -x assembler-with-cpp -DLOCORE ${DTRACE_CFLAGS} -DTRACE_C= ${CC} -c ${DTRACE_CFLAGS} ${CDDL_CFLAGS} ${WERROR} ${PROF} ${.IMPSRC} -DTRACE_S= ${CC} -c ${DTRACE_ASM_CFLAGS} ${CDDL_CFLAGS} ${WERROR} ${.IMPSRC} +DTRACE_C= ${CC} -c ${DTRACE_CFLAGS} ${WERROR} ${PROF} ${.IMPSRC} +DTRACE_S= ${CC} -c ${DTRACE_ASM_CFLAGS} ${WERROR} ${.IMPSRC} # Special flags for managing the compat compiles for DTrace/FBT FBT_CFLAGS= -DBUILDING_DTRACE -nostdinc -I$S/cddl/dev/fbt/${MACHINE_CPUARCH} -I$S/cddl/dev/fbt -I$S/cddl/compat/opensolaris -I$S/cddl/contrib/opensolaris/uts/common -I$S ${CDDL_CFLAGS} .if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386" FBT_CFLAGS+= -I$S/cddl/dev/fbt/x86 .endif -FBT_C= ${CC} -c ${FBT_CFLAGS} ${CDDL_CFLAGS} ${WERROR} ${PROF} ${.IMPSRC} +FBT_C= ${CC} -c ${FBT_CFLAGS} ${WERROR} ${PROF} ${.IMPSRC} .if ${MK_CTF} != "no" NORMAL_CTFCONVERT= ${CTFCONVERT} ${CTFFLAGS} ${.TARGET} Modified: projects/powernv/dev/ata/chipsets/ata-intel.c ============================================================================== --- projects/powernv/dev/ata/chipsets/ata-intel.c Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/dev/ata/chipsets/ata-intel.c Tue Nov 17 16:16:18 2015 (r290991) @@ -422,7 +422,7 @@ ata_intel_reset(device_t dev) mask |= (1 << smap[1]); pci_write_config(parent, 0x92, pci_read_config(parent, 0x92, 2) & ~mask, 2); - DELAY(10); + DELAY(100); pci_write_config(parent, 0x92, pci_read_config(parent, 0x92, 2) | mask, 2); Modified: projects/powernv/dev/hwpmc/hwpmc_mod.c ============================================================================== --- projects/powernv/dev/hwpmc/hwpmc_mod.c Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/dev/hwpmc/hwpmc_mod.c Tue Nov 17 16:16:18 2015 (r290991) @@ -1282,8 +1282,16 @@ pmc_process_csw_in(struct thread *td) */ if (PMC_TO_MODE(pm) == PMC_MODE_TS) { mtx_pool_lock_spin(pmc_mtxpool, pm); + + /* + * Use the saved value calculated after the most recent + * thread switch out to start this counter. Reset + * the saved count in case another thread from this + * process switches in before any threads switch out. + */ newvalue = PMC_PCPU_SAVED(cpu,ri) = pp->pp_pmcs[ri].pp_pmcval; + pp->pp_pmcs[ri].pp_pmcval = pm->pm_sc.pm_reloadcount; mtx_pool_unlock_spin(pmc_mtxpool, pm); } else { KASSERT(PMC_TO_MODE(pm) == PMC_MODE_TC, @@ -1431,31 +1439,43 @@ pmc_process_csw_out(struct thread *td) pcd->pcd_read_pmc(cpu, adjri, &newvalue); - tmp = newvalue - PMC_PCPU_SAVED(cpu,ri); - - PMCDBG3(CSW,SWO,1,"cpu=%d ri=%d tmp=%jd", cpu, ri, - tmp); - if (mode == PMC_MODE_TS) { + PMCDBG3(CSW,SWO,1,"cpu=%d ri=%d tmp=%jd (samp)", + cpu, ri, PMC_PCPU_SAVED(cpu,ri) - newvalue); /* * For sampling process-virtual PMCs, - * we expect the count to be - * decreasing as the 'value' - * programmed into the PMC is the - * number of events to be seen till - * the next sampling interrupt. + * newvalue is the number of events to be seen + * until the next sampling interrupt. + * We can just add the events left from this + * invocation to the counter, then adjust + * in case we overflow our range. + * + * (Recall that we reload the counter every + * time we use it.) */ - if (tmp < 0) - tmp += pm->pm_sc.pm_reloadcount; mtx_pool_lock_spin(pmc_mtxpool, pm); - pp->pp_pmcs[ri].pp_pmcval -= tmp; - if ((int64_t) pp->pp_pmcs[ri].pp_pmcval <= 0) - pp->pp_pmcs[ri].pp_pmcval += + + pp->pp_pmcs[ri].pp_pmcval += newvalue; + if (pp->pp_pmcs[ri].pp_pmcval > + pm->pm_sc.pm_reloadcount) + pp->pp_pmcs[ri].pp_pmcval -= pm->pm_sc.pm_reloadcount; + KASSERT(pp->pp_pmcs[ri].pp_pmcval > 0 && + pp->pp_pmcs[ri].pp_pmcval <= + pm->pm_sc.pm_reloadcount, + ("[pmc,%d] pp_pmcval outside of expected " + "range cpu=%d ri=%d pp_pmcval=%jx " + "pm_reloadcount=%jx", __LINE__, cpu, ri, + pp->pp_pmcs[ri].pp_pmcval, + pm->pm_sc.pm_reloadcount)); mtx_pool_unlock_spin(pmc_mtxpool, pm); } else { + tmp = newvalue - PMC_PCPU_SAVED(cpu,ri); + + PMCDBG3(CSW,SWO,1,"cpu=%d ri=%d tmp=%jd (count)", + cpu, ri, tmp); /* * For counting process-virtual PMCs, Modified: projects/powernv/dev/isp/isp.c ============================================================================== --- projects/powernv/dev/isp/isp.c Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/dev/isp/isp.c Tue Nov 17 16:16:18 2015 (r290991) @@ -2187,7 +2187,7 @@ isp_fibre_init_2400(ispsoftc_t *isp) size_t amt = 0; uint8_t *off; - vpinfo.vp_global_options = 0; + vpinfo.vp_global_options = ICB2400_VPGOPT_GEN_RIDA; if (ISP_CAP_VP0(isp)) { vpinfo.vp_global_options |= ICB2400_VPGOPT_VP0_DECOUPLE; vpinfo.vp_count = isp->isp_nchan; @@ -2207,7 +2207,8 @@ isp_fibre_init_2400(ispsoftc_t *isp) ISP_MEMZERO(&pi, sizeof (pi)); fcp2 = FCPARAM(isp, chan); if (fcp2->role != ISP_ROLE_NONE) { - pi.vp_port_options = ICB2400_VPOPT_ENABLED; + pi.vp_port_options = ICB2400_VPOPT_ENABLED | + ICB2400_VPOPT_ENA_SNSLOGIN; if (fcp2->role & ISP_ROLE_INITIATOR) pi.vp_port_options |= ICB2400_VPOPT_INI_ENABLE; if ((fcp2->role & ISP_ROLE_TARGET) == 0) @@ -2914,16 +2915,7 @@ isp_fclink_test(ispsoftc_t *isp, int cha } else { fcp->isp_fabric_params = 0; } - if (chan) { - fcp->isp_sns_hdl = NPH_RESERVED - chan; - r = isp_plogx(isp, chan, fcp->isp_sns_hdl, SNS_PORT_ID, PLOGX_FLG_CMD_PLOGI | PLOGX_FLG_COND_PLOGI | PLOGX_FLG_SKIP_PRLI, 0); - if (r) { - isp_prt(isp, ISP_LOGWARN, "%s: Chan %d cannot log into SNS", __func__, chan); - return (-1); - } - } else { - fcp->isp_sns_hdl = NPH_SNS_ID; - } + fcp->isp_sns_hdl = NPH_SNS_ID; r = isp_register_fc4_type_24xx(isp, chan); } else { fcp->isp_sns_hdl = SNS_ID; @@ -3167,7 +3159,7 @@ fail: * Don't scan "special" ids. */ if (ISP_CAP_2KLOGIN(isp)) { - if (handle >= NPH_RESERVED - isp->isp_nchan) + if (handle >= NPH_RESERVED) continue; } else { if (handle >= FL_ID && handle <= SNS_ID) @@ -4276,7 +4268,7 @@ isp_next_handle(ispsoftc_t *isp, uint16_ handle = *ohp; if (ISP_CAP_2KLOGIN(isp)) { minh = 0; - maxh = NPH_RESERVED - isp->isp_nchan; /* Reserve for SNS */ + maxh = NPH_RESERVED - 1; } else { minh = SNS_ID + 1; maxh = NPH_MAX - 1; @@ -6192,6 +6184,9 @@ isp_parse_async_fc(ispsoftc_t *isp, uint static int isp_handle_other_response(ispsoftc_t *isp, int type, isphdr_t *hp, uint32_t *optrp) { + isp_ridacq_t rid; + int chan, c; + switch (type) { case RQSTYPE_STATUS_CONT: isp_prt(isp, ISP_LOG_WARN1, "Ignored Continuation Response"); @@ -6199,6 +6194,23 @@ isp_handle_other_response(ispsoftc_t *is case RQSTYPE_MARKER: isp_prt(isp, ISP_LOG_WARN1, "Marker Response"); return (1); + case RQSTYPE_RPT_ID_ACQ: + isp_get_ridacq(isp, (isp_ridacq_t *)hp, &rid); + if (rid.ridacq_format == 0) { + for (chan = 0; chan < isp->isp_nchan; chan++) { + fcparam *fcp = FCPARAM(isp, chan); + if (fcp->role == ISP_ROLE_NONE) + continue; + c = (chan == 0) ? 127 : (chan - 1); + if (rid.ridacq_map[c / 16] & (1 << (c % 16))) + isp_async(isp, ISPASYNC_CHANGE_NOTIFY, + chan, ISPASYNC_CHANGE_OTHER); + } + } else { + isp_async(isp, ISPASYNC_CHANGE_NOTIFY, + rid.ridacq_vp_index, ISPASYNC_CHANGE_OTHER); + } + return (1); case RQSTYPE_ATIO: case RQSTYPE_CTIO: case RQSTYPE_ENABLE_LUN: @@ -6219,15 +6231,6 @@ isp_handle_other_response(ispsoftc_t *is } #endif /* FALLTHROUGH */ - case RQSTYPE_RPT_ID_ACQ: - if (IS_24XX(isp)) { - isp_ridacq_t rid; - isp_get_ridacq(isp, (isp_ridacq_t *)hp, &rid); - if (rid.ridacq_format == 0) { - } - return (1); - } - /* FALLTHROUGH */ case RQSTYPE_REQUEST: default: ISP_DELAY(100); Modified: projects/powernv/dev/isp/isp_freebsd.c ============================================================================== --- projects/powernv/dev/isp/isp_freebsd.c Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/dev/isp/isp_freebsd.c Tue Nov 17 16:16:18 2015 (r290991) @@ -4249,16 +4249,9 @@ isp_action(struct cam_sim *sim, union cc break; #endif case XPT_RESET_DEV: /* BDR the specified SCSI device */ - { - struct isp_fc *fc; - bus = cam_sim_bus(xpt_path_sim(ccb->ccb_h.path)); tgt = ccb->ccb_h.target_id; tgt |= (bus << 16); - if (IS_FC(isp)) - fc = ISP_FC_PC(isp, bus); - else - fc = NULL; error = isp_control(isp, ISPCTL_RESET_DEV, bus, tgt); if (error) { @@ -4269,14 +4262,13 @@ isp_action(struct cam_sim *sim, union cc * Reference Number, because the target will expect * that we re-start the CRN at 1 after a reset. */ - if (fc != NULL) - isp_fcp_reset_crn(fc, tgt, /*tgt_set*/ 1); + if (IS_FC(isp)) + isp_fcp_reset_crn(isp, bus, tgt, /*tgt_set*/ 1); ccb->ccb_h.status = CAM_REQ_CMP; } xpt_done(ccb); break; - } case XPT_ABORT: /* Abort the specified CCB */ { union ccb *accb = ccb->cab.abort_ccb; @@ -4854,7 +4846,7 @@ isp_async(ispsoftc_t *isp, ispasync_t cm isp_prt(isp, ISP_LOG_SANCFG|ISP_LOGDEBUG0, "Starting Loop Down Timer @ %lu", (unsigned long) time_uptime); } } - isp_fcp_reset_crn(fc, /*tgt*/0, /*tgt_set*/ 0); + isp_fcp_reset_crn(isp, bus, /*tgt*/0, /*tgt_set*/ 0); isp_prt(isp, ISP_LOGINFO, "Chan %d: %s", bus, msg); break; @@ -4887,7 +4879,7 @@ isp_async(ispsoftc_t *isp, ispasync_t cm if ((FCPARAM(isp, bus)->role & ISP_ROLE_INITIATOR) && (lp->prli_word3 & PRLI_WD3_TARGET_FUNCTION)) { lp->is_target = 1; - isp_fcp_reset_crn(fc, tgt, /*tgt_set*/ 1); + isp_fcp_reset_crn(isp, bus, tgt, /*tgt_set*/ 1); isp_make_here(isp, lp, bus, tgt); } if ((FCPARAM(isp, bus)->role & ISP_ROLE_TARGET) && @@ -4917,11 +4909,11 @@ changed: (lp->new_prli_word3 & PRLI_WD3_TARGET_FUNCTION))) { lp->is_target = !lp->is_target; if (lp->is_target) { - isp_fcp_reset_crn(fc, tgt, /*tgt_set*/ 1); + isp_fcp_reset_crn(isp, bus, tgt, /*tgt_set*/ 1); isp_make_here(isp, lp, bus, tgt); } else { isp_make_gone(isp, lp, bus, tgt); - isp_fcp_reset_crn(fc, tgt, /*tgt_set*/ 1); + isp_fcp_reset_crn(isp, bus, tgt, /*tgt_set*/ 1); } } if (lp->is_initiator != @@ -5490,23 +5482,23 @@ isp_common_dmateardown(ispsoftc_t *isp, * (needed for events like a LIP). */ void -isp_fcp_reset_crn(struct isp_fc *fc, uint32_t tgt, int tgt_set) +isp_fcp_reset_crn(ispsoftc_t *isp, int chan, uint32_t tgt, int tgt_set) { - int i; + struct isp_fc *fc = ISP_FC_PC(isp, chan); struct isp_nexus *nxp; + int i; if (tgt_set == 0) - isp_prt(fc->isp, ISP_LOG_SANCFG, "resetting CRN on all targets"); + isp_prt(isp, ISP_LOGDEBUG0, + "Chan %d resetting CRN on all targets", chan); else - isp_prt(fc->isp, ISP_LOG_SANCFG, "resetting CRN target %u", tgt); + isp_prt(isp, ISP_LOGDEBUG0, + "Chan %d resetting CRN on target %u", chan, tgt); for (i = 0; i < NEXUS_HASH_WIDTH; i++) { - nxp = fc->nexus_hash[i]; - while (nxp) { - if ((tgt_set != 0) && (tgt == nxp->tgt)) + for (nxp = fc->nexus_hash[i]; nxp != NULL; nxp = nxp->next) { + if (tgt_set == 0 || tgt == nxp->tgt) nxp->crnseed = 0; - - nxp = nxp->next; } } } @@ -5550,15 +5542,11 @@ isp_fcp_next_crn(ispsoftc_t *isp, uint8_ nxp->next = fc->nexus_hash[idx]; fc->nexus_hash[idx] = nxp; } - if (nxp) { - if (nxp->crnseed == 0) - nxp->crnseed = 1; - if (cmd) - PISP_PCMD(cmd)->crn = nxp->crnseed; - *crnp = nxp->crnseed++; - return (0); - } - return (-1); + if (nxp->crnseed == 0) + nxp->crnseed = 1; + PISP_PCMD(cmd)->crn = nxp->crnseed; + *crnp = nxp->crnseed++; + return (0); } /* Modified: projects/powernv/dev/isp/isp_freebsd.h ============================================================================== --- projects/powernv/dev/isp/isp_freebsd.h Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/dev/isp/isp_freebsd.h Tue Nov 17 16:16:18 2015 (r290991) @@ -745,7 +745,7 @@ int isp_fc_scratch_acquire(ispsoftc_t *, int isp_mstohz(int); void isp_platform_intr(void *); void isp_common_dmateardown(ispsoftc_t *, struct ccb_scsiio *, uint32_t); -void isp_fcp_reset_crn(struct isp_fc *, uint32_t, int); +void isp_fcp_reset_crn(ispsoftc_t *, int, uint32_t, int); int isp_fcp_next_crn(ispsoftc_t *, uint8_t *, XS_T *); /* Modified: projects/powernv/dev/isp/isp_library.c ============================================================================== --- projects/powernv/dev/isp/isp_library.c Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/dev/isp/isp_library.c Tue Nov 17 16:16:18 2015 (r290991) @@ -604,7 +604,8 @@ isp_fc_enable_vp(ispsoftc_t *isp, int ch vp->vp_mod_cnt = 1; vp->vp_mod_idx0 = chan; vp->vp_mod_cmd = VP_MODIFY_ENA; - vp->vp_mod_ports[0].options = ICB2400_VPOPT_ENABLED; + vp->vp_mod_ports[0].options = ICB2400_VPOPT_ENABLED | + ICB2400_VPOPT_ENA_SNSLOGIN; if (fcp->role & ISP_ROLE_INITIATOR) { vp->vp_mod_ports[0].options |= ICB2400_VPOPT_INI_ENABLE; } @@ -1733,6 +1734,10 @@ isp_get_ridacq(ispsoftc_t *isp, isp_rida int i; isp_get_hdr(isp, &src->ridacq_hdr, &dst->ridacq_hdr); ISP_IOXGET_32(isp, &src->ridacq_handle, dst->ridacq_handle); + ISP_IOXGET_8(isp, &src->ridacq_vp_acquired, dst->ridacq_vp_acquired); + ISP_IOXGET_8(isp, &src->ridacq_vp_setup, dst->ridacq_vp_setup); + ISP_IOXGET_8(isp, &src->ridacq_vp_index, dst->ridacq_vp_index); + ISP_IOXGET_8(isp, &src->ridacq_vp_status, dst->ridacq_vp_status); ISP_IOXGET_16(isp, &src->ridacq_vp_port_lo, dst->ridacq_vp_port_lo); ISP_IOXGET_8(isp, &src->ridacq_vp_port_hi, dst->ridacq_vp_port_hi); ISP_IOXGET_8(isp, &src->ridacq_format, dst->ridacq_format); @@ -1742,17 +1747,6 @@ isp_get_ridacq(ispsoftc_t *isp, isp_rida for (i = 0; i < sizeof (src->ridacq_reserved1) / sizeof (src->ridacq_reserved1[0]); i++) { ISP_IOXGET_16(isp, &src->ridacq_reserved1[i], dst->ridacq_reserved1[i]); } - if (dst->ridacq_format == 0) { - ISP_IOXGET_8(isp, &src->un.type0.ridacq_vp_acquired, dst->un.type0.ridacq_vp_acquired); - ISP_IOXGET_8(isp, &src->un.type0.ridacq_vp_setup, dst->un.type0.ridacq_vp_setup); - ISP_IOXGET_16(isp, &src->un.type0.ridacq_reserved0, dst->un.type0.ridacq_reserved0); - } else if (dst->ridacq_format == 1) { - ISP_IOXGET_16(isp, &src->un.type1.ridacq_vp_count, dst->un.type1.ridacq_vp_count); - ISP_IOXGET_8(isp, &src->un.type1.ridacq_vp_index, dst->un.type1.ridacq_vp_index); - ISP_IOXGET_8(isp, &src->un.type1.ridacq_vp_status, dst->un.type1.ridacq_vp_status); - } else { - ISP_MEMZERO(&dst->un, sizeof (dst->un)); - } } Modified: projects/powernv/dev/isp/ispmbox.h ============================================================================== --- projects/powernv/dev/isp/ispmbox.h Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/dev/isp/ispmbox.h Tue Nov 17 16:16:18 2015 (r290991) @@ -1485,18 +1485,10 @@ typedef struct { typedef struct { isphdr_t ridacq_hdr; uint32_t ridacq_handle; - union { - struct { - uint8_t ridacq_vp_acquired; - uint8_t ridacq_vp_setup; - uint16_t ridacq_reserved0; - } type0; /* type 0 */ - struct { - uint16_t ridacq_vp_count; - uint8_t ridacq_vp_index; - uint8_t ridacq_vp_status; - } type1; /* type 1 */ - } un; + uint8_t ridacq_vp_acquired; + uint8_t ridacq_vp_setup; + uint8_t ridacq_vp_index; + uint8_t ridacq_vp_status; uint16_t ridacq_vp_port_lo; uint8_t ridacq_vp_port_hi; uint8_t ridacq_format; /* 0 or 1 */ @@ -1506,8 +1498,11 @@ typedef struct { #define RIDACQ_STS_COMPLETE 0 #define RIDACQ_STS_UNACQUIRED 1 -#define RIDACQ_STS_CHANGED 20 - +#define RIDACQ_STS_CHANGED 2 +#define RIDACQ_STS_SNS_TIMEOUT 3 +#define RIDACQ_STS_SNS_REJECTED 4 +#define RIDACQ_STS_SCR_TIMEOUT 5 +#define RIDACQ_STS_SCR_REJECTED 6 /* * Simple Name Server Data Structures Modified: projects/powernv/dev/re/if_re.c ============================================================================== --- projects/powernv/dev/re/if_re.c Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/dev/re/if_re.c Tue Nov 17 16:16:18 2015 (r290991) @@ -1696,13 +1696,13 @@ re_attach(device_t dev) #ifdef DEV_NETMAP re_netmap_attach(sc); #endif /* DEV_NETMAP */ + #ifdef RE_DIAG /* * Perform hardware diagnostic on the original RTL8169. * Some 32-bit cards were incorrectly wired and would * malfunction if plugged into a 64-bit slot. */ - if (hwrev == RL_HWREV_8169) { error = re_diag(sc); if (error) { @@ -2939,6 +2939,7 @@ re_start_locked(struct ifnet *ifp) return; } #endif /* DEV_NETMAP */ + if ((ifp->if_drv_flags & (IFF_DRV_RUNNING | IFF_DRV_OACTIVE)) != IFF_DRV_RUNNING || (sc->rl_flags & RL_FLAG_LINK) == 0) return; @@ -3851,6 +3852,11 @@ re_setwol(struct rl_softc *sc) CSR_READ_1(sc, RL_GPIO) & ~0x01); } if ((ifp->if_capenable & IFCAP_WOL) != 0) { + if ((sc->rl_flags & RL_FLAG_8168G_PLUS) != 0) { + /* Disable RXDV gate. */ + CSR_WRITE_4(sc, RL_MISC, CSR_READ_4(sc, RL_MISC) & + ~0x00080000); + } re_set_rxmode(sc); if ((sc->rl_flags & RL_FLAG_WOL_MANLINK) != 0) re_set_linkspeed(sc); Modified: projects/powernv/dev/vmware/vmxnet3/if_vmx.c ============================================================================== --- projects/powernv/dev/vmware/vmxnet3/if_vmx.c Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/dev/vmware/vmxnet3/if_vmx.c Tue Nov 17 16:16:18 2015 (r290991) @@ -510,6 +510,13 @@ vmxnet3_check_version(struct vmxnet3_sof return (0); } +static int +trunc_powerof2(int val) +{ + + return (1U << (fls(val) - 1)); +} + static void vmxnet3_initial_config(struct vmxnet3_softc *sc) { @@ -520,14 +527,14 @@ vmxnet3_initial_config(struct vmxnet3_so nqueue = VMXNET3_DEF_TX_QUEUES; if (nqueue > mp_ncpus) nqueue = mp_ncpus; - sc->vmx_max_ntxqueues = nqueue; + sc->vmx_max_ntxqueues = trunc_powerof2(nqueue); nqueue = vmxnet3_tunable_int(sc, "rxnqueue", vmxnet3_default_rxnqueue); if (nqueue > VMXNET3_MAX_RX_QUEUES || nqueue < 1) nqueue = VMXNET3_DEF_RX_QUEUES; if (nqueue > mp_ncpus) nqueue = mp_ncpus; - sc->vmx_max_nrxqueues = nqueue; + sc->vmx_max_nrxqueues = trunc_powerof2(nqueue); if (vmxnet3_tunable_int(sc, "mq_disable", vmxnet3_mq_disable)) { sc->vmx_max_nrxqueues = 1; Modified: projects/powernv/dev/wpi/if_wpi.c ============================================================================== --- projects/powernv/dev/wpi/if_wpi.c Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/dev/wpi/if_wpi.c Tue Nov 17 16:16:18 2015 (r290991) @@ -3791,8 +3791,8 @@ wpi_set_pslevel(struct wpi_softc *sc, ui if (level != 0) /* not CAM */ cmd.flags |= htole16(WPI_PS_ALLOW_SLEEP); /* Retrieve PCIe Active State Power Management (ASPM). */ - reg = pci_read_config(sc->sc_dev, sc->sc_cap_off + 0x10, 1); - if (!(reg & 0x1)) /* L0s Entry disabled. */ + reg = pci_read_config(sc->sc_dev, sc->sc_cap_off + PCIER_LINK_CTL, 1); + if (!(reg & PCIEM_LINK_CTL_ASPMC_L0S)) /* L0s Entry disabled. */ cmd.flags |= htole16(WPI_PS_PCI_PMGT); cmd.rxtimeout = htole32(pmgt->rxtimeout * IEEE80211_DUR_TU); @@ -5126,9 +5126,9 @@ wpi_apm_init(struct wpi_softc *sc) WPI_SETBITS(sc, WPI_DBG_HPET_MEM, 0xffff0000); /* Retrieve PCIe Active State Power Management (ASPM). */ - reg = pci_read_config(sc->sc_dev, sc->sc_cap_off + 0x10, 1); + reg = pci_read_config(sc->sc_dev, sc->sc_cap_off + PCIER_LINK_CTL, 1); /* Workaround for HW instability in PCIe L0->L0s->L1 transition. */ - if (reg & 0x02) /* L1 Entry enabled. */ + if (reg & PCIEM_LINK_CTL_ASPMC_L1) /* L1 Entry enabled. */ WPI_SETBITS(sc, WPI_GIO, WPI_GIO_L0S_ENA); else WPI_CLRBITS(sc, WPI_GIO, WPI_GIO_L0S_ENA); Modified: projects/powernv/fs/nfsclient/nfs_clvfsops.c ============================================================================== --- projects/powernv/fs/nfsclient/nfs_clvfsops.c Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/fs/nfsclient/nfs_clvfsops.c Tue Nov 17 16:16:18 2015 (r290991) @@ -216,10 +216,12 @@ newnfs_iosize(struct nfsmount *nmp) * Calculate the size used for io buffers. Use the larger * of the two sizes to minimise nfs requests but make sure * that it is at least one VM page to avoid wasting buffer - * space. + * space. It must also be at least NFS_DIRBLKSIZ, since + * that is the buffer size used for directories. */ iosize = imax(nmp->nm_rsize, nmp->nm_wsize); iosize = imax(iosize, PAGE_SIZE); + iosize = imax(iosize, NFS_DIRBLKSIZ); nmp->nm_mountp->mnt_stat.f_iosize = iosize; return (iosize); } Modified: projects/powernv/kern/kern_dump.c ============================================================================== --- projects/powernv/kern/kern_dump.c Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/kern/kern_dump.c Tue Nov 17 16:16:18 2015 (r290991) @@ -66,10 +66,10 @@ static size_t fragsz; struct dump_pa dump_map[DUMPSYS_MD_PA_NPAIRS]; +#if !defined(__powerpc__) && !defined(__sparc__) void dumpsys_gen_pa_init(void) { -#if !defined(__sparc__) && !defined(__powerpc__) int n, idx; bzero(dump_map, sizeof(dump_map)); @@ -80,8 +80,8 @@ dumpsys_gen_pa_init(void) dump_map[n].pa_start = dump_avail[idx]; dump_map[n].pa_size = dump_avail[idx + 1] - dump_avail[idx]; } -#endif } +#endif struct dump_pa * dumpsys_gen_pa_next(struct dump_pa *mdp) @@ -99,20 +99,24 @@ dumpsys_gen_pa_next(struct dump_pa *mdp) void dumpsys_gen_wbinv_all(void) { + } void dumpsys_gen_unmap_chunk(vm_paddr_t pa __unused, size_t chunk __unused, void *va __unused) { + } +#if !defined(__sparc__) int dumpsys_gen_write_aux_headers(struct dumperinfo *di) { return (0); } +#endif int dumpsys_buf_write(struct dumperinfo *di, char *ptr, size_t sz) @@ -233,6 +237,7 @@ dumpsys_foreach_chunk(dumpsys_callback_t return (seqnr); } +#if !defined(__sparc__) static off_t fileofs; static int @@ -391,3 +396,4 @@ dumpsys_generic(struct dumperinfo *di) printf("\n** DUMP FAILED (ERROR %d) **\n", error); return (error); } +#endif Modified: projects/powernv/kern/kern_jail.c ============================================================================== --- projects/powernv/kern/kern_jail.c Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/kern/kern_jail.c Tue Nov 17 16:16:18 2015 (r290991) @@ -4480,15 +4480,20 @@ SYSCTL_JAIL_PARAM(_allow_mount, zfs, CTL #ifdef RACCT void prison_racct_foreach(void (*callback)(struct racct *racct, - void *arg2, void *arg3), void *arg2, void *arg3) + void *arg2, void *arg3), void (*pre)(void), void (*post)(void), + void *arg2, void *arg3) { struct prison_racct *prr; ASSERT_RACCT_ENABLED(); sx_slock(&allprison_lock); + if (pre != NULL) + (pre)(); LIST_FOREACH(prr, &allprison_racct, prr_next) (callback)(prr->prr_racct, arg2, arg3); + if (post != NULL) + (post)(); sx_sunlock(&allprison_lock); } Modified: projects/powernv/kern/kern_loginclass.c ============================================================================== --- projects/powernv/kern/kern_loginclass.c Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/kern/kern_loginclass.c Tue Nov 17 16:16:18 2015 (r290991) @@ -234,12 +234,17 @@ sys_setloginclass(struct thread *td, str void loginclass_racct_foreach(void (*callback)(struct racct *racct, - void *arg2, void *arg3), void *arg2, void *arg3) + void *arg2, void *arg3), void (*pre)(void), void (*post)(void), + void *arg2, void *arg3) { struct loginclass *lc; rw_rlock(&loginclasses_lock); + if (pre != NULL) + (pre)(); LIST_FOREACH(lc, &loginclasses, lc_next) (callback)(lc->lc_racct, arg2, arg3); + if (post != NULL) + (post)(); rw_runlock(&loginclasses_lock); } Modified: projects/powernv/kern/kern_racct.c ============================================================================== --- projects/powernv/kern/kern_racct.c Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/kern/kern_racct.c Tue Nov 17 16:16:18 2015 (r290991) @@ -1156,6 +1156,7 @@ racct_decay_resource(struct racct *racct int64_t r_old, r_new; ASSERT_RACCT_ENABLED(); + mtx_assert(&racct_lock, MA_OWNED); resource = *(int *)res; r_old = racct->r_resources[resource]; @@ -1164,9 +1165,21 @@ racct_decay_resource(struct racct *racct if (r_old <= 0) return; - mtx_lock(&racct_lock); r_new = r_old * RACCT_DECAY_FACTOR / FSCALE; racct->r_resources[resource] = r_new; +} + +static void +racct_decay_pre(void) +{ + + mtx_lock(&racct_lock); +} + +static void +racct_decay_post(void) +{ + mtx_unlock(&racct_lock); } @@ -1176,9 +1189,12 @@ racct_decay(int resource) ASSERT_RACCT_ENABLED(); - ui_racct_foreach(racct_decay_resource, &resource, NULL); - loginclass_racct_foreach(racct_decay_resource, &resource, NULL); - prison_racct_foreach(racct_decay_resource, &resource, NULL); + ui_racct_foreach(racct_decay_resource, racct_decay_pre, + racct_decay_post, &resource, NULL); + loginclass_racct_foreach(racct_decay_resource, racct_decay_pre, + racct_decay_post, &resource, NULL); + prison_racct_foreach(racct_decay_resource, racct_decay_pre, + racct_decay_post, &resource, NULL); } static void Modified: projects/powernv/kern/kern_rctl.c ============================================================================== --- projects/powernv/kern/kern_rctl.c Tue Nov 17 16:09:26 2015 (r290990) +++ projects/powernv/kern/kern_rctl.c Tue Nov 17 16:16:18 2015 (r290991) @@ -1150,16 +1150,29 @@ rctl_rule_add(struct rctl_rule *rule) } static void +rctl_rule_pre_callback(void) +{ + + rw_wlock(&rctl_lock); +} + +static void +rctl_rule_post_callback(void) +{ + + rw_wunlock(&rctl_lock); +} + +static void rctl_rule_remove_callback(struct racct *racct, void *arg2, void *arg3) { struct rctl_rule *filter = (struct rctl_rule *)arg2; int found = 0; ASSERT_RACCT_ENABLED(); + rw_assert(&rctl_lock, RA_WLOCKED); - rw_wlock(&rctl_lock); found += rctl_racct_remove_rules(racct, filter); - rw_wunlock(&rctl_lock); *((int *)arg3) += found; } @@ -1186,12 +1199,15 @@ rctl_rule_remove(struct rctl_rule *filte return (ESRCH); } - loginclass_racct_foreach(rctl_rule_remove_callback, filter, - (void *)&found); - ui_racct_foreach(rctl_rule_remove_callback, filter, - (void *)&found); - prison_racct_foreach(rctl_rule_remove_callback, filter, - (void *)&found); + loginclass_racct_foreach(rctl_rule_remove_callback, + rctl_rule_pre_callback, rctl_rule_post_callback, + filter, (void *)&found); + ui_racct_foreach(rctl_rule_remove_callback, + rctl_rule_pre_callback, rctl_rule_post_callback, + filter, (void *)&found); + prison_racct_foreach(rctl_rule_remove_callback, + rctl_rule_pre_callback, rctl_rule_post_callback, + filter, (void *)&found); sx_assert(&allproc_lock, SA_LOCKED); rw_wlock(&rctl_lock); @@ -1425,15 +1441,14 @@ rctl_get_rules_callback(struct racct *ra struct sbuf *sb = (struct sbuf *)arg3; ASSERT_RACCT_ENABLED(); + rw_assert(&rctl_lock, RA_LOCKED); - rw_rlock(&rctl_lock); LIST_FOREACH(link, &racct->r_rule_links, rrl_next) { if (!rctl_rule_matches(link->rrl_rule, filter)) continue; rctl_rule_to_sbuf(sb, link->rrl_rule); sbuf_printf(sb, ","); } - rw_runlock(&rctl_lock); } int @@ -1494,9 +1509,15 @@ sys_rctl_get_rules(struct thread *td, st rw_runlock(&rctl_lock); } - loginclass_racct_foreach(rctl_get_rules_callback, filter, sb); - ui_racct_foreach(rctl_get_rules_callback, filter, sb); - prison_racct_foreach(rctl_get_rules_callback, filter, sb); + loginclass_racct_foreach(rctl_get_rules_callback, + rctl_rule_pre_callback, rctl_rule_post_callback, + filter, sb); + ui_racct_foreach(rctl_get_rules_callback, + rctl_rule_pre_callback, rctl_rule_post_callback, + filter, sb); + prison_racct_foreach(rctl_get_rules_callback, + rctl_rule_pre_callback, rctl_rule_post_callback, *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@freebsd.org Tue Nov 17 16:18:46 2015 Return-Path: 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 49C8DA31425 for ; Tue, 17 Nov 2015 16:18:46 +0000 (UTC) (envelope-from nwhitehorn@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 09DD618F7; Tue, 17 Nov 2015 16:18:45 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAHGIjWa073942; Tue, 17 Nov 2015 16:18:45 GMT (envelope-from nwhitehorn@FreeBSD.org) Received: (from nwhitehorn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAHGIjPS073940; Tue, 17 Nov 2015 16:18:45 GMT (envelope-from nwhitehorn@FreeBSD.org) Message-Id: <201511171618.tAHGIjPS073940@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nwhitehorn set sender to nwhitehorn@FreeBSD.org using -f From: Nathan Whitehorn Date: Tue, 17 Nov 2015 16:18:45 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r290992 - projects/powernv/powerpc/powernv X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Nov 2015 16:18:46 -0000 Author: nwhitehorn Date: Tue Nov 17 16:18:44 2015 New Revision: 290992 URL: https://svnweb.freebsd.org/changeset/base/290992 Log: Make sure we use OF_getencprop() instead of OF_getprop() before the rot moves too far forward. We'll need endian safety on powernv at some point. Sponsored by: FreeBSD Foundation Modified: projects/powernv/powerpc/powernv/opal_console.c projects/powernv/powerpc/powernv/platform_powernv.c Modified: projects/powernv/powerpc/powernv/opal_console.c ============================================================================== --- projects/powernv/powerpc/powernv/opal_console.c Tue Nov 17 16:16:18 2015 (r290991) +++ projects/powernv/powerpc/powernv/opal_console.c Tue Nov 17 16:18:44 2015 (r290992) @@ -186,7 +186,7 @@ uart_opal_probe_node(struct uart_opal_so return (ENXIO); reg = -1; - OF_getprop(node, "reg", ®, sizeof(reg)); + OF_getencprop(node, "reg", ®, sizeof(reg)); if (reg == -1) return (ENXIO); sc->vtermid = reg; Modified: projects/powernv/powerpc/powernv/platform_powernv.c ============================================================================== --- projects/powernv/powerpc/powernv/platform_powernv.c Tue Nov 17 16:16:18 2015 (r290991) +++ projects/powernv/powerpc/powernv/platform_powernv.c Tue Nov 17 16:18:44 2015 (r290992) @@ -140,7 +140,7 @@ powernv_timebase_freq(platform_t plat, s phandle = cpuref->cr_hwref; - OF_getprop(phandle, "timebase-frequency", &ticks, sizeof(ticks)); + OF_getencprop(phandle, "timebase-frequency", &ticks, sizeof(ticks)); if (ticks <= 0) panic("Unable to determine timebase frequency!"); @@ -186,10 +186,10 @@ powernv_smp_first_cpu(platform_t plat, s return (ENOENT); cpuref->cr_hwref = cpu; - res = OF_getprop(cpu, "ibm,ppc-interrupt-server#s", &cpuid, + res = OF_getencprop(cpu, "ibm,ppc-interrupt-server#s", &cpuid, sizeof(cpuid)); if (res <= 0) - res = OF_getprop(cpu, "reg", &cpuid, sizeof(cpuid)); + res = OF_getencprop(cpu, "reg", &cpuid, sizeof(cpuid)); if (res <= 0) cpuid = 0; cpuref->cr_cpuid = cpuid; @@ -208,7 +208,7 @@ powernv_smp_next_cpu(platform_t plat, st res = OF_getproplen(cpuref->cr_hwref, "ibm,ppc-interrupt-server#s"); if (res > 0) { cell_t interrupt_servers[res/sizeof(cell_t)]; - OF_getprop(cpuref->cr_hwref, "ibm,ppc-interrupt-server#s", + OF_getencprop(cpuref->cr_hwref, "ibm,ppc-interrupt-server#s", interrupt_servers, res); for (i = 0; i < res/sizeof(cell_t) - 1; i++) { if (interrupt_servers[i] == cpuref->cr_cpuid) { @@ -230,10 +230,10 @@ powernv_smp_next_cpu(platform_t plat, st return (ENOENT); cpuref->cr_hwref = cpu; - res = OF_getprop(cpu, "ibm,ppc-interrupt-server#s", &cpuid, + res = OF_getencprop(cpu, "ibm,ppc-interrupt-server#s", &cpuid, sizeof(cpuid)); if (res <= 0) - res = OF_getprop(cpu, "reg", &cpuid, sizeof(cpuid)); + res = OF_getencprop(cpu, "reg", &cpuid, sizeof(cpuid)); if (res <= 0) cpuid = 0; cpuref->cr_cpuid = cpuid; From owner-svn-src-projects@freebsd.org Tue Nov 17 21:10:17 2015 Return-Path: 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 22EBDA31959 for ; Tue, 17 Nov 2015 21:10:17 +0000 (UTC) (envelope-from brd@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 DCF5A11B5; Tue, 17 Nov 2015 21:10:16 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAHLAFJN087886; Tue, 17 Nov 2015 21:10:15 GMT (envelope-from brd@FreeBSD.org) Received: (from brd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAHLAFx1087885; Tue, 17 Nov 2015 21:10:15 GMT (envelope-from brd@FreeBSD.org) Message-Id: <201511172110.tAHLAFx1087885@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brd set sender to brd@FreeBSD.org using -f From: Brad Davis Date: Tue, 17 Nov 2015 21:10:15 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r291006 - projects/release-pkg X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Nov 2015 21:10:17 -0000 Author: brd (doc,ports committer) Date: Tue Nov 17 21:10:15 2015 New Revision: 291006 URL: https://svnweb.freebsd.org/changeset/base/291006 Log: Don't match on "version" when found as a value. Approved by: bapt Modified: projects/release-pkg/Makefile.inc1 Modified: projects/release-pkg/Makefile.inc1 ============================================================================== --- projects/release-pkg/Makefile.inc1 Tue Nov 17 21:02:27 2015 (r291005) +++ projects/release-pkg/Makefile.inc1 Tue Nov 17 21:10:15 2015 (r291006) @@ -1272,8 +1272,10 @@ create-world-packages: -e "s/%PWD_MKDB_ENDIAN%/$${pwd_arg}/g" \ ${SRCDIR}/release/packages/$${pkgname}.ucl \ > ${DESTDIR}/$${pkgname}.ucl ; \ - awk -F\" '/name/ { printf("===> Creating %s-", $$2) } /version/ {print $$2 }' \ - ${DESTDIR}/$${pkgname}.ucl ; \ + awk -F\" ' \ + /^name/ { printf("===> Creating %s-", $$2); next } \ + /^version/ { print $$2; next } \ + ' ${DESTDIR}/$${pkgname}.ucl ; \ pkg -o ABI_FILE=${DESTDIR}/bin/sh \ create -M ${DESTDIR}/$${pkgname}.ucl \ -p ${DESTDIR}/$${pkgname}.plist \ From owner-svn-src-projects@freebsd.org Tue Nov 17 21:29:31 2015 Return-Path: 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 58CBDA31DDF for ; Tue, 17 Nov 2015 21:29:31 +0000 (UTC) (envelope-from brd@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 268C51BD9; Tue, 17 Nov 2015 21:29:31 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAHLTUrZ000944; Tue, 17 Nov 2015 21:29:30 GMT (envelope-from brd@FreeBSD.org) Received: (from brd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAHLTR6N000880; Tue, 17 Nov 2015 21:29:27 GMT (envelope-from brd@FreeBSD.org) Message-Id: <201511172129.tAHLTR6N000880@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brd set sender to brd@FreeBSD.org using -f From: Brad Davis Date: Tue, 17 Nov 2015 21:29:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r291007 - projects/release-pkg/release/packages X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Nov 2015 21:29:31 -0000 Author: brd (doc,ports committer) Date: Tue Nov 17 21:29:26 2015 New Revision: 291007 URL: https://svnweb.freebsd.org/changeset/base/291007 Log: - Change all the names to their generic name since none of these need to be overridden and ends up overwriting output files. - For the descriptions that just say "TODO", switch to using %DESC% so the generic description is used. Approved by: bapt Modified: projects/release-pkg/release/packages/acpi.ucl projects/release-pkg/release/packages/at.ucl projects/release-pkg/release/packages/bhyve.ucl projects/release-pkg/release/packages/binutils.ucl projects/release-pkg/release/packages/bsdinstall.ucl projects/release-pkg/release/packages/bsnmp-development.ucl projects/release-pkg/release/packages/bsnmp-lib32-development.ucl projects/release-pkg/release/packages/bsnmp-lib32-profile.ucl projects/release-pkg/release/packages/bsnmp-lib32.ucl projects/release-pkg/release/packages/bsnmp-profile.ucl projects/release-pkg/release/packages/bsnmp.ucl projects/release-pkg/release/packages/clang.ucl projects/release-pkg/release/packages/dma.ucl projects/release-pkg/release/packages/gdb.ucl projects/release-pkg/release/packages/groff.ucl projects/release-pkg/release/packages/lib32-development.ucl projects/release-pkg/release/packages/lib32-profile.ucl projects/release-pkg/release/packages/lib32.ucl projects/release-pkg/release/packages/ssh-development.ucl projects/release-pkg/release/packages/ssh-lib32-development.ucl projects/release-pkg/release/packages/ssh-lib32-profile.ucl projects/release-pkg/release/packages/ssh-lib32.ucl projects/release-pkg/release/packages/ssh-profile.ucl projects/release-pkg/release/packages/ssh.ucl projects/release-pkg/release/packages/svn.ucl projects/release-pkg/release/packages/syscons.ucl projects/release-pkg/release/packages/tests.ucl projects/release-pkg/release/packages/unbound-development.ucl projects/release-pkg/release/packages/unbound-lib32-development.ucl projects/release-pkg/release/packages/unbound-lib32-profile.ucl projects/release-pkg/release/packages/unbound-lib32.ucl projects/release-pkg/release/packages/unbound-profile.ucl projects/release-pkg/release/packages/unbound.ucl Modified: projects/release-pkg/release/packages/acpi.ucl ============================================================================== --- projects/release-pkg/release/packages/acpi.ucl Tue Nov 17 21:10:15 2015 (r291006) +++ projects/release-pkg/release/packages/acpi.ucl Tue Nov 17 21:29:26 2015 (r291007) @@ -1,4 +1,4 @@ -name = "FreeBSD-acpi" +name = "FreeBSD-%PKGNAME%" origin = "base" version = "%VERSION%" comment = "ACPI tools" @@ -9,5 +9,5 @@ prefix = "/" licenselogic = "single" licenses = [ BSD2CLAUSE ] desc = < 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 C19D3A327F6 for ; Thu, 19 Nov 2015 02:38:55 +0000 (UTC) (envelope-from nwhitehorn@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 849D01BC8; Thu, 19 Nov 2015 02:38:55 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAJ2csk3062153; Thu, 19 Nov 2015 02:38:54 GMT (envelope-from nwhitehorn@FreeBSD.org) Received: (from nwhitehorn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAJ2cscH062145; Thu, 19 Nov 2015 02:38:54 GMT (envelope-from nwhitehorn@FreeBSD.org) Message-Id: <201511190238.tAJ2cscH062145@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nwhitehorn set sender to nwhitehorn@FreeBSD.org using -f From: Nathan Whitehorn Date: Thu, 19 Nov 2015 02:38:54 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r291051 - in projects/powernv: arm/arm boot/common boot/powerpc/kboot conf dev/isp dev/ntb/if_ntb dev/ntb/ntb_hw dev/uart dev/xen/control geom kern mips/conf modules/tests/framework net... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Nov 2015 02:38:55 -0000 Author: nwhitehorn Date: Thu Nov 19 02:38:53 2015 New Revision: 291051 URL: https://svnweb.freebsd.org/changeset/base/291051 Log: Bring up to date with HEAD. Added: projects/powernv/mips/conf/AP143 - copied unchanged from r291050, head/sys/mips/conf/AP143 projects/powernv/mips/conf/AP143.hints - copied unchanged from r291050, head/sys/mips/conf/AP143.hints projects/powernv/mips/conf/ONIONOMEGA - copied unchanged from r291050, head/sys/mips/conf/ONIONOMEGA projects/powernv/mips/conf/ONIONOMEGA.hints - copied unchanged from r291050, head/sys/mips/conf/ONIONOMEGA.hints projects/powernv/mips/conf/QCA953X_BASE - copied unchanged from r291050, head/sys/mips/conf/QCA953X_BASE projects/powernv/mips/conf/QCA953X_BASE.hints - copied unchanged from r291050, head/sys/mips/conf/QCA953X_BASE.hints Modified: projects/powernv/arm/arm/busdma_machdep-v6.c projects/powernv/boot/common/loader.8 projects/powernv/boot/powerpc/kboot/Makefile projects/powernv/conf/files.powerpc projects/powernv/conf/options projects/powernv/conf/options.powerpc projects/powernv/dev/isp/isp.c projects/powernv/dev/isp/isp_freebsd.c projects/powernv/dev/isp/isp_library.c projects/powernv/dev/isp/isp_library.h projects/powernv/dev/isp/isp_stds.h projects/powernv/dev/isp/isp_target.c projects/powernv/dev/isp/ispmbox.h projects/powernv/dev/isp/ispvar.h projects/powernv/dev/ntb/if_ntb/if_ntb.c projects/powernv/dev/ntb/ntb_hw/ntb_hw.c projects/powernv/dev/ntb/ntb_hw/ntb_hw.h projects/powernv/dev/uart/uart_dev_ns8250.c projects/powernv/dev/xen/control/control.c projects/powernv/geom/geom_dev.c projects/powernv/kern/imgact_elf.c projects/powernv/mips/conf/ALFA_HORNET_UB projects/powernv/mips/conf/AP121 projects/powernv/mips/conf/AP135 projects/powernv/mips/conf/AP91 projects/powernv/mips/conf/AP93 projects/powernv/mips/conf/AP94 projects/powernv/mips/conf/AP96 projects/powernv/mips/conf/BERI_DE4_MDROOT projects/powernv/mips/conf/BERI_DE4_SDROOT projects/powernv/mips/conf/BERI_SIM_MDROOT projects/powernv/mips/conf/BERI_SIM_SDROOT projects/powernv/mips/conf/BERI_SIM_VIRTIO projects/powernv/mips/conf/CARAMBOLA2 projects/powernv/mips/conf/DB120 projects/powernv/mips/conf/DIR-655A1 projects/powernv/mips/conf/DIR-825B1 projects/powernv/mips/conf/DIR-825C1 projects/powernv/mips/conf/ENH200 projects/powernv/mips/conf/PB47 projects/powernv/mips/conf/PICOSTATION_M2HP projects/powernv/mips/conf/ROUTERSTATION projects/powernv/mips/conf/ROUTERSTATION_MFS projects/powernv/mips/conf/RSPRO projects/powernv/mips/conf/RSPRO_MFS projects/powernv/mips/conf/TL-ARCHERC7V2 projects/powernv/mips/conf/TL-WDR4300 projects/powernv/mips/conf/TL-WR1043NDv2 projects/powernv/mips/conf/TL-WR740Nv4 projects/powernv/mips/conf/TP-MR3020 projects/powernv/mips/conf/TP-WN1043ND projects/powernv/mips/conf/WZR-300HP projects/powernv/mips/conf/WZR-HPAG300H projects/powernv/modules/tests/framework/Makefile projects/powernv/netinet/in_mcast.c projects/powernv/netinet6/in6_mcast.c projects/powernv/netpfil/ipfw/ip_fw_dynamic.c projects/powernv/netsmb/smb_conn.c projects/powernv/netsmb/smb_iod.c projects/powernv/ofed/drivers/net/mlx4/cmd.c projects/powernv/powerpc/include/bus.h projects/powernv/powerpc/mpc85xx/mpc85xx.c projects/powernv/powerpc/mpc85xx/mpc85xx.h projects/powernv/x86/x86/intr_machdep.c projects/powernv/x86/xen/hvm.c projects/powernv/x86/xen/xen_intr.c Directory Properties: projects/powernv/ (props changed) projects/powernv/boot/ (props changed) projects/powernv/boot/powerpc/kboot/ (props changed) projects/powernv/conf/ (props changed) Modified: projects/powernv/arm/arm/busdma_machdep-v6.c ============================================================================== --- projects/powernv/arm/arm/busdma_machdep-v6.c Thu Nov 19 02:04:16 2015 (r291050) +++ projects/powernv/arm/arm/busdma_machdep-v6.c Thu Nov 19 02:38:53 2015 (r291051) @@ -117,8 +117,8 @@ struct bounce_page { struct sync_list { vm_offset_t vaddr; /* kva of client data */ + bus_addr_t paddr; /* physical address */ vm_page_t pages; /* starting page of client data */ - vm_offset_t dataoffs; /* page offset of client data */ bus_size_t datacount; /* client data count */ }; @@ -1076,17 +1076,19 @@ _bus_dmamap_load_phys(bus_dma_tag_t dmat sgsize); } else { if (map->sync_count > 0) - sl_end = VM_PAGE_TO_PHYS(sl->pages) + - sl->dataoffs + sl->datacount; + sl_end = sl->paddr + sl->datacount; if (map->sync_count == 0 || curaddr != sl_end) { if (++map->sync_count > dmat->nsegments) break; sl++; sl->vaddr = 0; + sl->paddr = curaddr; sl->datacount = sgsize; sl->pages = PHYS_TO_VM_PAGE(curaddr); - sl->dataoffs = curaddr & PAGE_MASK; + KASSERT(sl->pages != NULL, + ("%s: page at PA:0x%08lx is not in " + "vm_page_array", __func__, curaddr)); } else sl->datacount += sgsize; } @@ -1188,8 +1190,7 @@ _bus_dmamap_load_buffer(bus_dma_tag_t dm sgsize); } else { if (map->sync_count > 0) { - sl_pend = VM_PAGE_TO_PHYS(sl->pages) + - sl->dataoffs + sl->datacount; + sl_pend = sl->paddr + sl->datacount; sl_vend = sl->vaddr + sl->datacount; } @@ -1201,9 +1202,17 @@ _bus_dmamap_load_buffer(bus_dma_tag_t dm goto cleanup; sl++; sl->vaddr = kvaddr; + sl->paddr = curaddr; + if (kvaddr != 0) { + sl->pages = NULL; + } else { + sl->pages = PHYS_TO_VM_PAGE(curaddr); + KASSERT(sl->pages != NULL, + ("%s: page at PA:0x%08lx is not " + "in vm_page_array", __func__, + curaddr)); + } sl->datacount = sgsize; - sl->pages = PHYS_TO_VM_PAGE(curaddr); - sl->dataoffs = curaddr & PAGE_MASK; } else sl->datacount += sgsize; } @@ -1299,10 +1308,10 @@ dma_dcache_sync(struct sync_list *sl, bu vm_offset_t va, tempva; bus_size_t size; - offset = sl->dataoffs; + offset = sl->paddr & PAGE_MASK; m = sl->pages; size = sl->datacount; - pa = VM_PAGE_TO_PHYS(m) | offset; + pa = sl->paddr; for ( ; size != 0; size -= len, pa += len, offset = 0, ++m) { tempva = 0; @@ -1310,13 +1319,13 @@ dma_dcache_sync(struct sync_list *sl, bu len = min(PAGE_SIZE - offset, size); tempva = pmap_quick_enter_page(m); va = tempva | offset; + KASSERT(pa == (VM_PAGE_TO_PHYS(m) | offset), + ("unexpected vm_page_t phys: 0x%08x != 0x%08x", + VM_PAGE_TO_PHYS(m) | offset, pa)); } else { len = sl->datacount; va = sl->vaddr; } - KASSERT(pa == (VM_PAGE_TO_PHYS(m) | offset), - ("unexpected vm_page_t phys: 0x%08x != 0x%08x", - VM_PAGE_TO_PHYS(m) | offset, pa)); switch (op) { case BUS_DMASYNC_PREWRITE: Modified: projects/powernv/boot/common/loader.8 ============================================================================== --- projects/powernv/boot/common/loader.8 Thu Nov 19 02:04:16 2015 (r291050) +++ projects/powernv/boot/common/loader.8 Thu Nov 19 02:38:53 2015 (r291051) @@ -24,7 +24,7 @@ .\" .\" $FreeBSD$ .\" -.Dd July 25, 2015 +.Dd November 18, 2015 .Dt LOADER 8 .Os .Sh NAME @@ -471,6 +471,14 @@ userland output (e.g.\& from .It Va currdev Selects the default device. Syntax for devices is odd. +.It Va dumpdev +Sets the device for kernel dumps. +This can be used to ensure that a device is configured before the corresponding +.Va dumpdev +directive from +.Xr rc.conf 5 +has been processed, allowing kernel panics that happen during the early stages +of boot to be captured. .It Va init_chroot If set to a valid directory in the root file system, it causes .Xr init 8 Modified: projects/powernv/boot/powerpc/kboot/Makefile ============================================================================== --- projects/powernv/boot/powerpc/kboot/Makefile Thu Nov 19 02:04:16 2015 (r291050) +++ projects/powernv/boot/powerpc/kboot/Makefile Thu Nov 19 02:38:53 2015 (r291051) @@ -102,11 +102,6 @@ CFLAGS+= -I${.CURDIR}/../../../../lib/li DPADD= ${LIBFICL} ${LIBOFW} ${LIBFDT} ${LIBSTAND} LDADD= ${LIBFICL} ${LIBOFW} ${LIBFDT} ${LIBSTAND} -SC_DFLT_FONT=cp437 - -font.h: - uudecode < /usr/share/syscons/fonts/${SC_DFLT_FONT}-8x16.fnt && file2c 'u_char dflt_font_16[16*256] = {' '};' < ${SC_DFLT_FONT}-8x16 > font.h && uudecode < /usr/share/syscons/fonts/${SC_DFLT_FONT}-8x14.fnt && file2c 'u_char dflt_font_14[14*256] = {' '};' < ${SC_DFLT_FONT}-8x14 >> font.h && uudecode < /usr/share/syscons/fonts/${SC_DFLT_FONT}-8x8.fnt && file2c 'u_char dflt_font_8[8*256] = {' '};' < ${SC_DFLT_FONT}-8x8 >> font.h - vers.c: ${.CURDIR}/../../common/newvers.sh ${.CURDIR}/version sh ${.CURDIR}/../../common/newvers.sh ${.CURDIR}/version ${NEWVERSWHAT} Modified: projects/powernv/conf/files.powerpc ============================================================================== --- projects/powernv/conf/files.powerpc Thu Nov 19 02:04:16 2015 (r291050) +++ projects/powernv/conf/files.powerpc Thu Nov 19 02:38:53 2015 (r291051) @@ -74,7 +74,7 @@ dev/syscons/scvtb.c optional sc dev/tsec/if_tsec.c optional tsec dev/tsec/if_tsec_fdt.c optional tsec fdt dev/uart/uart_cpu_powerpc.c optional uart -dev/usb/controller/ehci_fsl.c optional ehci mpc85xx +dev/usb/controller/ehci_fsl.c optional ehci mpc85xx | ehci qoriq_dpaa dev/vt/hw/ofwfb/ofwfb.c optional vt aim kern/kern_clocksource.c standard kern/subr_dummy_vdso_tc.c standard @@ -133,15 +133,15 @@ powerpc/mikrotik/platform_rb.c optional powerpc/mpc85xx/atpic.c optional mpc85xx isa powerpc/mpc85xx/ds1553_bus_fdt.c optional ds1553 fdt powerpc/mpc85xx/ds1553_core.c optional ds1553 -powerpc/mpc85xx/fsl_sdhc.c optional mpc85xx sdhc +powerpc/mpc85xx/fsl_sdhc.c optional mpc85xx sdhc | qoriq_dpaa sdhc powerpc/mpc85xx/i2c.c optional iicbus fdt powerpc/mpc85xx/isa.c optional mpc85xx isa -powerpc/mpc85xx/lbc.c optional mpc85xx -powerpc/mpc85xx/mpc85xx.c optional mpc85xx +powerpc/mpc85xx/lbc.c optional mpc85xx | qoriq_dpaa +powerpc/mpc85xx/mpc85xx.c optional mpc85xx | qoriq_dpaa powerpc/mpc85xx/mpc85xx_gpio.c optional mpc85xx gpio -powerpc/mpc85xx/platform_mpc85xx.c optional mpc85xx -powerpc/mpc85xx/pci_mpc85xx.c optional pci mpc85xx -powerpc/mpc85xx/pci_mpc85xx_pcib.c optional pci mpc85xx +powerpc/mpc85xx/platform_mpc85xx.c optional mpc85xx | qoriq_dpaa +powerpc/mpc85xx/pci_mpc85xx.c optional pci mpc85xx | pci qoriq_dpaa +powerpc/mpc85xx/pci_mpc85xx_pcib.c optional pci mpc85xx | pci qoriq_dpaa powerpc/ofw/ofw_machdep.c standard powerpc/ofw/ofw_pci.c optional pci powerpc/ofw/ofw_pcibus.c optional pci Modified: projects/powernv/conf/options ============================================================================== --- projects/powernv/conf/options Thu Nov 19 02:04:16 2015 (r291050) +++ projects/powernv/conf/options Thu Nov 19 02:38:53 2015 (r291051) @@ -650,6 +650,7 @@ BKTR_NEW_MSP34XX_DRIVER opt_bktr.h # Options for uart(4) UART_PPS_ON_CTS opt_uart.h UART_POLL_FREQ opt_uart.h +UART_DEV_TOLERANCE_PCT opt_uart.h # options for bus/device framework BUS_DEBUG opt_bus.h Modified: projects/powernv/conf/options.powerpc ============================================================================== --- projects/powernv/conf/options.powerpc Thu Nov 19 02:04:16 2015 (r291050) +++ projects/powernv/conf/options.powerpc Thu Nov 19 02:38:53 2015 (r291051) @@ -21,6 +21,7 @@ GFB_NO_MODE_CHANGE opt_gfb.h MPC85XX opt_platform.h POWERMAC opt_platform.h PS3 opt_platform.h +QORIQ_DPAA opt_platform.h MAMBO POWERNV PSERIES Modified: projects/powernv/dev/isp/isp.c ============================================================================== --- projects/powernv/dev/isp/isp.c Thu Nov 19 02:04:16 2015 (r291050) +++ projects/powernv/dev/isp/isp.c Thu Nov 19 02:38:53 2015 (r291051) @@ -64,19 +64,13 @@ __FBSDID("$FreeBSD$"); * General defines */ #define MBOX_DELAY_COUNT 1000000 / 100 -#define ISP_MARK_PORTDB(a, b, c) \ - do { \ - isp_prt(isp, ISP_LOG_SANCFG, \ - "Chan %d ISP_MARK_PORTDB@LINE %d", (b), __LINE__); \ - isp_mark_portdb((a), (b), (c)); \ - } while (0) /* * Local static data */ static const char fconf[] = "Chan %d PortDB[%d] changed:\n current =(0x%x@0x%06x 0x%08x%08x 0x%08x%08x)\n database=(0x%x@0x%06x 0x%08x%08x 0x%08x%08x)"; static const char notresp[] = "Not RESPONSE in RESPONSE Queue (type 0x%x) @ idx %d (next %d) nlooked %d"; -static const char topology[] = "Chan %d WWPN 0x%08x%08x PortID 0x%06x handle 0x%x, Connection '%s'"; +static const char topology[] = "Chan %d WWPN 0x%08x%08x PortID 0x%06x LoopID 0x%x Connection '%s'"; static const char bun[] = "bad underrun (count %d, resid %d, status %s)"; static const char lipd[] = "Chan %d LIP destroyed %d active commands"; static const char sacq[] = "unable to acquire scratch area"; @@ -131,8 +125,9 @@ static int isp_scan_fabric(ispsoftc_t *, static int isp_login_device(ispsoftc_t *, int, uint32_t, isp_pdb_t *, uint16_t *); static int isp_register_fc4_type(ispsoftc_t *, int); static int isp_register_fc4_type_24xx(ispsoftc_t *, int); +static int isp_register_fc4_features_24xx(ispsoftc_t *, int); static uint16_t isp_next_handle(ispsoftc_t *, uint16_t *); -static void isp_fw_state(ispsoftc_t *, int); +static int isp_fw_state(ispsoftc_t *, int); static void isp_mboxcmd_qnw(ispsoftc_t *, mbreg_t *, int); static void isp_mboxcmd(ispsoftc_t *, mbreg_t *); @@ -149,6 +144,19 @@ static void isp_parse_nvram_12160(ispsof static void isp_parse_nvram_2100(ispsoftc_t *, uint8_t *); static void isp_parse_nvram_2400(ispsoftc_t *, uint8_t *); +static void +isp_change_fw_state(ispsoftc_t *isp, int chan, int state) +{ + fcparam *fcp = FCPARAM(isp, chan); + + if (fcp->isp_fwstate == state) + return; + isp_prt(isp, ISP_LOGCONFIG|ISP_LOG_SANCFG, + "Chan %d Firmware state <%s->%s>", chan, + isp_fc_fw_statename(fcp->isp_fwstate), isp_fc_fw_statename(state)); + fcp->isp_fwstate = state; +} + /* * Reset Hardware. * @@ -1267,8 +1275,9 @@ isp_reset(ispsoftc_t *isp, int do_load_d isp->isp_nchan = 1; } } - for (i = 0; i < isp->isp_nchan; i++) { - isp_fw_state(isp, i); + if (IS_FC(isp)) { + for (i = 0; i < isp->isp_nchan; i++) + isp_change_fw_state(isp, i, FW_CONFIG_WAIT); } if (isp->isp_dead) { isp_shutdown(isp); @@ -2577,7 +2586,10 @@ isp_getpdb(ispsoftc_t *isp, int chan, ui pdb->portid = BITS2WORD_24XX(un.bill.pdb_portid_bits); ISP_MEMCPY(pdb->portname, un.bill.pdb_portname, 8); ISP_MEMCPY(pdb->nodename, un.bill.pdb_nodename, 8); - isp_prt(isp, ISP_LOG_SANCFG, "Chan %d handle 0x%x Port 0x%06x flags 0x%x curstate %x", chan, id, pdb->portid, un.bill.pdb_flags, un.bill.pdb_curstate); + isp_prt(isp, ISP_LOGDEBUG1, + "Chan %d handle 0x%x Port 0x%06x flags 0x%x curstate %x", + chan, id, pdb->portid, un.bill.pdb_flags, + un.bill.pdb_curstate); if (un.bill.pdb_curstate < PDB2400_STATE_PLOGI_DONE || un.bill.pdb_curstate > PDB2400_STATE_LOGGED_IN) { mbs.param[0] = MBOX_NOT_LOGGED_IN; if (dolock) { @@ -2592,6 +2604,8 @@ isp_getpdb(ispsoftc_t *isp, int chan, ui pdb->portid = BITS2WORD(un.fred.pdb_portid_bits); ISP_MEMCPY(pdb->portname, un.fred.pdb_portname, 8); ISP_MEMCPY(pdb->nodename, un.fred.pdb_nodename, 8); + isp_prt(isp, ISP_LOGDEBUG1, + "Chan %d handle 0x%x Port 0x%06x", chan, id, pdb->portid); } if (dolock) { FC_SCRATCH_RELEASE(isp, chan); @@ -2675,7 +2689,7 @@ static void isp_dump_chip_portdb(ispsoftc_t *isp, int chan, int dolock) { isp_pdb_t pdb; - int lim, loopid; + uint16_t lim, nphdl; isp_prt(isp, ISP_LOG_SANCFG|ISP_LOGINFO, "Chan %d chip port dump", chan); if (ISP_CAP_2KLOGIN(isp)) { @@ -2683,40 +2697,35 @@ isp_dump_chip_portdb(ispsoftc_t *isp, in } else { lim = NPH_MAX; } - for (loopid = 0; loopid != lim; loopid++) { - if (isp_getpdb(isp, chan, loopid, &pdb, dolock)) { + for (nphdl = 0; nphdl != lim; nphdl++) { + if (isp_getpdb(isp, chan, nphdl, &pdb, dolock)) { continue; } - isp_prt(isp, ISP_LOG_SANCFG|ISP_LOGINFO, "Chan %d Loopid 0x%04x " + isp_prt(isp, ISP_LOG_SANCFG|ISP_LOGINFO, "Chan %d Handle 0x%04x " "PortID 0x%06x WWPN 0x%02x%02x%02x%02x%02x%02x%02x%02x", - chan, loopid, pdb.portid, pdb.portname[0], pdb.portname[1], + chan, nphdl, pdb.portid, pdb.portname[0], pdb.portname[1], pdb.portname[2], pdb.portname[3], pdb.portname[4], pdb.portname[5], pdb.portname[6], pdb.portname[7]); } } static uint64_t -isp_get_wwn(ispsoftc_t *isp, int chan, int loopid, int nodename) +isp_get_wwn(ispsoftc_t *isp, int chan, int nphdl, int nodename) { uint64_t wwn = INI_NONE; - fcparam *fcp = FCPARAM(isp, chan); mbreg_t mbs; - if (fcp->isp_fwstate < FW_READY || - fcp->isp_loopstate < LOOP_PDB_RCVD) { - return (wwn); - } MBSINIT(&mbs, MBOX_GET_PORT_NAME, MBLOGALL & ~MBLOGMASK(MBOX_COMMAND_PARAM_ERROR), 500000); if (ISP_CAP_2KLOGIN(isp)) { - mbs.param[1] = loopid; + mbs.param[1] = nphdl; if (nodename) { mbs.param[10] = 1; } mbs.param[9] = chan; } else { mbs.ibitm = 3; - mbs.param[1] = loopid << 8; + mbs.param[1] = nphdl << 8; if (nodename) { mbs.param[1] |= 1; } @@ -2757,30 +2766,29 @@ static int isp_fclink_test(ispsoftc_t *isp, int chan, int usdelay) { mbreg_t mbs; - int check_for_fabric, r; - uint8_t lwfs; - int loopid; + int r; + uint16_t nphdl; fcparam *fcp; - fcportdb_t *lp; isp_pdb_t pdb; NANOTIME_T hra, hrb; fcp = FCPARAM(isp, chan); - isp_prt(isp, ISP_LOG_SANCFG, "Chan %d FC Link Test Entry", chan); - ISP_MARK_PORTDB(isp, chan, 1); + /* Mark port database entries for following scan. */ + isp_mark_portdb(isp, chan, 1); + + if (fcp->isp_loopstate >= LOOP_LTEST_DONE) + return (0); + + isp_prt(isp, ISP_LOG_SANCFG, "Chan %d FC link test", chan); + fcp->isp_loopstate = LOOP_TESTING_LINK; /* * Wait up to N microseconds for F/W to go to a ready state. */ - lwfs = FW_CONFIG_WAIT; GET_NANOTIME(&hra); while (1) { - isp_fw_state(isp, chan); - if (lwfs != fcp->isp_fwstate) { - isp_prt(isp, ISP_LOGCONFIG|ISP_LOG_SANCFG, "Chan %d Firmware State <%s->%s>", chan, isp_fc_fw_statename((int)lwfs), isp_fc_fw_statename((int)fcp->isp_fwstate)); - lwfs = fcp->isp_fwstate; - } + isp_change_fw_state(isp, chan, isp_fw_state(isp, chan)); if (fcp->isp_fwstate == FW_READY) { break; } @@ -2794,7 +2802,9 @@ isp_fclink_test(ispsoftc_t *isp, int cha * If we haven't gone to 'ready' state, return. */ if (fcp->isp_fwstate != FW_READY) { - isp_prt(isp, ISP_LOG_SANCFG, "%s: chan %d not at FW_READY state", __func__, chan); + isp_prt(isp, ISP_LOG_SANCFG, + "Chan %d Firmware is not ready (%s)", + chan, isp_fc_fw_statename(fcp->isp_fwstate)); return (-1); } @@ -2815,7 +2825,14 @@ isp_fclink_test(ispsoftc_t *isp, int cha } if (IS_2100(isp)) { - fcp->isp_topo = TOPO_NL_PORT; + /* + * Don't bother with fabric if we are using really old + * 2100 firmware. It's just not worth it. + */ + if (ISP_FW_NEWER_THAN(isp, 1, 15, 37)) + fcp->isp_topo = TOPO_FL_PORT; + else + fcp->isp_topo = TOPO_NL_PORT; } else { int topo = (int) mbs.param[6]; if (topo < TOPO_NL_PORT || topo > TOPO_PTP_STUB) { @@ -2825,22 +2842,6 @@ isp_fclink_test(ispsoftc_t *isp, int cha } fcp->isp_portid = mbs.param[2] | (mbs.param[3] << 16); - if (IS_2100(isp)) { - /* - * Don't bother with fabric if we are using really old - * 2100 firmware. It's just not worth it. - */ - if (ISP_FW_NEWER_THAN(isp, 1, 15, 37)) { - check_for_fabric = 1; - } else { - check_for_fabric = 0; - } - } else if (fcp->isp_topo == TOPO_FL_PORT || fcp->isp_topo == TOPO_F_PORT) { - check_for_fabric = 1; - } else { - check_for_fabric = 0; - } - /* * Check to make sure we got a valid loopid * The 24XX seems to mess this up for multiple channels. @@ -2860,63 +2861,33 @@ isp_fclink_test(ispsoftc_t *isp, int cha } if (alpa_map[i] && fcp->isp_loopid != i) { isp_prt(isp, ISP_LOG_SANCFG, - "Chan %d deriving loopid %d from AL_PA map (AL_PA 0x%x) and ignoring returned value %d (AL_PA 0x%x)", + "Chan %d Deriving loopid %d from AL_PA map (AL_PA 0x%x) and ignoring returned value %d (AL_PA 0x%x)", chan, i, alpa_map[i], fcp->isp_loopid, alpa); fcp->isp_loopid = i; } } } - - if (IS_24XX(isp)) { /* XXX SHOULDN'T THIS BE FOR 2K F/W? XXX */ - loopid = NPH_FL_ID; - } else { - loopid = FL_ID; - } - if (check_for_fabric) { - r = isp_getpdb(isp, chan, loopid, &pdb, 1); - if (r && (fcp->isp_topo == TOPO_F_PORT || fcp->isp_topo == TOPO_FL_PORT)) { - isp_prt(isp, ISP_LOGWARN, "fabric topology but cannot get info about fabric controller (0x%x)", r); - fcp->isp_topo = TOPO_PTP_STUB; - } - } else { - r = -1; - } - if (r == 0) { - if (IS_2100(isp)) { - fcp->isp_topo = TOPO_FL_PORT; - } - if (pdb.portid == 0) { - /* - * Crock. - */ - fcp->isp_topo = TOPO_NL_PORT; + if (fcp->isp_topo == TOPO_F_PORT || fcp->isp_topo == TOPO_FL_PORT) { + nphdl = IS_24XX(isp) ? NPH_FL_ID : FL_ID; + r = isp_getpdb(isp, chan, nphdl, &pdb, 1); + if (r != 0 || pdb.portid == 0) { + if (IS_2100(isp)) { + fcp->isp_topo = TOPO_NL_PORT; + } else { + isp_prt(isp, ISP_LOGWARN, + "fabric topology, but cannot get info about fabric controller (0x%x)", r); + fcp->isp_topo = TOPO_PTP_STUB; + } goto not_on_fabric; } - /* - * Save the Fabric controller's port database entry. - */ - lp = &fcp->portdb[FL_ID]; - lp->state = FC_PORTDB_STATE_PENDING_VALID; - MAKE_WWN_FROM_NODE_NAME(lp->node_wwn, pdb.nodename); - MAKE_WWN_FROM_NODE_NAME(lp->port_wwn, pdb.portname); - lp->prli_word3 = pdb.prli_word3; - lp->portid = pdb.portid; - lp->handle = pdb.handle; - lp->new_portid = lp->portid; - lp->new_prli_word3 = lp->prli_word3; if (IS_24XX(isp)) { - if (check_for_fabric) { - /* - * The mbs is still hanging out from the MBOX_GET_LOOP_ID above. - */ - fcp->isp_fabric_params = mbs.param[7]; - } else { - fcp->isp_fabric_params = 0; - } + fcp->isp_fabric_params = mbs.param[7]; fcp->isp_sns_hdl = NPH_SNS_ID; r = isp_register_fc4_type_24xx(isp, chan); + if (r == 0) + isp_register_fc4_features_24xx(isp, chan); } else { fcp->isp_sns_hdl = SNS_ID; r = isp_register_fc4_type(isp, chan); @@ -2925,11 +2896,9 @@ isp_fclink_test(ispsoftc_t *isp, int cha isp_prt(isp, ISP_LOGWARN|ISP_LOG_SANCFG, "%s: register fc4 type failed", __func__); return (-1); } - } else { -not_on_fabric: - fcp->portdb[FL_ID].state = FC_PORTDB_STATE_NIL; } +not_on_fabric: fcp->isp_gbspeed = 1; if (IS_23XX(isp) || IS_24XX(isp)) { MBSINIT(&mbs, MBOX_GET_SET_DATA_RATE, MBLOGALL, 3000000); @@ -2953,11 +2922,12 @@ not_on_fabric: } } + fcp->isp_loopstate = LOOP_LTEST_DONE; /* * Announce ourselves, too. */ isp_prt(isp, ISP_LOG_SANCFG|ISP_LOGCONFIG, topology, chan, (uint32_t) (fcp->isp_wwpn >> 32), (uint32_t) fcp->isp_wwpn, fcp->isp_portid, fcp->isp_loopid, isp_fc_toponame(fcp)); - isp_prt(isp, ISP_LOG_SANCFG, "Chan %d FC Link Test Complete", chan); + isp_prt(isp, ISP_LOG_SANCFG, "Chan %d FC link test done", chan); return (0); } @@ -2967,19 +2937,10 @@ not_on_fabric: * At this point, we've scanned the local loop (if any) and the fabric * and performed fabric logins on all new devices. * - * Our task here is to go through our port database and remove any entities + * Our task here is to go through our port database removing any entities * that are still marked probational (issuing PLOGO for ones which we had - * PLOGI'd into) or are dead. - * - * Our task here is to also check policy to decide whether devices which - * have *changed* in some way should still be kept active. For example, - * if a device has just changed PortID, we can either elect to treat it - * as an old device or as a newly arrived device (and notify the outer - * layer appropriately). - * - * We also do initiator map target id assignment here for new initiator - * devices and refresh old ones ot make sure that they point to the correct - * entities. + * PLOGI'd into) or are dead, and notifying upper layers about new/changed + * devices. */ static int isp_pdb_sync(ispsoftc_t *isp, int chan) @@ -2988,44 +2949,14 @@ isp_pdb_sync(ispsoftc_t *isp, int chan) fcportdb_t *lp; uint16_t dbidx; - if (fcp->isp_loopstate == LOOP_READY) { - return (0); - } - - /* - * Make sure we're okay for doing this right now. - */ - if (fcp->isp_loopstate != LOOP_PDB_RCVD && - fcp->isp_loopstate != LOOP_FSCAN_DONE && - fcp->isp_loopstate != LOOP_LSCAN_DONE) { - isp_prt(isp, ISP_LOGWARN, "isp_pdb_sync: bad loopstate %d", - fcp->isp_loopstate); + if (fcp->isp_loopstate < LOOP_FSCAN_DONE) { return (-1); } - - if (fcp->isp_topo == TOPO_FL_PORT || - fcp->isp_topo == TOPO_NL_PORT || - fcp->isp_topo == TOPO_N_PORT) { - if (fcp->isp_loopstate < LOOP_LSCAN_DONE) { - if (isp_scan_loop(isp, chan) != 0) { - isp_prt(isp, ISP_LOGWARN, - "isp_pdb_sync: isp_scan_loop failed"); - return (-1); - } - } - } - - if (fcp->isp_topo == TOPO_F_PORT || fcp->isp_topo == TOPO_FL_PORT) { - if (fcp->isp_loopstate < LOOP_FSCAN_DONE) { - if (isp_scan_fabric(isp, chan) != 0) { - isp_prt(isp, ISP_LOGWARN, - "isp_pdb_sync: isp_scan_fabric failed"); - return (-1); - } - } + if (fcp->isp_loopstate > LOOP_SYNCING_PDB) { + return (0); } - isp_prt(isp, ISP_LOG_SANCFG, "Chan %d Synchronizing PDBs", chan); + isp_prt(isp, ISP_LOG_SANCFG, "Chan %d FC PDB sync", chan); fcp->isp_loopstate = LOOP_SYNCING_PDB; @@ -3079,10 +3010,6 @@ isp_pdb_sync(ispsoftc_t *isp, int chan) lp->prli_word3 = lp->new_prli_word3; lp->state = FC_PORTDB_STATE_VALID; isp_async(isp, ISPASYNC_DEV_STAYED, chan, lp); - if (dbidx != FL_ID) { - lp->new_prli_word3 = 0; - lp->new_portid = 0; - } break; case FC_PORTDB_STATE_ZOMBIE: break; @@ -3101,6 +3028,7 @@ isp_pdb_sync(ispsoftc_t *isp, int chan) */ fcp->loop_seen_once = 1; fcp->isp_loopstate = LOOP_READY; + isp_prt(isp, ISP_LOG_SANCFG, "Chan %d FC PDB sync done", chan); return (0); } @@ -3117,36 +3045,34 @@ isp_scan_loop(ispsoftc_t *isp, int chan) uint16_t handles[LOCAL_LOOP_LIM]; uint16_t handle; - if (fcp->isp_fwstate < FW_READY || - fcp->isp_loopstate < LOOP_PDB_RCVD) { + if (fcp->isp_loopstate < LOOP_LTEST_DONE) { return (-1); } if (fcp->isp_loopstate > LOOP_SCANNING_LOOP) { return (0); } + isp_prt(isp, ISP_LOG_SANCFG, "Chan %d FC loop scan", chan); if (fcp->isp_topo != TOPO_NL_PORT && fcp->isp_topo != TOPO_FL_PORT && fcp->isp_topo != TOPO_N_PORT) { isp_prt(isp, ISP_LOG_SANCFG, - "Chan %d no loop topology to scan", chan); + "Chan %d FC loop scan done (no loop)", chan); fcp->isp_loopstate = LOOP_LSCAN_DONE; return (0); } - fcp->isp_loopstate = LOOP_SCANNING_LOOP; lim = LOCAL_LOOP_LIM; r = isp_gethandles(isp, chan, handles, &lim, 1, 1); if (r != 0) { isp_prt(isp, ISP_LOG_SANCFG, - "Chan %d getting list of handles failed with %x", chan, r); + "Chan %d Getting list of handles failed with %x", chan, r); fail: - ISP_MARK_PORTDB(isp, chan, 1); isp_prt(isp, ISP_LOG_SANCFG, - "Chan %d FC scan loop DONE (bad)", chan); + "Chan %d FC loop scan done (bad)", chan); return (-1); } - isp_prt(isp, ISP_LOG_SANCFG, "Chan %d FC scan loop -- %d ports", + isp_prt(isp, ISP_LOG_SANCFG, "Chan %d Got %d handles", chan, lim); /* @@ -3172,8 +3098,12 @@ fail: */ if (IS_2100(isp) || IS_2200(isp)) { uint64_t node_wwn = isp_get_wwn(isp, chan, handle, 1); - if (fcp->isp_loopstate < LOOP_SCANNING_LOOP) - goto fail; + if (fcp->isp_loopstate < LOOP_SCANNING_LOOP) { +abort: + isp_prt(isp, ISP_LOG_SANCFG, + "Chan %d FC loop scan done (abort)", chan); + return (-1); + } if (node_wwn == INI_NONE) { continue; } @@ -3185,15 +3115,15 @@ fail: r = isp_getpdb(isp, chan, handle, &pdb, 1); if (r != 0) { isp_prt(isp, ISP_LOGDEBUG1, - "Chan %d FC scan loop handle %d returned %x", + "Chan %d FC Scan Loop handle %d returned %x", chan, handle, r); if (fcp->isp_loopstate < LOOP_SCANNING_LOOP) - goto fail; + goto abort; continue; } if (fcp->isp_loopstate < LOOP_SCANNING_LOOP) - goto fail; + goto abort; /* * On *very* old 2100 firmware we would end up sometimes @@ -3279,7 +3209,9 @@ fail: lp->new_portid = tmp.portid; lp->new_prli_word3 = tmp.prli_word3; lp->state = FC_PORTDB_STATE_PENDING_VALID; - isp_prt(isp, ISP_LOG_SANCFG, "Chan %d Loop Port 0x%06x@0x%04x Pending Valid", chan, tmp.portid, tmp.handle); + isp_prt(isp, ISP_LOG_SANCFG, + "Chan %d Loop port 0x%06x@0x%04x now pending valid", + chan, tmp.portid, tmp.handle); continue; } @@ -3293,7 +3225,9 @@ fail: * Claim that this has changed and let somebody else * decide what to do. */ - isp_prt(isp, ISP_LOG_SANCFG, "Chan %d Loop Port 0x%06x@0x%04x changed", chan, tmp.portid, tmp.handle); + isp_prt(isp, ISP_LOG_SANCFG, + "Chan %d Loop port 0x%06x@0x%04x changed", + chan, tmp.portid, tmp.handle); lp->state = FC_PORTDB_STATE_CHANGED; lp->new_portid = tmp.portid; lp->new_prli_word3 = tmp.prli_word3; @@ -3324,10 +3258,14 @@ fail: lp->handle = tmp.handle; lp->port_wwn = tmp.port_wwn; lp->node_wwn = tmp.node_wwn; - isp_prt(isp, ISP_LOG_SANCFG, "Chan %d Loop Port 0x%06x@0x%04x is New Entry", chan, tmp.portid, tmp.handle); + isp_prt(isp, ISP_LOG_SANCFG, + "Chan %d Loop port 0x%06x@0x%04x is a new entry", + chan, tmp.portid, tmp.handle); } + if (fcp->isp_loopstate < LOOP_SCANNING_LOOP) + goto abort; fcp->isp_loopstate = LOOP_LSCAN_DONE; - isp_prt(isp, ISP_LOG_SANCFG, "Chan %d FC scan loop DONE", chan); + isp_prt(isp, ISP_LOG_SANCFG, "Chan %d FC loop scan done", chan); return (0); } @@ -3508,53 +3446,53 @@ isp_scan_fabric(ispsoftc_t *isp, int cha { fcparam *fcp = FCPARAM(isp, chan); uint32_t portid; - uint16_t handle, loopid; + uint16_t nphdl; isp_pdb_t pdb; int portidx, portlim, r; sns_gid_ft_rsp_t *rs0, *rs1; - isp_prt(isp, ISP_LOG_SANCFG, "Chan %d FC Scan Fabric", chan); - if (fcp->isp_fwstate != FW_READY || fcp->isp_loopstate < LOOP_LSCAN_DONE) { + if (fcp->isp_loopstate < LOOP_LSCAN_DONE) { return (-1); } if (fcp->isp_loopstate > LOOP_SCANNING_FABRIC) { return (0); } + isp_prt(isp, ISP_LOG_SANCFG, "Chan %d FC fabric scan", chan); if (fcp->isp_topo != TOPO_FL_PORT && fcp->isp_topo != TOPO_F_PORT) { fcp->isp_loopstate = LOOP_FSCAN_DONE; - isp_prt(isp, ISP_LOG_SANCFG, "Chan %d FC Scan Fabric Done (no fabric)", chan); + isp_prt(isp, ISP_LOG_SANCFG, + "Chan %d FC fabric scan done (no fabric)", chan); return (0); } - fcp->isp_loopstate = LOOP_SCANNING_FABRIC; + if (FC_SCRATCH_ACQUIRE(isp, chan)) { isp_prt(isp, ISP_LOGERR, sacq); - ISP_MARK_PORTDB(isp, chan, 1); +fail: + isp_prt(isp, ISP_LOG_SANCFG, + "Chan %d FC fabric scan done (bad)", chan); return (-1); } if (fcp->isp_loopstate < LOOP_SCANNING_FABRIC) { +abort: FC_SCRATCH_RELEASE(isp, chan); - ISP_MARK_PORTDB(isp, chan, 1); + isp_prt(isp, ISP_LOG_SANCFG, + "Chan %d FC fabric scan done (abort)", chan); return (-1); } /* * Make sure we still are logged into the fabric controller. */ - if (IS_24XX(isp)) { /* XXX SHOULDN'T THIS BE TRUE FOR 2K F/W? XXX */ - loopid = NPH_FL_ID; - } else { - loopid = FL_ID; - } - r = isp_getpdb(isp, chan, loopid, &pdb, 0); + nphdl = IS_24XX(isp) ? NPH_FL_ID : FL_ID; + r = isp_getpdb(isp, chan, nphdl, &pdb, 0); if ((r & 0xffff) == MBOX_NOT_LOGGED_IN) { isp_dump_chip_portdb(isp, chan, 0); } if (r) { - fcp->isp_loopstate = LOOP_PDB_RCVD; + fcp->isp_loopstate = LOOP_LTEST_DONE; FC_SCRATCH_RELEASE(isp, chan); - ISP_MARK_PORTDB(isp, chan, 1); - return (-1); + goto fail; } if (IS_24XX(isp)) { @@ -3564,9 +3502,7 @@ isp_scan_fabric(ispsoftc_t *isp, int cha } if (fcp->isp_loopstate < LOOP_SCANNING_FABRIC) { - FC_SCRATCH_RELEASE(isp, chan); - ISP_MARK_PORTDB(isp, chan, 1); - return (-1); + goto abort; } if (r > 0) { @@ -3574,7 +3510,7 @@ isp_scan_fabric(ispsoftc_t *isp, int cha FC_SCRATCH_RELEASE(isp, chan); return (0); } else if (r < 0) { - fcp->isp_loopstate = LOOP_PDB_RCVD; /* try again */ + fcp->isp_loopstate = LOOP_LTEST_DONE; /* try again */ FC_SCRATCH_RELEASE(isp, chan); return (0); } @@ -3584,9 +3520,7 @@ isp_scan_fabric(ispsoftc_t *isp, int cha rs1 = (sns_gid_ft_rsp_t *) ((uint8_t *)fcp->isp_scratch+OGPOFF); isp_get_gid_ft_response(isp, rs0, rs1, NGENT); if (fcp->isp_loopstate < LOOP_SCANNING_FABRIC) { - FC_SCRATCH_RELEASE(isp, chan); - ISP_MARK_PORTDB(isp, chan, 1); - return (-1); + goto abort; } if (rs1->snscb_cthdr.ct_cmd_resp != LS_ACC) { int level; @@ -3604,12 +3538,6 @@ isp_scan_fabric(ispsoftc_t *isp, int cha return (0); } - - /* - * If we get this far, we certainly still have the fabric controller. - */ - fcp->portdb[FL_ID].state = FC_PORTDB_STATE_PENDING_VALID; - /* * Go through the list and remove duplicate port ids. */ @@ -3631,7 +3559,7 @@ isp_scan_fabric(ispsoftc_t *isp, int cha } portlim = portidx + 1; isp_prt(isp, ISP_LOG_SANCFG, - "Chan %d got %d ports back from name server", chan, portlim); + "Chan %d Got %d ports back from name server", chan, portlim); for (portidx = 0; portidx < portlim; portidx++) { int npidx; @@ -3686,35 +3614,19 @@ isp_scan_fabric(ispsoftc_t *isp, int cha if (portid == 0) { isp_prt(isp, ISP_LOG_SANCFG, - "Chan %d skipping null PortID at idx %d", + "Chan %d Skipping null PortID at idx %d", chan, portidx); continue; } - /* - * Skip ourselves here and on other channels. If we're - * multi-id, we can't check the portids in other FCPARAM - * arenas because the resolutions here aren't synchronized. - * The best way to do this is to exclude looking at portids - * that have the same domain and area code as our own - * portid. - */ - if (ISP_CAP_MULTI_ID(isp) && isp->isp_nchan > 1) { - if ((portid >> 8) == (fcp->isp_portid >> 8)) { - isp_prt(isp, ISP_LOG_SANCFG, - "Chan %d skip PortID 0x%06x", - chan, portid); - continue; - } - } else if (portid == fcp->isp_portid) { + if (portid == fcp->isp_portid) { isp_prt(isp, ISP_LOG_SANCFG, - "Chan %d skip ourselves on @ PortID 0x%06x", - chan, portid); + "Chan %d Skipping our PortID 0x%06x", chan, portid); continue; } isp_prt(isp, ISP_LOG_SANCFG, - "Chan %d Checking Fabric Port 0x%06x", chan, portid); + "Chan %d Checking fabric port 0x%06x", chan, portid); /* * We now search our Port Database for any @@ -3759,10 +3671,8 @@ isp_scan_fabric(ispsoftc_t *isp, int cha */ r = isp_getpdb(isp, chan, lp->handle, &pdb, 0); - if (fcp->isp_loopstate != LOOP_SCANNING_FABRIC) { - FC_SCRATCH_RELEASE(isp, chan); - ISP_MARK_PORTDB(isp, chan, 1); - return (-1); + if (fcp->isp_loopstate < LOOP_SCANNING_FABRIC) { + goto abort; } if (r != 0) { lp->new_portid = portid; @@ -3806,19 +3716,14 @@ isp_scan_fabric(ispsoftc_t *isp, int cha &FCPARAM(isp, 0)->isp_lasthdl)) { lp->new_portid = portid; lp->state = FC_PORTDB_STATE_DEAD; - if (fcp->isp_loopstate != + if (fcp->isp_loopstate < LOOP_SCANNING_FABRIC) { - FC_SCRATCH_RELEASE(isp, chan); - ISP_MARK_PORTDB(isp, chan, 1); - return (-1); + goto abort; } continue; } - if (fcp->isp_loopstate != - LOOP_SCANNING_FABRIC) { - FC_SCRATCH_RELEASE(isp, chan); - ISP_MARK_PORTDB(isp, chan, 1); - return (-1); + if (fcp->isp_loopstate < LOOP_SCANNING_FABRIC) { + goto abort; } MAKE_WWN_FROM_NODE_NAME(wwnn, pdb.nodename); MAKE_WWN_FROM_NODE_NAME(wwpn, pdb.portname); @@ -3852,10 +3757,14 @@ isp_scan_fabric(ispsoftc_t *isp, int cha lp->new_portid = portid; lp->new_prli_word3 = nr; if (pdb.portid != lp->portid || nr != lp->prli_word3 || handle_changed) { - isp_prt(isp, ISP_LOG_SANCFG, "Chan %d Fabric Port 0x%06x changed", chan, portid); + isp_prt(isp, ISP_LOG_SANCFG, + "Chan %d Fabric port 0x%06x changed", + chan, portid); lp->state = FC_PORTDB_STATE_CHANGED; } else { - isp_prt(isp, ISP_LOG_SANCFG, "Chan %d Fabric Port 0x%06x Now Pending Valid", chan, portid); + isp_prt(isp, ISP_LOG_SANCFG, + "Chan %d Fabric port 0x%06x now pending valid", + chan, portid); lp->state = FC_PORTDB_STATE_PENDING_VALID; } continue; @@ -3873,10 +3782,6 @@ isp_scan_fabric(ispsoftc_t *isp, int cha dbidx = MAX_FC_TARG; for (lp = fcp->portdb; lp < &fcp->portdb[MAX_FC_TARG]; lp++) { - if (lp >= &fcp->portdb[FL_ID] && - lp <= &fcp->portdb[SNS_ID]) { - continue; - } if (lp->state == FC_PORTDB_STATE_NIL) { if (dbidx == MAX_FC_TARG) { dbidx = lp - fcp->portdb; @@ -3922,20 +3827,16 @@ isp_scan_fabric(ispsoftc_t *isp, int cha */ if (isp_login_device(isp, chan, portid, &pdb, &FCPARAM(isp, 0)->isp_lasthdl)) { - if (fcp->isp_loopstate != LOOP_SCANNING_FABRIC) { - FC_SCRATCH_RELEASE(isp, chan); - ISP_MARK_PORTDB(isp, chan, 1); - return (-1); + if (fcp->isp_loopstate < LOOP_SCANNING_FABRIC) { + goto abort; } continue; } - if (fcp->isp_loopstate != LOOP_SCANNING_FABRIC) { - FC_SCRATCH_RELEASE(isp, chan); - ISP_MARK_PORTDB(isp, chan, 1); - return (-1); + if (fcp->isp_loopstate < LOOP_SCANNING_FABRIC) { + goto abort; } - handle = pdb.handle; + nphdl = pdb.handle; MAKE_WWN_FROM_NODE_NAME(wwnn, pdb.nodename); MAKE_WWN_FROM_NODE_NAME(wwpn, pdb.portname); nr = pdb.prli_word3; @@ -3946,9 +3847,6 @@ isp_scan_fabric(ispsoftc_t *isp, int cha * WWNN/WWPN duple */ for (dbidx = 0; dbidx < MAX_FC_TARG; dbidx++) { - if (dbidx >= FL_ID && dbidx <= SNS_ID) { - continue; - } if ((fcp->portdb[dbidx].node_wwn == wwnn || fcp->portdb[dbidx].node_wwn == 0) && *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@freebsd.org Thu Nov 19 15:09:58 2015 Return-Path: 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 7AB82A32EB5 for ; Thu, 19 Nov 2015 15:09:58 +0000 (UTC) (envelope-from np@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 43515180B; Thu, 19 Nov 2015 15:09:58 +0000 (UTC) (envelope-from np@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAJF9vGW082487; Thu, 19 Nov 2015 15:09:57 GMT (envelope-from np@FreeBSD.org) Received: (from np@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAJF9vpF082486; Thu, 19 Nov 2015 15:09:57 GMT (envelope-from np@FreeBSD.org) Message-Id: <201511191509.tAJF9vpF082486@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: np set sender to np@FreeBSD.org using -f From: Navdeep Parhar Date: Thu, 19 Nov 2015 15:09:57 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r291075 - projects/cxl_iscsi/sys/dev/cxgbe/tom X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Nov 2015 15:09:58 -0000 Author: np Date: Thu Nov 19 15:09:57 2015 New Revision: 291075 URL: https://svnweb.freebsd.org/changeset/base/291075 Log: Deal with tx credits within t4_tom. This should have gone in with r290376. Modified: projects/cxl_iscsi/sys/dev/cxgbe/tom/t4_cpl_io.c Modified: projects/cxl_iscsi/sys/dev/cxgbe/tom/t4_cpl_io.c ============================================================================== --- projects/cxl_iscsi/sys/dev/cxgbe/tom/t4_cpl_io.c Thu Nov 19 14:04:53 2015 (r291074) +++ projects/cxl_iscsi/sys/dev/cxgbe/tom/t4_cpl_io.c Thu Nov 19 15:09:57 2015 (r291075) @@ -1656,11 +1656,8 @@ do_fw4_ack(struct sge_iq *iq, const stru sbdrop_locked(sb, min(sbu, plen)); plen -= min(sbu, plen); } - /* XXXNP: sowwakeup_locked causes a LOR. */ - SOCKBUF_UNLOCK(sb); - - if (__predict_true(plen > 0)) - cxgbei_fw4_ack(toep, plen); + sowwakeup_locked(so); /* unlocks so_snd */ + rqdrop_locked(&toep->ulp_pdu_reclaimq, plen); } else { sbdrop_locked(sb, plen); sowwakeup_locked(so); /* unlocks so_snd */ From owner-svn-src-projects@freebsd.org Thu Nov 19 16:28:51 2015 Return-Path: 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 ABD2AA33CD4 for ; Thu, 19 Nov 2015 16:28:51 +0000 (UTC) (envelope-from np@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 265531EA7; Thu, 19 Nov 2015 16:28:48 +0000 (UTC) (envelope-from np@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAJGSk8N005762; Thu, 19 Nov 2015 16:28:46 GMT (envelope-from np@FreeBSD.org) Received: (from np@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAJGSkYf005757; Thu, 19 Nov 2015 16:28:46 GMT (envelope-from np@FreeBSD.org) Message-Id: <201511191628.tAJGSkYf005757@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: np set sender to np@FreeBSD.org using -f From: Navdeep Parhar Date: Thu, 19 Nov 2015 16:28:46 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r291076 - in projects/cxl_iscsi: . bin/csh bin/dd bin/dd/tests bin/ls/tests bin/ps bin/rm bin/sh bin/sh/tests bin/sh/tests/parameters bin/test/tests cddl cddl/contrib/opensolaris/cmd/zf... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Nov 2015 16:28:51 -0000 Author: np Date: Thu Nov 19 16:28:42 2015 New Revision: 291076 URL: https://svnweb.freebsd.org/changeset/base/291076 Log: Catch up with head (r291075). Added: projects/cxl_iscsi/bin/dd/tests/ - copied from r291075, head/bin/dd/tests/ projects/cxl_iscsi/bin/sh/tests/parameters/positional8.0 - copied unchanged from r291075, head/bin/sh/tests/parameters/positional8.0 projects/cxl_iscsi/contrib/bmake/metachar.c - copied unchanged from r291075, head/contrib/bmake/metachar.c projects/cxl_iscsi/contrib/bmake/metachar.h - copied unchanged from r291075, head/contrib/bmake/metachar.h projects/cxl_iscsi/contrib/libucl/CMakeLists.txt - copied unchanged from r291075, head/contrib/libucl/CMakeLists.txt projects/cxl_iscsi/contrib/libucl/examples/ - copied from r291075, head/contrib/libucl/examples/ projects/cxl_iscsi/contrib/libucl/include/ucl++.h - copied unchanged from r291075, head/contrib/libucl/include/ucl++.h projects/cxl_iscsi/contrib/libucl/m4/ - copied from r291075, head/contrib/libucl/m4/ projects/cxl_iscsi/contrib/libucl/python/ - copied from r291075, head/contrib/libucl/python/ projects/cxl_iscsi/contrib/libucl/src/ucl_msgpack.c - copied unchanged from r291075, head/contrib/libucl/src/ucl_msgpack.c projects/cxl_iscsi/contrib/libucl/src/ucl_sexp.c - copied unchanged from r291075, head/contrib/libucl/src/ucl_sexp.c projects/cxl_iscsi/contrib/libucl/tests/basic/15.in - copied unchanged from r291075, head/contrib/libucl/tests/basic/15.in projects/cxl_iscsi/contrib/libucl/tests/basic/15.inc - copied unchanged from r291075, head/contrib/libucl/tests/basic/15.inc projects/cxl_iscsi/contrib/libucl/tests/basic/15.res - copied unchanged from r291075, head/contrib/libucl/tests/basic/15.res projects/cxl_iscsi/contrib/libucl/tests/basic/16.in - copied unchanged from r291075, head/contrib/libucl/tests/basic/16.in projects/cxl_iscsi/contrib/libucl/tests/basic/16.inc - copied unchanged from r291075, head/contrib/libucl/tests/basic/16.inc projects/cxl_iscsi/contrib/libucl/tests/basic/16.res - copied unchanged from r291075, head/contrib/libucl/tests/basic/16.res projects/cxl_iscsi/contrib/libucl/tests/basic/17.in - copied unchanged from r291075, head/contrib/libucl/tests/basic/17.in projects/cxl_iscsi/contrib/libucl/tests/basic/17.res - copied unchanged from r291075, head/contrib/libucl/tests/basic/17.res projects/cxl_iscsi/contrib/libucl/tests/basic/18.in - copied unchanged from r291075, head/contrib/libucl/tests/basic/18.in projects/cxl_iscsi/contrib/libucl/tests/basic/18.res - copied unchanged from r291075, head/contrib/libucl/tests/basic/18.res projects/cxl_iscsi/contrib/libucl/tests/basic/19-append.inc - copied unchanged from r291075, head/contrib/libucl/tests/basic/19-append.inc projects/cxl_iscsi/contrib/libucl/tests/basic/19-merge.inc - copied unchanged from r291075, head/contrib/libucl/tests/basic/19-merge.inc projects/cxl_iscsi/contrib/libucl/tests/basic/19-rewrite.inc - copied unchanged from r291075, head/contrib/libucl/tests/basic/19-rewrite.inc projects/cxl_iscsi/contrib/libucl/tests/basic/19.in - copied unchanged from r291075, head/contrib/libucl/tests/basic/19.in projects/cxl_iscsi/contrib/libucl/tests/basic/19.res - copied unchanged from r291075, head/contrib/libucl/tests/basic/19.res projects/cxl_iscsi/contrib/libucl/tests/basic/20.in - copied unchanged from r291075, head/contrib/libucl/tests/basic/20.in projects/cxl_iscsi/contrib/libucl/tests/basic/20.res - copied unchanged from r291075, head/contrib/libucl/tests/basic/20.res projects/cxl_iscsi/contrib/libucl/tests/basic/21.in - copied unchanged from r291075, head/contrib/libucl/tests/basic/21.in projects/cxl_iscsi/contrib/libucl/tests/basic/21.res - copied unchanged from r291075, head/contrib/libucl/tests/basic/21.res projects/cxl_iscsi/contrib/libucl/tests/basic/22.in - copied unchanged from r291075, head/contrib/libucl/tests/basic/22.in projects/cxl_iscsi/contrib/libucl/tests/basic/22.res - copied unchanged from r291075, head/contrib/libucl/tests/basic/22.res projects/cxl_iscsi/contrib/libucl/tests/msgpack.test - copied unchanged from r291075, head/contrib/libucl/tests/msgpack.test projects/cxl_iscsi/contrib/libucl/tests/test_msgpack.c - copied unchanged from r291075, head/contrib/libucl/tests/test_msgpack.c projects/cxl_iscsi/contrib/libucl/utils/ucl-tool.c - copied unchanged from r291075, head/contrib/libucl/utils/ucl-tool.c projects/cxl_iscsi/contrib/llvm/patches/patch-08-llvm-r250085-fix-avx-crash.diff - copied unchanged from r291075, head/contrib/llvm/patches/patch-08-llvm-r250085-fix-avx-crash.diff projects/cxl_iscsi/contrib/llvm/patches/patch-09-clang-r250657-openmp.diff - copied unchanged from r291075, head/contrib/llvm/patches/patch-09-clang-r250657-openmp.diff projects/cxl_iscsi/contrib/ntp/include/rc_cmdlength.h - copied unchanged from r291075, head/contrib/ntp/include/rc_cmdlength.h projects/cxl_iscsi/contrib/ntp/sntp/m4/ntp_problemtests.m4 - copied unchanged from r291075, head/contrib/ntp/sntp/m4/ntp_problemtests.m4 projects/cxl_iscsi/contrib/ntp/sntp/tests/fileHandlingTest.c - copied unchanged from r291075, head/contrib/ntp/sntp/tests/fileHandlingTest.c projects/cxl_iscsi/contrib/ntp/sntp/tests/run-t-log.c - copied unchanged from r291075, head/contrib/ntp/sntp/tests/run-t-log.c projects/cxl_iscsi/contrib/ntp/sntp/tests/sntptest.c - copied unchanged from r291075, head/contrib/ntp/sntp/tests/sntptest.c projects/cxl_iscsi/contrib/ntp/sntp/tests/t-log.c - copied unchanged from r291075, head/contrib/ntp/sntp/tests/t-log.c projects/cxl_iscsi/contrib/ntp/sntp/unity/auto/parseOutput.rb - copied unchanged from r291075, head/contrib/ntp/sntp/unity/auto/parseOutput.rb projects/cxl_iscsi/contrib/ntp/sntp/unity/auto/type_sanitizer.rb - copied unchanged from r291075, head/contrib/ntp/sntp/unity/auto/type_sanitizer.rb projects/cxl_iscsi/contrib/ntp/sntp/unity/auto/unity_test_summary.py - copied unchanged from r291075, head/contrib/ntp/sntp/unity/auto/unity_test_summary.py projects/cxl_iscsi/contrib/ntp/sntp/unity/unity_config.h - copied unchanged from r291075, head/contrib/ntp/sntp/unity/unity_config.h projects/cxl_iscsi/contrib/ntp/tests/libntp/lfptest.c - copied unchanged from r291075, head/contrib/ntp/tests/libntp/lfptest.c projects/cxl_iscsi/contrib/ntp/tests/libntp/sockaddrtest.c - copied unchanged from r291075, head/contrib/ntp/tests/libntp/sockaddrtest.c projects/cxl_iscsi/contrib/ntp/tests/ntpd/leapsec.c - copied unchanged from r291075, head/contrib/ntp/tests/ntpd/leapsec.c projects/cxl_iscsi/contrib/ntp/tests/ntpd/ntp_prio_q.c - copied unchanged from r291075, head/contrib/ntp/tests/ntpd/ntp_prio_q.c projects/cxl_iscsi/contrib/ntp/tests/ntpd/ntp_restrict.c - copied unchanged from r291075, head/contrib/ntp/tests/ntpd/ntp_restrict.c projects/cxl_iscsi/contrib/ntp/tests/ntpd/rc_cmdlength.c - copied unchanged from r291075, head/contrib/ntp/tests/ntpd/rc_cmdlength.c projects/cxl_iscsi/contrib/ntp/tests/ntpd/run-leapsec.c - copied unchanged from r291075, head/contrib/ntp/tests/ntpd/run-leapsec.c projects/cxl_iscsi/contrib/ntp/tests/ntpd/run-ntp_prio_q.c - copied unchanged from r291075, head/contrib/ntp/tests/ntpd/run-ntp_prio_q.c projects/cxl_iscsi/contrib/ntp/tests/ntpd/run-ntp_restrict.c - copied unchanged from r291075, head/contrib/ntp/tests/ntpd/run-ntp_restrict.c projects/cxl_iscsi/contrib/ntp/tests/ntpd/run-rc_cmdlength.c - copied unchanged from r291075, head/contrib/ntp/tests/ntpd/run-rc_cmdlength.c projects/cxl_iscsi/contrib/ntp/tests/ntpd/run-t-ntp_scanner.c - copied unchanged from r291075, head/contrib/ntp/tests/ntpd/run-t-ntp_scanner.c projects/cxl_iscsi/contrib/ntp/tests/ntpd/run-t-ntp_signd.c - copied unchanged from r291075, head/contrib/ntp/tests/ntpd/run-t-ntp_signd.c projects/cxl_iscsi/contrib/ntp/tests/ntpd/t-ntp_scanner.c - copied unchanged from r291075, head/contrib/ntp/tests/ntpd/t-ntp_scanner.c projects/cxl_iscsi/contrib/ntp/tests/ntpd/t-ntp_signd.c - copied unchanged from r291075, head/contrib/ntp/tests/ntpd/t-ntp_signd.c projects/cxl_iscsi/contrib/ntp/tests/ntpq/ - copied from r291075, head/contrib/ntp/tests/ntpq/ projects/cxl_iscsi/contrib/wpa/patches/openssl-0.9.8zf-tls-extensions.patch - copied unchanged from r291075, head/contrib/wpa/patches/openssl-0.9.8zf-tls-extensions.patch projects/cxl_iscsi/contrib/wpa/src/crypto/sha384-prf.c - copied unchanged from r291075, head/contrib/wpa/src/crypto/sha384-prf.c projects/cxl_iscsi/contrib/wpa/src/fst/ - copied from r291075, head/contrib/wpa/src/fst/ projects/cxl_iscsi/contrib/wpa/wpa_supplicant/eapol_test.py - copied unchanged from r291075, head/contrib/wpa/wpa_supplicant/eapol_test.py projects/cxl_iscsi/contrib/wpa/wpa_supplicant/p2p_supplicant_sd.c - copied unchanged from r291075, head/contrib/wpa/wpa_supplicant/p2p_supplicant_sd.c projects/cxl_iscsi/crypto/openssl/crypto/aes/asm/aesni-mb-x86_64.pl - copied unchanged from r291075, head/crypto/openssl/crypto/aes/asm/aesni-mb-x86_64.pl projects/cxl_iscsi/crypto/openssl/crypto/aes/asm/aesni-sha256-x86_64.pl - copied unchanged from r291075, head/crypto/openssl/crypto/aes/asm/aesni-sha256-x86_64.pl projects/cxl_iscsi/crypto/openssl/crypto/aes/asm/aesp8-ppc.pl - copied unchanged from r291075, head/crypto/openssl/crypto/aes/asm/aesp8-ppc.pl projects/cxl_iscsi/crypto/openssl/crypto/aes/asm/aest4-sparcv9.pl - copied unchanged from r291075, head/crypto/openssl/crypto/aes/asm/aest4-sparcv9.pl projects/cxl_iscsi/crypto/openssl/crypto/aes/asm/aesv8-armx.pl - copied unchanged from r291075, head/crypto/openssl/crypto/aes/asm/aesv8-armx.pl projects/cxl_iscsi/crypto/openssl/crypto/aes/asm/bsaes-armv7.pl - copied unchanged from r291075, head/crypto/openssl/crypto/aes/asm/bsaes-armv7.pl projects/cxl_iscsi/crypto/openssl/crypto/aes/asm/vpaes-ppc.pl - copied unchanged from r291075, head/crypto/openssl/crypto/aes/asm/vpaes-ppc.pl projects/cxl_iscsi/crypto/openssl/crypto/arm64cpuid.S - copied unchanged from r291075, head/crypto/openssl/crypto/arm64cpuid.S projects/cxl_iscsi/crypto/openssl/crypto/bn/asm/mips3.s - copied unchanged from r291075, head/crypto/openssl/crypto/bn/asm/mips3.s projects/cxl_iscsi/crypto/openssl/crypto/bn/asm/rsaz-avx2.pl - copied unchanged from r291075, head/crypto/openssl/crypto/bn/asm/rsaz-avx2.pl projects/cxl_iscsi/crypto/openssl/crypto/bn/asm/rsaz-x86_64.pl - copied unchanged from r291075, head/crypto/openssl/crypto/bn/asm/rsaz-x86_64.pl projects/cxl_iscsi/crypto/openssl/crypto/bn/asm/sparct4-mont.pl - copied unchanged from r291075, head/crypto/openssl/crypto/bn/asm/sparct4-mont.pl projects/cxl_iscsi/crypto/openssl/crypto/bn/asm/sparcv9-gf2m.pl - copied unchanged from r291075, head/crypto/openssl/crypto/bn/asm/sparcv9-gf2m.pl projects/cxl_iscsi/crypto/openssl/crypto/bn/asm/vis3-mont.pl - copied unchanged from r291075, head/crypto/openssl/crypto/bn/asm/vis3-mont.pl projects/cxl_iscsi/crypto/openssl/crypto/bn/rsaz_exp.c - copied unchanged from r291075, head/crypto/openssl/crypto/bn/rsaz_exp.c projects/cxl_iscsi/crypto/openssl/crypto/bn/rsaz_exp.h - copied unchanged from r291075, head/crypto/openssl/crypto/bn/rsaz_exp.h projects/cxl_iscsi/crypto/openssl/crypto/camellia/asm/cmllt4-sparcv9.pl - copied unchanged from r291075, head/crypto/openssl/crypto/camellia/asm/cmllt4-sparcv9.pl projects/cxl_iscsi/crypto/openssl/crypto/cms/cms_kari.c - copied unchanged from r291075, head/crypto/openssl/crypto/cms/cms_kari.c projects/cxl_iscsi/crypto/openssl/crypto/des/asm/dest4-sparcv9.pl - copied unchanged from r291075, head/crypto/openssl/crypto/des/asm/dest4-sparcv9.pl projects/cxl_iscsi/crypto/openssl/crypto/dh/dh_kdf.c - copied unchanged from r291075, head/crypto/openssl/crypto/dh/dh_kdf.c projects/cxl_iscsi/crypto/openssl/crypto/dh/dh_rfc5114.c - copied unchanged from r291075, head/crypto/openssl/crypto/dh/dh_rfc5114.c projects/cxl_iscsi/crypto/openssl/crypto/ec/asm/ - copied from r291075, head/crypto/openssl/crypto/ec/asm/ projects/cxl_iscsi/crypto/openssl/crypto/ec/ecp_nistz256.c - copied unchanged from r291075, head/crypto/openssl/crypto/ec/ecp_nistz256.c projects/cxl_iscsi/crypto/openssl/crypto/ec/ecp_nistz256_table.c - copied unchanged from r291075, head/crypto/openssl/crypto/ec/ecp_nistz256_table.c projects/cxl_iscsi/crypto/openssl/crypto/ecdh/ech_kdf.c - copied unchanged from r291075, head/crypto/openssl/crypto/ecdh/ech_kdf.c projects/cxl_iscsi/crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c - copied unchanged from r291075, head/crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c projects/cxl_iscsi/crypto/openssl/crypto/md5/asm/md5-sparcv9.pl - copied unchanged from r291075, head/crypto/openssl/crypto/md5/asm/md5-sparcv9.pl projects/cxl_iscsi/crypto/openssl/crypto/modes/asm/aesni-gcm-x86_64.pl - copied unchanged from r291075, head/crypto/openssl/crypto/modes/asm/aesni-gcm-x86_64.pl projects/cxl_iscsi/crypto/openssl/crypto/modes/asm/ghashp8-ppc.pl - copied unchanged from r291075, head/crypto/openssl/crypto/modes/asm/ghashp8-ppc.pl projects/cxl_iscsi/crypto/openssl/crypto/modes/asm/ghashv8-armx.pl - copied unchanged from r291075, head/crypto/openssl/crypto/modes/asm/ghashv8-armx.pl projects/cxl_iscsi/crypto/openssl/crypto/modes/wrap128.c - copied unchanged from r291075, head/crypto/openssl/crypto/modes/wrap128.c projects/cxl_iscsi/crypto/openssl/crypto/perlasm/sparcv9_modes.pl - copied unchanged from r291075, head/crypto/openssl/crypto/perlasm/sparcv9_modes.pl projects/cxl_iscsi/crypto/openssl/crypto/ppc_arch.h - copied unchanged from r291075, head/crypto/openssl/crypto/ppc_arch.h projects/cxl_iscsi/crypto/openssl/crypto/sha/asm/sha1-armv8.pl - copied unchanged from r291075, head/crypto/openssl/crypto/sha/asm/sha1-armv8.pl projects/cxl_iscsi/crypto/openssl/crypto/sha/asm/sha1-mb-x86_64.pl - copied unchanged from r291075, head/crypto/openssl/crypto/sha/asm/sha1-mb-x86_64.pl projects/cxl_iscsi/crypto/openssl/crypto/sha/asm/sha256-mb-x86_64.pl - copied unchanged from r291075, head/crypto/openssl/crypto/sha/asm/sha256-mb-x86_64.pl projects/cxl_iscsi/crypto/openssl/crypto/sha/asm/sha512-armv8.pl - copied unchanged from r291075, head/crypto/openssl/crypto/sha/asm/sha512-armv8.pl projects/cxl_iscsi/crypto/openssl/crypto/sha/asm/sha512p8-ppc.pl - copied unchanged from r291075, head/crypto/openssl/crypto/sha/asm/sha512p8-ppc.pl projects/cxl_iscsi/crypto/openssl/crypto/sparc_arch.h - copied unchanged from r291075, head/crypto/openssl/crypto/sparc_arch.h projects/cxl_iscsi/crypto/openssl/crypto/x509/vpm_int.h - copied unchanged from r291075, head/crypto/openssl/crypto/x509/vpm_int.h projects/cxl_iscsi/crypto/openssl/crypto/x509v3/v3_scts.c - copied unchanged from r291075, head/crypto/openssl/crypto/x509v3/v3_scts.c projects/cxl_iscsi/crypto/openssl/crypto/x509v3/v3nametest.c - copied unchanged from r291075, head/crypto/openssl/crypto/x509v3/v3nametest.c projects/cxl_iscsi/crypto/openssl/doc/crypto/ASN1_TIME_set.pod - copied unchanged from r291075, head/crypto/openssl/doc/crypto/ASN1_TIME_set.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/EC_GFp_simple_method.pod - copied unchanged from r291075, head/crypto/openssl/doc/crypto/EC_GFp_simple_method.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/EC_GROUP_copy.pod - copied unchanged from r291075, head/crypto/openssl/doc/crypto/EC_GROUP_copy.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/EC_GROUP_new.pod - copied unchanged from r291075, head/crypto/openssl/doc/crypto/EC_GROUP_new.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/EC_KEY_new.pod - copied unchanged from r291075, head/crypto/openssl/doc/crypto/EC_KEY_new.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/EC_POINT_add.pod - copied unchanged from r291075, head/crypto/openssl/doc/crypto/EC_POINT_add.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/EC_POINT_new.pod - copied unchanged from r291075, head/crypto/openssl/doc/crypto/EC_POINT_new.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/OPENSSL_instrument_bus.pod - copied unchanged from r291075, head/crypto/openssl/doc/crypto/OPENSSL_instrument_bus.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/SSLeay_version.pod - copied unchanged from r291075, head/crypto/openssl/doc/crypto/SSLeay_version.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/X509_check_host.pod - copied unchanged from r291075, head/crypto/openssl/doc/crypto/X509_check_host.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/d2i_ECPKParameters.pod - copied unchanged from r291075, head/crypto/openssl/doc/crypto/d2i_ECPKParameters.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/ec.pod - copied unchanged from r291075, head/crypto/openssl/doc/crypto/ec.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_CONF_CTX_new.pod - copied unchanged from r291075, head/crypto/openssl/doc/ssl/SSL_CONF_CTX_new.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_CONF_CTX_set1_prefix.pod - copied unchanged from r291075, head/crypto/openssl/doc/ssl/SSL_CONF_CTX_set1_prefix.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_CONF_CTX_set_flags.pod - copied unchanged from r291075, head/crypto/openssl/doc/ssl/SSL_CONF_CTX_set_flags.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_CONF_CTX_set_ssl_ctx.pod - copied unchanged from r291075, head/crypto/openssl/doc/ssl/SSL_CONF_CTX_set_ssl_ctx.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_CONF_cmd.pod - copied unchanged from r291075, head/crypto/openssl/doc/ssl/SSL_CONF_cmd.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_CONF_cmd_argv.pod - copied unchanged from r291075, head/crypto/openssl/doc/ssl/SSL_CONF_cmd_argv.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_CTX_add1_chain_cert.pod - copied unchanged from r291075, head/crypto/openssl/doc/ssl/SSL_CTX_add1_chain_cert.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_CTX_get0_param.pod - copied unchanged from r291075, head/crypto/openssl/doc/ssl/SSL_CTX_get0_param.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_CTX_set1_curves.pod - copied unchanged from r291075, head/crypto/openssl/doc/ssl/SSL_CTX_set1_curves.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_CTX_set1_verify_cert_store.pod - copied unchanged from r291075, head/crypto/openssl/doc/ssl/SSL_CTX_set1_verify_cert_store.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_CTX_set_cert_cb.pod - copied unchanged from r291075, head/crypto/openssl/doc/ssl/SSL_CTX_set_cert_cb.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_CTX_set_custom_cli_ext.pod - copied unchanged from r291075, head/crypto/openssl/doc/ssl/SSL_CTX_set_custom_cli_ext.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_CTX_use_serverinfo.pod - copied unchanged from r291075, head/crypto/openssl/doc/ssl/SSL_CTX_use_serverinfo.pod projects/cxl_iscsi/crypto/openssl/ssl/ssl_conf.c - copied unchanged from r291075, head/crypto/openssl/ssl/ssl_conf.c projects/cxl_iscsi/crypto/openssl/ssl/t1_ext.c - copied unchanged from r291075, head/crypto/openssl/ssl/t1_ext.c projects/cxl_iscsi/crypto/openssl/ssl/t1_trce.c - copied unchanged from r291075, head/crypto/openssl/ssl/t1_trce.c projects/cxl_iscsi/crypto/openssl/util/copy-if-different.pl - copied unchanged from r291075, head/crypto/openssl/util/copy-if-different.pl projects/cxl_iscsi/etc/mtree/BSD.lib32.dist - copied unchanged from r291075, head/etc/mtree/BSD.lib32.dist projects/cxl_iscsi/etc/ntp/ - copied from r291075, head/etc/ntp/ projects/cxl_iscsi/etc/periodic/daily/430.status-uptime - copied unchanged from r291075, head/etc/periodic/daily/430.status-uptime projects/cxl_iscsi/lib/libc/tests/gen/fmtcheck_test.c - copied unchanged from r291075, head/lib/libc/tests/gen/fmtcheck_test.c projects/cxl_iscsi/lib/libc/tests/gen/fmtmsg_test.c - copied unchanged from r291075, head/lib/libc/tests/gen/fmtmsg_test.c projects/cxl_iscsi/lib/libc/tests/gen/fnmatch_test.c - copied unchanged from r291075, head/lib/libc/tests/gen/fnmatch_test.c projects/cxl_iscsi/lib/libc/tests/gen/fnmatch_testcases.h - copied unchanged from r291075, head/lib/libc/tests/gen/fnmatch_testcases.h projects/cxl_iscsi/lib/libc/tests/gen/ftw_test.c - copied unchanged from r291075, head/lib/libc/tests/gen/ftw_test.c projects/cxl_iscsi/lib/libc/tests/gen/popen_test.c - copied unchanged from r291075, head/lib/libc/tests/gen/popen_test.c projects/cxl_iscsi/lib/libc/tests/gen/posix_spawn_test.c - copied unchanged from r291075, head/lib/libc/tests/gen/posix_spawn_test.c projects/cxl_iscsi/lib/libc/tests/gen/test-fnmatch.c - copied unchanged from r291075, head/lib/libc/tests/gen/test-fnmatch.c projects/cxl_iscsi/lib/libc/tests/gen/wordexp_test.c - copied unchanged from r291075, head/lib/libc/tests/gen/wordexp_test.c projects/cxl_iscsi/lib/libc/tests/locale/btowc_test.c - copied unchanged from r291075, head/lib/libc/tests/locale/btowc_test.c projects/cxl_iscsi/lib/libc/tests/locale/c16rtomb_test.c - copied unchanged from r291075, head/lib/libc/tests/locale/c16rtomb_test.c projects/cxl_iscsi/lib/libc/tests/locale/iswctype_test.c - copied unchanged from r291075, head/lib/libc/tests/locale/iswctype_test.c projects/cxl_iscsi/lib/libc/tests/locale/mblen_test.c - copied unchanged from r291075, head/lib/libc/tests/locale/mblen_test.c projects/cxl_iscsi/lib/libc/tests/locale/mbrlen_test.c - copied unchanged from r291075, head/lib/libc/tests/locale/mbrlen_test.c projects/cxl_iscsi/lib/libc/tests/locale/mbrtoc16_test.c - copied unchanged from r291075, head/lib/libc/tests/locale/mbrtoc16_test.c projects/cxl_iscsi/lib/libc/tests/locale/mbrtowc_test.c - copied unchanged from r291075, head/lib/libc/tests/locale/mbrtowc_test.c projects/cxl_iscsi/lib/libc/tests/locale/mbsnrtowcs_test.c - copied unchanged from r291075, head/lib/libc/tests/locale/mbsnrtowcs_test.c projects/cxl_iscsi/lib/libc/tests/locale/mbsrtowcs_test.c - copied unchanged from r291075, head/lib/libc/tests/locale/mbsrtowcs_test.c projects/cxl_iscsi/lib/libc/tests/locale/mbstowcs_test.c - copied unchanged from r291075, head/lib/libc/tests/locale/mbstowcs_test.c projects/cxl_iscsi/lib/libc/tests/locale/mbtowc_test.c - copied unchanged from r291075, head/lib/libc/tests/locale/mbtowc_test.c projects/cxl_iscsi/lib/libc/tests/locale/towctrans_test.c - copied unchanged from r291075, head/lib/libc/tests/locale/towctrans_test.c projects/cxl_iscsi/lib/libc/tests/locale/wcrtomb_test.c - copied unchanged from r291075, head/lib/libc/tests/locale/wcrtomb_test.c projects/cxl_iscsi/lib/libc/tests/locale/wcsnrtombs_test.c - copied unchanged from r291075, head/lib/libc/tests/locale/wcsnrtombs_test.c projects/cxl_iscsi/lib/libc/tests/locale/wcsrtombs_test.c - copied unchanged from r291075, head/lib/libc/tests/locale/wcsrtombs_test.c projects/cxl_iscsi/lib/libc/tests/locale/wcstombs_test.c - copied unchanged from r291075, head/lib/libc/tests/locale/wcstombs_test.c projects/cxl_iscsi/lib/libc/tests/locale/wctomb_test.c - copied unchanged from r291075, head/lib/libc/tests/locale/wctomb_test.c projects/cxl_iscsi/lib/libc/tests/net/ether_test.c - copied unchanged from r291075, head/lib/libc/tests/net/ether_test.c projects/cxl_iscsi/lib/libc/tests/net/eui64_aton_test.c - copied unchanged from r291075, head/lib/libc/tests/net/eui64_aton_test.c projects/cxl_iscsi/lib/libc/tests/net/eui64_ntoa_test.c - copied unchanged from r291075, head/lib/libc/tests/net/eui64_ntoa_test.c projects/cxl_iscsi/lib/libc/tests/net/test-eui64.h - copied unchanged from r291075, head/lib/libc/tests/net/test-eui64.h projects/cxl_iscsi/lib/libc/tests/stdio/fdopen_test.c - copied unchanged from r291075, head/lib/libc/tests/stdio/fdopen_test.c projects/cxl_iscsi/lib/libc/tests/stdio/fopen_test.c - copied unchanged from r291075, head/lib/libc/tests/stdio/fopen_test.c projects/cxl_iscsi/lib/libc/tests/stdio/freopen_test.c - copied unchanged from r291075, head/lib/libc/tests/stdio/freopen_test.c projects/cxl_iscsi/lib/libc/tests/stdio/getdelim_test.c - copied unchanged from r291075, head/lib/libc/tests/stdio/getdelim_test.c projects/cxl_iscsi/lib/libc/tests/stdio/mkostemp_test.c - copied unchanged from r291075, head/lib/libc/tests/stdio/mkostemp_test.c projects/cxl_iscsi/lib/libc/tests/stdio/open_memstream_test.c - copied unchanged from r291075, head/lib/libc/tests/stdio/open_memstream_test.c projects/cxl_iscsi/lib/libc/tests/stdio/open_wmemstream_test.c - copied unchanged from r291075, head/lib/libc/tests/stdio/open_wmemstream_test.c projects/cxl_iscsi/lib/libc/tests/stdio/perror_test.c - copied unchanged from r291075, head/lib/libc/tests/stdio/perror_test.c projects/cxl_iscsi/lib/libc/tests/stdio/print_positional_test.c - copied unchanged from r291075, head/lib/libc/tests/stdio/print_positional_test.c projects/cxl_iscsi/lib/libc/tests/stdio/printbasic_test.c - copied unchanged from r291075, head/lib/libc/tests/stdio/printbasic_test.c projects/cxl_iscsi/lib/libc/tests/stdio/printfloat_test.c - copied unchanged from r291075, head/lib/libc/tests/stdio/printfloat_test.c projects/cxl_iscsi/lib/libc/tests/stdio/scanfloat_test.c - copied unchanged from r291075, head/lib/libc/tests/stdio/scanfloat_test.c projects/cxl_iscsi/lib/libc/tests/stdlib/heapsort_test.c - copied unchanged from r291075, head/lib/libc/tests/stdlib/heapsort_test.c projects/cxl_iscsi/lib/libc/tests/stdlib/mergesort_test.c - copied unchanged from r291075, head/lib/libc/tests/stdlib/mergesort_test.c projects/cxl_iscsi/lib/libc/tests/stdlib/qsort_test.c - copied unchanged from r291075, head/lib/libc/tests/stdlib/qsort_test.c projects/cxl_iscsi/lib/libc/tests/stdlib/test-sort.h - copied unchanged from r291075, head/lib/libc/tests/stdlib/test-sort.h projects/cxl_iscsi/lib/libc/tests/string/stpncpy_test.c - copied unchanged from r291075, head/lib/libc/tests/string/stpncpy_test.c projects/cxl_iscsi/lib/libc/tests/string/strerror_test.c - copied unchanged from r291075, head/lib/libc/tests/string/strerror_test.c projects/cxl_iscsi/lib/libc/tests/string/wcscasecmp_test.c - copied unchanged from r291075, head/lib/libc/tests/string/wcscasecmp_test.c projects/cxl_iscsi/lib/libc/tests/string/wcsnlen_test.c - copied unchanged from r291075, head/lib/libc/tests/string/wcsnlen_test.c projects/cxl_iscsi/lib/libc/tests/sys/queue_test.c - copied unchanged from r291075, head/lib/libc/tests/sys/queue_test.c projects/cxl_iscsi/lib/libopenbsd/ - copied from r291075, head/lib/libopenbsd/ projects/cxl_iscsi/libexec/dma/dma-mbox-create/Makefile.depend - copied unchanged from r291075, head/libexec/dma/dma-mbox-create/Makefile.depend projects/cxl_iscsi/libexec/dma/dmagent/Makefile.depend - copied unchanged from r291075, head/libexec/dma/dmagent/Makefile.depend projects/cxl_iscsi/libexec/rtld-elf/paths.h - copied unchanged from r291075, head/libexec/rtld-elf/paths.h projects/cxl_iscsi/sbin/newfs_msdos/mkfs_msdos.c - copied unchanged from r291075, head/sbin/newfs_msdos/mkfs_msdos.c projects/cxl_iscsi/sbin/newfs_msdos/mkfs_msdos.h - copied unchanged from r291075, head/sbin/newfs_msdos/mkfs_msdos.h projects/cxl_iscsi/secure/lib/libcrypto/amd64/aesni-gcm-x86_64.S - copied unchanged from r291075, head/secure/lib/libcrypto/amd64/aesni-gcm-x86_64.S projects/cxl_iscsi/secure/lib/libcrypto/amd64/aesni-mb-x86_64.S - copied unchanged from r291075, head/secure/lib/libcrypto/amd64/aesni-mb-x86_64.S projects/cxl_iscsi/secure/lib/libcrypto/amd64/aesni-sha256-x86_64.S - copied unchanged from r291075, head/secure/lib/libcrypto/amd64/aesni-sha256-x86_64.S projects/cxl_iscsi/secure/lib/libcrypto/amd64/ecp_nistz256-x86_64.S - copied unchanged from r291075, head/secure/lib/libcrypto/amd64/ecp_nistz256-x86_64.S projects/cxl_iscsi/secure/lib/libcrypto/amd64/rsaz-avx2.S - copied unchanged from r291075, head/secure/lib/libcrypto/amd64/rsaz-avx2.S projects/cxl_iscsi/secure/lib/libcrypto/amd64/rsaz-x86_64.S - copied unchanged from r291075, head/secure/lib/libcrypto/amd64/rsaz-x86_64.S projects/cxl_iscsi/secure/lib/libcrypto/amd64/sha1-mb-x86_64.S - copied unchanged from r291075, head/secure/lib/libcrypto/amd64/sha1-mb-x86_64.S projects/cxl_iscsi/secure/lib/libcrypto/amd64/sha256-mb-x86_64.S - copied unchanged from r291075, head/secure/lib/libcrypto/amd64/sha256-mb-x86_64.S projects/cxl_iscsi/secure/lib/libcrypto/engines/libcapi/ - copied from r291075, head/secure/lib/libcrypto/engines/libcapi/ projects/cxl_iscsi/secure/lib/libcrypto/man/ASN1_TIME_set.3 - copied unchanged from r291075, head/secure/lib/libcrypto/man/ASN1_TIME_set.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EC_GFp_simple_method.3 - copied unchanged from r291075, head/secure/lib/libcrypto/man/EC_GFp_simple_method.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EC_GROUP_copy.3 - copied unchanged from r291075, head/secure/lib/libcrypto/man/EC_GROUP_copy.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EC_GROUP_new.3 - copied unchanged from r291075, head/secure/lib/libcrypto/man/EC_GROUP_new.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EC_KEY_new.3 - copied unchanged from r291075, head/secure/lib/libcrypto/man/EC_KEY_new.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EC_POINT_add.3 - copied unchanged from r291075, head/secure/lib/libcrypto/man/EC_POINT_add.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EC_POINT_new.3 - copied unchanged from r291075, head/secure/lib/libcrypto/man/EC_POINT_new.3 projects/cxl_iscsi/secure/lib/libcrypto/man/OPENSSL_instrument_bus.3 - copied unchanged from r291075, head/secure/lib/libcrypto/man/OPENSSL_instrument_bus.3 projects/cxl_iscsi/secure/lib/libcrypto/man/X509_check_host.3 - copied unchanged from r291075, head/secure/lib/libcrypto/man/X509_check_host.3 projects/cxl_iscsi/secure/lib/libcrypto/man/d2i_ECPKParameters.3 - copied unchanged from r291075, head/secure/lib/libcrypto/man/d2i_ECPKParameters.3 projects/cxl_iscsi/secure/lib/libcrypto/man/ec.3 - copied unchanged from r291075, head/secure/lib/libcrypto/man/ec.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CONF_CTX_new.3 - copied unchanged from r291075, head/secure/lib/libssl/man/SSL_CONF_CTX_new.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CONF_CTX_set1_prefix.3 - copied unchanged from r291075, head/secure/lib/libssl/man/SSL_CONF_CTX_set1_prefix.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CONF_CTX_set_flags.3 - copied unchanged from r291075, head/secure/lib/libssl/man/SSL_CONF_CTX_set_flags.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CONF_CTX_set_ssl_ctx.3 - copied unchanged from r291075, head/secure/lib/libssl/man/SSL_CONF_CTX_set_ssl_ctx.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CONF_cmd.3 - copied unchanged from r291075, head/secure/lib/libssl/man/SSL_CONF_cmd.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CONF_cmd_argv.3 - copied unchanged from r291075, head/secure/lib/libssl/man/SSL_CONF_cmd_argv.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_add1_chain_cert.3 - copied unchanged from r291075, head/secure/lib/libssl/man/SSL_CTX_add1_chain_cert.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_get0_param.3 - copied unchanged from r291075, head/secure/lib/libssl/man/SSL_CTX_get0_param.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set1_curves.3 - copied unchanged from r291075, head/secure/lib/libssl/man/SSL_CTX_set1_curves.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set1_verify_cert_store.3 - copied unchanged from r291075, head/secure/lib/libssl/man/SSL_CTX_set1_verify_cert_store.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_cert_cb.3 - copied unchanged from r291075, head/secure/lib/libssl/man/SSL_CTX_set_cert_cb.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_custom_cli_ext.3 - copied unchanged from r291075, head/secure/lib/libssl/man/SSL_CTX_set_custom_cli_ext.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_use_serverinfo.3 - copied unchanged from r291075, head/secure/lib/libssl/man/SSL_CTX_use_serverinfo.3 projects/cxl_iscsi/share/colldef/af_ZA.UTF-8.src - copied unchanged from r291075, head/share/colldef/af_ZA.UTF-8.src projects/cxl_iscsi/share/colldef/am_ET.UTF-8.src - copied unchanged from r291075, head/share/colldef/am_ET.UTF-8.src projects/cxl_iscsi/share/colldef/ar_SA.UTF-8.src - copied unchanged from r291075, head/share/colldef/ar_SA.UTF-8.src projects/cxl_iscsi/share/colldef/be_BY.UTF-8.src - copied unchanged from r291075, head/share/colldef/be_BY.UTF-8.src projects/cxl_iscsi/share/colldef/ca_AD.UTF-8.src - copied unchanged from r291075, head/share/colldef/ca_AD.UTF-8.src projects/cxl_iscsi/share/colldef/cs_CZ.UTF-8.src - copied unchanged from r291075, head/share/colldef/cs_CZ.UTF-8.src projects/cxl_iscsi/share/colldef/da_DK.UTF-8.src - copied unchanged from r291075, head/share/colldef/da_DK.UTF-8.src projects/cxl_iscsi/share/colldef/el_GR.UTF-8.src - copied unchanged from r291075, head/share/colldef/el_GR.UTF-8.src projects/cxl_iscsi/share/colldef/en_US.UTF-8.src - copied unchanged from r291075, head/share/colldef/en_US.UTF-8.src projects/cxl_iscsi/share/colldef/es_MX.UTF-8.src - copied unchanged from r291075, head/share/colldef/es_MX.UTF-8.src projects/cxl_iscsi/share/colldef/et_EE.UTF-8.src - copied unchanged from r291075, head/share/colldef/et_EE.UTF-8.src projects/cxl_iscsi/share/colldef/fi_FI.UTF-8.src - copied unchanged from r291075, head/share/colldef/fi_FI.UTF-8.src projects/cxl_iscsi/share/colldef/he_IL.UTF-8.src - copied unchanged from r291075, head/share/colldef/he_IL.UTF-8.src projects/cxl_iscsi/share/colldef/hi_IN.UTF-8.src - copied unchanged from r291075, head/share/colldef/hi_IN.UTF-8.src projects/cxl_iscsi/share/colldef/hr_HR.UTF-8.src - copied unchanged from r291075, head/share/colldef/hr_HR.UTF-8.src projects/cxl_iscsi/share/colldef/hu_HU.UTF-8.src - copied unchanged from r291075, head/share/colldef/hu_HU.UTF-8.src projects/cxl_iscsi/share/colldef/hy_AM.UTF-8.src - copied unchanged from r291075, head/share/colldef/hy_AM.UTF-8.src projects/cxl_iscsi/share/colldef/is_IS.UTF-8.src - copied unchanged from r291075, head/share/colldef/is_IS.UTF-8.src projects/cxl_iscsi/share/colldef/ja_JP.UTF-8.src - copied unchanged from r291075, head/share/colldef/ja_JP.UTF-8.src projects/cxl_iscsi/share/colldef/kk_Cyrl_KZ.UTF-8.src - copied unchanged from r291075, head/share/colldef/kk_Cyrl_KZ.UTF-8.src projects/cxl_iscsi/share/colldef/ko_KR.UTF-8.src - copied unchanged from r291075, head/share/colldef/ko_KR.UTF-8.src projects/cxl_iscsi/share/colldef/lt_LT.UTF-8.src - copied unchanged from r291075, head/share/colldef/lt_LT.UTF-8.src projects/cxl_iscsi/share/colldef/lv_LV.UTF-8.src - copied unchanged from r291075, head/share/colldef/lv_LV.UTF-8.src projects/cxl_iscsi/share/colldef/nb_NO.UTF-8.src - copied unchanged from r291075, head/share/colldef/nb_NO.UTF-8.src projects/cxl_iscsi/share/colldef/pl_PL.UTF-8.src - copied unchanged from r291075, head/share/colldef/pl_PL.UTF-8.src projects/cxl_iscsi/share/colldef/ro_RO.UTF-8.src - copied unchanged from r291075, head/share/colldef/ro_RO.UTF-8.src projects/cxl_iscsi/share/colldef/ru_RU.UTF-8.src - copied unchanged from r291075, head/share/colldef/ru_RU.UTF-8.src projects/cxl_iscsi/share/colldef/se_NO.UTF-8.src - copied unchanged from r291075, head/share/colldef/se_NO.UTF-8.src projects/cxl_iscsi/share/colldef/sk_SK.UTF-8.src - copied unchanged from r291075, head/share/colldef/sk_SK.UTF-8.src projects/cxl_iscsi/share/colldef/sl_SI.UTF-8.src - copied unchanged from r291075, head/share/colldef/sl_SI.UTF-8.src projects/cxl_iscsi/share/colldef/sv_SE.UTF-8.src - copied unchanged from r291075, head/share/colldef/sv_SE.UTF-8.src projects/cxl_iscsi/share/colldef/tr_TR.UTF-8.src - copied unchanged from r291075, head/share/colldef/tr_TR.UTF-8.src projects/cxl_iscsi/share/colldef/uk_UA.UTF-8.src - copied unchanged from r291075, head/share/colldef/uk_UA.UTF-8.src projects/cxl_iscsi/share/colldef/zh_Hans_CN.UTF-8.src - copied unchanged from r291075, head/share/colldef/zh_Hans_CN.UTF-8.src projects/cxl_iscsi/share/colldef/zh_Hant_TW.UTF-8.src - copied unchanged from r291075, head/share/colldef/zh_Hant_TW.UTF-8.src projects/cxl_iscsi/share/ctypedef/ - copied from r291075, head/share/ctypedef/ projects/cxl_iscsi/share/locale-links/ - copied from r291075, head/share/locale-links/ projects/cxl_iscsi/share/man/man4/mlx5en.4 - copied unchanged from r291075, head/share/man/man4/mlx5en.4 projects/cxl_iscsi/share/man/man9/PHOLD.9 - copied unchanged from r291075, head/share/man/man9/PHOLD.9 projects/cxl_iscsi/share/man/man9/bitset.9 - copied unchanged from r291075, head/share/man/man9/bitset.9 projects/cxl_iscsi/share/man/man9/cpuset.9 - copied unchanged from r291075, head/share/man/man9/cpuset.9 projects/cxl_iscsi/share/man/man9/kern_testfrwk.9 - copied unchanged from r291075, head/share/man/man9/kern_testfrwk.9 projects/cxl_iscsi/share/mk/src.init.mk - copied unchanged from r291075, head/share/mk/src.init.mk projects/cxl_iscsi/share/monetdef/ar_AE.UTF-8.src - copied unchanged from r291075, head/share/monetdef/ar_AE.UTF-8.src projects/cxl_iscsi/share/monetdef/ar_EG.UTF-8.src - copied unchanged from r291075, head/share/monetdef/ar_EG.UTF-8.src projects/cxl_iscsi/share/monetdef/ar_JO.UTF-8.src - copied unchanged from r291075, head/share/monetdef/ar_JO.UTF-8.src projects/cxl_iscsi/share/monetdef/ar_MA.UTF-8.src - copied unchanged from r291075, head/share/monetdef/ar_MA.UTF-8.src projects/cxl_iscsi/share/monetdef/ar_QA.UTF-8.src - copied unchanged from r291075, head/share/monetdef/ar_QA.UTF-8.src projects/cxl_iscsi/share/monetdef/ar_SA.UTF-8.src - copied unchanged from r291075, head/share/monetdef/ar_SA.UTF-8.src projects/cxl_iscsi/share/monetdef/da_DK.UTF-8.src - copied unchanged from r291075, head/share/monetdef/da_DK.UTF-8.src projects/cxl_iscsi/share/monetdef/de_AT.ISO8859-15.src - copied unchanged from r291075, head/share/monetdef/de_AT.ISO8859-15.src projects/cxl_iscsi/share/monetdef/en_AU.UTF-8.src - copied unchanged from r291075, head/share/monetdef/en_AU.UTF-8.src projects/cxl_iscsi/share/monetdef/en_CA.UTF-8.src - copied unchanged from r291075, head/share/monetdef/en_CA.UTF-8.src projects/cxl_iscsi/share/monetdef/en_GB.ISO8859-15.src - copied unchanged from r291075, head/share/monetdef/en_GB.ISO8859-15.src projects/cxl_iscsi/share/monetdef/en_GB.US-ASCII.src - copied unchanged from r291075, head/share/monetdef/en_GB.US-ASCII.src projects/cxl_iscsi/share/monetdef/en_IE.ISO8859-1.src - copied unchanged from r291075, head/share/monetdef/en_IE.ISO8859-1.src projects/cxl_iscsi/share/monetdef/en_IE.ISO8859-15.src - copied unchanged from r291075, head/share/monetdef/en_IE.ISO8859-15.src projects/cxl_iscsi/share/monetdef/en_NZ.UTF-8.src - copied unchanged from r291075, head/share/monetdef/en_NZ.UTF-8.src projects/cxl_iscsi/share/monetdef/en_PH.UTF-8.src - copied unchanged from r291075, head/share/monetdef/en_PH.UTF-8.src projects/cxl_iscsi/share/monetdef/en_SG.UTF-8.src - copied unchanged from r291075, head/share/monetdef/en_SG.UTF-8.src projects/cxl_iscsi/share/monetdef/en_US.UTF-8.src - copied unchanged from r291075, head/share/monetdef/en_US.UTF-8.src projects/cxl_iscsi/share/monetdef/en_ZA.ISO8859-15.src - copied unchanged from r291075, head/share/monetdef/en_ZA.ISO8859-15.src projects/cxl_iscsi/share/monetdef/en_ZA.US-ASCII.src - copied unchanged from r291075, head/share/monetdef/en_ZA.US-ASCII.src projects/cxl_iscsi/share/monetdef/en_ZA.UTF-8.src - copied unchanged from r291075, head/share/monetdef/en_ZA.UTF-8.src projects/cxl_iscsi/share/monetdef/es_AR.UTF-8.src - copied unchanged from r291075, head/share/monetdef/es_AR.UTF-8.src projects/cxl_iscsi/share/monetdef/es_CR.UTF-8.src - copied unchanged from r291075, head/share/monetdef/es_CR.UTF-8.src projects/cxl_iscsi/share/monetdef/es_MX.UTF-8.src - copied unchanged from r291075, head/share/monetdef/es_MX.UTF-8.src projects/cxl_iscsi/share/monetdef/fr_CA.ISO8859-15.src - copied unchanged from r291075, head/share/monetdef/fr_CA.ISO8859-15.src projects/cxl_iscsi/share/monetdef/fr_CA.UTF-8.src - copied unchanged from r291075, head/share/monetdef/fr_CA.UTF-8.src projects/cxl_iscsi/share/monetdef/fr_CH.ISO8859-15.src - copied unchanged from r291075, head/share/monetdef/fr_CH.ISO8859-15.src projects/cxl_iscsi/share/monetdef/fr_CH.UTF-8.src - copied unchanged from r291075, head/share/monetdef/fr_CH.UTF-8.src projects/cxl_iscsi/share/monetdef/hi_IN.UTF-8.src - copied unchanged from r291075, head/share/monetdef/hi_IN.UTF-8.src projects/cxl_iscsi/share/monetdef/hr_HR.UTF-8.src - copied unchanged from r291075, head/share/monetdef/hr_HR.UTF-8.src projects/cxl_iscsi/share/monetdef/hu_HU.UTF-8.src - copied unchanged from r291075, head/share/monetdef/hu_HU.UTF-8.src projects/cxl_iscsi/share/monetdef/is_IS.UTF-8.src - copied unchanged from r291075, head/share/monetdef/is_IS.UTF-8.src projects/cxl_iscsi/share/monetdef/it_CH.UTF-8.src - copied unchanged from r291075, head/share/monetdef/it_CH.UTF-8.src projects/cxl_iscsi/share/monetdef/ja_JP.SJIS.src - copied unchanged from r291075, head/share/monetdef/ja_JP.SJIS.src projects/cxl_iscsi/share/monetdef/kk_Cyrl_KZ.UTF-8.src - copied unchanged from r291075, head/share/monetdef/kk_Cyrl_KZ.UTF-8.src projects/cxl_iscsi/share/monetdef/lv_LV.UTF-8.src - copied unchanged from r291075, head/share/monetdef/lv_LV.UTF-8.src projects/cxl_iscsi/share/monetdef/mn_Cyrl_MN.UTF-8.src - copied unchanged from r291075, head/share/monetdef/mn_Cyrl_MN.UTF-8.src projects/cxl_iscsi/share/monetdef/nb_NO.ISO8859-15.src - copied unchanged from r291075, head/share/monetdef/nb_NO.ISO8859-15.src projects/cxl_iscsi/share/monetdef/nb_NO.UTF-8.src - copied unchanged from r291075, head/share/monetdef/nb_NO.UTF-8.src projects/cxl_iscsi/share/monetdef/nl_BE.ISO8859-15.src - copied unchanged from r291075, head/share/monetdef/nl_BE.ISO8859-15.src projects/cxl_iscsi/share/monetdef/nl_NL.ISO8859-15.src - copied unchanged from r291075, head/share/monetdef/nl_NL.ISO8859-15.src projects/cxl_iscsi/share/monetdef/nn_NO.ISO8859-15.src - copied unchanged from r291075, head/share/monetdef/nn_NO.ISO8859-15.src projects/cxl_iscsi/share/monetdef/pt_BR.UTF-8.src - copied unchanged from r291075, head/share/monetdef/pt_BR.UTF-8.src projects/cxl_iscsi/share/monetdef/ro_RO.UTF-8.src - copied unchanged from r291075, head/share/monetdef/ro_RO.UTF-8.src projects/cxl_iscsi/share/monetdef/se_NO.UTF-8.src - copied unchanged from r291075, head/share/monetdef/se_NO.UTF-8.src projects/cxl_iscsi/share/monetdef/sk_SK.UTF-8.src - copied unchanged from r291075, head/share/monetdef/sk_SK.UTF-8.src projects/cxl_iscsi/share/monetdef/sl_SI.UTF-8.src - copied unchanged from r291075, head/share/monetdef/sl_SI.UTF-8.src projects/cxl_iscsi/share/monetdef/sr_Latn_RS.UTF-8.src - copied unchanged from r291075, head/share/monetdef/sr_Latn_RS.UTF-8.src projects/cxl_iscsi/share/monetdef/sv_FI.ISO8859-1.src - copied unchanged from r291075, head/share/monetdef/sv_FI.ISO8859-1.src projects/cxl_iscsi/share/monetdef/sv_FI.ISO8859-15.src - copied unchanged from r291075, head/share/monetdef/sv_FI.ISO8859-15.src projects/cxl_iscsi/share/monetdef/sv_FI.UTF-8.src - copied unchanged from r291075, head/share/monetdef/sv_FI.UTF-8.src projects/cxl_iscsi/share/monetdef/sv_SE.ISO8859-15.src - copied unchanged from r291075, head/share/monetdef/sv_SE.ISO8859-15.src projects/cxl_iscsi/share/monetdef/sv_SE.UTF-8.src - copied unchanged from r291075, head/share/monetdef/sv_SE.UTF-8.src projects/cxl_iscsi/share/monetdef/tr_TR.UTF-8.src - copied unchanged from r291075, head/share/monetdef/tr_TR.UTF-8.src projects/cxl_iscsi/share/monetdef/zh_Hans_CN.GB2312.src - copied unchanged from r291075, head/share/monetdef/zh_Hans_CN.GB2312.src projects/cxl_iscsi/share/monetdef/zh_Hans_CN.GBK.src - copied unchanged from r291075, head/share/monetdef/zh_Hans_CN.GBK.src projects/cxl_iscsi/share/monetdef/zh_Hans_CN.UTF-8.src - copied unchanged from r291075, head/share/monetdef/zh_Hans_CN.UTF-8.src projects/cxl_iscsi/share/monetdef/zh_Hans_CN.eucCN.src - copied unchanged from r291075, head/share/monetdef/zh_Hans_CN.eucCN.src projects/cxl_iscsi/share/monetdef/zh_Hant_HK.UTF-8.src - copied unchanged from r291075, head/share/monetdef/zh_Hant_HK.UTF-8.src projects/cxl_iscsi/share/monetdef/zh_Hant_TW.Big5.src - copied unchanged from r291075, head/share/monetdef/zh_Hant_TW.Big5.src projects/cxl_iscsi/share/monetdef/zh_Hant_TW.UTF-8.src - copied unchanged from r291075, head/share/monetdef/zh_Hant_TW.UTF-8.src projects/cxl_iscsi/share/msgdef/ar_SA.UTF-8.src - copied unchanged from r291075, head/share/msgdef/ar_SA.UTF-8.src projects/cxl_iscsi/share/msgdef/cs_CZ.UTF-8.src - copied unchanged from r291075, head/share/msgdef/cs_CZ.UTF-8.src projects/cxl_iscsi/share/msgdef/de_DE.UTF-8.src - copied unchanged from r291075, head/share/msgdef/de_DE.UTF-8.src projects/cxl_iscsi/share/msgdef/en_US.UTF-8.src - copied unchanged from r291075, head/share/msgdef/en_US.UTF-8.src projects/cxl_iscsi/share/msgdef/es_MX.ISO8859-1.src - copied unchanged from r291075, head/share/msgdef/es_MX.ISO8859-1.src projects/cxl_iscsi/share/msgdef/es_MX.UTF-8.src - copied unchanged from r291075, head/share/msgdef/es_MX.UTF-8.src projects/cxl_iscsi/share/msgdef/et_EE.UTF-8.src - copied unchanged from r291075, head/share/msgdef/et_EE.UTF-8.src projects/cxl_iscsi/share/msgdef/eu_ES.UTF-8.src - copied unchanged from r291075, head/share/msgdef/eu_ES.UTF-8.src projects/cxl_iscsi/share/msgdef/fi_FI.ISO8859-15.src - copied unchanged from r291075, head/share/msgdef/fi_FI.ISO8859-15.src projects/cxl_iscsi/share/msgdef/fi_FI.UTF-8.src - copied unchanged from r291075, head/share/msgdef/fi_FI.UTF-8.src projects/cxl_iscsi/share/msgdef/fr_FR.UTF-8.src - copied unchanged from r291075, head/share/msgdef/fr_FR.UTF-8.src projects/cxl_iscsi/share/msgdef/hi_IN.UTF-8.src - copied unchanged from r291075, head/share/msgdef/hi_IN.UTF-8.src projects/cxl_iscsi/share/msgdef/hu_HU.UTF-8.src - copied unchanged from r291075, head/share/msgdef/hu_HU.UTF-8.src projects/cxl_iscsi/share/msgdef/is_IS.ISO8859-15.src - copied unchanged from r291075, head/share/msgdef/is_IS.ISO8859-15.src projects/cxl_iscsi/share/msgdef/is_IS.UTF-8.src - copied unchanged from r291075, head/share/msgdef/is_IS.UTF-8.src projects/cxl_iscsi/share/msgdef/it_IT.ISO8859-15.src - copied unchanged from r291075, head/share/msgdef/it_IT.ISO8859-15.src projects/cxl_iscsi/share/msgdef/it_IT.UTF-8.src - copied unchanged from r291075, head/share/msgdef/it_IT.UTF-8.src projects/cxl_iscsi/share/msgdef/kk_Cyrl_KZ.UTF-8.src - copied unchanged from r291075, head/share/msgdef/kk_Cyrl_KZ.UTF-8.src projects/cxl_iscsi/share/msgdef/lt_LT.UTF-8.src - copied unchanged from r291075, head/share/msgdef/lt_LT.UTF-8.src projects/cxl_iscsi/share/msgdef/mn_Cyrl_MN.UTF-8.src - copied unchanged from r291075, head/share/msgdef/mn_Cyrl_MN.UTF-8.src projects/cxl_iscsi/share/msgdef/nb_NO.UTF-8.src - copied unchanged from r291075, head/share/msgdef/nb_NO.UTF-8.src projects/cxl_iscsi/share/msgdef/nl_NL.UTF-8.src - copied unchanged from r291075, head/share/msgdef/nl_NL.UTF-8.src projects/cxl_iscsi/share/msgdef/nn_NO.UTF-8.src - copied unchanged from r291075, head/share/msgdef/nn_NO.UTF-8.src projects/cxl_iscsi/share/msgdef/pl_PL.UTF-8.src - copied unchanged from r291075, head/share/msgdef/pl_PL.UTF-8.src projects/cxl_iscsi/share/msgdef/pt_PT.ISO8859-15.src - copied unchanged from r291075, head/share/msgdef/pt_PT.ISO8859-15.src projects/cxl_iscsi/share/msgdef/pt_PT.UTF-8.src - copied unchanged from r291075, head/share/msgdef/pt_PT.UTF-8.src projects/cxl_iscsi/share/msgdef/ro_RO.UTF-8.src - copied unchanged from r291075, head/share/msgdef/ro_RO.UTF-8.src projects/cxl_iscsi/share/msgdef/se_NO.UTF-8.src - copied unchanged from r291075, head/share/msgdef/se_NO.UTF-8.src projects/cxl_iscsi/share/msgdef/sk_SK.ISO8859-2.src - copied unchanged from r291075, head/share/msgdef/sk_SK.ISO8859-2.src projects/cxl_iscsi/share/msgdef/sk_SK.UTF-8.src - copied unchanged from r291075, head/share/msgdef/sk_SK.UTF-8.src projects/cxl_iscsi/share/msgdef/sl_SI.UTF-8.src - copied unchanged from r291075, head/share/msgdef/sl_SI.UTF-8.src projects/cxl_iscsi/share/msgdef/sr_Cyrl_RS.ISO8859-5.src - copied unchanged from r291075, head/share/msgdef/sr_Cyrl_RS.ISO8859-5.src projects/cxl_iscsi/share/msgdef/sr_Latn_RS.ISO8859-2.src - copied unchanged from r291075, head/share/msgdef/sr_Latn_RS.ISO8859-2.src projects/cxl_iscsi/share/msgdef/sr_Latn_RS.UTF-8.src - copied unchanged from r291075, head/share/msgdef/sr_Latn_RS.UTF-8.src projects/cxl_iscsi/share/msgdef/sv_SE.UTF-8.src - copied unchanged from r291075, head/share/msgdef/sv_SE.UTF-8.src projects/cxl_iscsi/share/msgdef/tr_TR.UTF-8.src - copied unchanged from r291075, head/share/msgdef/tr_TR.UTF-8.src projects/cxl_iscsi/share/msgdef/zh_Hans_CN.GB2312.src - copied unchanged from r291075, head/share/msgdef/zh_Hans_CN.GB2312.src projects/cxl_iscsi/share/msgdef/zh_Hans_CN.GBK.src - copied unchanged from r291075, head/share/msgdef/zh_Hans_CN.GBK.src projects/cxl_iscsi/share/msgdef/zh_Hans_CN.UTF-8.src - copied unchanged from r291075, head/share/msgdef/zh_Hans_CN.UTF-8.src projects/cxl_iscsi/share/msgdef/zh_Hant_HK.Big5HKSCS.src - copied unchanged from r291075, head/share/msgdef/zh_Hant_HK.Big5HKSCS.src projects/cxl_iscsi/share/msgdef/zh_Hant_HK.UTF-8.src - copied unchanged from r291075, head/share/msgdef/zh_Hant_HK.UTF-8.src projects/cxl_iscsi/share/msgdef/zh_Hant_TW.Big5.src - copied unchanged from r291075, head/share/msgdef/zh_Hant_TW.Big5.src projects/cxl_iscsi/share/msgdef/zh_Hant_TW.UTF-8.src - copied unchanged from r291075, head/share/msgdef/zh_Hant_TW.UTF-8.src projects/cxl_iscsi/share/numericdef/ar_SA.UTF-8.src - copied unchanged from r291075, head/share/numericdef/ar_SA.UTF-8.src projects/cxl_iscsi/share/numericdef/en_US.UTF-8.src - copied unchanged from r291075, head/share/numericdef/en_US.UTF-8.src projects/cxl_iscsi/share/numericdef/en_ZA.US-ASCII.src - copied unchanged from r291075, head/share/numericdef/en_ZA.US-ASCII.src projects/cxl_iscsi/share/numericdef/fr_CH.ISO8859-15.src - copied unchanged from r291075, head/share/numericdef/fr_CH.ISO8859-15.src projects/cxl_iscsi/share/numericdef/fr_CH.UTF-8.src - copied unchanged from r291075, head/share/numericdef/fr_CH.UTF-8.src projects/cxl_iscsi/share/numericdef/hi_IN.UTF-8.src - copied unchanged from r291075, head/share/numericdef/hi_IN.UTF-8.src projects/cxl_iscsi/share/numericdef/hy_AM.UTF-8.src - copied unchanged from r291075, head/share/numericdef/hy_AM.UTF-8.src projects/cxl_iscsi/share/numericdef/it_CH.UTF-8.src - copied unchanged from r291075, head/share/numericdef/it_CH.UTF-8.src projects/cxl_iscsi/share/numericdef/ru_RU.CP866.src - copied unchanged from r291075, head/share/numericdef/ru_RU.CP866.src projects/cxl_iscsi/share/numericdef/sr_Latn_RS.UTF-8.src - copied unchanged from r291075, head/share/numericdef/sr_Latn_RS.UTF-8.src projects/cxl_iscsi/share/numericdef/tr_TR.UTF-8.src - copied unchanged from r291075, head/share/numericdef/tr_TR.UTF-8.src projects/cxl_iscsi/share/numericdef/uk_UA.ISO8859-5.src - copied unchanged from r291075, head/share/numericdef/uk_UA.ISO8859-5.src projects/cxl_iscsi/share/numericdef/uk_UA.UTF-8.src - copied unchanged from r291075, head/share/numericdef/uk_UA.UTF-8.src projects/cxl_iscsi/share/numericdef/zh_Hans_CN.GB2312.src - copied unchanged from r291075, head/share/numericdef/zh_Hans_CN.GB2312.src projects/cxl_iscsi/share/numericdef/zh_Hans_CN.eucCN.src - copied unchanged from r291075, head/share/numericdef/zh_Hans_CN.eucCN.src projects/cxl_iscsi/share/numericdef/zh_Hant_TW.Big5.src - copied unchanged from r291075, head/share/numericdef/zh_Hant_TW.Big5.src projects/cxl_iscsi/share/timedef/af_ZA.UTF-8.src - copied unchanged from r291075, head/share/timedef/af_ZA.UTF-8.src projects/cxl_iscsi/share/timedef/ar_JO.UTF-8.src - copied unchanged from r291075, head/share/timedef/ar_JO.UTF-8.src projects/cxl_iscsi/share/timedef/ar_MA.UTF-8.src - copied unchanged from r291075, head/share/timedef/ar_MA.UTF-8.src projects/cxl_iscsi/share/timedef/ar_SA.UTF-8.src - copied unchanged from r291075, head/share/timedef/ar_SA.UTF-8.src projects/cxl_iscsi/share/timedef/ca_IT.ISO8859-15.src - copied unchanged from r291075, head/share/timedef/ca_IT.ISO8859-15.src projects/cxl_iscsi/share/timedef/ca_IT.UTF-8.src - copied unchanged from r291075, head/share/timedef/ca_IT.UTF-8.src projects/cxl_iscsi/share/timedef/da_DK.ISO8859-15.src - copied unchanged from r291075, head/share/timedef/da_DK.ISO8859-15.src projects/cxl_iscsi/share/timedef/de_AT.ISO8859-15.src - copied unchanged from r291075, head/share/timedef/de_AT.ISO8859-15.src projects/cxl_iscsi/share/timedef/de_DE.ISO8859-15.src - copied unchanged from r291075, head/share/timedef/de_DE.ISO8859-15.src projects/cxl_iscsi/share/timedef/en_CA.UTF-8.src - copied unchanged from r291075, head/share/timedef/en_CA.UTF-8.src projects/cxl_iscsi/share/timedef/en_GB.UTF-8.src - copied unchanged from r291075, head/share/timedef/en_GB.UTF-8.src projects/cxl_iscsi/share/timedef/en_HK.UTF-8.src - copied unchanged from r291075, head/share/timedef/en_HK.UTF-8.src projects/cxl_iscsi/share/timedef/en_IE.UTF-8.src - copied unchanged from r291075, head/share/timedef/en_IE.UTF-8.src projects/cxl_iscsi/share/timedef/en_PH.UTF-8.src - copied unchanged from r291075, head/share/timedef/en_PH.UTF-8.src projects/cxl_iscsi/share/timedef/en_SG.UTF-8.src - copied unchanged from r291075, head/share/timedef/en_SG.UTF-8.src projects/cxl_iscsi/share/timedef/en_US.UTF-8.src - copied unchanged from r291075, head/share/timedef/en_US.UTF-8.src projects/cxl_iscsi/share/timedef/en_ZA.UTF-8.src - copied unchanged from r291075, head/share/timedef/en_ZA.UTF-8.src projects/cxl_iscsi/share/timedef/es_AR.ISO8859-1.src - copied unchanged from r291075, head/share/timedef/es_AR.ISO8859-1.src projects/cxl_iscsi/share/timedef/es_CR.UTF-8.src - copied unchanged from r291075, head/share/timedef/es_CR.UTF-8.src projects/cxl_iscsi/share/timedef/es_ES.ISO8859-15.src - copied unchanged from r291075, head/share/timedef/es_ES.ISO8859-15.src projects/cxl_iscsi/share/timedef/es_MX.ISO8859-1.src - copied unchanged from r291075, head/share/timedef/es_MX.ISO8859-1.src projects/cxl_iscsi/share/timedef/es_MX.UTF-8.src - copied unchanged from r291075, head/share/timedef/es_MX.UTF-8.src projects/cxl_iscsi/share/timedef/eu_ES.UTF-8.src - copied unchanged from r291075, head/share/timedef/eu_ES.UTF-8.src projects/cxl_iscsi/share/timedef/fi_FI.ISO8859-15.src - copied unchanged from r291075, head/share/timedef/fi_FI.ISO8859-15.src projects/cxl_iscsi/share/timedef/fr_BE.ISO8859-15.src - copied unchanged from r291075, head/share/timedef/fr_BE.ISO8859-15.src projects/cxl_iscsi/share/timedef/fr_BE.UTF-8.src - copied unchanged from r291075, head/share/timedef/fr_BE.UTF-8.src projects/cxl_iscsi/share/timedef/fr_CA.ISO8859-15.src - copied unchanged from r291075, head/share/timedef/fr_CA.ISO8859-15.src projects/cxl_iscsi/share/timedef/fr_CA.UTF-8.src - copied unchanged from r291075, head/share/timedef/fr_CA.UTF-8.src projects/cxl_iscsi/share/timedef/fr_CH.ISO8859-15.src - copied unchanged from r291075, head/share/timedef/fr_CH.ISO8859-15.src projects/cxl_iscsi/share/timedef/fr_CH.UTF-8.src - copied unchanged from r291075, head/share/timedef/fr_CH.UTF-8.src projects/cxl_iscsi/share/timedef/fr_FR.ISO8859-15.src - copied unchanged from r291075, head/share/timedef/fr_FR.ISO8859-15.src projects/cxl_iscsi/share/timedef/hi_IN.UTF-8.src - copied unchanged from r291075, head/share/timedef/hi_IN.UTF-8.src projects/cxl_iscsi/share/timedef/is_IS.ISO8859-15.src - copied unchanged from r291075, head/share/timedef/is_IS.ISO8859-15.src projects/cxl_iscsi/share/timedef/it_CH.ISO8859-15.src - copied unchanged from r291075, head/share/timedef/it_CH.ISO8859-15.src projects/cxl_iscsi/share/timedef/it_CH.UTF-8.src - copied unchanged from r291075, head/share/timedef/it_CH.UTF-8.src projects/cxl_iscsi/share/timedef/it_IT.ISO8859-15.src - copied unchanged from r291075, head/share/timedef/it_IT.ISO8859-15.src projects/cxl_iscsi/share/timedef/kk_Cyrl_KZ.UTF-8.src - copied unchanged from r291075, head/share/timedef/kk_Cyrl_KZ.UTF-8.src projects/cxl_iscsi/share/timedef/mn_Cyrl_MN.UTF-8.src - copied unchanged from r291075, head/share/timedef/mn_Cyrl_MN.UTF-8.src projects/cxl_iscsi/share/timedef/nb_NO.ISO8859-15.src - copied unchanged from r291075, head/share/timedef/nb_NO.ISO8859-15.src projects/cxl_iscsi/share/timedef/nl_BE.UTF-8.src - copied unchanged from r291075, head/share/timedef/nl_BE.UTF-8.src projects/cxl_iscsi/share/timedef/nl_NL.UTF-8.src - copied unchanged from r291075, head/share/timedef/nl_NL.UTF-8.src projects/cxl_iscsi/share/timedef/nn_NO.ISO8859-15.src - copied unchanged from r291075, head/share/timedef/nn_NO.ISO8859-15.src projects/cxl_iscsi/share/timedef/pt_PT.ISO8859-15.src - copied unchanged from r291075, head/share/timedef/pt_PT.ISO8859-15.src projects/cxl_iscsi/share/timedef/se_FI.UTF-8.src - copied unchanged from r291075, head/share/timedef/se_FI.UTF-8.src projects/cxl_iscsi/share/timedef/se_NO.UTF-8.src - copied unchanged from r291075, head/share/timedef/se_NO.UTF-8.src projects/cxl_iscsi/share/timedef/sr_Cyrl_RS.ISO8859-5.src - copied unchanged from r291075, head/share/timedef/sr_Cyrl_RS.ISO8859-5.src projects/cxl_iscsi/share/timedef/sr_Latn_RS.ISO8859-2.src - copied unchanged from r291075, head/share/timedef/sr_Latn_RS.ISO8859-2.src projects/cxl_iscsi/share/timedef/sr_Latn_RS.UTF-8.src - copied unchanged from r291075, head/share/timedef/sr_Latn_RS.UTF-8.src projects/cxl_iscsi/share/timedef/sv_FI.ISO8859-15.src - copied unchanged from r291075, head/share/timedef/sv_FI.ISO8859-15.src projects/cxl_iscsi/share/timedef/sv_FI.UTF-8.src - copied unchanged from r291075, head/share/timedef/sv_FI.UTF-8.src projects/cxl_iscsi/share/timedef/sv_SE.ISO8859-15.src - copied unchanged from r291075, head/share/timedef/sv_SE.ISO8859-15.src projects/cxl_iscsi/share/timedef/zh_Hans_CN.GB2312.src - copied unchanged from r291075, head/share/timedef/zh_Hans_CN.GB2312.src projects/cxl_iscsi/share/timedef/zh_Hans_CN.GBK.src - copied unchanged from r291075, head/share/timedef/zh_Hans_CN.GBK.src projects/cxl_iscsi/share/timedef/zh_Hans_CN.UTF-8.src - copied unchanged from r291075, head/share/timedef/zh_Hans_CN.UTF-8.src projects/cxl_iscsi/share/timedef/zh_Hans_CN.eucCN.src - copied unchanged from r291075, head/share/timedef/zh_Hans_CN.eucCN.src projects/cxl_iscsi/share/timedef/zh_Hant_HK.Big5HKSCS.src - copied unchanged from r291075, head/share/timedef/zh_Hant_HK.Big5HKSCS.src projects/cxl_iscsi/share/timedef/zh_Hant_HK.UTF-8.src - copied unchanged from r291075, head/share/timedef/zh_Hant_HK.UTF-8.src projects/cxl_iscsi/share/timedef/zh_Hant_TW.Big5.src - copied unchanged from r291075, head/share/timedef/zh_Hant_TW.Big5.src projects/cxl_iscsi/share/timedef/zh_Hant_TW.UTF-8.src - copied unchanged from r291075, head/share/timedef/zh_Hant_TW.UTF-8.src projects/cxl_iscsi/sys/arm/arm/hdmi_if.m - copied unchanged from r291075, head/sys/arm/arm/hdmi_if.m projects/cxl_iscsi/sys/arm/arm/intrng.c - copied unchanged from r291075, head/sys/arm/arm/intrng.c projects/cxl_iscsi/sys/arm/arm/pic_if.m - copied unchanged from r291075, head/sys/arm/arm/pic_if.m projects/cxl_iscsi/sys/arm/broadcom/bcm2835/bcm2835_vcio.c - copied unchanged from r291075, head/sys/arm/broadcom/bcm2835/bcm2835_vcio.c projects/cxl_iscsi/sys/arm/freescale/imx/imx6_src.c - copied unchanged from r291075, head/sys/arm/freescale/imx/imx6_src.c projects/cxl_iscsi/sys/arm/freescale/imx/imx6_src.h - copied unchanged from r291075, head/sys/arm/freescale/imx/imx6_src.h projects/cxl_iscsi/sys/arm64/cloudabi64/ - copied from r291075, head/sys/arm64/cloudabi64/ projects/cxl_iscsi/sys/boot/fdt/dts/arm/zybo.dts - copied unchanged from r291075, head/sys/boot/fdt/dts/arm/zybo.dts projects/cxl_iscsi/sys/cddl/contrib/opensolaris/common/atomic/aarch64/ - copied from r291075, head/sys/cddl/contrib/opensolaris/common/atomic/aarch64/ projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/edonr_zfs.c - copied unchanged from r291075, head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/edonr_zfs.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/skein_zfs.c - copied unchanged from r291075, head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/skein_zfs.c projects/cxl_iscsi/sys/compat/cloudabi64/cloudabi64_module.c - copied unchanged from r291075, head/sys/compat/cloudabi64/cloudabi64_module.c projects/cxl_iscsi/sys/compat/linuxkpi/ - copied from r291075, head/sys/compat/linuxkpi/ projects/cxl_iscsi/sys/contrib/vchiq/interface/vchiq_arm/vchiq_debugfs.c - copied unchanged from r291075, head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_debugfs.c projects/cxl_iscsi/sys/contrib/vchiq/interface/vchiq_arm/vchiq_debugfs.h - copied unchanged from r291075, head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_debugfs.h projects/cxl_iscsi/sys/contrib/vchiq/interface/vchiq_arm/vchiq_killable.h - copied unchanged from r291075, head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_killable.h projects/cxl_iscsi/sys/dev/etherswitch/e6000sw/ - copied from r291075, head/sys/dev/etherswitch/e6000sw/ projects/cxl_iscsi/sys/dev/mlx5/ - copied from r291075, head/sys/dev/mlx5/ projects/cxl_iscsi/sys/dev/vnic/ - copied from r291075, head/sys/dev/vnic/ projects/cxl_iscsi/sys/libkern/ffsll.c - copied unchanged from r291075, head/sys/libkern/ffsll.c projects/cxl_iscsi/sys/mips/atheros/qca953x_chip.c - copied unchanged from r291075, head/sys/mips/atheros/qca953x_chip.c projects/cxl_iscsi/sys/mips/atheros/qca953x_chip.h - copied unchanged from r291075, head/sys/mips/atheros/qca953x_chip.h projects/cxl_iscsi/sys/mips/atheros/qca953xreg.h - copied unchanged from r291075, head/sys/mips/atheros/qca953xreg.h projects/cxl_iscsi/sys/mips/conf/AP143 - copied unchanged from r291075, head/sys/mips/conf/AP143 projects/cxl_iscsi/sys/mips/conf/AP143.hints - copied unchanged from r291075, head/sys/mips/conf/AP143.hints projects/cxl_iscsi/sys/mips/conf/ERL - copied unchanged from r291075, head/sys/mips/conf/ERL projects/cxl_iscsi/sys/mips/conf/ONIONOMEGA - copied unchanged from r291075, head/sys/mips/conf/ONIONOMEGA projects/cxl_iscsi/sys/mips/conf/ONIONOMEGA.hints - copied unchanged from r291075, head/sys/mips/conf/ONIONOMEGA.hints projects/cxl_iscsi/sys/mips/conf/QCA953X_BASE - copied unchanged from r291075, head/sys/mips/conf/QCA953X_BASE projects/cxl_iscsi/sys/mips/conf/QCA953X_BASE.hints - copied unchanged from r291075, head/sys/mips/conf/QCA953X_BASE.hints projects/cxl_iscsi/sys/mips/conf/TL-WR740Nv4 - copied unchanged from r291075, head/sys/mips/conf/TL-WR740Nv4 projects/cxl_iscsi/sys/mips/conf/TL-WR740Nv4.hints - copied unchanged from r291075, head/sys/mips/conf/TL-WR740Nv4.hints projects/cxl_iscsi/sys/modules/dtrace/systrace_linux/ - copied from r291075, head/sys/modules/dtrace/systrace_linux/ projects/cxl_iscsi/sys/modules/linuxkpi/ - copied from r291075, head/sys/modules/linuxkpi/ projects/cxl_iscsi/sys/modules/mlx5/ - copied from r291075, head/sys/modules/mlx5/ projects/cxl_iscsi/sys/modules/mlx5en/ - copied from r291075, head/sys/modules/mlx5en/ projects/cxl_iscsi/sys/modules/tests/ - copied from r291075, head/sys/modules/tests/ projects/cxl_iscsi/sys/netinet/tcp_pcap.c - copied unchanged from r291075, head/sys/netinet/tcp_pcap.c projects/cxl_iscsi/sys/netinet/tcp_pcap.h - copied unchanged from r291075, head/sys/netinet/tcp_pcap.h projects/cxl_iscsi/sys/tests/ - copied from r291075, head/sys/tests/ projects/cxl_iscsi/sys/x86/include/xen/ - copied from r291075, head/sys/x86/include/xen/ projects/cxl_iscsi/tests/sys/acl/ - copied from r291075, head/tests/sys/acl/ projects/cxl_iscsi/tests/sys/kern/acct/ - copied from r291075, head/tests/sys/kern/acct/ projects/cxl_iscsi/tests/sys/kern/kern_copyin.c - copied unchanged from r291075, head/tests/sys/kern/kern_copyin.c projects/cxl_iscsi/tests/sys/kern/pipe/ - copied from r291075, head/tests/sys/kern/pipe/ projects/cxl_iscsi/tests/sys/posixshm/ - copied from r291075, head/tests/sys/posixshm/ projects/cxl_iscsi/tests/sys/vfs/ - copied from r291075, head/tests/sys/vfs/ projects/cxl_iscsi/tools/build/options/WITHOUT_DEBUG_FILES - copied unchanged from r291075, head/tools/build/options/WITHOUT_DEBUG_FILES projects/cxl_iscsi/tools/build/options/WITHOUT_LLDB - copied unchanged from r291075, head/tools/build/options/WITHOUT_LLDB projects/cxl_iscsi/tools/build/options/WITH_CCACHE_BUILD - copied unchanged from r291075, head/tools/build/options/WITH_CCACHE_BUILD projects/cxl_iscsi/tools/build/options/WITH_DIRDEPS_BUILD - copied unchanged from r291075, head/tools/build/options/WITH_DIRDEPS_BUILD projects/cxl_iscsi/tools/build/options/WITH_FAST_DEPEND - copied unchanged from r291075, head/tools/build/options/WITH_FAST_DEPEND projects/cxl_iscsi/tools/test/net/ - copied from r291075, head/tools/test/net/ projects/cxl_iscsi/tools/tools/locale/ - copied from r291075, head/tools/tools/locale/ projects/cxl_iscsi/usr.bin/limits/tests/ - copied from r291075, head/usr.bin/limits/tests/ projects/cxl_iscsi/usr.bin/localedef/ - copied from r291075, head/usr.bin/localedef/ projects/cxl_iscsi/usr.bin/systat/sctp.c - copied unchanged from r291075, head/usr.bin/systat/sctp.c projects/cxl_iscsi/usr.bin/truss/aarch64-cloudabi64.c - copied unchanged from r291075, head/usr.bin/truss/aarch64-cloudabi64.c projects/cxl_iscsi/usr.bin/truss/aarch64-freebsd.c - copied unchanged from r291075, head/usr.bin/truss/aarch64-freebsd.c projects/cxl_iscsi/usr.bin/truss/amd64-freebsd.c - copied unchanged from r291075, head/usr.bin/truss/amd64-freebsd.c projects/cxl_iscsi/usr.bin/truss/amd64-freebsd32.c - copied unchanged from r291075, head/usr.bin/truss/amd64-freebsd32.c projects/cxl_iscsi/usr.bin/truss/arm-freebsd.c - copied unchanged from r291075, head/usr.bin/truss/arm-freebsd.c projects/cxl_iscsi/usr.bin/truss/cloudabi.c - copied unchanged from r291075, head/usr.bin/truss/cloudabi.c projects/cxl_iscsi/usr.bin/truss/cloudabi.h - copied unchanged from r291075, head/usr.bin/truss/cloudabi.h projects/cxl_iscsi/usr.bin/truss/i386-freebsd.c - copied unchanged from r291075, head/usr.bin/truss/i386-freebsd.c projects/cxl_iscsi/usr.bin/truss/makesyscallsconf.sh - copied unchanged from r291075, head/usr.bin/truss/makesyscallsconf.sh projects/cxl_iscsi/usr.bin/truss/mips-freebsd.c - copied unchanged from r291075, head/usr.bin/truss/mips-freebsd.c projects/cxl_iscsi/usr.bin/truss/powerpc-freebsd.c - copied unchanged from r291075, head/usr.bin/truss/powerpc-freebsd.c projects/cxl_iscsi/usr.bin/truss/powerpc64-freebsd.c - copied unchanged from r291075, head/usr.bin/truss/powerpc64-freebsd.c projects/cxl_iscsi/usr.bin/truss/powerpc64-freebsd32.c - copied unchanged from r291075, head/usr.bin/truss/powerpc64-freebsd32.c projects/cxl_iscsi/usr.bin/truss/sparc64-freebsd.c - copied unchanged from r291075, head/usr.bin/truss/sparc64-freebsd.c projects/cxl_iscsi/usr.sbin/fmtree/ - copied from r291075, head/usr.sbin/fmtree/ projects/cxl_iscsi/usr.sbin/makefs/tests/ - copied from r291075, head/usr.sbin/makefs/tests/ projects/cxl_iscsi/usr.sbin/mpsutil/ - copied from r291075, head/usr.sbin/mpsutil/ projects/cxl_iscsi/usr.sbin/ypldap/ - copied from r291075, head/usr.sbin/ypldap/ Replaced: projects/cxl_iscsi/lib/libc/locale/ascii.c - copied unchanged from r291075, head/lib/libc/locale/ascii.c projects/cxl_iscsi/share/monetdef/de_AT.ISO8859-1.src - copied unchanged from r291075, head/share/monetdef/de_AT.ISO8859-1.src projects/cxl_iscsi/share/monetdef/nl_NL.ISO8859-1.src - copied unchanged from r291075, head/share/monetdef/nl_NL.ISO8859-1.src projects/cxl_iscsi/share/monetdef/sl_SI.ISO8859-2.src - copied unchanged from r291075, head/share/monetdef/sl_SI.ISO8859-2.src projects/cxl_iscsi/share/numericdef/uk_UA.KOI8-U.src - copied unchanged from r291075, head/share/numericdef/uk_UA.KOI8-U.src projects/cxl_iscsi/share/timedef/de_DE.UTF-8.src - copied unchanged from r291075, head/share/timedef/de_DE.UTF-8.src projects/cxl_iscsi/tools/build/options/WITH_META_MODE - copied unchanged from r291075, head/tools/build/options/WITH_META_MODE Deleted: projects/cxl_iscsi/contrib/libucl/cmake/ projects/cxl_iscsi/contrib/ntp/FREEBSD-Xlist projects/cxl_iscsi/contrib/ntp/FREEBSD-upgrade projects/cxl_iscsi/contrib/ntp/sntp/libevent/sample/ projects/cxl_iscsi/contrib/ntp/sntp/tests/fileHandlingTest.h projects/cxl_iscsi/contrib/ntp/sntp/tests/g_fileHandlingTest.h projects/cxl_iscsi/contrib/ntp/sntp/tests/g_networking.cpp projects/cxl_iscsi/contrib/ntp/sntp/tests/g_packetHandling.cpp projects/cxl_iscsi/contrib/ntp/sntp/tests/g_packetProcessing.cpp projects/cxl_iscsi/contrib/ntp/sntp/tests/g_sntptest.h projects/cxl_iscsi/contrib/ntp/sntp/tests_main.cpp projects/cxl_iscsi/contrib/ntp/sntp/tests_main.h projects/cxl_iscsi/contrib/ntp/tests/libntp/g_a_md5encrypt.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_atoint.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_atouint.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_authkeys.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_buftvtots.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_calendar.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_caljulian.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_caltontp.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_calyearstart.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_clocktime.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_decodenetnum.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_hextoint.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_hextolfp.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_humandate.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_lfpfunc.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_lfptest.h projects/cxl_iscsi/contrib/ntp/tests/libntp/g_lfptostr.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_libntptest.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_libntptest.h projects/cxl_iscsi/contrib/ntp/tests/libntp/g_modetoa.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_msyslog.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_netof.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_numtoa.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_numtohost.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_octtoint.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_prettydate.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_recvbuff.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_refnumtoa.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_sfptostr.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_sockaddrtest.h projects/cxl_iscsi/contrib/ntp/tests/libntp/g_socktoa.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_ssl_init.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_statestr.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_strtolfp.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_timespecops.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_timestructs.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_timestructs.h projects/cxl_iscsi/contrib/ntp/tests/libntp/g_timevalops.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_tstotv.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_tvtots.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_uglydate.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_vi64ops.cpp projects/cxl_iscsi/contrib/ntp/tests/libntp/g_ymd2yd.cpp projects/cxl_iscsi/contrib/ntp/tests/ntpd/leapsec.cpp projects/cxl_iscsi/contrib/ntp/tests/ntpd/ntpdtest.cpp projects/cxl_iscsi/contrib/ntp/tests/ntpd/ntpdtest.h projects/cxl_iscsi/contrib/wpa/src/crypto/crypto_cryptoapi.c projects/cxl_iscsi/contrib/wpa/src/crypto/tls_schannel.c projects/cxl_iscsi/crypto/openssh/schnorr.c projects/cxl_iscsi/crypto/openssl/crypto/bn/asm/modexp512-x86_64.pl projects/cxl_iscsi/crypto/openssl/crypto/engine/eng_rsax.c projects/cxl_iscsi/crypto/openssl/crypto/evp/evp_fips.c projects/cxl_iscsi/crypto/openssl/ssl/d1_enc.c projects/cxl_iscsi/etc/periodic/daily/430.status-rwho projects/cxl_iscsi/gnu/usr.bin/cc/c++filt/ projects/cxl_iscsi/gnu/usr.bin/cc/collect2/ projects/cxl_iscsi/gnu/usr.bin/cc/protoize/ projects/cxl_iscsi/gnu/usr.bin/groff/src/devices/xditview/ projects/cxl_iscsi/lib/libgpib/ projects/cxl_iscsi/lib/libohash/ projects/cxl_iscsi/secure/lib/libcrypto/amd64/modexp512-x86_64.S projects/cxl_iscsi/secure/lib/libcrypto/i386/cast-586.s projects/cxl_iscsi/share/colldef/README projects/cxl_iscsi/share/colldef/be_BY.CP1131.src projects/cxl_iscsi/share/colldef/be_BY.CP1251.src projects/cxl_iscsi/share/colldef/be_BY.ISO8859-5.src projects/cxl_iscsi/share/colldef/bg_BG.CP1251.src projects/cxl_iscsi/share/colldef/ca_ES.ISO8859-1.src projects/cxl_iscsi/share/colldef/ca_ES.ISO8859-15.src projects/cxl_iscsi/share/colldef/cs_CZ.ISO8859-2.src projects/cxl_iscsi/share/colldef/de_DE.ISO8859-1.src projects/cxl_iscsi/share/colldef/de_DE.ISO8859-15.src projects/cxl_iscsi/share/colldef/el_GR.ISO8859-7.src projects/cxl_iscsi/share/colldef/en_DK.example projects/cxl_iscsi/share/colldef/es_ES.ISO8859-1.src projects/cxl_iscsi/share/colldef/es_ES.ISO8859-15.src projects/cxl_iscsi/share/colldef/et_EE.ISO8859-15.src projects/cxl_iscsi/share/colldef/hi_IN.ISCII-DEV.src projects/cxl_iscsi/share/colldef/hr_HR.ISO8859-2.src projects/cxl_iscsi/share/colldef/hy_AM.ARMSCII-8.src projects/cxl_iscsi/share/colldef/is_IS.ISO8859-1.src projects/cxl_iscsi/share/colldef/is_IS.ISO8859-15.src projects/cxl_iscsi/share/colldef/kk_KZ.PT154.src projects/cxl_iscsi/share/colldef/la_LN.ISO8859-1.src projects/cxl_iscsi/share/colldef/la_LN.ISO8859-13.src projects/cxl_iscsi/share/colldef/la_LN.ISO8859-15.src projects/cxl_iscsi/share/colldef/la_LN.ISO8859-2.src projects/cxl_iscsi/share/colldef/la_LN.ISO8859-4.src projects/cxl_iscsi/share/colldef/la_LN.US-ASCII.src projects/cxl_iscsi/share/colldef/lt_LT.ISO8859-4.src projects/cxl_iscsi/share/colldef/map.ARMSCII-8 projects/cxl_iscsi/share/colldef/map.CP1131 projects/cxl_iscsi/share/colldef/map.CP1251 projects/cxl_iscsi/share/colldef/map.CP866 projects/cxl_iscsi/share/colldef/map.ISCII-DEV projects/cxl_iscsi/share/colldef/map.ISO8859-1 projects/cxl_iscsi/share/colldef/map.ISO8859-13 projects/cxl_iscsi/share/colldef/map.ISO8859-15 projects/cxl_iscsi/share/colldef/map.ISO8859-2 projects/cxl_iscsi/share/colldef/map.ISO8859-4 projects/cxl_iscsi/share/colldef/map.ISO8859-5 projects/cxl_iscsi/share/colldef/map.ISO8859-7 projects/cxl_iscsi/share/colldef/map.ISO8859-9 projects/cxl_iscsi/share/colldef/map.KOI8-R projects/cxl_iscsi/share/colldef/map.KOI8-U projects/cxl_iscsi/share/colldef/map.PT154 projects/cxl_iscsi/share/colldef/no_NO.ISO8859-1.src projects/cxl_iscsi/share/colldef/no_NO.ISO8859-15.src projects/cxl_iscsi/share/colldef/pl_PL.ISO8859-2.src projects/cxl_iscsi/share/colldef/ru_RU.CP1251.src projects/cxl_iscsi/share/colldef/ru_RU.CP866.src projects/cxl_iscsi/share/colldef/ru_RU.ISO8859-5.src projects/cxl_iscsi/share/colldef/ru_RU.KOI8-R.src projects/cxl_iscsi/share/colldef/sl_SI.ISO8859-2.src projects/cxl_iscsi/share/colldef/sr_YU.ISO8859-5.src projects/cxl_iscsi/share/colldef/sv_SE.ISO8859-1.src projects/cxl_iscsi/share/colldef/sv_SE.ISO8859-15.src projects/cxl_iscsi/share/colldef/tr_TR.ISO8859-9.src projects/cxl_iscsi/share/colldef/uk_UA.CP1251.src projects/cxl_iscsi/share/colldef/uk_UA.ISO8859-5.src projects/cxl_iscsi/share/colldef/uk_UA.KOI8-U.src projects/cxl_iscsi/share/mklocale/ projects/cxl_iscsi/share/monetdef/Makefile.depend projects/cxl_iscsi/share/monetdef/af_ZA.ISO8859-1.src projects/cxl_iscsi/share/monetdef/ca_ES.ISO8859-1.src projects/cxl_iscsi/share/monetdef/ca_ES.UTF-8.src projects/cxl_iscsi/share/monetdef/da_DK.ISO8859-1.src projects/cxl_iscsi/share/monetdef/de_CH.ISO8859-1.src projects/cxl_iscsi/share/monetdef/de_DE.ISO8859-1.src projects/cxl_iscsi/share/monetdef/de_DE.UTF-8.src projects/cxl_iscsi/share/monetdef/el_GR.ISO8859-7.src projects/cxl_iscsi/share/monetdef/el_GR.UTF-8.src projects/cxl_iscsi/share/monetdef/en_AU.ISO8859-1.src projects/cxl_iscsi/share/monetdef/en_CA.ISO8859-1.src projects/cxl_iscsi/share/monetdef/en_GB.ISO8859-1.src projects/cxl_iscsi/share/monetdef/en_NZ.ISO8859-1.src projects/cxl_iscsi/share/monetdef/en_US.ISO8859-1.src projects/cxl_iscsi/share/monetdef/es_ES.ISO8859-1.src projects/cxl_iscsi/share/monetdef/es_ES.UTF-8.src projects/cxl_iscsi/share/monetdef/et_EE.ISO8859-15.src projects/cxl_iscsi/share/monetdef/fi_FI.ISO8859-1.src projects/cxl_iscsi/share/monetdef/fi_FI.UTF-8.src projects/cxl_iscsi/share/monetdef/fr_BE.ISO8859-1.src projects/cxl_iscsi/share/monetdef/fr_BE.UTF-8.src projects/cxl_iscsi/share/monetdef/fr_CA.ISO8859-1.src projects/cxl_iscsi/share/monetdef/fr_FR.ISO8859-1.src projects/cxl_iscsi/share/monetdef/fr_FR.UTF-8.src projects/cxl_iscsi/share/monetdef/hr_HR.ISO8859-2.src projects/cxl_iscsi/share/monetdef/is_IS.ISO8859-1.src projects/cxl_iscsi/share/monetdef/it_IT.ISO8859-1.src projects/cxl_iscsi/share/monetdef/it_IT.UTF-8.src projects/cxl_iscsi/share/monetdef/kk_KZ.PT154.src projects/cxl_iscsi/share/monetdef/kk_KZ.UTF-8.src projects/cxl_iscsi/share/monetdef/lt_LT.ISO8859-13.src projects/cxl_iscsi/share/monetdef/mn_MN.UTF-8.src projects/cxl_iscsi/share/monetdef/nl_BE.ISO8859-1.src projects/cxl_iscsi/share/monetdef/nl_BE.UTF-8.src projects/cxl_iscsi/share/monetdef/no_NO.ISO8859-1.src projects/cxl_iscsi/share/monetdef/pt_BR.ISO8859-1.src projects/cxl_iscsi/share/monetdef/pt_PT.ISO8859-1.src projects/cxl_iscsi/share/monetdef/pt_PT.ISO8859-15.src projects/cxl_iscsi/share/monetdef/pt_PT.UTF-8.src projects/cxl_iscsi/share/monetdef/ro_RO.ISO8859-2.src projects/cxl_iscsi/share/monetdef/sk_SK.ISO8859-2.src projects/cxl_iscsi/share/monetdef/sr_YU.ISO8859-2.src projects/cxl_iscsi/share/monetdef/sr_YU.ISO8859-5.src projects/cxl_iscsi/share/monetdef/sr_YU.UTF-8.src projects/cxl_iscsi/share/monetdef/sv_SE.ISO8859-1.src projects/cxl_iscsi/share/monetdef/zh_CN.GB18030.src projects/cxl_iscsi/share/monetdef/zh_CN.GB2312.src projects/cxl_iscsi/share/monetdef/zh_CN.UTF-8.src projects/cxl_iscsi/share/monetdef/zh_CN.eucCN.src projects/cxl_iscsi/share/monetdef/zh_HK.UTF-8.src projects/cxl_iscsi/share/monetdef/zh_TW.Big5.src projects/cxl_iscsi/share/msgdef/Makefile.depend projects/cxl_iscsi/share/msgdef/af_ZA.ISO8859-1.src projects/cxl_iscsi/share/msgdef/ca_ES.ISO8859-1.src projects/cxl_iscsi/share/msgdef/cs_CZ.ISO8859-2.src projects/cxl_iscsi/share/msgdef/da_DK.ISO8859-1.src projects/cxl_iscsi/share/msgdef/de_DE.ISO8859-1.src projects/cxl_iscsi/share/msgdef/en_CA.ISO8859-1.src projects/cxl_iscsi/share/msgdef/en_GB.ISO8859-1.src projects/cxl_iscsi/share/msgdef/en_US.ISO8859-1.src projects/cxl_iscsi/share/msgdef/es_ES.ISO8859-1.src projects/cxl_iscsi/share/msgdef/et_EE.ISO8859-15.src projects/cxl_iscsi/share/msgdef/eu_ES.ISO8859-1.src projects/cxl_iscsi/share/msgdef/fi_FI.ISO8859-1.src projects/cxl_iscsi/share/msgdef/fr_BE.ISO8859-1.src projects/cxl_iscsi/share/msgdef/fr_CH.ISO8859-1.src projects/cxl_iscsi/share/msgdef/fr_FR.ISO8859-1.src projects/cxl_iscsi/share/msgdef/hr_HR.ISO8859-2.src projects/cxl_iscsi/share/msgdef/hu_HU.ISO8859-2.src projects/cxl_iscsi/share/msgdef/is_IS.ISO8859-1.src projects/cxl_iscsi/share/msgdef/it_IT.ISO8859-1.src projects/cxl_iscsi/share/msgdef/kk_KZ.PT154.src projects/cxl_iscsi/share/msgdef/kk_KZ.UTF-8.src projects/cxl_iscsi/share/msgdef/lt_LT.ISO8859-13.src projects/cxl_iscsi/share/msgdef/mn_MN.UTF-8.src projects/cxl_iscsi/share/msgdef/nl_NL.ISO8859-1.src projects/cxl_iscsi/share/msgdef/no_NO.ISO8859-1.src projects/cxl_iscsi/share/msgdef/pl_PL.ISO8859-2.src projects/cxl_iscsi/share/msgdef/pt_PT.ISO8859-1.src projects/cxl_iscsi/share/msgdef/ro_RO.ISO8859-2.src projects/cxl_iscsi/share/msgdef/sl_SI.ISO8859-2.src projects/cxl_iscsi/share/msgdef/sr_YU.ISO8859-2.src projects/cxl_iscsi/share/msgdef/sr_YU.ISO8859-5.src projects/cxl_iscsi/share/msgdef/sr_YU.UTF-8.src projects/cxl_iscsi/share/msgdef/sv_SE.ISO8859-1.src projects/cxl_iscsi/share/msgdef/zh_CN.GB18030.src projects/cxl_iscsi/share/msgdef/zh_CN.GB2312.src projects/cxl_iscsi/share/msgdef/zh_CN.UTF-8.src projects/cxl_iscsi/share/msgdef/zh_CN.eucCN.src projects/cxl_iscsi/share/msgdef/zh_TW.Big5.src projects/cxl_iscsi/share/msgdef/zh_TW.UTF-8.src projects/cxl_iscsi/share/numericdef/Makefile.depend projects/cxl_iscsi/share/numericdef/af_ZA.ISO8859-1.src projects/cxl_iscsi/share/numericdef/am_ET.UTF-8.src projects/cxl_iscsi/share/numericdef/be_BY.CP1251.src projects/cxl_iscsi/share/numericdef/bg_BG.CP1251.src projects/cxl_iscsi/share/numericdef/ca_ES.ISO8859-1.src projects/cxl_iscsi/share/numericdef/cs_CZ.ISO8859-2.src projects/cxl_iscsi/share/numericdef/da_DK.ISO8859-1.src projects/cxl_iscsi/share/numericdef/de_CH.ISO8859-1.src projects/cxl_iscsi/share/numericdef/de_DE.ISO8859-1.src projects/cxl_iscsi/share/numericdef/el_GR.ISO8859-7.src projects/cxl_iscsi/share/numericdef/en_US.ISO8859-1.src projects/cxl_iscsi/share/numericdef/es_ES.ISO8859-1.src projects/cxl_iscsi/share/numericdef/et_EE.ISO8859-15.src projects/cxl_iscsi/share/numericdef/eu_ES.ISO8859-1.src projects/cxl_iscsi/share/numericdef/fi_FI.ISO8859-1.src projects/cxl_iscsi/share/numericdef/fr_BE.ISO8859-1.src projects/cxl_iscsi/share/numericdef/fr_FR.ISO8859-1.src projects/cxl_iscsi/share/numericdef/hi_IN.ISCII-DEV.src projects/cxl_iscsi/share/numericdef/hr_HR.ISO8859-2.src projects/cxl_iscsi/share/numericdef/hu_HU.ISO8859-2.src projects/cxl_iscsi/share/numericdef/hy_AM.ARMSCII-8.src projects/cxl_iscsi/share/numericdef/is_IS.ISO8859-1.src projects/cxl_iscsi/share/numericdef/it_IT.ISO8859-1.src projects/cxl_iscsi/share/numericdef/ja_JP.eucJP.src projects/cxl_iscsi/share/numericdef/kk_KZ.PT154.src projects/cxl_iscsi/share/numericdef/ko_KR.eucKR.src projects/cxl_iscsi/share/numericdef/lt_LT.ISO8859-13.src projects/cxl_iscsi/share/numericdef/mn_MN.UTF-8.src projects/cxl_iscsi/share/numericdef/nl_NL.ISO8859-1.src projects/cxl_iscsi/share/numericdef/no_NO.ISO8859-1.src projects/cxl_iscsi/share/numericdef/pl_PL.ISO8859-2.src projects/cxl_iscsi/share/numericdef/pt_BR.ISO8859-1.src projects/cxl_iscsi/share/numericdef/pt_PT.ISO8859-1.src projects/cxl_iscsi/share/numericdef/ro_RO.ISO8859-2.src projects/cxl_iscsi/share/numericdef/ru_RU.KOI8-R.src projects/cxl_iscsi/share/numericdef/sk_SK.ISO8859-2.src projects/cxl_iscsi/share/numericdef/sl_SI.ISO8859-2.src projects/cxl_iscsi/share/numericdef/sr_YU.ISO8859-2.src projects/cxl_iscsi/share/numericdef/sr_YU.ISO8859-5.src projects/cxl_iscsi/share/numericdef/sv_SE.ISO8859-1.src projects/cxl_iscsi/share/numericdef/tr_TR.ISO8859-9.src projects/cxl_iscsi/share/numericdef/zh_CN.eucCN.src projects/cxl_iscsi/share/timedef/Makefile.depend projects/cxl_iscsi/share/timedef/ca_ES.ISO8859-1.src projects/cxl_iscsi/share/timedef/ca_ES.UTF-8.src projects/cxl_iscsi/share/timedef/da_DK.ISO8859-1.src projects/cxl_iscsi/share/timedef/de_AT.ISO8859-1.src projects/cxl_iscsi/share/timedef/de_DE.ISO8859-1.src projects/cxl_iscsi/share/timedef/en_GB.ISO8859-1.src projects/cxl_iscsi/share/timedef/en_US.ISO8859-1.src projects/cxl_iscsi/share/timedef/es_ES.ISO8859-1.src projects/cxl_iscsi/share/timedef/eu_ES.ISO8859-1.src projects/cxl_iscsi/share/timedef/fi_FI.ISO8859-1.src projects/cxl_iscsi/share/timedef/fr_FR.ISO8859-1.src projects/cxl_iscsi/share/timedef/is_IS.ISO8859-1.src projects/cxl_iscsi/share/timedef/it_IT.ISO8859-1.src projects/cxl_iscsi/share/timedef/kk_KZ.PT154.src projects/cxl_iscsi/share/timedef/kk_KZ.UTF-8.src projects/cxl_iscsi/share/timedef/la_LN.ISO8859-1.src projects/cxl_iscsi/share/timedef/lt_LT.ISO8859-4.src projects/cxl_iscsi/share/timedef/mn_MN.UTF-8.src projects/cxl_iscsi/share/timedef/nb_NO.ISO8859-1.src projects/cxl_iscsi/share/timedef/nl_NL.ISO8859-1.src projects/cxl_iscsi/share/timedef/nn_NO.ISO8859-1.src projects/cxl_iscsi/share/timedef/pt_PT.ISO8859-1.src projects/cxl_iscsi/share/timedef/sr_YU.ISO8859-2.src projects/cxl_iscsi/share/timedef/sr_YU.ISO8859-5.src projects/cxl_iscsi/share/timedef/sr_YU.UTF-8.src projects/cxl_iscsi/share/timedef/sv_SE.ISO8859-1.src projects/cxl_iscsi/share/timedef/zh_CN.GB18030.src projects/cxl_iscsi/share/timedef/zh_CN.GB2312.src projects/cxl_iscsi/share/timedef/zh_CN.UTF-8.src projects/cxl_iscsi/share/timedef/zh_CN.eucCN.src projects/cxl_iscsi/share/timedef/zh_TW.Big5.src projects/cxl_iscsi/share/timedef/zh_TW.UTF-8.src projects/cxl_iscsi/sys/arm/conf/EP80219 projects/cxl_iscsi/sys/arm/conf/IQ31244 projects/cxl_iscsi/sys/arm/conf/LN2410SBC projects/cxl_iscsi/sys/arm/samsung/s3c2xx0/ projects/cxl_iscsi/sys/arm/ti/am335x/hdmi.h projects/cxl_iscsi/sys/arm/ti/am335x/hdmi_if.m projects/cxl_iscsi/sys/contrib/vchiq/interface/vchiq_arm/vchiq_proc.c projects/cxl_iscsi/sys/dev/usb/usb_compat_linux.c projects/cxl_iscsi/sys/dev/usb/usb_compat_linux.h projects/cxl_iscsi/sys/modules/ispfw/isp_2400_multi/ projects/cxl_iscsi/sys/modules/ispfw/isp_2500_multi/ projects/cxl_iscsi/sys/modules/linuxapi/ projects/cxl_iscsi/sys/ofed/include/asm/ projects/cxl_iscsi/sys/ofed/include/linux/bitops.h projects/cxl_iscsi/sys/ofed/include/linux/cache.h projects/cxl_iscsi/sys/ofed/include/linux/cdev.h projects/cxl_iscsi/sys/ofed/include/linux/clocksource.h projects/cxl_iscsi/sys/ofed/include/linux/compat.h projects/cxl_iscsi/sys/ofed/include/linux/compiler.h projects/cxl_iscsi/sys/ofed/include/linux/completion.h projects/cxl_iscsi/sys/ofed/include/linux/delay.h projects/cxl_iscsi/sys/ofed/include/linux/device.h projects/cxl_iscsi/sys/ofed/include/linux/dma-attrs.h projects/cxl_iscsi/sys/ofed/include/linux/dma-mapping.h projects/cxl_iscsi/sys/ofed/include/linux/dmapool.h projects/cxl_iscsi/sys/ofed/include/linux/err.h projects/cxl_iscsi/sys/ofed/include/linux/errno.h projects/cxl_iscsi/sys/ofed/include/linux/etherdevice.h projects/cxl_iscsi/sys/ofed/include/linux/file.h projects/cxl_iscsi/sys/ofed/include/linux/fs.h projects/cxl_iscsi/sys/ofed/include/linux/gfp.h projects/cxl_iscsi/sys/ofed/include/linux/hardirq.h projects/cxl_iscsi/sys/ofed/include/linux/idr.h projects/cxl_iscsi/sys/ofed/include/linux/if_arp.h projects/cxl_iscsi/sys/ofed/include/linux/if_ether.h projects/cxl_iscsi/sys/ofed/include/linux/if_vlan.h projects/cxl_iscsi/sys/ofed/include/linux/in.h projects/cxl_iscsi/sys/ofed/include/linux/in6.h projects/cxl_iscsi/sys/ofed/include/linux/inetdevice.h projects/cxl_iscsi/sys/ofed/include/linux/interrupt.h projects/cxl_iscsi/sys/ofed/include/linux/io-mapping.h projects/cxl_iscsi/sys/ofed/include/linux/io.h projects/cxl_iscsi/sys/ofed/include/linux/ioctl.h projects/cxl_iscsi/sys/ofed/include/linux/jhash.h projects/cxl_iscsi/sys/ofed/include/linux/jiffies.h projects/cxl_iscsi/sys/ofed/include/linux/kdev_t.h projects/cxl_iscsi/sys/ofed/include/linux/kernel.h projects/cxl_iscsi/sys/ofed/include/linux/kmod.h projects/cxl_iscsi/sys/ofed/include/linux/kobject.h projects/cxl_iscsi/sys/ofed/include/linux/kref.h projects/cxl_iscsi/sys/ofed/include/linux/kthread.h projects/cxl_iscsi/sys/ofed/include/linux/ktime.h projects/cxl_iscsi/sys/ofed/include/linux/linux_compat.c projects/cxl_iscsi/sys/ofed/include/linux/linux_idr.c projects/cxl_iscsi/sys/ofed/include/linux/linux_kmod.c projects/cxl_iscsi/sys/ofed/include/linux/linux_pci.c projects/cxl_iscsi/sys/ofed/include/linux/linux_radix.c projects/cxl_iscsi/sys/ofed/include/linux/list.h projects/cxl_iscsi/sys/ofed/include/linux/lockdep.h projects/cxl_iscsi/sys/ofed/include/linux/log2.h projects/cxl_iscsi/sys/ofed/include/linux/math64.h projects/cxl_iscsi/sys/ofed/include/linux/miscdevice.h projects/cxl_iscsi/sys/ofed/include/linux/mm.h projects/cxl_iscsi/sys/ofed/include/linux/module.h projects/cxl_iscsi/sys/ofed/include/linux/moduleparam.h projects/cxl_iscsi/sys/ofed/include/linux/mutex.h projects/cxl_iscsi/sys/ofed/include/linux/net.h projects/cxl_iscsi/sys/ofed/include/linux/netdevice.h projects/cxl_iscsi/sys/ofed/include/linux/notifier.h projects/cxl_iscsi/sys/ofed/include/linux/page.h projects/cxl_iscsi/sys/ofed/include/linux/pci.h projects/cxl_iscsi/sys/ofed/include/linux/poll.h projects/cxl_iscsi/sys/ofed/include/linux/printk.h projects/cxl_iscsi/sys/ofed/include/linux/radix-tree.h projects/cxl_iscsi/sys/ofed/include/linux/random.h projects/cxl_iscsi/sys/ofed/include/linux/rbtree.h projects/cxl_iscsi/sys/ofed/include/linux/rwlock.h projects/cxl_iscsi/sys/ofed/include/linux/rwsem.h projects/cxl_iscsi/sys/ofed/include/linux/scatterlist.h projects/cxl_iscsi/sys/ofed/include/linux/sched.h projects/cxl_iscsi/sys/ofed/include/linux/semaphore.h projects/cxl_iscsi/sys/ofed/include/linux/slab.h projects/cxl_iscsi/sys/ofed/include/linux/socket.h projects/cxl_iscsi/sys/ofed/include/linux/spinlock.h projects/cxl_iscsi/sys/ofed/include/linux/string.h projects/cxl_iscsi/sys/ofed/include/linux/sysfs.h projects/cxl_iscsi/sys/ofed/include/linux/timer.h projects/cxl_iscsi/sys/ofed/include/linux/types.h projects/cxl_iscsi/sys/ofed/include/linux/uaccess.h projects/cxl_iscsi/sys/ofed/include/linux/vmalloc.h projects/cxl_iscsi/sys/ofed/include/linux/wait.h projects/cxl_iscsi/sys/ofed/include/linux/workqueue.h projects/cxl_iscsi/sys/ofed/include/net/ projects/cxl_iscsi/tools/build/options/WITH_META_FILES projects/cxl_iscsi/tools/regression/acct/ projects/cxl_iscsi/tools/regression/acltools/ projects/cxl_iscsi/tools/regression/lib/libc/gen/ projects/cxl_iscsi/tools/regression/lib/libc/locale/ projects/cxl_iscsi/tools/regression/lib/libc/net/ projects/cxl_iscsi/tools/regression/lib/libc/stdio/ projects/cxl_iscsi/tools/regression/lib/libc/stdlib/ projects/cxl_iscsi/tools/regression/lib/libc/string/ projects/cxl_iscsi/tools/regression/pipe/ projects/cxl_iscsi/tools/regression/posixshm/ projects/cxl_iscsi/tools/regression/vfs/ projects/cxl_iscsi/tools/test/posixshm/ projects/cxl_iscsi/usr.bin/colldef/ projects/cxl_iscsi/usr.bin/mklocale/ projects/cxl_iscsi/usr.bin/truss/aarch64-fbsd.c projects/cxl_iscsi/usr.bin/truss/amd64-fbsd.c projects/cxl_iscsi/usr.bin/truss/amd64-fbsd32.c projects/cxl_iscsi/usr.bin/truss/amd64cloudabi64.conf projects/cxl_iscsi/usr.bin/truss/amd64linux32.conf projects/cxl_iscsi/usr.bin/truss/arm-fbsd.c projects/cxl_iscsi/usr.bin/truss/fbsd32.conf projects/cxl_iscsi/usr.bin/truss/i386-fbsd.c projects/cxl_iscsi/usr.bin/truss/i386.conf projects/cxl_iscsi/usr.bin/truss/i386linux.conf projects/cxl_iscsi/usr.bin/truss/mips-fbsd.c projects/cxl_iscsi/usr.bin/truss/powerpc-fbsd.c projects/cxl_iscsi/usr.bin/truss/powerpc64-fbsd.c projects/cxl_iscsi/usr.bin/truss/sparc64-fbsd.c projects/cxl_iscsi/usr.sbin/mtree/ Modified: projects/cxl_iscsi/MAINTAINERS (contents, props changed) projects/cxl_iscsi/Makefile projects/cxl_iscsi/Makefile.inc1 projects/cxl_iscsi/ObsoleteFiles.inc projects/cxl_iscsi/UPDATING projects/cxl_iscsi/bin/csh/config_p.h projects/cxl_iscsi/bin/dd/Makefile projects/cxl_iscsi/bin/ls/tests/ls_tests.sh projects/cxl_iscsi/bin/ps/Makefile projects/cxl_iscsi/bin/rm/rm.1 projects/cxl_iscsi/bin/rm/rm.c projects/cxl_iscsi/bin/sh/eval.c projects/cxl_iscsi/bin/sh/expand.c projects/cxl_iscsi/bin/sh/expand.h projects/cxl_iscsi/bin/sh/tests/Makefile projects/cxl_iscsi/bin/test/tests/legacy_test.sh projects/cxl_iscsi/cddl/Makefile projects/cxl_iscsi/cddl/contrib/opensolaris/cmd/zfs/zfs.8 projects/cxl_iscsi/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c projects/cxl_iscsi/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c projects/cxl_iscsi/cddl/contrib/opensolaris/cmd/zstreamdump/zstreamdump.c projects/cxl_iscsi/cddl/contrib/opensolaris/lib/libzfs/common/libzfs.h projects/cxl_iscsi/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_compat.c projects/cxl_iscsi/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c projects/cxl_iscsi/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_diff.c projects/cxl_iscsi/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_iter.c projects/cxl_iscsi/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_mount.c projects/cxl_iscsi/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_pool.c projects/cxl_iscsi/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_sendrecv.c projects/cxl_iscsi/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_util.c projects/cxl_iscsi/cddl/contrib/opensolaris/lib/libzfs_core/common/libzfs_core.c projects/cxl_iscsi/cddl/contrib/opensolaris/lib/libzfs_core/common/libzfs_core.h projects/cxl_iscsi/cddl/contrib/opensolaris/lib/libzpool/common/kernel.c projects/cxl_iscsi/cddl/contrib/opensolaris/tools/ctf/cvt/dwarf.c projects/cxl_iscsi/cddl/lib/libzfs/Makefile projects/cxl_iscsi/cddl/usr.sbin/dtrace/tests/Makefile.inc1 projects/cxl_iscsi/contrib/bmake/ChangeLog projects/cxl_iscsi/contrib/bmake/FILES projects/cxl_iscsi/contrib/bmake/Makefile projects/cxl_iscsi/contrib/bmake/arch.c projects/cxl_iscsi/contrib/bmake/compat.c projects/cxl_iscsi/contrib/bmake/cond.c projects/cxl_iscsi/contrib/bmake/configure.in projects/cxl_iscsi/contrib/bmake/for.c projects/cxl_iscsi/contrib/bmake/job.c projects/cxl_iscsi/contrib/bmake/main.c projects/cxl_iscsi/contrib/bmake/make-bootstrap.sh.in projects/cxl_iscsi/contrib/bmake/make.c projects/cxl_iscsi/contrib/bmake/make.h projects/cxl_iscsi/contrib/bmake/meta.c projects/cxl_iscsi/contrib/bmake/mk/ChangeLog projects/cxl_iscsi/contrib/bmake/mk/auto.obj.mk projects/cxl_iscsi/contrib/bmake/mk/dirdeps.mk projects/cxl_iscsi/contrib/bmake/mk/doc.mk projects/cxl_iscsi/contrib/bmake/mk/gendirdeps.mk projects/cxl_iscsi/contrib/bmake/mk/host-target.mk projects/cxl_iscsi/contrib/bmake/mk/install-mk projects/cxl_iscsi/contrib/bmake/mk/meta.autodep.mk projects/cxl_iscsi/contrib/bmake/mk/meta.stage.mk projects/cxl_iscsi/contrib/bmake/mk/meta.sys.mk projects/cxl_iscsi/contrib/bmake/mk/own.mk projects/cxl_iscsi/contrib/bmake/mk/rst2htm.mk projects/cxl_iscsi/contrib/bmake/nonints.h projects/cxl_iscsi/contrib/bmake/os.sh projects/cxl_iscsi/contrib/bmake/parse.c projects/cxl_iscsi/contrib/bmake/suff.c projects/cxl_iscsi/contrib/bmake/unit-tests/varmisc.exp projects/cxl_iscsi/contrib/bmake/unit-tests/varmisc.mk projects/cxl_iscsi/contrib/bmake/var.c projects/cxl_iscsi/contrib/gdb/gdb/arm-tdep.c projects/cxl_iscsi/contrib/groff/tmac/doc-syms projects/cxl_iscsi/contrib/groff/tmac/groff_mdoc.man projects/cxl_iscsi/contrib/jemalloc/ChangeLog projects/cxl_iscsi/contrib/jemalloc/FREEBSD-diffs projects/cxl_iscsi/contrib/jemalloc/VERSION projects/cxl_iscsi/contrib/jemalloc/doc/jemalloc.3 projects/cxl_iscsi/contrib/jemalloc/include/jemalloc/internal/jemalloc_internal.h projects/cxl_iscsi/contrib/jemalloc/include/jemalloc/jemalloc.h projects/cxl_iscsi/contrib/jemalloc/src/arena.c projects/cxl_iscsi/contrib/jemalloc/src/huge.c projects/cxl_iscsi/contrib/jemalloc/src/prof.c projects/cxl_iscsi/contrib/jemalloc/src/tsd.c projects/cxl_iscsi/contrib/libexecinfo/backtrace.3 projects/cxl_iscsi/contrib/libucl/ChangeLog.md projects/cxl_iscsi/contrib/libucl/README.md projects/cxl_iscsi/contrib/libucl/configure.ac projects/cxl_iscsi/contrib/libucl/doc/Makefile.am projects/cxl_iscsi/contrib/libucl/doc/lua_api.md projects/cxl_iscsi/contrib/libucl/include/ucl.h projects/cxl_iscsi/contrib/libucl/klib/kvec.h projects/cxl_iscsi/contrib/libucl/lua/lua_ucl.c projects/cxl_iscsi/contrib/libucl/src/Makefile.am projects/cxl_iscsi/contrib/libucl/src/tree.h projects/cxl_iscsi/contrib/libucl/src/ucl_chartable.h projects/cxl_iscsi/contrib/libucl/src/ucl_emitter.c projects/cxl_iscsi/contrib/libucl/src/ucl_emitter_utils.c projects/cxl_iscsi/contrib/libucl/src/ucl_hash.c projects/cxl_iscsi/contrib/libucl/src/ucl_internal.h projects/cxl_iscsi/contrib/libucl/src/ucl_parser.c projects/cxl_iscsi/contrib/libucl/src/ucl_util.c projects/cxl_iscsi/contrib/libucl/src/xxhash.c projects/cxl_iscsi/contrib/libucl/src/xxhash.h projects/cxl_iscsi/contrib/libucl/tests/Makefile.am projects/cxl_iscsi/contrib/libucl/tests/basic/13.in projects/cxl_iscsi/contrib/libucl/tests/test_basic.c projects/cxl_iscsi/contrib/libucl/tests/test_schema.c projects/cxl_iscsi/contrib/libucl/utils/Makefile.am projects/cxl_iscsi/contrib/libucl/utils/chargen.c projects/cxl_iscsi/contrib/libucl/utils/objdump.c projects/cxl_iscsi/contrib/libxo/libxo/xo_format.5 projects/cxl_iscsi/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp projects/cxl_iscsi/contrib/llvm/tools/clang/lib/Driver/Tools.cpp projects/cxl_iscsi/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXThread.cpp projects/cxl_iscsi/contrib/mdocml/lib.in projects/cxl_iscsi/contrib/netbsd-tests/bin/dd/t_dd.sh projects/cxl_iscsi/contrib/netbsd-tests/kernel/t_lockf.c projects/cxl_iscsi/contrib/netbsd-tests/kernel/t_mqueue.c projects/cxl_iscsi/contrib/netbsd-tests/lib/libc/gen/t_glob.c projects/cxl_iscsi/contrib/netbsd-tests/lib/libc/locale/t_mbstowcs.c projects/cxl_iscsi/contrib/netbsd-tests/lib/libc/regex/debug.c projects/cxl_iscsi/contrib/netbsd-tests/lib/libc/rpc/t_rpc.c projects/cxl_iscsi/contrib/netbsd-tests/lib/libc/ssp/h_readlink.c projects/cxl_iscsi/contrib/netbsd-tests/lib/libc/stdio/t_fopen.c projects/cxl_iscsi/contrib/netbsd-tests/lib/libcrypt/t_crypt.c projects/cxl_iscsi/contrib/ntp/ChangeLog projects/cxl_iscsi/contrib/ntp/CommitLog projects/cxl_iscsi/contrib/ntp/Makefile.am projects/cxl_iscsi/contrib/ntp/Makefile.in projects/cxl_iscsi/contrib/ntp/NEWS projects/cxl_iscsi/contrib/ntp/aclocal.m4 projects/cxl_iscsi/contrib/ntp/adjtimed/Makefile.in projects/cxl_iscsi/contrib/ntp/adjtimed/adjtimed.c projects/cxl_iscsi/contrib/ntp/clockstuff/Makefile.in projects/cxl_iscsi/contrib/ntp/clockstuff/chutest.c projects/cxl_iscsi/contrib/ntp/clockstuff/propdelay.c projects/cxl_iscsi/contrib/ntp/configure projects/cxl_iscsi/contrib/ntp/configure.ac projects/cxl_iscsi/contrib/ntp/html/decode.html projects/cxl_iscsi/contrib/ntp/html/miscopt.html projects/cxl_iscsi/contrib/ntp/html/stats.html projects/cxl_iscsi/contrib/ntp/include/Makefile.am projects/cxl_iscsi/contrib/ntp/include/Makefile.in projects/cxl_iscsi/contrib/ntp/include/isc/Makefile.in projects/cxl_iscsi/contrib/ntp/include/ntp_assert.h projects/cxl_iscsi/contrib/ntp/include/ntp_calendar.h projects/cxl_iscsi/contrib/ntp/include/ntp_config.h projects/cxl_iscsi/contrib/ntp/include/ntp_control.h projects/cxl_iscsi/contrib/ntp/include/ntp_lists.h projects/cxl_iscsi/contrib/ntp/include/ntp_stdlib.h projects/cxl_iscsi/contrib/ntp/include/ntp_syslog.h projects/cxl_iscsi/contrib/ntp/include/ntp_types.h projects/cxl_iscsi/contrib/ntp/kernel/Makefile.in projects/cxl_iscsi/contrib/ntp/kernel/sys/Makefile.in projects/cxl_iscsi/contrib/ntp/libntp/Makefile.in projects/cxl_iscsi/contrib/ntp/libntp/atolfp.c projects/cxl_iscsi/contrib/ntp/libntp/audio.c projects/cxl_iscsi/contrib/ntp/libntp/authkeys.c projects/cxl_iscsi/contrib/ntp/libntp/authreadkeys.c projects/cxl_iscsi/contrib/ntp/libntp/caljulian.c projects/cxl_iscsi/contrib/ntp/libntp/caltontp.c projects/cxl_iscsi/contrib/ntp/libntp/decodenetnum.c projects/cxl_iscsi/contrib/ntp/libntp/emalloc.c projects/cxl_iscsi/contrib/ntp/libntp/icom.c projects/cxl_iscsi/contrib/ntp/libntp/machines.c projects/cxl_iscsi/contrib/ntp/libntp/msyslog.c projects/cxl_iscsi/contrib/ntp/libntp/ntp_calendar.c projects/cxl_iscsi/contrib/ntp/libntp/ntp_intres.c projects/cxl_iscsi/contrib/ntp/libntp/ntp_lineedit.c projects/cxl_iscsi/contrib/ntp/libntp/ntp_rfc2553.c projects/cxl_iscsi/contrib/ntp/libntp/ntp_worker.c projects/cxl_iscsi/contrib/ntp/libntp/prettydate.c projects/cxl_iscsi/contrib/ntp/libntp/recvbuff.c projects/cxl_iscsi/contrib/ntp/libntp/socket.c projects/cxl_iscsi/contrib/ntp/libntp/socktohost.c projects/cxl_iscsi/contrib/ntp/libntp/statestr.c projects/cxl_iscsi/contrib/ntp/libparse/Makefile.in projects/cxl_iscsi/contrib/ntp/ntpd/Makefile.am projects/cxl_iscsi/contrib/ntp/ntpd/Makefile.in projects/cxl_iscsi/contrib/ntp/ntpd/invoke-ntp.conf.texi projects/cxl_iscsi/contrib/ntp/ntpd/invoke-ntp.keys.texi projects/cxl_iscsi/contrib/ntp/ntpd/invoke-ntpd.texi projects/cxl_iscsi/contrib/ntp/ntpd/ntp.conf.5man projects/cxl_iscsi/contrib/ntp/ntpd/ntp.conf.5mdoc projects/cxl_iscsi/contrib/ntp/ntpd/ntp.conf.def projects/cxl_iscsi/contrib/ntp/ntpd/ntp.conf.html projects/cxl_iscsi/contrib/ntp/ntpd/ntp.conf.man.in projects/cxl_iscsi/contrib/ntp/ntpd/ntp.conf.mdoc.in projects/cxl_iscsi/contrib/ntp/ntpd/ntp.keys.5man projects/cxl_iscsi/contrib/ntp/ntpd/ntp.keys.5mdoc projects/cxl_iscsi/contrib/ntp/ntpd/ntp.keys.html projects/cxl_iscsi/contrib/ntp/ntpd/ntp.keys.man.in projects/cxl_iscsi/contrib/ntp/ntpd/ntp.keys.mdoc.in projects/cxl_iscsi/contrib/ntp/ntpd/ntp_config.c projects/cxl_iscsi/contrib/ntp/ntpd/ntp_control.c projects/cxl_iscsi/contrib/ntp/ntpd/ntp_crypto.c projects/cxl_iscsi/contrib/ntp/ntpd/ntp_io.c projects/cxl_iscsi/contrib/ntp/ntpd/ntp_loopfilter.c projects/cxl_iscsi/contrib/ntp/ntpd/ntp_monitor.c projects/cxl_iscsi/contrib/ntp/ntpd/ntp_parser.c projects/cxl_iscsi/contrib/ntp/ntpd/ntp_parser.h projects/cxl_iscsi/contrib/ntp/ntpd/ntp_peer.c projects/cxl_iscsi/contrib/ntp/ntpd/ntp_proto.c projects/cxl_iscsi/contrib/ntp/ntpd/ntp_refclock.c projects/cxl_iscsi/contrib/ntp/ntpd/ntp_request.c projects/cxl_iscsi/contrib/ntp/ntpd/ntp_restrict.c projects/cxl_iscsi/contrib/ntp/ntpd/ntp_timer.c projects/cxl_iscsi/contrib/ntp/ntpd/ntpd-opts.c projects/cxl_iscsi/contrib/ntp/ntpd/ntpd-opts.def projects/cxl_iscsi/contrib/ntp/ntpd/ntpd-opts.h projects/cxl_iscsi/contrib/ntp/ntpd/ntpd.1ntpdman projects/cxl_iscsi/contrib/ntp/ntpd/ntpd.1ntpdmdoc projects/cxl_iscsi/contrib/ntp/ntpd/ntpd.c projects/cxl_iscsi/contrib/ntp/ntpd/ntpd.html projects/cxl_iscsi/contrib/ntp/ntpd/ntpd.man.in projects/cxl_iscsi/contrib/ntp/ntpd/ntpd.mdoc.in projects/cxl_iscsi/contrib/ntp/ntpd/rc_cmdlength.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/ntpd/refclock_arc.c projects/cxl_iscsi/contrib/ntp/ntpd/refclock_chu.c projects/cxl_iscsi/contrib/ntp/ntpd/refclock_gpsdjson.c projects/cxl_iscsi/contrib/ntp/ntpd/refclock_local.c projects/cxl_iscsi/contrib/ntp/ntpd/refclock_nmea.c projects/cxl_iscsi/contrib/ntp/ntpd/refclock_palisade.c projects/cxl_iscsi/contrib/ntp/ntpd/refclock_parse.c projects/cxl_iscsi/contrib/ntp/ntpd/refclock_wwv.c projects/cxl_iscsi/contrib/ntp/ntpdate/Makefile.in projects/cxl_iscsi/contrib/ntp/ntpdate/ntpdate.c projects/cxl_iscsi/contrib/ntp/ntpdc/Makefile.in projects/cxl_iscsi/contrib/ntp/ntpdc/invoke-ntpdc.texi projects/cxl_iscsi/contrib/ntp/ntpdc/ntpdc-opts.c projects/cxl_iscsi/contrib/ntp/ntpdc/ntpdc-opts.h projects/cxl_iscsi/contrib/ntp/ntpdc/ntpdc.1ntpdcman projects/cxl_iscsi/contrib/ntp/ntpdc/ntpdc.1ntpdcmdoc projects/cxl_iscsi/contrib/ntp/ntpdc/ntpdc.c projects/cxl_iscsi/contrib/ntp/ntpdc/ntpdc.html projects/cxl_iscsi/contrib/ntp/ntpdc/ntpdc.man.in projects/cxl_iscsi/contrib/ntp/ntpdc/ntpdc.mdoc.in projects/cxl_iscsi/contrib/ntp/ntpq/Makefile.in projects/cxl_iscsi/contrib/ntp/ntpq/invoke-ntpq.texi projects/cxl_iscsi/contrib/ntp/ntpq/libntpq.h projects/cxl_iscsi/contrib/ntp/ntpq/ntpq-opts.c projects/cxl_iscsi/contrib/ntp/ntpq/ntpq-opts.h projects/cxl_iscsi/contrib/ntp/ntpq/ntpq-subs.c projects/cxl_iscsi/contrib/ntp/ntpq/ntpq.1ntpqman projects/cxl_iscsi/contrib/ntp/ntpq/ntpq.1ntpqmdoc projects/cxl_iscsi/contrib/ntp/ntpq/ntpq.c projects/cxl_iscsi/contrib/ntp/ntpq/ntpq.html projects/cxl_iscsi/contrib/ntp/ntpq/ntpq.man.in projects/cxl_iscsi/contrib/ntp/ntpq/ntpq.mdoc.in projects/cxl_iscsi/contrib/ntp/ntpsnmpd/Makefile.in projects/cxl_iscsi/contrib/ntp/ntpsnmpd/invoke-ntpsnmpd.texi projects/cxl_iscsi/contrib/ntp/ntpsnmpd/ntpsnmpd-opts.c projects/cxl_iscsi/contrib/ntp/ntpsnmpd/ntpsnmpd-opts.h projects/cxl_iscsi/contrib/ntp/ntpsnmpd/ntpsnmpd.1ntpsnmpdman projects/cxl_iscsi/contrib/ntp/ntpsnmpd/ntpsnmpd.1ntpsnmpdmdoc projects/cxl_iscsi/contrib/ntp/ntpsnmpd/ntpsnmpd.html projects/cxl_iscsi/contrib/ntp/ntpsnmpd/ntpsnmpd.man.in projects/cxl_iscsi/contrib/ntp/ntpsnmpd/ntpsnmpd.mdoc.in projects/cxl_iscsi/contrib/ntp/packageinfo.sh projects/cxl_iscsi/contrib/ntp/parseutil/Makefile.in projects/cxl_iscsi/contrib/ntp/scripts/Makefile.in projects/cxl_iscsi/contrib/ntp/scripts/build/Makefile.in projects/cxl_iscsi/contrib/ntp/scripts/calc_tickadj/Makefile.in projects/cxl_iscsi/contrib/ntp/scripts/calc_tickadj/calc_tickadj.1calc_tickadjman projects/cxl_iscsi/contrib/ntp/scripts/calc_tickadj/calc_tickadj.1calc_tickadjmdoc projects/cxl_iscsi/contrib/ntp/scripts/calc_tickadj/calc_tickadj.html projects/cxl_iscsi/contrib/ntp/scripts/calc_tickadj/calc_tickadj.man.in projects/cxl_iscsi/contrib/ntp/scripts/calc_tickadj/calc_tickadj.mdoc.in projects/cxl_iscsi/contrib/ntp/scripts/calc_tickadj/invoke-calc_tickadj.texi projects/cxl_iscsi/contrib/ntp/scripts/invoke-plot_summary.texi projects/cxl_iscsi/contrib/ntp/scripts/invoke-summary.texi projects/cxl_iscsi/contrib/ntp/scripts/lib/Makefile.in projects/cxl_iscsi/contrib/ntp/scripts/lib/NTP/Util.pm projects/cxl_iscsi/contrib/ntp/scripts/ntp-wait/Makefile.in projects/cxl_iscsi/contrib/ntp/scripts/ntp-wait/invoke-ntp-wait.texi projects/cxl_iscsi/contrib/ntp/scripts/ntp-wait/ntp-wait-opts projects/cxl_iscsi/contrib/ntp/scripts/ntp-wait/ntp-wait.1ntp-waitman projects/cxl_iscsi/contrib/ntp/scripts/ntp-wait/ntp-wait.1ntp-waitmdoc projects/cxl_iscsi/contrib/ntp/scripts/ntp-wait/ntp-wait.html projects/cxl_iscsi/contrib/ntp/scripts/ntp-wait/ntp-wait.man.in projects/cxl_iscsi/contrib/ntp/scripts/ntp-wait/ntp-wait.mdoc.in projects/cxl_iscsi/contrib/ntp/scripts/ntpsweep/Makefile.in projects/cxl_iscsi/contrib/ntp/scripts/ntpsweep/invoke-ntpsweep.texi projects/cxl_iscsi/contrib/ntp/scripts/ntpsweep/ntpsweep-opts projects/cxl_iscsi/contrib/ntp/scripts/ntpsweep/ntpsweep.1ntpsweepman projects/cxl_iscsi/contrib/ntp/scripts/ntpsweep/ntpsweep.1ntpsweepmdoc projects/cxl_iscsi/contrib/ntp/scripts/ntpsweep/ntpsweep.html projects/cxl_iscsi/contrib/ntp/scripts/ntpsweep/ntpsweep.in projects/cxl_iscsi/contrib/ntp/scripts/ntpsweep/ntpsweep.man.in projects/cxl_iscsi/contrib/ntp/scripts/ntpsweep/ntpsweep.mdoc.in projects/cxl_iscsi/contrib/ntp/scripts/ntptrace/Makefile.in projects/cxl_iscsi/contrib/ntp/scripts/ntptrace/invoke-ntptrace.texi projects/cxl_iscsi/contrib/ntp/scripts/ntptrace/ntptrace-opts projects/cxl_iscsi/contrib/ntp/scripts/ntptrace/ntptrace.1ntptraceman projects/cxl_iscsi/contrib/ntp/scripts/ntptrace/ntptrace.1ntptracemdoc projects/cxl_iscsi/contrib/ntp/scripts/ntptrace/ntptrace.html projects/cxl_iscsi/contrib/ntp/scripts/ntptrace/ntptrace.man.in projects/cxl_iscsi/contrib/ntp/scripts/ntptrace/ntptrace.mdoc.in projects/cxl_iscsi/contrib/ntp/scripts/plot_summary-opts projects/cxl_iscsi/contrib/ntp/scripts/plot_summary.1plot_summaryman projects/cxl_iscsi/contrib/ntp/scripts/plot_summary.1plot_summarymdoc projects/cxl_iscsi/contrib/ntp/scripts/plot_summary.html projects/cxl_iscsi/contrib/ntp/scripts/plot_summary.man.in projects/cxl_iscsi/contrib/ntp/scripts/plot_summary.mdoc.in projects/cxl_iscsi/contrib/ntp/scripts/summary-opts projects/cxl_iscsi/contrib/ntp/scripts/summary.1summaryman projects/cxl_iscsi/contrib/ntp/scripts/summary.1summarymdoc projects/cxl_iscsi/contrib/ntp/scripts/summary.html projects/cxl_iscsi/contrib/ntp/scripts/summary.man.in projects/cxl_iscsi/contrib/ntp/scripts/summary.mdoc.in projects/cxl_iscsi/contrib/ntp/scripts/update-leap/Makefile.in (contents, props changed) projects/cxl_iscsi/contrib/ntp/scripts/update-leap/invoke-update-leap.texi projects/cxl_iscsi/contrib/ntp/scripts/update-leap/update-leap-opts projects/cxl_iscsi/contrib/ntp/scripts/update-leap/update-leap.1update-leapman projects/cxl_iscsi/contrib/ntp/scripts/update-leap/update-leap.1update-leapmdoc projects/cxl_iscsi/contrib/ntp/scripts/update-leap/update-leap.html (contents, props changed) projects/cxl_iscsi/contrib/ntp/scripts/update-leap/update-leap.man.in (contents, props changed) projects/cxl_iscsi/contrib/ntp/scripts/update-leap/update-leap.mdoc.in (contents, props changed) projects/cxl_iscsi/contrib/ntp/sntp/Makefile.am projects/cxl_iscsi/contrib/ntp/sntp/Makefile.in projects/cxl_iscsi/contrib/ntp/sntp/configure projects/cxl_iscsi/contrib/ntp/sntp/configure.ac projects/cxl_iscsi/contrib/ntp/sntp/include/Makefile.in projects/cxl_iscsi/contrib/ntp/sntp/include/version.def projects/cxl_iscsi/contrib/ntp/sntp/include/version.texi projects/cxl_iscsi/contrib/ntp/sntp/invoke-sntp.texi projects/cxl_iscsi/contrib/ntp/sntp/libevent/Makefile.am projects/cxl_iscsi/contrib/ntp/sntp/libevent/Makefile.in projects/cxl_iscsi/contrib/ntp/sntp/libevent/test/bench_httpclient.c projects/cxl_iscsi/contrib/ntp/sntp/libevent/test/regress.c projects/cxl_iscsi/contrib/ntp/sntp/libevent/test/regress_dns.c projects/cxl_iscsi/contrib/ntp/sntp/libevent/test/regress_http.c projects/cxl_iscsi/contrib/ntp/sntp/libevent/test/regress_minheap.c projects/cxl_iscsi/contrib/ntp/sntp/libevent/test/test-ratelim.c projects/cxl_iscsi/contrib/ntp/sntp/libevent/test/test-time.c projects/cxl_iscsi/contrib/ntp/sntp/libopts/Makefile.in projects/cxl_iscsi/contrib/ntp/sntp/libopts/compat/pathfind.c projects/cxl_iscsi/contrib/ntp/sntp/log.c projects/cxl_iscsi/contrib/ntp/sntp/log.h projects/cxl_iscsi/contrib/ntp/sntp/m4/ntp_libevent.m4 projects/cxl_iscsi/contrib/ntp/sntp/m4/ntp_libntp.m4 projects/cxl_iscsi/contrib/ntp/sntp/m4/ntp_rlimit.m4 projects/cxl_iscsi/contrib/ntp/sntp/m4/openldap-thread-check.m4 projects/cxl_iscsi/contrib/ntp/sntp/m4/os_cflags.m4 projects/cxl_iscsi/contrib/ntp/sntp/m4/version.m4 projects/cxl_iscsi/contrib/ntp/sntp/networking.c projects/cxl_iscsi/contrib/ntp/sntp/scripts/Makefile.in projects/cxl_iscsi/contrib/ntp/sntp/sntp-opts.c projects/cxl_iscsi/contrib/ntp/sntp/sntp-opts.h projects/cxl_iscsi/contrib/ntp/sntp/sntp.1sntpman projects/cxl_iscsi/contrib/ntp/sntp/sntp.1sntpmdoc projects/cxl_iscsi/contrib/ntp/sntp/sntp.html projects/cxl_iscsi/contrib/ntp/sntp/sntp.man.in projects/cxl_iscsi/contrib/ntp/sntp/sntp.mdoc.in projects/cxl_iscsi/contrib/ntp/sntp/tests/Makefile.am projects/cxl_iscsi/contrib/ntp/sntp/tests/Makefile.in projects/cxl_iscsi/contrib/ntp/sntp/tests/crypto.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/sntp/tests/fileHandlingTest.h.in (contents, props changed) projects/cxl_iscsi/contrib/ntp/sntp/tests/keyFile.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/sntp/tests/kodDatabase.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/sntp/tests/kodFile.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/sntp/tests/packetHandling.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/sntp/tests/packetProcessing.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/sntp/tests/run-crypto.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/sntp/tests/run-keyFile.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/sntp/tests/run-kodDatabase.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/sntp/tests/run-kodFile.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/sntp/tests/run-networking.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/sntp/tests/run-packetHandling.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/sntp/tests/run-packetProcessing.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/sntp/tests/run-utilities.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/sntp/tests/sntptest.h projects/cxl_iscsi/contrib/ntp/sntp/tests/utilities.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/sntp/unity/Makefile.am (contents, props changed) projects/cxl_iscsi/contrib/ntp/sntp/unity/Makefile.in (contents, props changed) projects/cxl_iscsi/contrib/ntp/sntp/unity/auto/generate_test_runner.rb (contents, props changed) projects/cxl_iscsi/contrib/ntp/sntp/unity/auto/unity_test_summary.rb (contents, props changed) projects/cxl_iscsi/contrib/ntp/sntp/unity/unity.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/sntp/unity/unity_internals.h (contents, props changed) projects/cxl_iscsi/contrib/ntp/sntp/version.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/Makefile.am projects/cxl_iscsi/contrib/ntp/tests/Makefile.in projects/cxl_iscsi/contrib/ntp/tests/bug-2803/Makefile.am (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/bug-2803/Makefile.in (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/bug-2803/run-bug-2803.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/Makefile.am projects/cxl_iscsi/contrib/ntp/tests/libntp/Makefile.in projects/cxl_iscsi/contrib/ntp/tests/libntp/a_md5encrypt.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/atoint.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/atouint.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/authkeys.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/buftvtots.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/calendar.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/caljulian.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/caltontp.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/calyearstart.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/clocktime.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/decodenetnum.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/hextoint.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/hextolfp.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/humandate.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/lfpfunc.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/lfptest.h projects/cxl_iscsi/contrib/ntp/tests/libntp/lfptostr.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/modetoa.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/msyslog.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/netof.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/numtoa.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/numtohost.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/octtoint.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/prettydate.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/recvbuff.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/refidsmear.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/refnumtoa.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-a_md5encrypt.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-atoint.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-atouint.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-authkeys.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-buftvtots.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-calendar.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-caljulian.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-caltontp.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-calyearstart.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-clocktime.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-decodenetnum.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-hextoint.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-hextolfp.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-humandate.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-lfpfunc.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-lfptostr.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-modetoa.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-msyslog.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-netof.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-numtoa.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-numtohost.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-octtoint.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-prettydate.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-recvbuff.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-refidsmear.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-refnumtoa.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-sfptostr.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-socktoa.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-ssl_init.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-statestr.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-strtolfp.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-timespecops.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-timevalops.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-tstotv.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-tvtots.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-uglydate.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-vi64ops.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/run-ymd2yd.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/sfptostr.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/sockaddrtest.h projects/cxl_iscsi/contrib/ntp/tests/libntp/socktoa.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/ssl_init.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/statestr.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/strtolfp.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/test-libntp.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/test-libntp.h (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/timespecops.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/timevalops.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/tstotv.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/tvtots.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/uglydate.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/vi64ops.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/libntp/ymd2yd.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/ntpd/Makefile.am projects/cxl_iscsi/contrib/ntp/tests/ntpd/Makefile.in projects/cxl_iscsi/contrib/ntp/tests/sandbox/Makefile.am (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/sandbox/Makefile.in (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/sandbox/run-modetoa.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/sandbox/run-uglydate.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/sandbox/run-ut-2803.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/sandbox/smeartest.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/sec-2853/Makefile.am (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/sec-2853/Makefile.in (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/sec-2853/run-sec-2853.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/tests/sec-2853/sec-2853.c (contents, props changed) projects/cxl_iscsi/contrib/ntp/util/Makefile.in projects/cxl_iscsi/contrib/ntp/util/invoke-ntp-keygen.texi projects/cxl_iscsi/contrib/ntp/util/ntp-keygen-opts.c projects/cxl_iscsi/contrib/ntp/util/ntp-keygen-opts.h projects/cxl_iscsi/contrib/ntp/util/ntp-keygen.1ntp-keygenman projects/cxl_iscsi/contrib/ntp/util/ntp-keygen.1ntp-keygenmdoc projects/cxl_iscsi/contrib/ntp/util/ntp-keygen.c projects/cxl_iscsi/contrib/ntp/util/ntp-keygen.html projects/cxl_iscsi/contrib/ntp/util/ntp-keygen.man.in projects/cxl_iscsi/contrib/ntp/util/ntp-keygen.mdoc.in projects/cxl_iscsi/contrib/ntp/util/ntptime.c projects/cxl_iscsi/contrib/tzdata/asia projects/cxl_iscsi/contrib/tzdata/australasia projects/cxl_iscsi/contrib/tzdata/europe projects/cxl_iscsi/contrib/tzdata/northamerica projects/cxl_iscsi/contrib/tzdata/zone.tab projects/cxl_iscsi/contrib/tzdata/zone1970.tab projects/cxl_iscsi/contrib/unbound/doc/unbound.conf.5.in projects/cxl_iscsi/contrib/wpa/hostapd/ChangeLog projects/cxl_iscsi/contrib/wpa/hostapd/config_file.c projects/cxl_iscsi/contrib/wpa/hostapd/config_file.h projects/cxl_iscsi/contrib/wpa/hostapd/ctrl_iface.c projects/cxl_iscsi/contrib/wpa/hostapd/defconfig projects/cxl_iscsi/contrib/wpa/hostapd/hlr_auc_gw.c projects/cxl_iscsi/contrib/wpa/hostapd/hlr_auc_gw.milenage_db projects/cxl_iscsi/contrib/wpa/hostapd/hostapd.conf projects/cxl_iscsi/contrib/wpa/hostapd/hostapd_cli.c projects/cxl_iscsi/contrib/wpa/hostapd/main.c projects/cxl_iscsi/contrib/wpa/hs20/client/Makefile projects/cxl_iscsi/contrib/wpa/hs20/client/osu_client.c projects/cxl_iscsi/contrib/wpa/hs20/client/spp_client.c projects/cxl_iscsi/contrib/wpa/src/ap/accounting.c projects/cxl_iscsi/contrib/wpa/src/ap/acs.c projects/cxl_iscsi/contrib/wpa/src/ap/ap_config.c projects/cxl_iscsi/contrib/wpa/src/ap/ap_config.h projects/cxl_iscsi/contrib/wpa/src/ap/ap_drv_ops.c projects/cxl_iscsi/contrib/wpa/src/ap/ap_drv_ops.h projects/cxl_iscsi/contrib/wpa/src/ap/ap_list.c projects/cxl_iscsi/contrib/wpa/src/ap/ap_list.h projects/cxl_iscsi/contrib/wpa/src/ap/authsrv.c projects/cxl_iscsi/contrib/wpa/src/ap/beacon.c projects/cxl_iscsi/contrib/wpa/src/ap/beacon.h projects/cxl_iscsi/contrib/wpa/src/ap/ctrl_iface_ap.c projects/cxl_iscsi/contrib/wpa/src/ap/dfs.c projects/cxl_iscsi/contrib/wpa/src/ap/drv_callbacks.c projects/cxl_iscsi/contrib/wpa/src/ap/eap_user_db.c projects/cxl_iscsi/contrib/wpa/src/ap/hostapd.c projects/cxl_iscsi/contrib/wpa/src/ap/hostapd.h projects/cxl_iscsi/contrib/wpa/src/ap/hw_features.c projects/cxl_iscsi/contrib/wpa/src/ap/hw_features.h projects/cxl_iscsi/contrib/wpa/src/ap/ieee802_11.c projects/cxl_iscsi/contrib/wpa/src/ap/ieee802_11.h projects/cxl_iscsi/contrib/wpa/src/ap/ieee802_11_auth.c projects/cxl_iscsi/contrib/wpa/src/ap/ieee802_11_auth.h projects/cxl_iscsi/contrib/wpa/src/ap/ieee802_11_ht.c projects/cxl_iscsi/contrib/wpa/src/ap/ieee802_11_vht.c projects/cxl_iscsi/contrib/wpa/src/ap/ieee802_1x.c projects/cxl_iscsi/contrib/wpa/src/ap/ieee802_1x.h projects/cxl_iscsi/contrib/wpa/src/ap/ndisc_snoop.c projects/cxl_iscsi/contrib/wpa/src/ap/sta_info.c projects/cxl_iscsi/contrib/wpa/src/ap/sta_info.h projects/cxl_iscsi/contrib/wpa/src/ap/utils.c projects/cxl_iscsi/contrib/wpa/src/ap/vlan_init.c projects/cxl_iscsi/contrib/wpa/src/ap/vlan_init.h projects/cxl_iscsi/contrib/wpa/src/ap/vlan_util.c projects/cxl_iscsi/contrib/wpa/src/ap/wmm.c projects/cxl_iscsi/contrib/wpa/src/ap/wpa_auth.c projects/cxl_iscsi/contrib/wpa/src/ap/wpa_auth.h projects/cxl_iscsi/contrib/wpa/src/ap/wpa_auth_ft.c projects/cxl_iscsi/contrib/wpa/src/ap/wpa_auth_glue.c projects/cxl_iscsi/contrib/wpa/src/ap/wpa_auth_i.h projects/cxl_iscsi/contrib/wpa/src/ap/wpa_auth_ie.c projects/cxl_iscsi/contrib/wpa/src/ap/wps_hostapd.c projects/cxl_iscsi/contrib/wpa/src/ap/x_snoop.c projects/cxl_iscsi/contrib/wpa/src/common/common_module_tests.c projects/cxl_iscsi/contrib/wpa/src/common/defs.h projects/cxl_iscsi/contrib/wpa/src/common/hw_features_common.c projects/cxl_iscsi/contrib/wpa/src/common/hw_features_common.h projects/cxl_iscsi/contrib/wpa/src/common/ieee802_11_common.c projects/cxl_iscsi/contrib/wpa/src/common/ieee802_11_common.h projects/cxl_iscsi/contrib/wpa/src/common/ieee802_11_defs.h projects/cxl_iscsi/contrib/wpa/src/common/privsep_commands.h projects/cxl_iscsi/contrib/wpa/src/common/qca-vendor.h projects/cxl_iscsi/contrib/wpa/src/common/sae.c projects/cxl_iscsi/contrib/wpa/src/common/sae.h projects/cxl_iscsi/contrib/wpa/src/common/version.h projects/cxl_iscsi/contrib/wpa/src/common/wpa_common.c projects/cxl_iscsi/contrib/wpa/src/common/wpa_common.h projects/cxl_iscsi/contrib/wpa/src/common/wpa_ctrl.c projects/cxl_iscsi/contrib/wpa/src/common/wpa_ctrl.h projects/cxl_iscsi/contrib/wpa/src/crypto/crypto.h projects/cxl_iscsi/contrib/wpa/src/crypto/crypto_module_tests.c projects/cxl_iscsi/contrib/wpa/src/crypto/crypto_openssl.c projects/cxl_iscsi/contrib/wpa/src/crypto/dh_groups.c projects/cxl_iscsi/contrib/wpa/src/crypto/fips_prf_openssl.c projects/cxl_iscsi/contrib/wpa/src/crypto/ms_funcs.c projects/cxl_iscsi/contrib/wpa/src/crypto/ms_funcs.h projects/cxl_iscsi/contrib/wpa/src/crypto/random.c projects/cxl_iscsi/contrib/wpa/src/crypto/sha1-tlsprf.c projects/cxl_iscsi/contrib/wpa/src/crypto/sha1-tprf.c projects/cxl_iscsi/contrib/wpa/src/crypto/sha256-kdf.c projects/cxl_iscsi/contrib/wpa/src/crypto/sha384.h projects/cxl_iscsi/contrib/wpa/src/crypto/tls.h projects/cxl_iscsi/contrib/wpa/src/crypto/tls_gnutls.c projects/cxl_iscsi/contrib/wpa/src/crypto/tls_internal.c projects/cxl_iscsi/contrib/wpa/src/crypto/tls_none.c projects/cxl_iscsi/contrib/wpa/src/crypto/tls_openssl.c projects/cxl_iscsi/contrib/wpa/src/drivers/driver.h projects/cxl_iscsi/contrib/wpa/src/drivers/driver_bsd.c projects/cxl_iscsi/contrib/wpa/src/drivers/driver_ndis.c projects/cxl_iscsi/contrib/wpa/src/drivers/driver_nl80211.h projects/cxl_iscsi/contrib/wpa/src/drivers/driver_nl80211_android.c projects/cxl_iscsi/contrib/wpa/src/drivers/driver_nl80211_capa.c projects/cxl_iscsi/contrib/wpa/src/drivers/driver_nl80211_event.c projects/cxl_iscsi/contrib/wpa/src/drivers/driver_nl80211_scan.c projects/cxl_iscsi/contrib/wpa/src/drivers/driver_privsep.c projects/cxl_iscsi/contrib/wpa/src/drivers/drivers.c projects/cxl_iscsi/contrib/wpa/src/eap_common/eap_common.c projects/cxl_iscsi/contrib/wpa/src/eap_common/eap_fast_common.c projects/cxl_iscsi/contrib/wpa/src/eap_common/eap_pwd_common.c projects/cxl_iscsi/contrib/wpa/src/eap_common/eap_pwd_common.h projects/cxl_iscsi/contrib/wpa/src/eap_common/eap_sake_common.c projects/cxl_iscsi/contrib/wpa/src/eap_common/ikev2_common.c projects/cxl_iscsi/contrib/wpa/src/eap_peer/eap.c projects/cxl_iscsi/contrib/wpa/src/eap_peer/eap.h projects/cxl_iscsi/contrib/wpa/src/eap_peer/eap_aka.c projects/cxl_iscsi/contrib/wpa/src/eap_peer/eap_eke.c projects/cxl_iscsi/contrib/wpa/src/eap_peer/eap_fast.c projects/cxl_iscsi/contrib/wpa/src/eap_peer/eap_gpsk.c projects/cxl_iscsi/contrib/wpa/src/eap_peer/eap_i.h projects/cxl_iscsi/contrib/wpa/src/eap_peer/eap_mschapv2.c projects/cxl_iscsi/contrib/wpa/src/eap_peer/eap_pax.c projects/cxl_iscsi/contrib/wpa/src/eap_peer/eap_peap.c projects/cxl_iscsi/contrib/wpa/src/eap_peer/eap_pwd.c projects/cxl_iscsi/contrib/wpa/src/eap_peer/eap_sake.c projects/cxl_iscsi/contrib/wpa/src/eap_peer/eap_sim.c projects/cxl_iscsi/contrib/wpa/src/eap_peer/eap_tls.c projects/cxl_iscsi/contrib/wpa/src/eap_peer/eap_tls_common.c projects/cxl_iscsi/contrib/wpa/src/eap_peer/eap_tls_common.h projects/cxl_iscsi/contrib/wpa/src/eap_peer/eap_ttls.c projects/cxl_iscsi/contrib/wpa/src/eap_peer/eap_wsc.c projects/cxl_iscsi/contrib/wpa/src/eap_server/eap.h projects/cxl_iscsi/contrib/wpa/src/eap_server/eap_i.h projects/cxl_iscsi/contrib/wpa/src/eap_server/eap_server.c projects/cxl_iscsi/contrib/wpa/src/eap_server/eap_server_eke.c projects/cxl_iscsi/contrib/wpa/src/eap_server/eap_server_fast.c projects/cxl_iscsi/contrib/wpa/src/eap_server/eap_server_mschapv2.c projects/cxl_iscsi/contrib/wpa/src/eap_server/eap_server_peap.c projects/cxl_iscsi/contrib/wpa/src/eap_server/eap_server_pwd.c projects/cxl_iscsi/contrib/wpa/src/eap_server/eap_server_tls.c projects/cxl_iscsi/contrib/wpa/src/eap_server/eap_server_tls_common.c projects/cxl_iscsi/contrib/wpa/src/eap_server/eap_server_ttls.c projects/cxl_iscsi/contrib/wpa/src/eap_server/eap_tls_common.h projects/cxl_iscsi/contrib/wpa/src/eapol_auth/eapol_auth_sm.c projects/cxl_iscsi/contrib/wpa/src/eapol_auth/eapol_auth_sm.h projects/cxl_iscsi/contrib/wpa/src/eapol_supp/eapol_supp_sm.c projects/cxl_iscsi/contrib/wpa/src/p2p/p2p.c projects/cxl_iscsi/contrib/wpa/src/p2p/p2p.h projects/cxl_iscsi/contrib/wpa/src/p2p/p2p_build.c projects/cxl_iscsi/contrib/wpa/src/p2p/p2p_dev_disc.c projects/cxl_iscsi/contrib/wpa/src/p2p/p2p_go_neg.c projects/cxl_iscsi/contrib/wpa/src/p2p/p2p_group.c projects/cxl_iscsi/contrib/wpa/src/p2p/p2p_i.h projects/cxl_iscsi/contrib/wpa/src/p2p/p2p_invitation.c projects/cxl_iscsi/contrib/wpa/src/p2p/p2p_parse.c projects/cxl_iscsi/contrib/wpa/src/p2p/p2p_pd.c projects/cxl_iscsi/contrib/wpa/src/p2p/p2p_utils.c projects/cxl_iscsi/contrib/wpa/src/radius/radius.c projects/cxl_iscsi/contrib/wpa/src/radius/radius_das.c projects/cxl_iscsi/contrib/wpa/src/radius/radius_server.c projects/cxl_iscsi/contrib/wpa/src/radius/radius_server.h projects/cxl_iscsi/contrib/wpa/src/rsn_supp/tdls.c projects/cxl_iscsi/contrib/wpa/src/rsn_supp/wpa.c projects/cxl_iscsi/contrib/wpa/src/rsn_supp/wpa_ft.c projects/cxl_iscsi/contrib/wpa/src/rsn_supp/wpa_ie.c projects/cxl_iscsi/contrib/wpa/src/rsn_supp/wpa_ie.h projects/cxl_iscsi/contrib/wpa/src/tls/libtommath.c projects/cxl_iscsi/contrib/wpa/src/tls/tlsv1_client.c projects/cxl_iscsi/contrib/wpa/src/tls/tlsv1_client.h projects/cxl_iscsi/contrib/wpa/src/tls/tlsv1_server.c projects/cxl_iscsi/contrib/wpa/src/tls/tlsv1_server.h projects/cxl_iscsi/contrib/wpa/src/tls/x509v3.c projects/cxl_iscsi/contrib/wpa/src/utils/browser-wpadebug.c projects/cxl_iscsi/contrib/wpa/src/utils/common.c projects/cxl_iscsi/contrib/wpa/src/utils/common.h projects/cxl_iscsi/contrib/wpa/src/utils/eloop.c projects/cxl_iscsi/contrib/wpa/src/utils/http_curl.c projects/cxl_iscsi/contrib/wpa/src/utils/includes.h projects/cxl_iscsi/contrib/wpa/src/utils/os.h projects/cxl_iscsi/contrib/wpa/src/utils/os_internal.c projects/cxl_iscsi/contrib/wpa/src/utils/os_none.c projects/cxl_iscsi/contrib/wpa/src/utils/os_unix.c projects/cxl_iscsi/contrib/wpa/src/utils/os_win32.c projects/cxl_iscsi/contrib/wpa/src/utils/radiotap.c projects/cxl_iscsi/contrib/wpa/src/utils/utils_module_tests.c projects/cxl_iscsi/contrib/wpa/src/utils/wpa_debug.c projects/cxl_iscsi/contrib/wpa/src/utils/wpa_debug.h projects/cxl_iscsi/contrib/wpa/src/utils/wpabuf.c projects/cxl_iscsi/contrib/wpa/src/wps/http_client.c projects/cxl_iscsi/contrib/wpa/src/wps/http_server.c projects/cxl_iscsi/contrib/wpa/src/wps/httpread.c projects/cxl_iscsi/contrib/wpa/src/wps/ndef.c projects/cxl_iscsi/contrib/wpa/src/wps/wps.c projects/cxl_iscsi/contrib/wpa/src/wps/wps.h projects/cxl_iscsi/contrib/wpa/src/wps/wps_attr_parse.c projects/cxl_iscsi/contrib/wpa/src/wps/wps_attr_parse.h projects/cxl_iscsi/contrib/wpa/src/wps/wps_common.c projects/cxl_iscsi/contrib/wpa/src/wps/wps_defs.h projects/cxl_iscsi/contrib/wpa/src/wps/wps_enrollee.c projects/cxl_iscsi/contrib/wpa/src/wps/wps_er.c projects/cxl_iscsi/contrib/wpa/src/wps/wps_er_ssdp.c projects/cxl_iscsi/contrib/wpa/src/wps/wps_module_tests.c projects/cxl_iscsi/contrib/wpa/src/wps/wps_registrar.c projects/cxl_iscsi/contrib/wpa/src/wps/wps_upnp.c projects/cxl_iscsi/contrib/wpa/src/wps/wps_upnp_ap.c projects/cxl_iscsi/contrib/wpa/src/wps/wps_upnp_event.c projects/cxl_iscsi/contrib/wpa/src/wps/wps_upnp_ssdp.c projects/cxl_iscsi/contrib/wpa/src/wps/wps_upnp_web.c projects/cxl_iscsi/contrib/wpa/src/wps/wps_validate.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/ChangeLog projects/cxl_iscsi/contrib/wpa/wpa_supplicant/ap.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/ap.h projects/cxl_iscsi/contrib/wpa/wpa_supplicant/bss.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/bss.h projects/cxl_iscsi/contrib/wpa/wpa_supplicant/config.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/config.h projects/cxl_iscsi/contrib/wpa/wpa_supplicant/config_file.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/config_ssid.h projects/cxl_iscsi/contrib/wpa/wpa_supplicant/ctrl_iface.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/ctrl_iface_named_pipe.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/ctrl_iface_udp.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/ctrl_iface_unix.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/dbus/dbus_new.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/dbus/dbus_new.h projects/cxl_iscsi/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers.h projects/cxl_iscsi/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_p2p.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_p2p.h projects/cxl_iscsi/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_wps.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/dbus/dbus_new_helpers.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/dbus/dbus_new_introspect.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/dbus/dbus_old.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/dbus/dbus_old_handlers.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/defconfig projects/cxl_iscsi/contrib/wpa/wpa_supplicant/driver_i.h projects/cxl_iscsi/contrib/wpa/wpa_supplicant/eapol_test.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/events.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/hs20_supplicant.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/ibss_rsn.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/interworking.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/main.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/mesh.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/mesh_mpm.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/mesh_rsn.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/notify.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/notify.h projects/cxl_iscsi/contrib/wpa/wpa_supplicant/p2p_supplicant.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/p2p_supplicant.h projects/cxl_iscsi/contrib/wpa/wpa_supplicant/preauth_test.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/scan.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/sme.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/wpa_cli.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/wpa_priv.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/wpa_supplicant.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/wpa_supplicant.conf projects/cxl_iscsi/contrib/wpa/wpa_supplicant/wpa_supplicant_i.h projects/cxl_iscsi/contrib/wpa/wpa_supplicant/wpas_glue.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/wpas_glue.h projects/cxl_iscsi/contrib/wpa/wpa_supplicant/wps_supplicant.c projects/cxl_iscsi/contrib/wpa/wpa_supplicant/wps_supplicant.h projects/cxl_iscsi/crypto/openssh/auth.c projects/cxl_iscsi/crypto/openssh/auth2.c projects/cxl_iscsi/crypto/openssh/buffer.c projects/cxl_iscsi/crypto/openssh/channels.c projects/cxl_iscsi/crypto/openssh/cipher.c projects/cxl_iscsi/crypto/openssh/clientloop.c projects/cxl_iscsi/crypto/openssh/compat.c projects/cxl_iscsi/crypto/openssh/contrib/ssh-copy-id.1 projects/cxl_iscsi/crypto/openssh/kex.c projects/cxl_iscsi/crypto/openssh/misc.c projects/cxl_iscsi/crypto/openssh/moduli.5 projects/cxl_iscsi/crypto/openssh/mux.c projects/cxl_iscsi/crypto/openssh/openbsd-compat/blowfish.c projects/cxl_iscsi/crypto/openssh/openbsd-compat/bsd-misc.h projects/cxl_iscsi/crypto/openssh/packet.c projects/cxl_iscsi/crypto/openssh/readconf.c projects/cxl_iscsi/crypto/openssh/scp.1 projects/cxl_iscsi/crypto/openssh/servconf.c projects/cxl_iscsi/crypto/openssh/serverloop.c projects/cxl_iscsi/crypto/openssh/session.c projects/cxl_iscsi/crypto/openssh/sftp-common.c projects/cxl_iscsi/crypto/openssh/sftp-server.8 projects/cxl_iscsi/crypto/openssh/sftp.1 projects/cxl_iscsi/crypto/openssh/sftp.c projects/cxl_iscsi/crypto/openssh/ssh-add.1 projects/cxl_iscsi/crypto/openssh/ssh-agent.c projects/cxl_iscsi/crypto/openssh/ssh-keygen.1 projects/cxl_iscsi/crypto/openssh/ssh-keyscan.1 projects/cxl_iscsi/crypto/openssh/ssh-keysign.8 projects/cxl_iscsi/crypto/openssh/ssh-pkcs11-helper.8 projects/cxl_iscsi/crypto/openssh/ssh.1 projects/cxl_iscsi/crypto/openssh/ssh.c projects/cxl_iscsi/crypto/openssh/ssh_config.5 projects/cxl_iscsi/crypto/openssh/sshconnect.c projects/cxl_iscsi/crypto/openssh/sshconnect2.c projects/cxl_iscsi/crypto/openssh/sshd.8 projects/cxl_iscsi/crypto/openssh/sshd.c projects/cxl_iscsi/crypto/openssh/sshd_config.5 projects/cxl_iscsi/crypto/openssl/CHANGES projects/cxl_iscsi/crypto/openssl/Configure projects/cxl_iscsi/crypto/openssl/FAQ projects/cxl_iscsi/crypto/openssl/Makefile projects/cxl_iscsi/crypto/openssl/Makefile.org projects/cxl_iscsi/crypto/openssl/NEWS projects/cxl_iscsi/crypto/openssl/README projects/cxl_iscsi/crypto/openssl/apps/apps.c projects/cxl_iscsi/crypto/openssl/apps/apps.h projects/cxl_iscsi/crypto/openssl/apps/ca.c projects/cxl_iscsi/crypto/openssl/apps/ciphers.c projects/cxl_iscsi/crypto/openssl/apps/cms.c projects/cxl_iscsi/crypto/openssl/apps/crl.c projects/cxl_iscsi/crypto/openssl/apps/dgst.c projects/cxl_iscsi/crypto/openssl/apps/dhparam.c projects/cxl_iscsi/crypto/openssl/apps/ecparam.c projects/cxl_iscsi/crypto/openssl/apps/genrsa.c projects/cxl_iscsi/crypto/openssl/apps/ocsp.c projects/cxl_iscsi/crypto/openssl/apps/openssl.cnf projects/cxl_iscsi/crypto/openssl/apps/pkcs8.c projects/cxl_iscsi/crypto/openssl/apps/s_apps.h projects/cxl_iscsi/crypto/openssl/apps/s_cb.c projects/cxl_iscsi/crypto/openssl/apps/s_client.c projects/cxl_iscsi/crypto/openssl/apps/s_server.c projects/cxl_iscsi/crypto/openssl/apps/s_socket.c projects/cxl_iscsi/crypto/openssl/apps/smime.c projects/cxl_iscsi/crypto/openssl/apps/speed.c projects/cxl_iscsi/crypto/openssl/apps/verify.c projects/cxl_iscsi/crypto/openssl/apps/x509.c projects/cxl_iscsi/crypto/openssl/config projects/cxl_iscsi/crypto/openssl/crypto/Makefile projects/cxl_iscsi/crypto/openssl/crypto/aes/Makefile projects/cxl_iscsi/crypto/openssl/crypto/aes/aes_wrap.c projects/cxl_iscsi/crypto/openssl/crypto/aes/aes_x86core.c projects/cxl_iscsi/crypto/openssl/crypto/aes/asm/aes-586.pl projects/cxl_iscsi/crypto/openssl/crypto/aes/asm/aes-armv4.pl projects/cxl_iscsi/crypto/openssl/crypto/aes/asm/aes-mips.pl projects/cxl_iscsi/crypto/openssl/crypto/aes/asm/aes-ppc.pl projects/cxl_iscsi/crypto/openssl/crypto/aes/asm/aes-x86_64.pl projects/cxl_iscsi/crypto/openssl/crypto/aes/asm/aesni-sha1-x86_64.pl projects/cxl_iscsi/crypto/openssl/crypto/aes/asm/aesni-x86.pl projects/cxl_iscsi/crypto/openssl/crypto/aes/asm/aesni-x86_64.pl projects/cxl_iscsi/crypto/openssl/crypto/aes/asm/bsaes-x86_64.pl projects/cxl_iscsi/crypto/openssl/crypto/aes/asm/vpaes-x86.pl projects/cxl_iscsi/crypto/openssl/crypto/aes/asm/vpaes-x86_64.pl projects/cxl_iscsi/crypto/openssl/crypto/arm_arch.h projects/cxl_iscsi/crypto/openssl/crypto/armcap.c projects/cxl_iscsi/crypto/openssl/crypto/armv4cpuid.S projects/cxl_iscsi/crypto/openssl/crypto/asn1/Makefile projects/cxl_iscsi/crypto/openssl/crypto/asn1/a_gentm.c projects/cxl_iscsi/crypto/openssl/crypto/asn1/a_time.c projects/cxl_iscsi/crypto/openssl/crypto/asn1/a_utctm.c projects/cxl_iscsi/crypto/openssl/crypto/asn1/ameth_lib.c projects/cxl_iscsi/crypto/openssl/crypto/asn1/asn1.h projects/cxl_iscsi/crypto/openssl/crypto/asn1/asn1_locl.h projects/cxl_iscsi/crypto/openssl/crypto/asn1/t_x509.c projects/cxl_iscsi/crypto/openssl/crypto/asn1/x_crl.c projects/cxl_iscsi/crypto/openssl/crypto/asn1/x_x509.c projects/cxl_iscsi/crypto/openssl/crypto/bio/b_dump.c projects/cxl_iscsi/crypto/openssl/crypto/bio/b_sock.c projects/cxl_iscsi/crypto/openssl/crypto/bio/bio.h projects/cxl_iscsi/crypto/openssl/crypto/bio/bio_err.c projects/cxl_iscsi/crypto/openssl/crypto/bio/bss_acpt.c projects/cxl_iscsi/crypto/openssl/crypto/bio/bss_conn.c projects/cxl_iscsi/crypto/openssl/crypto/bio/bss_dgram.c projects/cxl_iscsi/crypto/openssl/crypto/bio/bss_fd.c projects/cxl_iscsi/crypto/openssl/crypto/bn/Makefile projects/cxl_iscsi/crypto/openssl/crypto/bn/asm/armv4-gf2m.pl projects/cxl_iscsi/crypto/openssl/crypto/bn/asm/armv4-mont.pl projects/cxl_iscsi/crypto/openssl/crypto/bn/asm/mips-mont.pl projects/cxl_iscsi/crypto/openssl/crypto/bn/asm/mips.pl projects/cxl_iscsi/crypto/openssl/crypto/bn/asm/ppc-mont.pl projects/cxl_iscsi/crypto/openssl/crypto/bn/asm/ppc.pl projects/cxl_iscsi/crypto/openssl/crypto/bn/asm/ppc64-mont.pl projects/cxl_iscsi/crypto/openssl/crypto/bn/asm/x86_64-gcc.c projects/cxl_iscsi/crypto/openssl/crypto/bn/asm/x86_64-mont.pl projects/cxl_iscsi/crypto/openssl/crypto/bn/asm/x86_64-mont5.pl projects/cxl_iscsi/crypto/openssl/crypto/bn/bn.h projects/cxl_iscsi/crypto/openssl/crypto/bn/bn_asm.c projects/cxl_iscsi/crypto/openssl/crypto/bn/bn_exp.c projects/cxl_iscsi/crypto/openssl/crypto/bn/bn_gf2m.c projects/cxl_iscsi/crypto/openssl/crypto/bn/bn_lcl.h projects/cxl_iscsi/crypto/openssl/crypto/bn/bntest.c projects/cxl_iscsi/crypto/openssl/crypto/buffer/buf_str.c projects/cxl_iscsi/crypto/openssl/crypto/buffer/buffer.h projects/cxl_iscsi/crypto/openssl/crypto/camellia/Makefile projects/cxl_iscsi/crypto/openssl/crypto/camellia/asm/cmll-x86_64.pl projects/cxl_iscsi/crypto/openssl/crypto/cast/cast_lcl.h projects/cxl_iscsi/crypto/openssl/crypto/cms/Makefile projects/cxl_iscsi/crypto/openssl/crypto/cms/cms.h projects/cxl_iscsi/crypto/openssl/crypto/cms/cms_asn1.c projects/cxl_iscsi/crypto/openssl/crypto/cms/cms_env.c projects/cxl_iscsi/crypto/openssl/crypto/cms/cms_err.c projects/cxl_iscsi/crypto/openssl/crypto/cms/cms_lcl.h projects/cxl_iscsi/crypto/openssl/crypto/cms/cms_lib.c projects/cxl_iscsi/crypto/openssl/crypto/cms/cms_sd.c projects/cxl_iscsi/crypto/openssl/crypto/cms/cms_smime.c projects/cxl_iscsi/crypto/openssl/crypto/cryptlib.c projects/cxl_iscsi/crypto/openssl/crypto/cversion.c projects/cxl_iscsi/crypto/openssl/crypto/des/Makefile projects/cxl_iscsi/crypto/openssl/crypto/des/asm/des-586.pl projects/cxl_iscsi/crypto/openssl/crypto/des/asm/des_enc.m4 projects/cxl_iscsi/crypto/openssl/crypto/des/des_locl.h projects/cxl_iscsi/crypto/openssl/crypto/des/read_pwd.c projects/cxl_iscsi/crypto/openssl/crypto/dh/Makefile projects/cxl_iscsi/crypto/openssl/crypto/dh/dh.h projects/cxl_iscsi/crypto/openssl/crypto/dh/dh_ameth.c projects/cxl_iscsi/crypto/openssl/crypto/dh/dh_asn1.c projects/cxl_iscsi/crypto/openssl/crypto/dh/dh_check.c projects/cxl_iscsi/crypto/openssl/crypto/dh/dh_err.c projects/cxl_iscsi/crypto/openssl/crypto/dh/dh_key.c projects/cxl_iscsi/crypto/openssl/crypto/dh/dh_pmeth.c projects/cxl_iscsi/crypto/openssl/crypto/dh/dhtest.c projects/cxl_iscsi/crypto/openssl/crypto/dsa/dsa.h projects/cxl_iscsi/crypto/openssl/crypto/dsa/dsa_ameth.c projects/cxl_iscsi/crypto/openssl/crypto/dsa/dsa_err.c projects/cxl_iscsi/crypto/openssl/crypto/dsa/dsa_gen.c projects/cxl_iscsi/crypto/openssl/crypto/dsa/dsa_locl.h projects/cxl_iscsi/crypto/openssl/crypto/dsa/dsa_ossl.c projects/cxl_iscsi/crypto/openssl/crypto/dsa/dsa_pmeth.c projects/cxl_iscsi/crypto/openssl/crypto/ebcdic.c projects/cxl_iscsi/crypto/openssl/crypto/ec/Makefile projects/cxl_iscsi/crypto/openssl/crypto/ec/ec.h projects/cxl_iscsi/crypto/openssl/crypto/ec/ec_ameth.c projects/cxl_iscsi/crypto/openssl/crypto/ec/ec_curve.c projects/cxl_iscsi/crypto/openssl/crypto/ec/ec_cvt.c projects/cxl_iscsi/crypto/openssl/crypto/ec/ec_err.c projects/cxl_iscsi/crypto/openssl/crypto/ec/ec_lcl.h projects/cxl_iscsi/crypto/openssl/crypto/ec/ec_lib.c projects/cxl_iscsi/crypto/openssl/crypto/ec/ec_pmeth.c projects/cxl_iscsi/crypto/openssl/crypto/ec/eck_prn.c projects/cxl_iscsi/crypto/openssl/crypto/ec/ecp_nistp521.c projects/cxl_iscsi/crypto/openssl/crypto/ecdh/Makefile projects/cxl_iscsi/crypto/openssl/crypto/ecdh/ecdh.h projects/cxl_iscsi/crypto/openssl/crypto/ecdh/ecdhtest.c projects/cxl_iscsi/crypto/openssl/crypto/ecdh/ech_ossl.c projects/cxl_iscsi/crypto/openssl/crypto/ecdsa/ecdsa.h projects/cxl_iscsi/crypto/openssl/crypto/ecdsa/ecs_err.c projects/cxl_iscsi/crypto/openssl/crypto/ecdsa/ecs_lib.c projects/cxl_iscsi/crypto/openssl/crypto/ecdsa/ecs_locl.h projects/cxl_iscsi/crypto/openssl/crypto/ecdsa/ecs_ossl.c projects/cxl_iscsi/crypto/openssl/crypto/engine/Makefile projects/cxl_iscsi/crypto/openssl/crypto/engine/eng_all.c projects/cxl_iscsi/crypto/openssl/crypto/engine/eng_cryptodev.c projects/cxl_iscsi/crypto/openssl/crypto/engine/engine.h projects/cxl_iscsi/crypto/openssl/crypto/evp/Makefile projects/cxl_iscsi/crypto/openssl/crypto/evp/c_allc.c projects/cxl_iscsi/crypto/openssl/crypto/evp/digest.c projects/cxl_iscsi/crypto/openssl/crypto/evp/e_aes.c projects/cxl_iscsi/crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c projects/cxl_iscsi/crypto/openssl/crypto/evp/e_camellia.c projects/cxl_iscsi/crypto/openssl/crypto/evp/e_des.c projects/cxl_iscsi/crypto/openssl/crypto/evp/e_des3.c projects/cxl_iscsi/crypto/openssl/crypto/evp/e_null.c projects/cxl_iscsi/crypto/openssl/crypto/evp/encode.c projects/cxl_iscsi/crypto/openssl/crypto/evp/evp.h projects/cxl_iscsi/crypto/openssl/crypto/evp/evp_enc.c projects/cxl_iscsi/crypto/openssl/crypto/evp/evp_err.c projects/cxl_iscsi/crypto/openssl/crypto/evp/evp_extra_test.c projects/cxl_iscsi/crypto/openssl/crypto/evp/evp_lib.c projects/cxl_iscsi/crypto/openssl/crypto/evp/evp_locl.h projects/cxl_iscsi/crypto/openssl/crypto/evp/evp_test.c projects/cxl_iscsi/crypto/openssl/crypto/evp/evptests.txt projects/cxl_iscsi/crypto/openssl/crypto/evp/m_dss.c projects/cxl_iscsi/crypto/openssl/crypto/evp/m_dss1.c projects/cxl_iscsi/crypto/openssl/crypto/evp/m_ecdsa.c projects/cxl_iscsi/crypto/openssl/crypto/evp/m_sha1.c projects/cxl_iscsi/crypto/openssl/crypto/evp/m_sigver.c projects/cxl_iscsi/crypto/openssl/crypto/evp/p_lib.c projects/cxl_iscsi/crypto/openssl/crypto/evp/pmeth_lib.c projects/cxl_iscsi/crypto/openssl/crypto/hmac/hm_ameth.c projects/cxl_iscsi/crypto/openssl/crypto/hmac/hmac.c projects/cxl_iscsi/crypto/openssl/crypto/hmac/hmactest.c projects/cxl_iscsi/crypto/openssl/crypto/jpake/jpake.c projects/cxl_iscsi/crypto/openssl/crypto/md32_common.h projects/cxl_iscsi/crypto/openssl/crypto/md5/Makefile projects/cxl_iscsi/crypto/openssl/crypto/md5/md5_locl.h projects/cxl_iscsi/crypto/openssl/crypto/modes/Makefile projects/cxl_iscsi/crypto/openssl/crypto/modes/asm/ghash-armv4.pl projects/cxl_iscsi/crypto/openssl/crypto/modes/asm/ghash-s390x.pl projects/cxl_iscsi/crypto/openssl/crypto/modes/asm/ghash-sparcv9.pl projects/cxl_iscsi/crypto/openssl/crypto/modes/asm/ghash-x86.pl projects/cxl_iscsi/crypto/openssl/crypto/modes/asm/ghash-x86_64.pl projects/cxl_iscsi/crypto/openssl/crypto/modes/cbc128.c projects/cxl_iscsi/crypto/openssl/crypto/modes/gcm128.c projects/cxl_iscsi/crypto/openssl/crypto/modes/modes.h projects/cxl_iscsi/crypto/openssl/crypto/modes/modes_lcl.h projects/cxl_iscsi/crypto/openssl/crypto/o_str.c projects/cxl_iscsi/crypto/openssl/crypto/o_time.c projects/cxl_iscsi/crypto/openssl/crypto/o_time.h projects/cxl_iscsi/crypto/openssl/crypto/objects/obj_dat.h projects/cxl_iscsi/crypto/openssl/crypto/objects/obj_mac.h projects/cxl_iscsi/crypto/openssl/crypto/objects/obj_mac.num projects/cxl_iscsi/crypto/openssl/crypto/objects/obj_xref.h projects/cxl_iscsi/crypto/openssl/crypto/objects/obj_xref.txt projects/cxl_iscsi/crypto/openssl/crypto/objects/objects.txt projects/cxl_iscsi/crypto/openssl/crypto/objects/objxref.pl projects/cxl_iscsi/crypto/openssl/crypto/ocsp/ocsp.h projects/cxl_iscsi/crypto/openssl/crypto/ocsp/ocsp_ht.c projects/cxl_iscsi/crypto/openssl/crypto/ocsp/ocsp_lib.c projects/cxl_iscsi/crypto/openssl/crypto/opensslconf.h projects/cxl_iscsi/crypto/openssl/crypto/opensslv.h projects/cxl_iscsi/crypto/openssl/crypto/ossl_typ.h projects/cxl_iscsi/crypto/openssl/crypto/pem/Makefile projects/cxl_iscsi/crypto/openssl/crypto/pem/pem.h projects/cxl_iscsi/crypto/openssl/crypto/pem/pem_all.c projects/cxl_iscsi/crypto/openssl/crypto/pem/pem_err.c projects/cxl_iscsi/crypto/openssl/crypto/pem/pem_lib.c projects/cxl_iscsi/crypto/openssl/crypto/pem/pem_pkey.c projects/cxl_iscsi/crypto/openssl/crypto/perlasm/ppc-xlate.pl projects/cxl_iscsi/crypto/openssl/crypto/perlasm/x86_64-xlate.pl projects/cxl_iscsi/crypto/openssl/crypto/perlasm/x86asm.pl projects/cxl_iscsi/crypto/openssl/crypto/perlasm/x86gas.pl projects/cxl_iscsi/crypto/openssl/crypto/perlasm/x86masm.pl projects/cxl_iscsi/crypto/openssl/crypto/perlasm/x86nasm.pl projects/cxl_iscsi/crypto/openssl/crypto/pkcs12/p12_decr.c projects/cxl_iscsi/crypto/openssl/crypto/pkcs12/p12_p8e.c projects/cxl_iscsi/crypto/openssl/crypto/ppccap.c projects/cxl_iscsi/crypto/openssl/crypto/ppccpuid.pl projects/cxl_iscsi/crypto/openssl/crypto/rc4/Makefile projects/cxl_iscsi/crypto/openssl/crypto/rc4/asm/rc4-586.pl projects/cxl_iscsi/crypto/openssl/crypto/rc4/rc4_enc.c projects/cxl_iscsi/crypto/openssl/crypto/rc5/rc5_locl.h projects/cxl_iscsi/crypto/openssl/crypto/rsa/Makefile projects/cxl_iscsi/crypto/openssl/crypto/rsa/rsa.h projects/cxl_iscsi/crypto/openssl/crypto/rsa/rsa_ameth.c projects/cxl_iscsi/crypto/openssl/crypto/rsa/rsa_asn1.c projects/cxl_iscsi/crypto/openssl/crypto/rsa/rsa_err.c projects/cxl_iscsi/crypto/openssl/crypto/rsa/rsa_oaep.c projects/cxl_iscsi/crypto/openssl/crypto/rsa/rsa_pmeth.c projects/cxl_iscsi/crypto/openssl/crypto/rsa/rsa_sign.c projects/cxl_iscsi/crypto/openssl/crypto/sha/Makefile projects/cxl_iscsi/crypto/openssl/crypto/sha/asm/sha1-586.pl projects/cxl_iscsi/crypto/openssl/crypto/sha/asm/sha1-armv4-large.pl projects/cxl_iscsi/crypto/openssl/crypto/sha/asm/sha1-mips.pl projects/cxl_iscsi/crypto/openssl/crypto/sha/asm/sha1-ppc.pl projects/cxl_iscsi/crypto/openssl/crypto/sha/asm/sha1-sparcv9.pl projects/cxl_iscsi/crypto/openssl/crypto/sha/asm/sha1-x86_64.pl projects/cxl_iscsi/crypto/openssl/crypto/sha/asm/sha256-586.pl projects/cxl_iscsi/crypto/openssl/crypto/sha/asm/sha256-armv4.pl projects/cxl_iscsi/crypto/openssl/crypto/sha/asm/sha512-586.pl projects/cxl_iscsi/crypto/openssl/crypto/sha/asm/sha512-armv4.pl projects/cxl_iscsi/crypto/openssl/crypto/sha/asm/sha512-ia64.pl projects/cxl_iscsi/crypto/openssl/crypto/sha/asm/sha512-mips.pl projects/cxl_iscsi/crypto/openssl/crypto/sha/asm/sha512-ppc.pl projects/cxl_iscsi/crypto/openssl/crypto/sha/asm/sha512-sparcv9.pl projects/cxl_iscsi/crypto/openssl/crypto/sha/asm/sha512-x86_64.pl projects/cxl_iscsi/crypto/openssl/crypto/sha/sha512.c projects/cxl_iscsi/crypto/openssl/crypto/sparccpuid.S projects/cxl_iscsi/crypto/openssl/crypto/sparcv9cap.c projects/cxl_iscsi/crypto/openssl/crypto/srp/Makefile projects/cxl_iscsi/crypto/openssl/crypto/srp/srptest.c projects/cxl_iscsi/crypto/openssl/crypto/stack/safestack.h projects/cxl_iscsi/crypto/openssl/crypto/stack/stack.c projects/cxl_iscsi/crypto/openssl/crypto/stack/stack.h projects/cxl_iscsi/crypto/openssl/crypto/symhacks.h projects/cxl_iscsi/crypto/openssl/crypto/ts/ts_rsp_sign.c projects/cxl_iscsi/crypto/openssl/crypto/ts/ts_rsp_verify.c projects/cxl_iscsi/crypto/openssl/crypto/ui/ui_openssl.c projects/cxl_iscsi/crypto/openssl/crypto/whrlpool/asm/wp-mmx.pl projects/cxl_iscsi/crypto/openssl/crypto/whrlpool/asm/wp-x86_64.pl projects/cxl_iscsi/crypto/openssl/crypto/x509/Makefile projects/cxl_iscsi/crypto/openssl/crypto/x509/verify_extra_test.c projects/cxl_iscsi/crypto/openssl/crypto/x509/x509.h projects/cxl_iscsi/crypto/openssl/crypto/x509/x509_cmp.c projects/cxl_iscsi/crypto/openssl/crypto/x509/x509_err.c projects/cxl_iscsi/crypto/openssl/crypto/x509/x509_lu.c projects/cxl_iscsi/crypto/openssl/crypto/x509/x509_set.c projects/cxl_iscsi/crypto/openssl/crypto/x509/x509_trs.c projects/cxl_iscsi/crypto/openssl/crypto/x509/x509_txt.c projects/cxl_iscsi/crypto/openssl/crypto/x509/x509_vfy.c projects/cxl_iscsi/crypto/openssl/crypto/x509/x509_vfy.h projects/cxl_iscsi/crypto/openssl/crypto/x509/x509_vpm.c projects/cxl_iscsi/crypto/openssl/crypto/x509/x_all.c projects/cxl_iscsi/crypto/openssl/crypto/x509v3/Makefile projects/cxl_iscsi/crypto/openssl/crypto/x509v3/ext_dat.h projects/cxl_iscsi/crypto/openssl/crypto/x509v3/v3_lib.c projects/cxl_iscsi/crypto/openssl/crypto/x509v3/v3_purp.c projects/cxl_iscsi/crypto/openssl/crypto/x509v3/v3_utl.c projects/cxl_iscsi/crypto/openssl/crypto/x509v3/v3err.c projects/cxl_iscsi/crypto/openssl/crypto/x509v3/x509v3.h projects/cxl_iscsi/crypto/openssl/crypto/x86_64cpuid.pl projects/cxl_iscsi/crypto/openssl/crypto/x86cpuid.pl projects/cxl_iscsi/crypto/openssl/doc/apps/c_rehash.pod projects/cxl_iscsi/crypto/openssl/doc/apps/ciphers.pod projects/cxl_iscsi/crypto/openssl/doc/apps/cms.pod projects/cxl_iscsi/crypto/openssl/doc/apps/genpkey.pod projects/cxl_iscsi/crypto/openssl/doc/apps/ocsp.pod projects/cxl_iscsi/crypto/openssl/doc/apps/pkcs8.pod projects/cxl_iscsi/crypto/openssl/doc/apps/req.pod projects/cxl_iscsi/crypto/openssl/doc/apps/s_client.pod projects/cxl_iscsi/crypto/openssl/doc/apps/s_server.pod projects/cxl_iscsi/crypto/openssl/doc/apps/smime.pod projects/cxl_iscsi/crypto/openssl/doc/apps/verify.pod projects/cxl_iscsi/crypto/openssl/doc/apps/x509.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/ASN1_STRING_length.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/ASN1_STRING_print_ex.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/BIO_f_ssl.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/BIO_find_type.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/BIO_s_accept.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/BIO_s_connect.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/BN_BLINDING_new.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/BN_CTX_new.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/BN_generate_prime.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/BN_rand.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/CMS_add0_cert.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/CMS_get0_RecipientInfos.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/CMS_get0_SignerInfos.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/CMS_verify.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/DH_generate_parameters.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/DSA_generate_parameters.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/ERR_remove_state.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/EVP_BytesToKey.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/EVP_DigestInit.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/EVP_DigestVerifyInit.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/EVP_EncryptInit.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/EVP_PKEY_CTX_ctrl.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/EVP_PKEY_cmp.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/OPENSSL_VERSION_NUMBER.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/OPENSSL_config.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/OPENSSL_ia32cap.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/OPENSSL_load_builtin_modules.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/OpenSSL_add_all_algorithms.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/PKCS7_verify.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/RAND_egd.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/RSA_generate_key.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/X509_NAME_add_entry_by_txt.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/X509_STORE_CTX_get_error.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/X509_VERIFY_PARAM_set_flags.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/crypto.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/d2i_DSAPublicKey.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/d2i_X509.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/d2i_X509_CRL.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/ecdsa.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/evp.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/hmac.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/i2d_PKCS7_bio_stream.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/rand.pod projects/cxl_iscsi/crypto/openssl/doc/crypto/sha.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_CIPHER_get_name.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_COMP_add_compression_method.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_CTX_add_extra_chain_cert.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_CTX_sess_set_cache_size.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_CTX_set_cert_store.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_CTX_set_cipher_list.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_CTX_set_tmp_rsa_callback.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_CTX_use_certificate.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_CTX_use_psk_identity_hint.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_accept.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_do_handshake.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/SSL_shutdown.pod projects/cxl_iscsi/crypto/openssl/doc/ssl/ssl.pod projects/cxl_iscsi/crypto/openssl/doc/ssleay.txt projects/cxl_iscsi/crypto/openssl/e_os.h projects/cxl_iscsi/crypto/openssl/e_os2.h projects/cxl_iscsi/crypto/openssl/engines/Makefile projects/cxl_iscsi/crypto/openssl/engines/ccgost/Makefile projects/cxl_iscsi/crypto/openssl/engines/ccgost/gost89.c projects/cxl_iscsi/crypto/openssl/engines/ccgost/gost_crypt.c projects/cxl_iscsi/crypto/openssl/engines/ccgost/gost_pmeth.c projects/cxl_iscsi/crypto/openssl/engines/e_capi.c projects/cxl_iscsi/crypto/openssl/engines/vendor_defns/hwcryptohook.h projects/cxl_iscsi/crypto/openssl/ssl/Makefile projects/cxl_iscsi/crypto/openssl/ssl/d1_both.c projects/cxl_iscsi/crypto/openssl/ssl/d1_clnt.c projects/cxl_iscsi/crypto/openssl/ssl/d1_lib.c projects/cxl_iscsi/crypto/openssl/ssl/d1_meth.c projects/cxl_iscsi/crypto/openssl/ssl/d1_pkt.c projects/cxl_iscsi/crypto/openssl/ssl/d1_srtp.c projects/cxl_iscsi/crypto/openssl/ssl/d1_srvr.c projects/cxl_iscsi/crypto/openssl/ssl/dtls1.h projects/cxl_iscsi/crypto/openssl/ssl/heartbeat_test.c projects/cxl_iscsi/crypto/openssl/ssl/s23_clnt.c projects/cxl_iscsi/crypto/openssl/ssl/s23_srvr.c projects/cxl_iscsi/crypto/openssl/ssl/s2_clnt.c projects/cxl_iscsi/crypto/openssl/ssl/s2_lib.c projects/cxl_iscsi/crypto/openssl/ssl/s3_both.c projects/cxl_iscsi/crypto/openssl/ssl/s3_cbc.c projects/cxl_iscsi/crypto/openssl/ssl/s3_clnt.c projects/cxl_iscsi/crypto/openssl/ssl/s3_enc.c projects/cxl_iscsi/crypto/openssl/ssl/s3_lib.c projects/cxl_iscsi/crypto/openssl/ssl/s3_pkt.c projects/cxl_iscsi/crypto/openssl/ssl/s3_srvr.c projects/cxl_iscsi/crypto/openssl/ssl/srtp.h projects/cxl_iscsi/crypto/openssl/ssl/ssl.h projects/cxl_iscsi/crypto/openssl/ssl/ssl3.h projects/cxl_iscsi/crypto/openssl/ssl/ssl_algs.c projects/cxl_iscsi/crypto/openssl/ssl/ssl_cert.c projects/cxl_iscsi/crypto/openssl/ssl/ssl_ciph.c projects/cxl_iscsi/crypto/openssl/ssl/ssl_err.c projects/cxl_iscsi/crypto/openssl/ssl/ssl_lib.c projects/cxl_iscsi/crypto/openssl/ssl/ssl_locl.h projects/cxl_iscsi/crypto/openssl/ssl/ssl_rsa.c projects/cxl_iscsi/crypto/openssl/ssl/ssl_sess.c projects/cxl_iscsi/crypto/openssl/ssl/ssl_txt.c projects/cxl_iscsi/crypto/openssl/ssl/ssltest.c projects/cxl_iscsi/crypto/openssl/ssl/t1_clnt.c projects/cxl_iscsi/crypto/openssl/ssl/t1_enc.c projects/cxl_iscsi/crypto/openssl/ssl/t1_lib.c projects/cxl_iscsi/crypto/openssl/ssl/t1_meth.c projects/cxl_iscsi/crypto/openssl/ssl/t1_srvr.c projects/cxl_iscsi/crypto/openssl/ssl/tls1.h projects/cxl_iscsi/crypto/openssl/util/files.pl projects/cxl_iscsi/crypto/openssl/util/libeay.num projects/cxl_iscsi/crypto/openssl/util/mk1mf.pl projects/cxl_iscsi/crypto/openssl/util/mkdef.pl projects/cxl_iscsi/crypto/openssl/util/mkerr.pl projects/cxl_iscsi/crypto/openssl/util/mkstack.pl projects/cxl_iscsi/crypto/openssl/util/pl/BC-32.pl projects/cxl_iscsi/crypto/openssl/util/pl/VC-32.pl projects/cxl_iscsi/crypto/openssl/util/pl/unix.pl projects/cxl_iscsi/crypto/openssl/util/ssleay.num projects/cxl_iscsi/etc/Makefile projects/cxl_iscsi/etc/defaults/periodic.conf projects/cxl_iscsi/etc/defaults/rc.conf projects/cxl_iscsi/etc/etc.amd64/ttys projects/cxl_iscsi/etc/etc.i386/ttys projects/cxl_iscsi/etc/etc.mips/ttys projects/cxl_iscsi/etc/etc.pc98/ttys projects/cxl_iscsi/etc/etc.powerpc/ttys projects/cxl_iscsi/etc/etc.sparc64/ttys projects/cxl_iscsi/etc/login.conf projects/cxl_iscsi/etc/mtree/BSD.debug.dist projects/cxl_iscsi/etc/mtree/BSD.tests.dist projects/cxl_iscsi/etc/mtree/BSD.usr.dist projects/cxl_iscsi/etc/mtree/BSD.var.dist projects/cxl_iscsi/etc/mtree/Makefile projects/cxl_iscsi/etc/netstart projects/cxl_iscsi/etc/ntp.conf projects/cxl_iscsi/etc/periodic/Makefile projects/cxl_iscsi/etc/periodic/daily/400.status-disks projects/cxl_iscsi/etc/periodic/daily/Makefile projects/cxl_iscsi/etc/periodic/security/520.pfdenied projects/cxl_iscsi/etc/rc.d/jail projects/cxl_iscsi/etc/rc.d/local_unbound projects/cxl_iscsi/etc/rc.d/mdconfig projects/cxl_iscsi/etc/rc.d/mdconfig2 projects/cxl_iscsi/etc/rc.d/mountcritlocal projects/cxl_iscsi/etc/rc.d/othermta projects/cxl_iscsi/etc/rc.d/var projects/cxl_iscsi/etc/rc.shutdown projects/cxl_iscsi/etc/rc.subr projects/cxl_iscsi/gnu/Makefile projects/cxl_iscsi/gnu/lib/Makefile projects/cxl_iscsi/gnu/usr.bin/binutils/ld/genscripts.sh projects/cxl_iscsi/gnu/usr.bin/cc/Makefile projects/cxl_iscsi/gnu/usr.bin/gdb/kgdb/trgt_arm.c projects/cxl_iscsi/gnu/usr.bin/grep/savedir.c projects/cxl_iscsi/gnu/usr.bin/groff/Makefile projects/cxl_iscsi/gnu/usr.bin/rcs/Makefile projects/cxl_iscsi/include/Makefile projects/cxl_iscsi/include/_ctype.h projects/cxl_iscsi/include/ctype.h projects/cxl_iscsi/include/limits.h projects/cxl_iscsi/include/resolv.h projects/cxl_iscsi/include/stdio.h projects/cxl_iscsi/include/unistd.h projects/cxl_iscsi/include/wctype.h projects/cxl_iscsi/include/xlocale/_ctype.h projects/cxl_iscsi/kerberos5/lib/Makefile projects/cxl_iscsi/lib/Makefile projects/cxl_iscsi/lib/clang/clang.build.mk projects/cxl_iscsi/lib/clang/include/clang/Config/config.h projects/cxl_iscsi/lib/clang/include/llvm/Config/config.h projects/cxl_iscsi/lib/libc/gen/getgrent.c projects/cxl_iscsi/lib/libc/gen/getpwent.c projects/cxl_iscsi/lib/libc/iconv/bsd_iconv.c projects/cxl_iscsi/lib/libc/iconv/citrus_esdb.c projects/cxl_iscsi/lib/libc/locale/big5.c projects/cxl_iscsi/lib/libc/locale/collate.c projects/cxl_iscsi/lib/libc/locale/collate.h projects/cxl_iscsi/lib/libc/locale/collcmp.c projects/cxl_iscsi/lib/libc/locale/euc.c projects/cxl_iscsi/lib/libc/locale/gb18030.c projects/cxl_iscsi/lib/libc/locale/gb2312.c projects/cxl_iscsi/lib/libc/locale/gbk.c projects/cxl_iscsi/lib/libc/locale/isctype.c projects/cxl_iscsi/lib/libc/locale/iswctype.c projects/cxl_iscsi/lib/libc/locale/mblocal.h projects/cxl_iscsi/lib/libc/locale/mbsnrtowcs.c projects/cxl_iscsi/lib/libc/locale/mskanji.c projects/cxl_iscsi/lib/libc/locale/nl_langinfo.c projects/cxl_iscsi/lib/libc/locale/none.c projects/cxl_iscsi/lib/libc/locale/rune.c projects/cxl_iscsi/lib/libc/locale/setrunelocale.c projects/cxl_iscsi/lib/libc/locale/table.c projects/cxl_iscsi/lib/libc/locale/utf8.c projects/cxl_iscsi/lib/libc/locale/wcsnrtombs.c projects/cxl_iscsi/lib/libc/locale/wctype.c projects/cxl_iscsi/lib/libc/net/getnameinfo.c projects/cxl_iscsi/lib/libc/resolv/res_data.c projects/cxl_iscsi/lib/libc/resolv/res_init.c projects/cxl_iscsi/lib/libc/resolv/res_state.c projects/cxl_iscsi/lib/libc/rpc/clnt_bcast.c projects/cxl_iscsi/lib/libc/rpc/clnt_vc.c projects/cxl_iscsi/lib/libc/rpc/getnetconfig.c projects/cxl_iscsi/lib/libc/rpc/mt_misc.c projects/cxl_iscsi/lib/libc/rpc/rpc_soc.c projects/cxl_iscsi/lib/libc/rpc/rpcb_clnt.c projects/cxl_iscsi/lib/libc/rpc/svc.c projects/cxl_iscsi/lib/libc/rpc/svc_dg.c projects/cxl_iscsi/lib/libc/rpc/svc_simple.c projects/cxl_iscsi/lib/libc/rpc/svc_vc.c projects/cxl_iscsi/lib/libc/sparc64/fpu/fpu.c projects/cxl_iscsi/lib/libc/stdio/fdopen.c projects/cxl_iscsi/lib/libc/stdio/findfp.c projects/cxl_iscsi/lib/libc/stdio/fmemopen.c projects/cxl_iscsi/lib/libc/stdio/fopen.c projects/cxl_iscsi/lib/libc/stdio/freopen.c projects/cxl_iscsi/lib/libc/stdio/ftell.c projects/cxl_iscsi/lib/libc/stdio/stdio.c projects/cxl_iscsi/lib/libc/string/ffs.3 projects/cxl_iscsi/lib/libc/string/strcoll.c projects/cxl_iscsi/lib/libc/string/strxfrm.c projects/cxl_iscsi/lib/libc/string/wcscoll.c projects/cxl_iscsi/lib/libc/string/wcsxfrm.c projects/cxl_iscsi/lib/libc/sys/cpuset.2 projects/cxl_iscsi/lib/libc/sys/cpuset_getaffinity.2 projects/cxl_iscsi/lib/libc/sys/ptrace.2 projects/cxl_iscsi/lib/libc/tests/Makefile projects/cxl_iscsi/lib/libc/tests/Makefile.netbsd-tests projects/cxl_iscsi/lib/libc/tests/c063/Makefile projects/cxl_iscsi/lib/libc/tests/gen/Makefile projects/cxl_iscsi/lib/libc/tests/gen/arc4random_test.c projects/cxl_iscsi/lib/libc/tests/locale/Makefile projects/cxl_iscsi/lib/libc/tests/net/Makefile projects/cxl_iscsi/lib/libc/tests/setjmp/Makefile projects/cxl_iscsi/lib/libc/tests/ssp/Makefile projects/cxl_iscsi/lib/libc/tests/stdio/Makefile projects/cxl_iscsi/lib/libc/tests/stdio/fmemopen2_test.c projects/cxl_iscsi/lib/libc/tests/stdlib/Makefile projects/cxl_iscsi/lib/libc/tests/string/Makefile projects/cxl_iscsi/lib/libc/tests/sys/Makefile projects/cxl_iscsi/lib/libc/tests/tls_dso/Makefile projects/cxl_iscsi/lib/libc/yp/yplib.c projects/cxl_iscsi/lib/libcam/camlib.c projects/cxl_iscsi/lib/libcrypt/tests/Makefile projects/cxl_iscsi/lib/libdpv/dialogrc.c projects/cxl_iscsi/lib/libdpv/dialogrc.h projects/cxl_iscsi/lib/libdpv/dpv.3 projects/cxl_iscsi/lib/libedit/vi.c projects/cxl_iscsi/lib/libfetch/file.c projects/cxl_iscsi/lib/libfetch/http.c projects/cxl_iscsi/lib/libfigpar/figpar.3 projects/cxl_iscsi/lib/libfigpar/figpar.c projects/cxl_iscsi/lib/libfigpar/figpar.h projects/cxl_iscsi/lib/libiconv_modules/Makefile projects/cxl_iscsi/lib/libnetbsd/README projects/cxl_iscsi/lib/libpmc/libpmc.c projects/cxl_iscsi/lib/libpmc/pmc.h projects/cxl_iscsi/lib/libucl/Makefile projects/cxl_iscsi/lib/libutil/pty.3 projects/cxl_iscsi/lib/libxo/Makefile projects/cxl_iscsi/lib/libxo/tests/Makefile projects/cxl_iscsi/lib/libxo/tests/encoder/Makefile projects/cxl_iscsi/lib/msun/Makefile projects/cxl_iscsi/lib/msun/man/exp.3 projects/cxl_iscsi/lib/msun/tests/Makefile projects/cxl_iscsi/libexec/rtld-elf/libmap.c projects/cxl_iscsi/libexec/rtld-elf/malloc.c projects/cxl_iscsi/libexec/rtld-elf/map_object.c projects/cxl_iscsi/libexec/rtld-elf/rtld.c projects/cxl_iscsi/libexec/rtld-elf/rtld.h projects/cxl_iscsi/release/Makefile projects/cxl_iscsi/release/Makefile.mirrors projects/cxl_iscsi/release/Makefile.vm projects/cxl_iscsi/release/release.sh projects/cxl_iscsi/release/scripts/mm-mtree.sh projects/cxl_iscsi/release/tools/arm.subr projects/cxl_iscsi/rescue/rescue/Makefile projects/cxl_iscsi/sbin/Makefile projects/cxl_iscsi/sbin/atm/atmconfig/Makefile projects/cxl_iscsi/sbin/camcontrol/modeedit.c projects/cxl_iscsi/sbin/devd/devd.cc projects/cxl_iscsi/sbin/fsck_ffs/fsck.h projects/cxl_iscsi/sbin/fsck_ffs/globs.c projects/cxl_iscsi/sbin/ifconfig/ifconfig.8 projects/cxl_iscsi/sbin/ifconfig/ifieee80211.c projects/cxl_iscsi/sbin/init/Makefile projects/cxl_iscsi/sbin/init/init.c projects/cxl_iscsi/sbin/init/pathnames.h projects/cxl_iscsi/sbin/ipfw/ipfw2.c projects/cxl_iscsi/sbin/ipfw/ipfw2.h projects/cxl_iscsi/sbin/ipfw/tables.c projects/cxl_iscsi/sbin/mount/mount.8 projects/cxl_iscsi/sbin/mount/mount.conf.8 projects/cxl_iscsi/sbin/natd/natd.c projects/cxl_iscsi/sbin/newfs_msdos/Makefile projects/cxl_iscsi/sbin/newfs_msdos/newfs_msdos.c projects/cxl_iscsi/sbin/newfs_nandfs/newfs_nandfs.c projects/cxl_iscsi/sbin/pfctl/pfctl.c projects/cxl_iscsi/sbin/rcorder/rcorder.c projects/cxl_iscsi/sbin/reboot/reboot.8 projects/cxl_iscsi/sbin/reboot/reboot.c projects/cxl_iscsi/sbin/restore/tape.c projects/cxl_iscsi/sbin/savecore/Makefile projects/cxl_iscsi/sbin/savecore/savecore.c projects/cxl_iscsi/sbin/sysctl/sysctl.c projects/cxl_iscsi/secure/Makefile projects/cxl_iscsi/secure/lib/libcrypto/Makefile projects/cxl_iscsi/secure/lib/libcrypto/Makefile.asm projects/cxl_iscsi/secure/lib/libcrypto/Makefile.inc projects/cxl_iscsi/secure/lib/libcrypto/Makefile.man projects/cxl_iscsi/secure/lib/libcrypto/amd64/aes-x86_64.S projects/cxl_iscsi/secure/lib/libcrypto/amd64/aesni-sha1-x86_64.S projects/cxl_iscsi/secure/lib/libcrypto/amd64/aesni-x86_64.S projects/cxl_iscsi/secure/lib/libcrypto/amd64/bsaes-x86_64.S projects/cxl_iscsi/secure/lib/libcrypto/amd64/cmll-x86_64.S projects/cxl_iscsi/secure/lib/libcrypto/amd64/ghash-x86_64.S projects/cxl_iscsi/secure/lib/libcrypto/amd64/md5-x86_64.S projects/cxl_iscsi/secure/lib/libcrypto/amd64/rc4-x86_64.S projects/cxl_iscsi/secure/lib/libcrypto/amd64/sha1-x86_64.S projects/cxl_iscsi/secure/lib/libcrypto/amd64/sha256-x86_64.S projects/cxl_iscsi/secure/lib/libcrypto/amd64/sha512-x86_64.S projects/cxl_iscsi/secure/lib/libcrypto/amd64/vpaes-x86_64.S projects/cxl_iscsi/secure/lib/libcrypto/amd64/wp-x86_64.S projects/cxl_iscsi/secure/lib/libcrypto/amd64/x86_64-gf2m.S projects/cxl_iscsi/secure/lib/libcrypto/amd64/x86_64-mont.S projects/cxl_iscsi/secure/lib/libcrypto/amd64/x86_64-mont5.S projects/cxl_iscsi/secure/lib/libcrypto/amd64/x86_64cpuid.S projects/cxl_iscsi/secure/lib/libcrypto/engines/Makefile projects/cxl_iscsi/secure/lib/libcrypto/engines/libgost/Makefile projects/cxl_iscsi/secure/lib/libcrypto/i386/aes-586.s projects/cxl_iscsi/secure/lib/libcrypto/i386/aesni-x86.s projects/cxl_iscsi/secure/lib/libcrypto/i386/bn-586.s projects/cxl_iscsi/secure/lib/libcrypto/i386/des-586.s projects/cxl_iscsi/secure/lib/libcrypto/i386/ghash-x86.s projects/cxl_iscsi/secure/lib/libcrypto/i386/rc4-586.s projects/cxl_iscsi/secure/lib/libcrypto/i386/sha1-586.s projects/cxl_iscsi/secure/lib/libcrypto/i386/sha256-586.s projects/cxl_iscsi/secure/lib/libcrypto/i386/sha512-586.s projects/cxl_iscsi/secure/lib/libcrypto/i386/vpaes-x86.s projects/cxl_iscsi/secure/lib/libcrypto/i386/wp-mmx.s projects/cxl_iscsi/secure/lib/libcrypto/i386/x86-gf2m.s projects/cxl_iscsi/secure/lib/libcrypto/i386/x86-mont.s projects/cxl_iscsi/secure/lib/libcrypto/i386/x86cpuid.s projects/cxl_iscsi/secure/lib/libcrypto/man/ASN1_OBJECT_new.3 projects/cxl_iscsi/secure/lib/libcrypto/man/ASN1_STRING_length.3 projects/cxl_iscsi/secure/lib/libcrypto/man/ASN1_STRING_new.3 projects/cxl_iscsi/secure/lib/libcrypto/man/ASN1_STRING_print_ex.3 projects/cxl_iscsi/secure/lib/libcrypto/man/ASN1_generate_nconf.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BIO_ctrl.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BIO_f_base64.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BIO_f_buffer.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BIO_f_cipher.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BIO_f_md.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BIO_f_null.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BIO_f_ssl.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BIO_find_type.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BIO_new.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BIO_new_CMS.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BIO_push.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BIO_read.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BIO_s_accept.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BIO_s_bio.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BIO_s_connect.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BIO_s_fd.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BIO_s_file.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BIO_s_mem.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BIO_s_null.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BIO_s_socket.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BIO_set_callback.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BIO_should_retry.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BN_BLINDING_new.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BN_CTX_new.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BN_CTX_start.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BN_add.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BN_add_word.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BN_bn2bin.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BN_cmp.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BN_copy.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BN_generate_prime.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BN_mod_inverse.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BN_mod_mul_montgomery.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BN_mod_mul_reciprocal.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BN_new.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BN_num_bytes.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BN_rand.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BN_set_bit.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BN_swap.3 projects/cxl_iscsi/secure/lib/libcrypto/man/BN_zero.3 projects/cxl_iscsi/secure/lib/libcrypto/man/CMS_add0_cert.3 projects/cxl_iscsi/secure/lib/libcrypto/man/CMS_add1_recipient_cert.3 projects/cxl_iscsi/secure/lib/libcrypto/man/CMS_add1_signer.3 projects/cxl_iscsi/secure/lib/libcrypto/man/CMS_compress.3 projects/cxl_iscsi/secure/lib/libcrypto/man/CMS_decrypt.3 projects/cxl_iscsi/secure/lib/libcrypto/man/CMS_encrypt.3 projects/cxl_iscsi/secure/lib/libcrypto/man/CMS_final.3 projects/cxl_iscsi/secure/lib/libcrypto/man/CMS_get0_RecipientInfos.3 projects/cxl_iscsi/secure/lib/libcrypto/man/CMS_get0_SignerInfos.3 projects/cxl_iscsi/secure/lib/libcrypto/man/CMS_get0_type.3 projects/cxl_iscsi/secure/lib/libcrypto/man/CMS_get1_ReceiptRequest.3 projects/cxl_iscsi/secure/lib/libcrypto/man/CMS_sign.3 projects/cxl_iscsi/secure/lib/libcrypto/man/CMS_sign_receipt.3 projects/cxl_iscsi/secure/lib/libcrypto/man/CMS_uncompress.3 projects/cxl_iscsi/secure/lib/libcrypto/man/CMS_verify.3 projects/cxl_iscsi/secure/lib/libcrypto/man/CMS_verify_receipt.3 projects/cxl_iscsi/secure/lib/libcrypto/man/CONF_modules_free.3 projects/cxl_iscsi/secure/lib/libcrypto/man/CONF_modules_load_file.3 projects/cxl_iscsi/secure/lib/libcrypto/man/CRYPTO_set_ex_data.3 projects/cxl_iscsi/secure/lib/libcrypto/man/DH_generate_key.3 projects/cxl_iscsi/secure/lib/libcrypto/man/DH_generate_parameters.3 projects/cxl_iscsi/secure/lib/libcrypto/man/DH_get_ex_new_index.3 projects/cxl_iscsi/secure/lib/libcrypto/man/DH_new.3 projects/cxl_iscsi/secure/lib/libcrypto/man/DH_set_method.3 projects/cxl_iscsi/secure/lib/libcrypto/man/DH_size.3 projects/cxl_iscsi/secure/lib/libcrypto/man/DSA_SIG_new.3 projects/cxl_iscsi/secure/lib/libcrypto/man/DSA_do_sign.3 projects/cxl_iscsi/secure/lib/libcrypto/man/DSA_dup_DH.3 projects/cxl_iscsi/secure/lib/libcrypto/man/DSA_generate_key.3 projects/cxl_iscsi/secure/lib/libcrypto/man/DSA_generate_parameters.3 projects/cxl_iscsi/secure/lib/libcrypto/man/DSA_get_ex_new_index.3 projects/cxl_iscsi/secure/lib/libcrypto/man/DSA_new.3 projects/cxl_iscsi/secure/lib/libcrypto/man/DSA_set_method.3 projects/cxl_iscsi/secure/lib/libcrypto/man/DSA_sign.3 projects/cxl_iscsi/secure/lib/libcrypto/man/DSA_size.3 projects/cxl_iscsi/secure/lib/libcrypto/man/ERR_GET_LIB.3 projects/cxl_iscsi/secure/lib/libcrypto/man/ERR_clear_error.3 projects/cxl_iscsi/secure/lib/libcrypto/man/ERR_error_string.3 projects/cxl_iscsi/secure/lib/libcrypto/man/ERR_get_error.3 projects/cxl_iscsi/secure/lib/libcrypto/man/ERR_load_crypto_strings.3 projects/cxl_iscsi/secure/lib/libcrypto/man/ERR_load_strings.3 projects/cxl_iscsi/secure/lib/libcrypto/man/ERR_print_errors.3 projects/cxl_iscsi/secure/lib/libcrypto/man/ERR_put_error.3 projects/cxl_iscsi/secure/lib/libcrypto/man/ERR_remove_state.3 projects/cxl_iscsi/secure/lib/libcrypto/man/ERR_set_mark.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EVP_BytesToKey.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EVP_DigestInit.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EVP_DigestSignInit.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EVP_DigestVerifyInit.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EVP_EncryptInit.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EVP_OpenInit.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EVP_PKEY_CTX_ctrl.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EVP_PKEY_CTX_new.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EVP_PKEY_cmp.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EVP_PKEY_decrypt.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EVP_PKEY_derive.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EVP_PKEY_encrypt.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EVP_PKEY_get_default_digest.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EVP_PKEY_keygen.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EVP_PKEY_new.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EVP_PKEY_print_private.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EVP_PKEY_set1_RSA.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EVP_PKEY_sign.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EVP_PKEY_verify.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EVP_PKEY_verify_recover.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EVP_SealInit.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EVP_SignInit.3 projects/cxl_iscsi/secure/lib/libcrypto/man/EVP_VerifyInit.3 projects/cxl_iscsi/secure/lib/libcrypto/man/OBJ_nid2obj.3 projects/cxl_iscsi/secure/lib/libcrypto/man/OPENSSL_Applink.3 projects/cxl_iscsi/secure/lib/libcrypto/man/OPENSSL_VERSION_NUMBER.3 projects/cxl_iscsi/secure/lib/libcrypto/man/OPENSSL_config.3 projects/cxl_iscsi/secure/lib/libcrypto/man/OPENSSL_ia32cap.3 projects/cxl_iscsi/secure/lib/libcrypto/man/OPENSSL_load_builtin_modules.3 projects/cxl_iscsi/secure/lib/libcrypto/man/OpenSSL_add_all_algorithms.3 projects/cxl_iscsi/secure/lib/libcrypto/man/PEM_write_bio_CMS_stream.3 projects/cxl_iscsi/secure/lib/libcrypto/man/PEM_write_bio_PKCS7_stream.3 projects/cxl_iscsi/secure/lib/libcrypto/man/PKCS12_create.3 projects/cxl_iscsi/secure/lib/libcrypto/man/PKCS12_parse.3 projects/cxl_iscsi/secure/lib/libcrypto/man/PKCS7_decrypt.3 projects/cxl_iscsi/secure/lib/libcrypto/man/PKCS7_encrypt.3 projects/cxl_iscsi/secure/lib/libcrypto/man/PKCS7_sign.3 projects/cxl_iscsi/secure/lib/libcrypto/man/PKCS7_sign_add_signer.3 projects/cxl_iscsi/secure/lib/libcrypto/man/PKCS7_verify.3 projects/cxl_iscsi/secure/lib/libcrypto/man/RAND_add.3 projects/cxl_iscsi/secure/lib/libcrypto/man/RAND_bytes.3 projects/cxl_iscsi/secure/lib/libcrypto/man/RAND_cleanup.3 projects/cxl_iscsi/secure/lib/libcrypto/man/RAND_egd.3 projects/cxl_iscsi/secure/lib/libcrypto/man/RAND_load_file.3 projects/cxl_iscsi/secure/lib/libcrypto/man/RAND_set_rand_method.3 projects/cxl_iscsi/secure/lib/libcrypto/man/RSA_blinding_on.3 projects/cxl_iscsi/secure/lib/libcrypto/man/RSA_check_key.3 projects/cxl_iscsi/secure/lib/libcrypto/man/RSA_generate_key.3 projects/cxl_iscsi/secure/lib/libcrypto/man/RSA_get_ex_new_index.3 projects/cxl_iscsi/secure/lib/libcrypto/man/RSA_new.3 projects/cxl_iscsi/secure/lib/libcrypto/man/RSA_padding_add_PKCS1_type_1.3 projects/cxl_iscsi/secure/lib/libcrypto/man/RSA_print.3 projects/cxl_iscsi/secure/lib/libcrypto/man/RSA_private_encrypt.3 projects/cxl_iscsi/secure/lib/libcrypto/man/RSA_public_encrypt.3 projects/cxl_iscsi/secure/lib/libcrypto/man/RSA_set_method.3 projects/cxl_iscsi/secure/lib/libcrypto/man/RSA_sign.3 projects/cxl_iscsi/secure/lib/libcrypto/man/RSA_sign_ASN1_OCTET_STRING.3 projects/cxl_iscsi/secure/lib/libcrypto/man/RSA_size.3 projects/cxl_iscsi/secure/lib/libcrypto/man/SMIME_read_CMS.3 projects/cxl_iscsi/secure/lib/libcrypto/man/SMIME_read_PKCS7.3 projects/cxl_iscsi/secure/lib/libcrypto/man/SMIME_write_CMS.3 projects/cxl_iscsi/secure/lib/libcrypto/man/SMIME_write_PKCS7.3 projects/cxl_iscsi/secure/lib/libcrypto/man/X509_NAME_ENTRY_get_object.3 projects/cxl_iscsi/secure/lib/libcrypto/man/X509_NAME_add_entry_by_txt.3 projects/cxl_iscsi/secure/lib/libcrypto/man/X509_NAME_get_index_by_NID.3 projects/cxl_iscsi/secure/lib/libcrypto/man/X509_NAME_print_ex.3 projects/cxl_iscsi/secure/lib/libcrypto/man/X509_STORE_CTX_get_error.3 projects/cxl_iscsi/secure/lib/libcrypto/man/X509_STORE_CTX_get_ex_new_index.3 projects/cxl_iscsi/secure/lib/libcrypto/man/X509_STORE_CTX_new.3 projects/cxl_iscsi/secure/lib/libcrypto/man/X509_STORE_CTX_set_verify_cb.3 projects/cxl_iscsi/secure/lib/libcrypto/man/X509_STORE_set_verify_cb_func.3 projects/cxl_iscsi/secure/lib/libcrypto/man/X509_VERIFY_PARAM_set_flags.3 projects/cxl_iscsi/secure/lib/libcrypto/man/X509_new.3 projects/cxl_iscsi/secure/lib/libcrypto/man/X509_verify_cert.3 projects/cxl_iscsi/secure/lib/libcrypto/man/bio.3 projects/cxl_iscsi/secure/lib/libcrypto/man/blowfish.3 projects/cxl_iscsi/secure/lib/libcrypto/man/bn.3 projects/cxl_iscsi/secure/lib/libcrypto/man/bn_internal.3 projects/cxl_iscsi/secure/lib/libcrypto/man/buffer.3 projects/cxl_iscsi/secure/lib/libcrypto/man/crypto.3 projects/cxl_iscsi/secure/lib/libcrypto/man/d2i_ASN1_OBJECT.3 projects/cxl_iscsi/secure/lib/libcrypto/man/d2i_CMS_ContentInfo.3 projects/cxl_iscsi/secure/lib/libcrypto/man/d2i_DHparams.3 projects/cxl_iscsi/secure/lib/libcrypto/man/d2i_DSAPublicKey.3 projects/cxl_iscsi/secure/lib/libcrypto/man/d2i_ECPrivateKey.3 projects/cxl_iscsi/secure/lib/libcrypto/man/d2i_PKCS8PrivateKey.3 projects/cxl_iscsi/secure/lib/libcrypto/man/d2i_RSAPublicKey.3 projects/cxl_iscsi/secure/lib/libcrypto/man/d2i_X509.3 projects/cxl_iscsi/secure/lib/libcrypto/man/d2i_X509_ALGOR.3 projects/cxl_iscsi/secure/lib/libcrypto/man/d2i_X509_CRL.3 projects/cxl_iscsi/secure/lib/libcrypto/man/d2i_X509_NAME.3 projects/cxl_iscsi/secure/lib/libcrypto/man/d2i_X509_REQ.3 projects/cxl_iscsi/secure/lib/libcrypto/man/d2i_X509_SIG.3 projects/cxl_iscsi/secure/lib/libcrypto/man/des.3 projects/cxl_iscsi/secure/lib/libcrypto/man/dh.3 projects/cxl_iscsi/secure/lib/libcrypto/man/dsa.3 projects/cxl_iscsi/secure/lib/libcrypto/man/ecdsa.3 projects/cxl_iscsi/secure/lib/libcrypto/man/engine.3 projects/cxl_iscsi/secure/lib/libcrypto/man/err.3 projects/cxl_iscsi/secure/lib/libcrypto/man/evp.3 projects/cxl_iscsi/secure/lib/libcrypto/man/hmac.3 projects/cxl_iscsi/secure/lib/libcrypto/man/i2d_CMS_bio_stream.3 projects/cxl_iscsi/secure/lib/libcrypto/man/i2d_PKCS7_bio_stream.3 projects/cxl_iscsi/secure/lib/libcrypto/man/lh_stats.3 projects/cxl_iscsi/secure/lib/libcrypto/man/lhash.3 projects/cxl_iscsi/secure/lib/libcrypto/man/md5.3 projects/cxl_iscsi/secure/lib/libcrypto/man/mdc2.3 projects/cxl_iscsi/secure/lib/libcrypto/man/pem.3 projects/cxl_iscsi/secure/lib/libcrypto/man/rand.3 projects/cxl_iscsi/secure/lib/libcrypto/man/rc4.3 projects/cxl_iscsi/secure/lib/libcrypto/man/ripemd.3 projects/cxl_iscsi/secure/lib/libcrypto/man/rsa.3 projects/cxl_iscsi/secure/lib/libcrypto/man/sha.3 projects/cxl_iscsi/secure/lib/libcrypto/man/threads.3 projects/cxl_iscsi/secure/lib/libcrypto/man/ui.3 projects/cxl_iscsi/secure/lib/libcrypto/man/ui_compat.3 projects/cxl_iscsi/secure/lib/libcrypto/man/x509.3 projects/cxl_iscsi/secure/lib/libcrypto/opensslconf-aarch64.h projects/cxl_iscsi/secure/lib/libcrypto/opensslconf-arm.h projects/cxl_iscsi/secure/lib/libcrypto/opensslconf-mips.h projects/cxl_iscsi/secure/lib/libcrypto/opensslconf-powerpc.h projects/cxl_iscsi/secure/lib/libcrypto/opensslconf-sparc64.h projects/cxl_iscsi/secure/lib/libcrypto/opensslconf-x86.h projects/cxl_iscsi/secure/lib/libssl/Makefile projects/cxl_iscsi/secure/lib/libssl/Makefile.man projects/cxl_iscsi/secure/lib/libssl/man/SSL_CIPHER_get_name.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_COMP_add_compression_method.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_add_extra_chain_cert.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_add_session.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_ctrl.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_flush_sessions.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_free.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_get_ex_new_index.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_get_verify_mode.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_load_verify_locations.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_new.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_sess_number.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_sess_set_cache_size.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_sess_set_get_cb.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_sessions.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_cert_store.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_cert_verify_callback.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_cipher_list.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_client_CA_list.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_client_cert_cb.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_default_passwd_cb.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_generate_session_id.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_info_callback.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_max_cert_list.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_mode.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_msg_callback.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_options.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_psk_client_callback.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_quiet_shutdown.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_read_ahead.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_session_cache_mode.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_session_id_context.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_ssl_version.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_timeout.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_tlsext_ticket_key_cb.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_tmp_dh_callback.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_tmp_rsa_callback.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_set_verify.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_use_certificate.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_CTX_use_psk_identity_hint.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_SESSION_free.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_SESSION_get_ex_new_index.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_SESSION_get_time.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_accept.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_alert_type_string.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_clear.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_connect.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_do_handshake.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_free.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_get_SSL_CTX.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_get_ciphers.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_get_client_CA_list.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_get_current_cipher.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_get_default_timeout.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_get_error.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_get_ex_data_X509_STORE_CTX_idx.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_get_ex_new_index.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_get_fd.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_get_peer_cert_chain.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_get_peer_certificate.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_get_psk_identity.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_get_rbio.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_get_session.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_get_verify_result.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_get_version.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_library_init.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_load_client_CA_file.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_new.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_pending.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_read.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_rstate_string.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_session_reused.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_set_bio.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_set_connect_state.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_set_fd.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_set_session.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_set_shutdown.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_set_verify_result.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_shutdown.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_state_string.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_want.3 projects/cxl_iscsi/secure/lib/libssl/man/SSL_write.3 projects/cxl_iscsi/secure/lib/libssl/man/d2i_SSL_SESSION.3 projects/cxl_iscsi/secure/lib/libssl/man/ssl.3 projects/cxl_iscsi/secure/libexec/Makefile projects/cxl_iscsi/secure/usr.bin/Makefile projects/cxl_iscsi/secure/usr.bin/openssl/Makefile projects/cxl_iscsi/secure/usr.bin/openssl/man/CA.pl.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/asn1parse.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/c_rehash.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/ca.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/ciphers.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/cms.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/crl.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/crl2pkcs7.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/dgst.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/dhparam.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/dsa.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/dsaparam.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/ec.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/ecparam.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/enc.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/errstr.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/gendsa.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/genpkey.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/genrsa.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/nseq.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/ocsp.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/openssl.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/passwd.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/pkcs12.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/pkcs7.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/pkcs8.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/pkey.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/pkeyparam.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/pkeyutl.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/rand.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/req.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/rsa.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/rsautl.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/s_client.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/s_server.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/s_time.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/sess_id.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/smime.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/speed.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/spkac.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/ts.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/tsget.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/verify.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/version.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/x509.1 projects/cxl_iscsi/secure/usr.bin/openssl/man/x509v3_config.1 projects/cxl_iscsi/secure/usr.sbin/Makefile projects/cxl_iscsi/share/Makefile projects/cxl_iscsi/share/colldef/Makefile projects/cxl_iscsi/share/doc/Makefile projects/cxl_iscsi/share/doc/legal/Makefile projects/cxl_iscsi/share/doc/legal/intel_ipw/Makefile projects/cxl_iscsi/share/doc/legal/intel_iwi/Makefile projects/cxl_iscsi/share/doc/legal/intel_iwn/Makefile projects/cxl_iscsi/share/doc/legal/intel_wpi/Makefile projects/cxl_iscsi/share/doc/legal/realtek/Makefile projects/cxl_iscsi/share/doc/papers/Makefile projects/cxl_iscsi/share/doc/psd/Makefile projects/cxl_iscsi/share/doc/smm/Makefile projects/cxl_iscsi/share/doc/usd/Makefile projects/cxl_iscsi/share/examples/Makefile projects/cxl_iscsi/share/examples/etc/make.conf projects/cxl_iscsi/share/examples/smbfs/Makefile projects/cxl_iscsi/share/examples/smbfs/print/Makefile projects/cxl_iscsi/share/i18n/Makefile projects/cxl_iscsi/share/i18n/csmapper/Makefile projects/cxl_iscsi/share/i18n/esdb/Makefile projects/cxl_iscsi/share/keys/pkg/trusted/Makefile projects/cxl_iscsi/share/man/Makefile projects/cxl_iscsi/share/man/man3/bitstring.3 projects/cxl_iscsi/share/man/man4/Makefile projects/cxl_iscsi/share/man/man4/cloudabi.4 projects/cxl_iscsi/share/man/man4/ddb.4 projects/cxl_iscsi/share/man/man4/ioat.4 projects/cxl_iscsi/share/man/man4/ipw.4 projects/cxl_iscsi/share/man/man4/ipwfw.4 projects/cxl_iscsi/share/man/man4/isp.4 projects/cxl_iscsi/share/man/man4/iwi.4 projects/cxl_iscsi/share/man/man4/iwifw.4 projects/cxl_iscsi/share/man/man4/lagg.4 projects/cxl_iscsi/share/man/man4/rsu.4 projects/cxl_iscsi/share/man/man4/tcp.4 projects/cxl_iscsi/share/man/man4/urtwn.4 projects/cxl_iscsi/share/man/man4/urtwnfw.4 projects/cxl_iscsi/share/man/man4/witness.4 projects/cxl_iscsi/share/man/man4/wlan.4 projects/cxl_iscsi/share/man/man4/wpi.4 projects/cxl_iscsi/share/man/man4/xnb.4 projects/cxl_iscsi/share/man/man5/Makefile projects/cxl_iscsi/share/man/man5/devfs.conf.5 projects/cxl_iscsi/share/man/man5/make.conf.5 projects/cxl_iscsi/share/man/man5/resolver.5 projects/cxl_iscsi/share/man/man5/src.conf.5 projects/cxl_iscsi/share/man/man5/style.Makefile.5 projects/cxl_iscsi/share/man/man7/build.7 projects/cxl_iscsi/share/man/man9/BUS_ADD_CHILD.9 projects/cxl_iscsi/share/man/man9/Makefile projects/cxl_iscsi/share/man/man9/device_add_child.9 projects/cxl_iscsi/share/man/man9/getenv.9 projects/cxl_iscsi/share/man/man9/malloc.9 projects/cxl_iscsi/share/man/man9/pci.9 projects/cxl_iscsi/share/man/man9/printf.9 projects/cxl_iscsi/share/man/man9/sysctl.9 projects/cxl_iscsi/share/man/man9/sysctl_add_oid.9 projects/cxl_iscsi/share/man/man9/timeout.9 projects/cxl_iscsi/share/misc/bsd-family-tree projects/cxl_iscsi/share/misc/committers-src.dot projects/cxl_iscsi/share/misc/scsi_modes projects/cxl_iscsi/share/mk/bsd.README projects/cxl_iscsi/share/mk/bsd.compiler.mk projects/cxl_iscsi/share/mk/bsd.confs.mk projects/cxl_iscsi/share/mk/bsd.cpu.mk projects/cxl_iscsi/share/mk/bsd.crunchgen.mk projects/cxl_iscsi/share/mk/bsd.dep.mk projects/cxl_iscsi/share/mk/bsd.doc.mk projects/cxl_iscsi/share/mk/bsd.files.mk projects/cxl_iscsi/share/mk/bsd.incs.mk projects/cxl_iscsi/share/mk/bsd.info.mk projects/cxl_iscsi/share/mk/bsd.lib.mk projects/cxl_iscsi/share/mk/bsd.man.mk projects/cxl_iscsi/share/mk/bsd.opts.mk projects/cxl_iscsi/share/mk/bsd.own.mk projects/cxl_iscsi/share/mk/bsd.prog.mk projects/cxl_iscsi/share/mk/bsd.progs.mk projects/cxl_iscsi/share/mk/bsd.subdir.mk projects/cxl_iscsi/share/mk/bsd.sys.mk projects/cxl_iscsi/share/mk/dirdeps.mk projects/cxl_iscsi/share/mk/local.gendirdeps.mk projects/cxl_iscsi/share/mk/local.init.mk projects/cxl_iscsi/share/mk/local.meta.sys.mk projects/cxl_iscsi/share/mk/local.sys.mk projects/cxl_iscsi/share/mk/meta.stage.mk projects/cxl_iscsi/share/mk/src.libnames.mk projects/cxl_iscsi/share/mk/src.opts.mk projects/cxl_iscsi/share/mk/sys.mk projects/cxl_iscsi/share/monetdef/Makefile projects/cxl_iscsi/share/monetdef/am_ET.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/monetdef/be_BY.CP1131.src (contents, props changed) projects/cxl_iscsi/share/monetdef/be_BY.CP1251.src (contents, props changed) projects/cxl_iscsi/share/monetdef/be_BY.ISO8859-5.src (contents, props changed) projects/cxl_iscsi/share/monetdef/be_BY.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/monetdef/bg_BG.CP1251.src (contents, props changed) projects/cxl_iscsi/share/monetdef/bg_BG.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/monetdef/cs_CZ.ISO8859-2.src (contents, props changed) projects/cxl_iscsi/share/monetdef/cs_CZ.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/monetdef/de_AT.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/monetdef/en_GB.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/monetdef/en_IE.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/monetdef/he_IL.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/monetdef/hi_IN.ISCII-DEV.src (contents, props changed) projects/cxl_iscsi/share/monetdef/hu_HU.ISO8859-2.src (contents, props changed) projects/cxl_iscsi/share/monetdef/hy_AM.ARMSCII-8.src (contents, props changed) projects/cxl_iscsi/share/monetdef/hy_AM.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/monetdef/ja_JP.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/monetdef/ja_JP.eucJP.src (contents, props changed) projects/cxl_iscsi/share/monetdef/ko_KR.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/monetdef/ko_KR.eucKR.src (contents, props changed) projects/cxl_iscsi/share/monetdef/lv_LV.ISO8859-13.src (contents, props changed) projects/cxl_iscsi/share/monetdef/nl_NL.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/monetdef/pl_PL.ISO8859-2.src (contents, props changed) projects/cxl_iscsi/share/monetdef/pl_PL.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/monetdef/ru_RU.CP1251.src (contents, props changed) projects/cxl_iscsi/share/monetdef/ru_RU.CP866.src (contents, props changed) projects/cxl_iscsi/share/monetdef/ru_RU.ISO8859-5.src (contents, props changed) projects/cxl_iscsi/share/monetdef/ru_RU.KOI8-R.src (contents, props changed) projects/cxl_iscsi/share/monetdef/ru_RU.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/monetdef/tr_TR.ISO8859-9.src (contents, props changed) projects/cxl_iscsi/share/monetdef/uk_UA.CP1251.src (contents, props changed) projects/cxl_iscsi/share/monetdef/uk_UA.ISO8859-5.src (contents, props changed) projects/cxl_iscsi/share/monetdef/uk_UA.KOI8-U.src (contents, props changed) projects/cxl_iscsi/share/monetdef/uk_UA.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/msgdef/Makefile projects/cxl_iscsi/share/msgdef/am_ET.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/msgdef/be_BY.CP1131.src (contents, props changed) projects/cxl_iscsi/share/msgdef/be_BY.CP1251.src (contents, props changed) projects/cxl_iscsi/share/msgdef/be_BY.ISO8859-5.src (contents, props changed) projects/cxl_iscsi/share/msgdef/be_BY.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/msgdef/bg_BG.CP1251.src (contents, props changed) projects/cxl_iscsi/share/msgdef/bg_BG.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/msgdef/el_GR.ISO8859-7.src (contents, props changed) projects/cxl_iscsi/share/msgdef/el_GR.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/msgdef/he_IL.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/msgdef/hi_IN.ISCII-DEV.src (contents, props changed) projects/cxl_iscsi/share/msgdef/hy_AM.ARMSCII-8.src (contents, props changed) projects/cxl_iscsi/share/msgdef/hy_AM.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/msgdef/ja_JP.SJIS.src (contents, props changed) projects/cxl_iscsi/share/msgdef/ja_JP.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/msgdef/ja_JP.eucJP.src (contents, props changed) projects/cxl_iscsi/share/msgdef/ko_KR.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/msgdef/ko_KR.eucKR.src (contents, props changed) projects/cxl_iscsi/share/msgdef/lv_LV.ISO8859-13.src (contents, props changed) projects/cxl_iscsi/share/msgdef/lv_LV.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/msgdef/ru_RU.CP1251.src (contents, props changed) projects/cxl_iscsi/share/msgdef/ru_RU.CP866.src (contents, props changed) projects/cxl_iscsi/share/msgdef/ru_RU.ISO8859-5.src (contents, props changed) projects/cxl_iscsi/share/msgdef/ru_RU.KOI8-R.src (contents, props changed) projects/cxl_iscsi/share/msgdef/ru_RU.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/msgdef/tr_TR.ISO8859-9.src (contents, props changed) projects/cxl_iscsi/share/msgdef/uk_UA.CP1251.src (contents, props changed) projects/cxl_iscsi/share/msgdef/uk_UA.ISO8859-5.src (contents, props changed) projects/cxl_iscsi/share/msgdef/uk_UA.KOI8-U.src (contents, props changed) projects/cxl_iscsi/share/msgdef/uk_UA.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/numericdef/Makefile projects/cxl_iscsi/share/sendmail/Makefile projects/cxl_iscsi/share/skel/Makefile projects/cxl_iscsi/share/syscons/Makefile projects/cxl_iscsi/share/timedef/Makefile projects/cxl_iscsi/share/timedef/am_ET.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/be_BY.CP1131.src (contents, props changed) projects/cxl_iscsi/share/timedef/be_BY.CP1251.src (contents, props changed) projects/cxl_iscsi/share/timedef/be_BY.ISO8859-5.src (contents, props changed) projects/cxl_iscsi/share/timedef/be_BY.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/bg_BG.CP1251.src (contents, props changed) projects/cxl_iscsi/share/timedef/bg_BG.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/cs_CZ.ISO8859-2.src (contents, props changed) projects/cxl_iscsi/share/timedef/cs_CZ.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/da_DK.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/de_AT.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/el_GR.ISO8859-7.src (contents, props changed) projects/cxl_iscsi/share/timedef/el_GR.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/es_ES.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/et_EE.ISO8859-15.src (contents, props changed) projects/cxl_iscsi/share/timedef/et_EE.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/fi_FI.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/fr_FR.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/he_IL.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/hi_IN.ISCII-DEV.src (contents, props changed) projects/cxl_iscsi/share/timedef/hr_HR.ISO8859-2.src (contents, props changed) projects/cxl_iscsi/share/timedef/hr_HR.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/hu_HU.ISO8859-2.src (contents, props changed) projects/cxl_iscsi/share/timedef/hu_HU.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/hy_AM.ARMSCII-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/hy_AM.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/is_IS.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/it_IT.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/ja_JP.SJIS.src (contents, props changed) projects/cxl_iscsi/share/timedef/ja_JP.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/ja_JP.eucJP.src (contents, props changed) projects/cxl_iscsi/share/timedef/ko_KR.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/ko_KR.eucKR.src (contents, props changed) projects/cxl_iscsi/share/timedef/lt_LT.ISO8859-13.src (contents, props changed) projects/cxl_iscsi/share/timedef/lt_LT.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/lv_LV.ISO8859-13.src (contents, props changed) projects/cxl_iscsi/share/timedef/lv_LV.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/nb_NO.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/nn_NO.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/pl_PL.ISO8859-2.src (contents, props changed) projects/cxl_iscsi/share/timedef/pl_PL.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/pt_BR.ISO8859-1.src (contents, props changed) projects/cxl_iscsi/share/timedef/pt_BR.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/pt_PT.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/ro_RO.ISO8859-2.src (contents, props changed) projects/cxl_iscsi/share/timedef/ro_RO.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/ru_RU.CP1251.src (contents, props changed) projects/cxl_iscsi/share/timedef/ru_RU.CP866.src (contents, props changed) projects/cxl_iscsi/share/timedef/ru_RU.ISO8859-5.src (contents, props changed) projects/cxl_iscsi/share/timedef/ru_RU.KOI8-R.src (contents, props changed) projects/cxl_iscsi/share/timedef/ru_RU.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/sk_SK.ISO8859-2.src (contents, props changed) projects/cxl_iscsi/share/timedef/sk_SK.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/sl_SI.ISO8859-2.src (contents, props changed) projects/cxl_iscsi/share/timedef/sl_SI.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/sv_SE.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/tr_TR.ISO8859-9.src (contents, props changed) projects/cxl_iscsi/share/timedef/tr_TR.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/timedef/uk_UA.CP1251.src (contents, props changed) projects/cxl_iscsi/share/timedef/uk_UA.ISO8859-5.src (contents, props changed) projects/cxl_iscsi/share/timedef/uk_UA.KOI8-U.src (contents, props changed) projects/cxl_iscsi/share/timedef/uk_UA.UTF-8.src (contents, props changed) projects/cxl_iscsi/share/zoneinfo/Makefile projects/cxl_iscsi/sys/amd64/Makefile projects/cxl_iscsi/sys/amd64/amd64/initcpu.c projects/cxl_iscsi/sys/amd64/amd64/pmap.c projects/cxl_iscsi/sys/amd64/cloudabi64/cloudabi64_sysvec.c projects/cxl_iscsi/sys/amd64/include/cpufunc.h projects/cxl_iscsi/sys/amd64/include/pcb.h projects/cxl_iscsi/sys/amd64/include/xen/xen-os.h projects/cxl_iscsi/sys/amd64/linux/linux_proto.h projects/cxl_iscsi/sys/amd64/linux/linux_syscall.h projects/cxl_iscsi/sys/amd64/linux/linux_syscalls.c projects/cxl_iscsi/sys/amd64/linux/linux_sysent.c projects/cxl_iscsi/sys/amd64/linux/linux_systrace_args.c projects/cxl_iscsi/sys/amd64/linux/syscalls.master projects/cxl_iscsi/sys/amd64/linux32/linux.h projects/cxl_iscsi/sys/amd64/linux32/linux32_locore.s projects/cxl_iscsi/sys/amd64/linux32/linux32_proto.h projects/cxl_iscsi/sys/amd64/linux32/linux32_syscall.h projects/cxl_iscsi/sys/amd64/linux32/linux32_syscalls.c projects/cxl_iscsi/sys/amd64/linux32/linux32_sysent.c projects/cxl_iscsi/sys/amd64/linux32/linux32_sysvec.c projects/cxl_iscsi/sys/amd64/linux32/syscalls.conf projects/cxl_iscsi/sys/amd64/linux32/syscalls.master projects/cxl_iscsi/sys/arm/allwinner/a20/a20_mp.c projects/cxl_iscsi/sys/arm/altera/socfpga/socfpga_mp.c projects/cxl_iscsi/sys/arm/amlogic/aml8726/aml8726_machdep.c projects/cxl_iscsi/sys/arm/amlogic/aml8726/aml8726_mp.c projects/cxl_iscsi/sys/arm/annapurna/alpine/alpine_machdep_mp.c projects/cxl_iscsi/sys/arm/annapurna/alpine/common.c projects/cxl_iscsi/sys/arm/arm/bcopyinout.S projects/cxl_iscsi/sys/arm/arm/bcopyinout_xscale.S projects/cxl_iscsi/sys/arm/arm/busdma_machdep-v6.c projects/cxl_iscsi/sys/arm/arm/busdma_machdep.c projects/cxl_iscsi/sys/arm/arm/copystr.S projects/cxl_iscsi/sys/arm/arm/cpufunc.c projects/cxl_iscsi/sys/arm/arm/cpuinfo.c projects/cxl_iscsi/sys/arm/arm/db_interface.c projects/cxl_iscsi/sys/arm/arm/fusu.S projects/cxl_iscsi/sys/arm/arm/genassym.c projects/cxl_iscsi/sys/arm/arm/gic.c projects/cxl_iscsi/sys/arm/arm/locore-v6.S projects/cxl_iscsi/sys/arm/arm/machdep.c projects/cxl_iscsi/sys/arm/arm/mp_machdep.c projects/cxl_iscsi/sys/arm/arm/nexus.c projects/cxl_iscsi/sys/arm/arm/pl310.c projects/cxl_iscsi/sys/arm/arm/pmap-v6-new.c projects/cxl_iscsi/sys/arm/arm/pmap-v6.c projects/cxl_iscsi/sys/arm/arm/pmu.c projects/cxl_iscsi/sys/arm/arm/trap-v6.c projects/cxl_iscsi/sys/arm/at91/at91_pmc.c projects/cxl_iscsi/sys/arm/at91/if_ate.c projects/cxl_iscsi/sys/arm/at91/if_macb.c projects/cxl_iscsi/sys/arm/at91/if_macbreg.h projects/cxl_iscsi/sys/arm/at91/if_macbvar.h projects/cxl_iscsi/sys/arm/broadcom/bcm2835/bcm2835_audio.c projects/cxl_iscsi/sys/arm/broadcom/bcm2835/bcm2835_cpufreq.c projects/cxl_iscsi/sys/arm/broadcom/bcm2835/bcm2835_fbd.c projects/cxl_iscsi/sys/arm/broadcom/bcm2835/bcm2835_intr.c projects/cxl_iscsi/sys/arm/broadcom/bcm2835/bcm2835_mbox.c projects/cxl_iscsi/sys/arm/broadcom/bcm2835/bcm2835_mbox_prop.h projects/cxl_iscsi/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c projects/cxl_iscsi/sys/arm/broadcom/bcm2835/bcm2835_vcbus.h projects/cxl_iscsi/sys/arm/broadcom/bcm2835/bcm2836.c projects/cxl_iscsi/sys/arm/broadcom/bcm2835/bcm2836.h projects/cxl_iscsi/sys/arm/broadcom/bcm2835/bcm283x_dwc_fdt.c projects/cxl_iscsi/sys/arm/broadcom/bcm2835/files.bcm283x projects/cxl_iscsi/sys/arm/conf/ARMADAXP projects/cxl_iscsi/sys/arm/conf/BEAGLEBONE projects/cxl_iscsi/sys/arm/conf/DB-78XXX projects/cxl_iscsi/sys/arm/conf/DB-88F5XXX projects/cxl_iscsi/sys/arm/conf/DB-88F6XXX projects/cxl_iscsi/sys/arm/conf/DOCKSTAR projects/cxl_iscsi/sys/arm/conf/DREAMPLUG-1001 projects/cxl_iscsi/sys/arm/conf/HL201 projects/cxl_iscsi/sys/arm/conf/IMX6 projects/cxl_iscsi/sys/arm/conf/NOTES projects/cxl_iscsi/sys/arm/conf/PANDABOARD projects/cxl_iscsi/sys/arm/conf/SAM9260EK projects/cxl_iscsi/sys/arm/conf/SAM9G20EK projects/cxl_iscsi/sys/arm/conf/SHEEVAPLUG projects/cxl_iscsi/sys/arm/conf/TS7800 projects/cxl_iscsi/sys/arm/conf/ZEDBOARD projects/cxl_iscsi/sys/arm/freescale/imx/files.imx6 projects/cxl_iscsi/sys/arm/freescale/imx/imx6_ccm.c projects/cxl_iscsi/sys/arm/freescale/imx/imx6_ccmreg.h projects/cxl_iscsi/sys/arm/freescale/imx/imx6_machdep.c projects/cxl_iscsi/sys/arm/freescale/imx/imx6_mp.c projects/cxl_iscsi/sys/arm/freescale/imx/imx_gpio.c projects/cxl_iscsi/sys/arm/include/_stdint.h projects/cxl_iscsi/sys/arm/include/armreg.h projects/cxl_iscsi/sys/arm/include/asm.h projects/cxl_iscsi/sys/arm/include/atags.h projects/cxl_iscsi/sys/arm/include/atomic-v4.h projects/cxl_iscsi/sys/arm/include/atomic-v6.h projects/cxl_iscsi/sys/arm/include/board.h projects/cxl_iscsi/sys/arm/include/bus.h projects/cxl_iscsi/sys/arm/include/bus_dma.h projects/cxl_iscsi/sys/arm/include/cpu-v6.h projects/cxl_iscsi/sys/arm/include/cpu.h projects/cxl_iscsi/sys/arm/include/cpufunc.h projects/cxl_iscsi/sys/arm/include/cpuinfo.h projects/cxl_iscsi/sys/arm/include/db_machdep.h projects/cxl_iscsi/sys/arm/include/devmap.h projects/cxl_iscsi/sys/arm/include/disassem.h projects/cxl_iscsi/sys/arm/include/endian.h projects/cxl_iscsi/sys/arm/include/fdt.h projects/cxl_iscsi/sys/arm/include/intr.h projects/cxl_iscsi/sys/arm/include/machdep.h projects/cxl_iscsi/sys/arm/include/param.h projects/cxl_iscsi/sys/arm/include/pcb.h projects/cxl_iscsi/sys/arm/include/pcpu.h projects/cxl_iscsi/sys/arm/include/physmem.h projects/cxl_iscsi/sys/arm/include/pl310.h projects/cxl_iscsi/sys/arm/include/pmap-v6.h projects/cxl_iscsi/sys/arm/include/pmap.h projects/cxl_iscsi/sys/arm/include/proc.h projects/cxl_iscsi/sys/arm/include/smp.h projects/cxl_iscsi/sys/arm/include/sysreg.h projects/cxl_iscsi/sys/arm/include/vfp.h projects/cxl_iscsi/sys/arm/mv/armadaxp/armadaxp_mp.c projects/cxl_iscsi/sys/arm/mv/std-pj4b.mv projects/cxl_iscsi/sys/arm/qemu/virt_common.c projects/cxl_iscsi/sys/arm/qemu/virt_mp.c projects/cxl_iscsi/sys/arm/rockchip/rk30xx_mp.c projects/cxl_iscsi/sys/arm/samsung/exynos/exynos5_ehci.c projects/cxl_iscsi/sys/arm/samsung/exynos/exynos5_mp.c projects/cxl_iscsi/sys/arm/ti/am335x/am335x_gpio.c projects/cxl_iscsi/sys/arm/ti/am335x/am335x_lcd.c projects/cxl_iscsi/sys/arm/ti/am335x/am335x_pmic.c projects/cxl_iscsi/sys/arm/ti/am335x/files.am335x projects/cxl_iscsi/sys/arm/ti/am335x/tda19988.c projects/cxl_iscsi/sys/arm/ti/omap4/omap4_gpio.c projects/cxl_iscsi/sys/arm/ti/omap4/omap4_mp.c projects/cxl_iscsi/sys/arm/ti/omap4/std.omap4 projects/cxl_iscsi/sys/arm/ti/ti_common.c projects/cxl_iscsi/sys/arm/ti/ti_i2c.c projects/cxl_iscsi/sys/arm/xilinx/zy7_mp.c projects/cxl_iscsi/sys/arm/xscale/ixp425/ixp425_pci.c projects/cxl_iscsi/sys/arm64/arm64/busdma_bounce.c projects/cxl_iscsi/sys/arm64/arm64/copyinout.S projects/cxl_iscsi/sys/arm64/arm64/genassym.c projects/cxl_iscsi/sys/arm64/arm64/gic_v3_its.c projects/cxl_iscsi/sys/arm64/arm64/locore.S projects/cxl_iscsi/sys/arm64/arm64/machdep.c projects/cxl_iscsi/sys/arm64/arm64/mp_machdep.c projects/cxl_iscsi/sys/arm64/arm64/nexus.c projects/cxl_iscsi/sys/arm64/arm64/support.S projects/cxl_iscsi/sys/arm64/arm64/trap.c projects/cxl_iscsi/sys/arm64/cavium/thunder_pcie.c projects/cxl_iscsi/sys/arm64/conf/GENERIC projects/cxl_iscsi/sys/arm64/include/armreg.h projects/cxl_iscsi/sys/arm64/include/asm.h projects/cxl_iscsi/sys/boot/common/loader.8 projects/cxl_iscsi/sys/boot/common/newvers.sh projects/cxl_iscsi/sys/boot/fdt/dts/arm/bcm2835.dtsi projects/cxl_iscsi/sys/boot/fdt/dts/arm/bcm2836.dtsi projects/cxl_iscsi/sys/boot/fdt/dts/arm/rpi.dts projects/cxl_iscsi/sys/boot/fdt/dts/arm/rpi2.dts projects/cxl_iscsi/sys/boot/powerpc/kboot/Makefile projects/cxl_iscsi/sys/cam/ata/ata_da.c projects/cxl_iscsi/sys/cam/ata/ata_pmp.c projects/cxl_iscsi/sys/cam/ctl/ctl.c projects/cxl_iscsi/sys/cam/ctl/ctl.h projects/cxl_iscsi/sys/cam/ctl/ctl_backend_block.c projects/cxl_iscsi/sys/cam/ctl/ctl_frontend.c projects/cxl_iscsi/sys/cam/ctl/ctl_frontend.h projects/cxl_iscsi/sys/cam/ctl/ctl_frontend_cam_sim.c projects/cxl_iscsi/sys/cam/ctl/ctl_frontend_iscsi.c projects/cxl_iscsi/sys/cam/ctl/ctl_private.h projects/cxl_iscsi/sys/cam/ctl/scsi_ctl.c projects/cxl_iscsi/sys/cam/scsi/scsi_da.c projects/cxl_iscsi/sys/cam/scsi/scsi_message.h projects/cxl_iscsi/sys/cddl/contrib/opensolaris/common/zfs/zfeature_common.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/common/zfs/zfeature_common.h projects/cxl_iscsi/sys/cddl/contrib/opensolaris/common/zfs/zfs_fletcher.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/common/zfs/zfs_fletcher.h projects/cxl_iscsi/sys/cddl/contrib/opensolaris/common/zfs/zfs_ioctl_compat.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/common/zfs/zfs_ioctl_compat.h projects/cxl_iscsi/sys/cddl/contrib/opensolaris/common/zfs/zfs_prop.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/ddt.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_objset.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_traverse.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode_sync.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_destroy.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sha256.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/space_reftree.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dbuf.h projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu.h projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_impl.h projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_objset.h projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_send.h projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_traverse.h projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dataset.h projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa.h projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa_impl.h projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_ioctl.h projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio.h projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_checksum.h projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zrlock.h projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap_leaf.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfeature.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_dir.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_log.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_replay.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio_checksum.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zrlock.c projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/sys/debug.h projects/cxl_iscsi/sys/cddl/contrib/opensolaris/uts/common/sys/fs/zfs.h projects/cxl_iscsi/sys/cddl/dev/dtrace/amd64/dtrace_isa.c projects/cxl_iscsi/sys/cddl/dev/systrace/systrace.c projects/cxl_iscsi/sys/compat/cloudabi64/cloudabi64_util.h projects/cxl_iscsi/sys/compat/linux/linux_misc.c projects/cxl_iscsi/sys/conf/NOTES projects/cxl_iscsi/sys/conf/dtb.mk projects/cxl_iscsi/sys/conf/files projects/cxl_iscsi/sys/conf/files.arm projects/cxl_iscsi/sys/conf/files.arm64 projects/cxl_iscsi/sys/conf/files.i386 projects/cxl_iscsi/sys/conf/files.mips projects/cxl_iscsi/sys/conf/files.pc98 projects/cxl_iscsi/sys/conf/files.powerpc projects/cxl_iscsi/sys/conf/files.sparc64 projects/cxl_iscsi/sys/conf/kern.opts.mk projects/cxl_iscsi/sys/conf/kern.post.mk projects/cxl_iscsi/sys/conf/kern.pre.mk projects/cxl_iscsi/sys/conf/kmod.mk projects/cxl_iscsi/sys/conf/options projects/cxl_iscsi/sys/conf/options.arm projects/cxl_iscsi/sys/conf/options.powerpc projects/cxl_iscsi/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c projects/cxl_iscsi/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.h projects/cxl_iscsi/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_stub_funcs.c projects/cxl_iscsi/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_stub_funcs.h projects/cxl_iscsi/sys/contrib/ipfilter/netinet/ip_state.c projects/cxl_iscsi/sys/contrib/rdma/krping/krping.c projects/cxl_iscsi/sys/contrib/vchiq/interface/compat/vchi_bsd.h projects/cxl_iscsi/sys/contrib/vchiq/interface/vchi/vchi.h projects/cxl_iscsi/sys/contrib/vchiq/interface/vchi/vchi_common.h projects/cxl_iscsi/sys/contrib/vchiq/interface/vchiq_arm/vchiq.h projects/cxl_iscsi/sys/contrib/vchiq/interface/vchiq_arm/vchiq_2835_arm.c projects/cxl_iscsi/sys/contrib/vchiq/interface/vchiq_arm/vchiq_arm.c projects/cxl_iscsi/sys/contrib/vchiq/interface/vchiq_arm/vchiq_arm.h projects/cxl_iscsi/sys/contrib/vchiq/interface/vchiq_arm/vchiq_cfg.h projects/cxl_iscsi/sys/contrib/vchiq/interface/vchiq_arm/vchiq_connected.c projects/cxl_iscsi/sys/contrib/vchiq/interface/vchiq_arm/vchiq_connected.h projects/cxl_iscsi/sys/contrib/vchiq/interface/vchiq_arm/vchiq_core.c projects/cxl_iscsi/sys/contrib/vchiq/interface/vchiq_arm/vchiq_core.h projects/cxl_iscsi/sys/contrib/vchiq/interface/vchiq_arm/vchiq_if.h projects/cxl_iscsi/sys/contrib/vchiq/interface/vchiq_arm/vchiq_ioctl.h projects/cxl_iscsi/sys/contrib/vchiq/interface/vchiq_arm/vchiq_kern_lib.c projects/cxl_iscsi/sys/contrib/vchiq/interface/vchiq_arm/vchiq_kmod.c projects/cxl_iscsi/sys/contrib/vchiq/interface/vchiq_arm/vchiq_pagelist.h projects/cxl_iscsi/sys/contrib/vchiq/interface/vchiq_arm/vchiq_shim.c projects/cxl_iscsi/sys/contrib/vchiq/interface/vchiq_arm/vchiq_util.c projects/cxl_iscsi/sys/contrib/vchiq/interface/vchiq_arm/vchiq_util.h projects/cxl_iscsi/sys/dev/ata/chipsets/ata-intel.c projects/cxl_iscsi/sys/dev/ata/chipsets/ata-jmicron.c projects/cxl_iscsi/sys/dev/ath/ath_hal/ah.h projects/cxl_iscsi/sys/dev/ath/ath_hal/ar5210/ar5210.h projects/cxl_iscsi/sys/dev/ath/ath_hal/ar5210/ar5210_reset.c projects/cxl_iscsi/sys/dev/ath/ath_hal/ar5211/ar5211.h projects/cxl_iscsi/sys/dev/ath/ath_hal/ar5211/ar5211_reset.c projects/cxl_iscsi/sys/dev/ath/ath_hal/ar5212/ar5212.h projects/cxl_iscsi/sys/dev/ath/ath_hal/ar5212/ar5212_reset.c projects/cxl_iscsi/sys/dev/ath/ath_hal/ar5312/ar5312.h projects/cxl_iscsi/sys/dev/ath/ath_hal/ar5312/ar5312_reset.c projects/cxl_iscsi/sys/dev/ath/ath_hal/ar5416/ar5416.h projects/cxl_iscsi/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c projects/cxl_iscsi/sys/dev/ath/if_ath.c projects/cxl_iscsi/sys/dev/ath/if_athvar.h projects/cxl_iscsi/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb.c projects/cxl_iscsi/sys/dev/cxgbe/firmware/t4fw_cfg.txt projects/cxl_iscsi/sys/dev/cxgbe/firmware/t5fw_cfg.txt projects/cxl_iscsi/sys/dev/cxgbe/iw_cxgbe/cm.c projects/cxl_iscsi/sys/dev/cxgbe/iw_cxgbe/device.c projects/cxl_iscsi/sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h projects/cxl_iscsi/sys/dev/cxgbe/iw_cxgbe/qp.c projects/cxl_iscsi/sys/dev/cxgbe/t4_main.c projects/cxl_iscsi/sys/dev/cxgbe/tom/t4_cpl_io.c projects/cxl_iscsi/sys/dev/drm2/i915/i915_dma.c projects/cxl_iscsi/sys/dev/drm2/i915/i915_drv.c projects/cxl_iscsi/sys/dev/drm2/i915/i915_gem_execbuffer.c projects/cxl_iscsi/sys/dev/drm2/i915/i915_irq.c projects/cxl_iscsi/sys/dev/drm2/i915/intel_crt.c projects/cxl_iscsi/sys/dev/drm2/i915/intel_display.c projects/cxl_iscsi/sys/dev/drm2/i915/intel_dp.c projects/cxl_iscsi/sys/dev/drm2/i915/intel_fb.c projects/cxl_iscsi/sys/dev/drm2/i915/intel_iic.c projects/cxl_iscsi/sys/dev/drm2/i915/intel_pm.c projects/cxl_iscsi/sys/dev/drm2/i915/intel_ringbuffer.c projects/cxl_iscsi/sys/dev/drm2/i915/intel_ringbuffer.h projects/cxl_iscsi/sys/dev/e1000/if_igb.c projects/cxl_iscsi/sys/dev/etherswitch/arswitch/arswitch_8327.c projects/cxl_iscsi/sys/dev/filemon/filemon.c projects/cxl_iscsi/sys/dev/flash/mx25l.c projects/cxl_iscsi/sys/dev/hptmv/hptproc.c projects/cxl_iscsi/sys/dev/hwpmc/hwpmc_mod.c projects/cxl_iscsi/sys/dev/hwpmc/pmc_events.h projects/cxl_iscsi/sys/dev/iicbus/icee.c projects/cxl_iscsi/sys/dev/iicbus/iicbb.c projects/cxl_iscsi/sys/dev/iicbus/iicbus.c projects/cxl_iscsi/sys/dev/iicbus/iicoc.c projects/cxl_iscsi/sys/dev/iicbus/iiconf.c projects/cxl_iscsi/sys/dev/iicbus/iiconf.h projects/cxl_iscsi/sys/dev/iicbus/iicsmb.c projects/cxl_iscsi/sys/dev/ioat/ioat.c projects/cxl_iscsi/sys/dev/ioat/ioat.h projects/cxl_iscsi/sys/dev/ioat/ioat_hw.h projects/cxl_iscsi/sys/dev/ioat/ioat_internal.h projects/cxl_iscsi/sys/dev/ioat/ioat_test.c projects/cxl_iscsi/sys/dev/ioat/ioat_test.h projects/cxl_iscsi/sys/dev/isp/isp.c projects/cxl_iscsi/sys/dev/isp/isp_freebsd.c projects/cxl_iscsi/sys/dev/isp/isp_freebsd.h projects/cxl_iscsi/sys/dev/isp/isp_library.c projects/cxl_iscsi/sys/dev/isp/isp_library.h projects/cxl_iscsi/sys/dev/isp/isp_pci.c projects/cxl_iscsi/sys/dev/isp/isp_sbus.c projects/cxl_iscsi/sys/dev/isp/isp_stds.h projects/cxl_iscsi/sys/dev/isp/isp_target.c projects/cxl_iscsi/sys/dev/isp/isp_target.h projects/cxl_iscsi/sys/dev/isp/ispmbox.h projects/cxl_iscsi/sys/dev/isp/ispreg.h projects/cxl_iscsi/sys/dev/isp/ispvar.h projects/cxl_iscsi/sys/dev/ispfw/asm_2400.h projects/cxl_iscsi/sys/dev/ispfw/asm_2500.h projects/cxl_iscsi/sys/dev/ispfw/ispfw.c projects/cxl_iscsi/sys/dev/iwi/if_iwi.c projects/cxl_iscsi/sys/dev/iwi/if_iwivar.h projects/cxl_iscsi/sys/dev/iwm/if_iwm.c projects/cxl_iscsi/sys/dev/iwn/if_iwn.c projects/cxl_iscsi/sys/dev/ixgbe/if_ix.c projects/cxl_iscsi/sys/dev/ixgbe/if_ixv.c projects/cxl_iscsi/sys/dev/ixgbe/ix_txrx.c projects/cxl_iscsi/sys/dev/ixgbe/ixgbe.h projects/cxl_iscsi/sys/dev/ixl/if_ixl.c projects/cxl_iscsi/sys/dev/mge/if_mge.c projects/cxl_iscsi/sys/dev/mge/if_mgevar.h projects/cxl_iscsi/sys/dev/mpr/mpr.c projects/cxl_iscsi/sys/dev/mpr/mprvar.h projects/cxl_iscsi/sys/dev/mps/mps.c projects/cxl_iscsi/sys/dev/mps/mpsvar.h projects/cxl_iscsi/sys/dev/ntb/if_ntb/if_ntb.c projects/cxl_iscsi/sys/dev/ntb/ntb_hw/ntb_hw.c projects/cxl_iscsi/sys/dev/ntb/ntb_hw/ntb_hw.h projects/cxl_iscsi/sys/dev/ntb/ntb_hw/ntb_regs.h projects/cxl_iscsi/sys/dev/nvd/nvd.c projects/cxl_iscsi/sys/dev/nvme/nvme.h projects/cxl_iscsi/sys/dev/nvme/nvme_ns.c projects/cxl_iscsi/sys/dev/ofw/ofw_iicbus.c projects/cxl_iscsi/sys/dev/otus/if_otus.c projects/cxl_iscsi/sys/dev/otus/if_otusreg.h projects/cxl_iscsi/sys/dev/pci/pci.c projects/cxl_iscsi/sys/dev/pci/pci_pci.c projects/cxl_iscsi/sys/dev/pci/pcib_if.m projects/cxl_iscsi/sys/dev/pci/pcivar.h projects/cxl_iscsi/sys/dev/qlxgbe/ql_hw.c projects/cxl_iscsi/sys/dev/qlxgbe/ql_os.c projects/cxl_iscsi/sys/dev/qlxgbe/ql_ver.h projects/cxl_iscsi/sys/dev/ral/rt2860.c projects/cxl_iscsi/sys/dev/ral/rt2860var.h projects/cxl_iscsi/sys/dev/re/if_re.c projects/cxl_iscsi/sys/dev/rl/if_rlreg.h projects/cxl_iscsi/sys/dev/sdhci/sdhci.c projects/cxl_iscsi/sys/dev/sdhci/sdhci.h projects/cxl_iscsi/sys/dev/sdhci/sdhci_pci.c projects/cxl_iscsi/sys/dev/sound/midi/midi.c projects/cxl_iscsi/sys/dev/uart/uart_dev_ns8250.c projects/cxl_iscsi/sys/dev/usb/controller/dwc_otg.c projects/cxl_iscsi/sys/dev/usb/controller/dwc_otg.h projects/cxl_iscsi/sys/dev/usb/controller/xhci_pci.c projects/cxl_iscsi/sys/dev/usb/input/wsp.c projects/cxl_iscsi/sys/dev/usb/net/if_cdce.c projects/cxl_iscsi/sys/dev/usb/net/if_urndis.c projects/cxl_iscsi/sys/dev/usb/usb_busdma.c projects/cxl_iscsi/sys/dev/usb/usb_busdma.h projects/cxl_iscsi/sys/dev/usb/usb_device.c projects/cxl_iscsi/sys/dev/usb/usb_dynamic.c projects/cxl_iscsi/sys/dev/usb/usb_dynamic.h projects/cxl_iscsi/sys/dev/usb/usbdevs projects/cxl_iscsi/sys/dev/usb/wlan/if_rum.c projects/cxl_iscsi/sys/dev/usb/wlan/if_rumvar.h projects/cxl_iscsi/sys/dev/usb/wlan/if_run.c projects/cxl_iscsi/sys/dev/usb/wlan/if_urtwn.c projects/cxl_iscsi/sys/dev/usb/wlan/if_urtwnreg.h projects/cxl_iscsi/sys/dev/usb/wlan/if_urtwnvar.h projects/cxl_iscsi/sys/dev/vmware/vmxnet3/if_vmx.c projects/cxl_iscsi/sys/dev/wpi/if_wpi.c projects/cxl_iscsi/sys/dev/wtap/if_wtap.c projects/cxl_iscsi/sys/dev/xen/balloon/balloon.c projects/cxl_iscsi/sys/dev/xen/blkback/blkback.c projects/cxl_iscsi/sys/dev/xen/blkfront/blkfront.c projects/cxl_iscsi/sys/dev/xen/control/control.c projects/cxl_iscsi/sys/dev/xen/grant_table/grant_table.c projects/cxl_iscsi/sys/dev/xen/netback/netback.c projects/cxl_iscsi/sys/dev/xen/netfront/netfront.c projects/cxl_iscsi/sys/dev/xen/xenpci/xenpci.c projects/cxl_iscsi/sys/dev/xen/xenstore/xenstore.c projects/cxl_iscsi/sys/fs/nfsclient/nfs_clvfsops.c projects/cxl_iscsi/sys/fs/procfs/procfs_dbregs.c projects/cxl_iscsi/sys/fs/procfs/procfs_fpregs.c projects/cxl_iscsi/sys/geom/eli/g_eli.c projects/cxl_iscsi/sys/geom/geom_dev.c projects/cxl_iscsi/sys/i386/i386/exception.s projects/cxl_iscsi/sys/i386/i386/initcpu.c projects/cxl_iscsi/sys/i386/i386/pmap.c projects/cxl_iscsi/sys/i386/include/asmacros.h projects/cxl_iscsi/sys/i386/include/cpufunc.h projects/cxl_iscsi/sys/i386/include/pcb.h projects/cxl_iscsi/sys/i386/include/xen/xen-os.h projects/cxl_iscsi/sys/kern/Make.tags.inc projects/cxl_iscsi/sys/kern/bus_if.m projects/cxl_iscsi/sys/kern/imgact_elf.c projects/cxl_iscsi/sys/kern/init_sysent.c projects/cxl_iscsi/sys/kern/kern_descrip.c projects/cxl_iscsi/sys/kern/kern_dump.c projects/cxl_iscsi/sys/kern/kern_fork.c projects/cxl_iscsi/sys/kern/kern_jail.c projects/cxl_iscsi/sys/kern/kern_linker.c projects/cxl_iscsi/sys/kern/kern_loginclass.c projects/cxl_iscsi/sys/kern/kern_malloc.c projects/cxl_iscsi/sys/kern/kern_mib.c projects/cxl_iscsi/sys/kern/kern_physio.c projects/cxl_iscsi/sys/kern/kern_proc.c projects/cxl_iscsi/sys/kern/kern_racct.c projects/cxl_iscsi/sys/kern/kern_rctl.c projects/cxl_iscsi/sys/kern/kern_resource.c projects/cxl_iscsi/sys/kern/kern_sysctl.c projects/cxl_iscsi/sys/kern/kern_tc.c projects/cxl_iscsi/sys/kern/kern_thread.c projects/cxl_iscsi/sys/kern/kern_timeout.c projects/cxl_iscsi/sys/kern/kern_umtx.c projects/cxl_iscsi/sys/kern/link_elf.c projects/cxl_iscsi/sys/kern/makesyscalls.sh projects/cxl_iscsi/sys/kern/subr_busdma_bufalloc.c projects/cxl_iscsi/sys/kern/subr_prf.c projects/cxl_iscsi/sys/kern/subr_rman.c projects/cxl_iscsi/sys/kern/subr_smp.c projects/cxl_iscsi/sys/kern/subr_stack.c projects/cxl_iscsi/sys/kern/subr_syscall.c projects/cxl_iscsi/sys/kern/subr_taskqueue.c projects/cxl_iscsi/sys/kern/subr_witness.c projects/cxl_iscsi/sys/kern/sys_process.c projects/cxl_iscsi/sys/kern/syscalls.c projects/cxl_iscsi/sys/kern/uipc_mbuf.c projects/cxl_iscsi/sys/kern/vfs_aio.c projects/cxl_iscsi/sys/kern/vfs_bio.c projects/cxl_iscsi/sys/kern/vfs_mountroot.c projects/cxl_iscsi/sys/libkern/ffs.c projects/cxl_iscsi/sys/libkern/ffsl.c projects/cxl_iscsi/sys/libkern/fls.c projects/cxl_iscsi/sys/libkern/flsl.c projects/cxl_iscsi/sys/libkern/flsll.c projects/cxl_iscsi/sys/mips/atheros/apb.c projects/cxl_iscsi/sys/mips/atheros/ar71xx_ehci.c projects/cxl_iscsi/sys/mips/atheros/ar71xx_gpio.c projects/cxl_iscsi/sys/mips/atheros/ar71xx_setup.c projects/cxl_iscsi/sys/mips/atheros/ar71xx_setup.h projects/cxl_iscsi/sys/mips/atheros/files.ar71xx projects/cxl_iscsi/sys/mips/atheros/if_arge.c projects/cxl_iscsi/sys/mips/atheros/if_argevar.h projects/cxl_iscsi/sys/mips/conf/ALFA_HORNET_UB projects/cxl_iscsi/sys/mips/conf/AP121 projects/cxl_iscsi/sys/mips/conf/AP135 projects/cxl_iscsi/sys/mips/conf/AP91 projects/cxl_iscsi/sys/mips/conf/AP93 projects/cxl_iscsi/sys/mips/conf/AP94 projects/cxl_iscsi/sys/mips/conf/AP96 projects/cxl_iscsi/sys/mips/conf/AR933X_BASE projects/cxl_iscsi/sys/mips/conf/BERI_DE4_MDROOT projects/cxl_iscsi/sys/mips/conf/BERI_DE4_SDROOT projects/cxl_iscsi/sys/mips/conf/BERI_SIM_MDROOT projects/cxl_iscsi/sys/mips/conf/BERI_SIM_SDROOT projects/cxl_iscsi/sys/mips/conf/BERI_SIM_VIRTIO projects/cxl_iscsi/sys/mips/conf/CARAMBOLA2 projects/cxl_iscsi/sys/mips/conf/DB120 projects/cxl_iscsi/sys/mips/conf/DIR-655A1 projects/cxl_iscsi/sys/mips/conf/DIR-825B1 projects/cxl_iscsi/sys/mips/conf/DIR-825C1 projects/cxl_iscsi/sys/mips/conf/ENH200 projects/cxl_iscsi/sys/mips/conf/PB47 projects/cxl_iscsi/sys/mips/conf/PICOSTATION_M2HP projects/cxl_iscsi/sys/mips/conf/ROUTERSTATION projects/cxl_iscsi/sys/mips/conf/ROUTERSTATION_MFS projects/cxl_iscsi/sys/mips/conf/RSPRO projects/cxl_iscsi/sys/mips/conf/RSPRO_MFS projects/cxl_iscsi/sys/mips/conf/TL-ARCHERC7V2 projects/cxl_iscsi/sys/mips/conf/TL-WDR4300 projects/cxl_iscsi/sys/mips/conf/TL-WR1043NDv2 projects/cxl_iscsi/sys/mips/conf/TP-MR3020 projects/cxl_iscsi/sys/mips/conf/TP-MR3020.hints projects/cxl_iscsi/sys/mips/conf/TP-WN1043ND projects/cxl_iscsi/sys/mips/conf/WZR-300HP projects/cxl_iscsi/sys/mips/conf/WZR-HPAG300H projects/cxl_iscsi/sys/mips/include/cpuregs.h projects/cxl_iscsi/sys/mips/include/pmap.h projects/cxl_iscsi/sys/mips/mips/busdma_machdep.c projects/cxl_iscsi/sys/mips/mips/pmap.c projects/cxl_iscsi/sys/mips/mips/trap.c projects/cxl_iscsi/sys/modules/Makefile projects/cxl_iscsi/sys/modules/Makefile.inc projects/cxl_iscsi/sys/modules/cloudabi64/Makefile projects/cxl_iscsi/sys/modules/cxgb/iw_cxgb/Makefile projects/cxl_iscsi/sys/modules/cxgbe/if_cxgbe/Makefile projects/cxl_iscsi/sys/modules/cxgbe/iw_cxgbe/Makefile projects/cxl_iscsi/sys/modules/drm2/Makefile projects/cxl_iscsi/sys/modules/drm2/radeonkmsfw/Makefile projects/cxl_iscsi/sys/modules/dtb/imx6/Makefile projects/cxl_iscsi/sys/modules/dtrace/Makefile projects/cxl_iscsi/sys/modules/dtrace/systrace_linux32/Makefile projects/cxl_iscsi/sys/modules/hwpmc/Makefile projects/cxl_iscsi/sys/modules/i2c/iicbb/Makefile projects/cxl_iscsi/sys/modules/ibcore/Makefile projects/cxl_iscsi/sys/modules/ipoib/Makefile projects/cxl_iscsi/sys/modules/ispfw/Makefile projects/cxl_iscsi/sys/modules/mlx4/Makefile projects/cxl_iscsi/sys/modules/mlx4ib/Makefile projects/cxl_iscsi/sys/modules/mlxen/Makefile projects/cxl_iscsi/sys/modules/mthca/Makefile projects/cxl_iscsi/sys/modules/netgraph/Makefile projects/cxl_iscsi/sys/modules/rdma/krping/Makefile projects/cxl_iscsi/sys/modules/uart/Makefile projects/cxl_iscsi/sys/modules/usb/Makefile projects/cxl_iscsi/sys/modules/usb/usb/Makefile projects/cxl_iscsi/sys/net/flowtable.c projects/cxl_iscsi/sys/net/ieee8023ad_lacp.c projects/cxl_iscsi/sys/net/if.c projects/cxl_iscsi/sys/net/if_arcsubr.c projects/cxl_iscsi/sys/net/if_ethersubr.c projects/cxl_iscsi/sys/net/if_fddisubr.c projects/cxl_iscsi/sys/net/if_fwsubr.c projects/cxl_iscsi/sys/net/if_gre.c projects/cxl_iscsi/sys/net/if_iso88025subr.c projects/cxl_iscsi/sys/net/if_lagg.c projects/cxl_iscsi/sys/net/if_lagg.h projects/cxl_iscsi/sys/net/if_llatbl.c projects/cxl_iscsi/sys/net/if_llatbl.h projects/cxl_iscsi/sys/net/if_tap.c projects/cxl_iscsi/sys/net/pfkeyv2.h projects/cxl_iscsi/sys/net/pfvar.h projects/cxl_iscsi/sys/net/route.c projects/cxl_iscsi/sys/net/route.h projects/cxl_iscsi/sys/net80211/ieee80211.c projects/cxl_iscsi/sys/net80211/ieee80211_proto.c projects/cxl_iscsi/sys/net80211/ieee80211_proto.h projects/cxl_iscsi/sys/net80211/ieee80211_var.h projects/cxl_iscsi/sys/netgraph/bluetooth/hci/ng_hci_evnt.c projects/cxl_iscsi/sys/netgraph/bluetooth/hci/ng_hci_ulpi.c projects/cxl_iscsi/sys/netgraph/bluetooth/hci/ng_hci_ulpi.h projects/cxl_iscsi/sys/netgraph/bluetooth/include/ng_btsocket.h projects/cxl_iscsi/sys/netgraph/bluetooth/include/ng_btsocket_l2cap.h projects/cxl_iscsi/sys/netgraph/bluetooth/include/ng_hci.h projects/cxl_iscsi/sys/netgraph/bluetooth/include/ng_l2cap.h projects/cxl_iscsi/sys/netgraph/bluetooth/l2cap/ng_l2cap_evnt.c projects/cxl_iscsi/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c projects/cxl_iscsi/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.h projects/cxl_iscsi/sys/netgraph/bluetooth/l2cap/ng_l2cap_main.c projects/cxl_iscsi/sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c projects/cxl_iscsi/sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c projects/cxl_iscsi/sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.h projects/cxl_iscsi/sys/netgraph/bluetooth/l2cap/ng_l2cap_var.h projects/cxl_iscsi/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c projects/cxl_iscsi/sys/netgraph/ng_eiface.c projects/cxl_iscsi/sys/netgraph/ng_ether.c projects/cxl_iscsi/sys/netinet/if_ether.c projects/cxl_iscsi/sys/netinet/if_ether.h projects/cxl_iscsi/sys/netinet/in.c projects/cxl_iscsi/sys/netinet/in_mcast.c projects/cxl_iscsi/sys/netinet/in_rmx.c projects/cxl_iscsi/sys/netinet/in_var.h projects/cxl_iscsi/sys/netinet/ip_carp.c projects/cxl_iscsi/sys/netinet/ip_fastfwd.c projects/cxl_iscsi/sys/netinet/ip_fw.h projects/cxl_iscsi/sys/netinet/ip_input.c projects/cxl_iscsi/sys/netinet/ip_ipsec.c projects/cxl_iscsi/sys/netinet/sctp_auth.c projects/cxl_iscsi/sys/netinet/sctp_indata.c projects/cxl_iscsi/sys/netinet/sctp_input.c projects/cxl_iscsi/sys/netinet/sctp_output.c projects/cxl_iscsi/sys/netinet/sctp_pcb.c projects/cxl_iscsi/sys/netinet/sctp_timer.c projects/cxl_iscsi/sys/netinet/sctp_uio.h projects/cxl_iscsi/sys/netinet/sctp_usrreq.c projects/cxl_iscsi/sys/netinet/sctputil.c projects/cxl_iscsi/sys/netinet/tcp.h projects/cxl_iscsi/sys/netinet/tcp_input.c projects/cxl_iscsi/sys/netinet/tcp_output.c projects/cxl_iscsi/sys/netinet/tcp_sack.c projects/cxl_iscsi/sys/netinet/tcp_subr.c projects/cxl_iscsi/sys/netinet/tcp_timer.c projects/cxl_iscsi/sys/netinet/tcp_usrreq.c projects/cxl_iscsi/sys/netinet/tcp_var.h projects/cxl_iscsi/sys/netinet6/frag6.c projects/cxl_iscsi/sys/netinet6/in6.c projects/cxl_iscsi/sys/netinet6/in6.h projects/cxl_iscsi/sys/netinet6/in6_mcast.c projects/cxl_iscsi/sys/netinet6/in6_rss.c projects/cxl_iscsi/sys/netinet6/ip6_forward.c projects/cxl_iscsi/sys/netinet6/ip6_input.c projects/cxl_iscsi/sys/netinet6/ip6_output.c projects/cxl_iscsi/sys/netinet6/ip6_var.h projects/cxl_iscsi/sys/netinet6/nd6.c projects/cxl_iscsi/sys/netinet6/nd6.h projects/cxl_iscsi/sys/netinet6/nd6_nbr.c projects/cxl_iscsi/sys/netipsec/ipsec.c projects/cxl_iscsi/sys/netipsec/ipsec.h projects/cxl_iscsi/sys/netipsec/key.c projects/cxl_iscsi/sys/netipsec/xform_esp.c projects/cxl_iscsi/sys/netpfil/ipfw/ip_fw2.c projects/cxl_iscsi/sys/netpfil/ipfw/ip_fw_dynamic.c projects/cxl_iscsi/sys/netpfil/ipfw/ip_fw_log.c projects/cxl_iscsi/sys/netpfil/ipfw/ip_fw_private.h projects/cxl_iscsi/sys/netpfil/ipfw/ip_fw_sockopt.c projects/cxl_iscsi/sys/netpfil/ipfw/ip_fw_table.c projects/cxl_iscsi/sys/netpfil/ipfw/ip_fw_table.h projects/cxl_iscsi/sys/netpfil/pf/if_pfsync.c projects/cxl_iscsi/sys/netpfil/pf/pf.c projects/cxl_iscsi/sys/netpfil/pf/pf_ioctl.c projects/cxl_iscsi/sys/netpfil/pf/pf_norm.c projects/cxl_iscsi/sys/netsmb/smb_conn.c projects/cxl_iscsi/sys/netsmb/smb_iod.c projects/cxl_iscsi/sys/ofed/drivers/infiniband/core/cma.c projects/cxl_iscsi/sys/ofed/drivers/infiniband/core/device.c projects/cxl_iscsi/sys/ofed/drivers/infiniband/core/fmr_pool.c projects/cxl_iscsi/sys/ofed/drivers/infiniband/core/uverbs_cmd.c projects/cxl_iscsi/sys/ofed/drivers/infiniband/core/uverbs_main.c projects/cxl_iscsi/sys/ofed/drivers/infiniband/hw/mlx4/main.c projects/cxl_iscsi/sys/ofed/drivers/infiniband/hw/mthca/mthca_main.c projects/cxl_iscsi/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c projects/cxl_iscsi/sys/ofed/drivers/net/mlx4/cmd.c projects/cxl_iscsi/sys/ofed/drivers/net/mlx4/en_main.c projects/cxl_iscsi/sys/ofed/drivers/net/mlx4/en_netdev.c projects/cxl_iscsi/sys/ofed/drivers/net/mlx4/main.c projects/cxl_iscsi/sys/opencrypto/xform.c projects/cxl_iscsi/sys/powerpc/aim/mmu_oea64.c projects/cxl_iscsi/sys/powerpc/aim/moea64_native.c projects/cxl_iscsi/sys/powerpc/mpc85xx/mpc85xx.c projects/cxl_iscsi/sys/powerpc/mpc85xx/mpc85xx.h projects/cxl_iscsi/sys/powerpc/mpc85xx/pci_mpc85xx.c projects/cxl_iscsi/sys/powerpc/ofw/ofw_machdep.c projects/cxl_iscsi/sys/powerpc/ofw/ofw_pci.c projects/cxl_iscsi/sys/powerpc/ofw/ofw_pcibus.c projects/cxl_iscsi/sys/powerpc/ofw/openpic_ofw.c projects/cxl_iscsi/sys/powerpc/powermac/cpcht.c projects/cxl_iscsi/sys/powerpc/powermac/kiic.c projects/cxl_iscsi/sys/powerpc/powermac/macgpio.c projects/cxl_iscsi/sys/powerpc/powerpc/busdma_machdep.c projects/cxl_iscsi/sys/powerpc/powerpc/db_interface.c projects/cxl_iscsi/sys/powerpc/powerpc/machdep.c projects/cxl_iscsi/sys/powerpc/pseries/mmu_phyp.c projects/cxl_iscsi/sys/powerpc/pseries/phyp_console.c projects/cxl_iscsi/sys/powerpc/pseries/phyp_llan.c projects/cxl_iscsi/sys/powerpc/pseries/phyp_vscsi.c projects/cxl_iscsi/sys/powerpc/pseries/platform_chrp.c projects/cxl_iscsi/sys/powerpc/pseries/plpar_iommu.c projects/cxl_iscsi/sys/powerpc/pseries/rtas_pci.c projects/cxl_iscsi/sys/rpc/svc.c projects/cxl_iscsi/sys/sparc64/include/dump.h projects/cxl_iscsi/sys/sparc64/sparc64/bus_machdep.c projects/cxl_iscsi/sys/sparc64/sparc64/dump_machdep.c projects/cxl_iscsi/sys/sys/_bitset.h projects/cxl_iscsi/sys/sys/_stdint.h projects/cxl_iscsi/sys/sys/callout.h projects/cxl_iscsi/sys/sys/cdefs.h projects/cxl_iscsi/sys/sys/imgact_elf.h projects/cxl_iscsi/sys/sys/jail.h projects/cxl_iscsi/sys/sys/ktr_class.h projects/cxl_iscsi/sys/sys/libkern.h projects/cxl_iscsi/sys/sys/loginclass.h projects/cxl_iscsi/sys/sys/mbuf.h projects/cxl_iscsi/sys/sys/param.h projects/cxl_iscsi/sys/sys/pmc.h projects/cxl_iscsi/sys/sys/proc.h projects/cxl_iscsi/sys/sys/ptrace.h projects/cxl_iscsi/sys/sys/racct.h projects/cxl_iscsi/sys/sys/resourcevar.h projects/cxl_iscsi/sys/sys/stdint.h projects/cxl_iscsi/sys/sys/syscall.h projects/cxl_iscsi/sys/sys/syscall.mk projects/cxl_iscsi/sys/sys/sysctl.h projects/cxl_iscsi/sys/sys/sysproto.h projects/cxl_iscsi/sys/sys/systm.h projects/cxl_iscsi/sys/sys/umtx.h projects/cxl_iscsi/sys/tools/fw_stub.awk projects/cxl_iscsi/sys/ufs/ffs/ffs_alloc.c projects/cxl_iscsi/sys/ufs/ffs/ffs_balloc.c projects/cxl_iscsi/sys/vm/uma_core.c projects/cxl_iscsi/sys/vm/vm_init.c projects/cxl_iscsi/sys/vm/vm_kern.c projects/cxl_iscsi/sys/vm/vm_page.c projects/cxl_iscsi/sys/vm/vm_page.h projects/cxl_iscsi/sys/vm/vm_pageout.c projects/cxl_iscsi/sys/vm/vnode_pager.c projects/cxl_iscsi/sys/x86/include/apicvar.h projects/cxl_iscsi/sys/x86/x86/busdma_bounce.c projects/cxl_iscsi/sys/x86/x86/identcpu.c projects/cxl_iscsi/sys/x86/x86/intr_machdep.c projects/cxl_iscsi/sys/x86/x86/mp_x86.c projects/cxl_iscsi/sys/x86/xen/hvm.c projects/cxl_iscsi/sys/x86/xen/xen_intr.c projects/cxl_iscsi/sys/xen/blkif.h projects/cxl_iscsi/sys/xen/hypervisor.h projects/cxl_iscsi/sys/xen/xen-os.h projects/cxl_iscsi/sys/xen/xen_intr.h projects/cxl_iscsi/targets/pseudo/bootstrap-tools/Makefile projects/cxl_iscsi/targets/pseudo/stage/Makefile projects/cxl_iscsi/targets/pseudo/userland/Makefile.depend projects/cxl_iscsi/targets/pseudo/userland/lib/Makefile.depend projects/cxl_iscsi/tests/Makefile projects/cxl_iscsi/tests/sys/Makefile projects/cxl_iscsi/tests/sys/kern/Makefile projects/cxl_iscsi/tests/sys/pjdfstest/Makefile projects/cxl_iscsi/tests/sys/pjdfstest/tests/Makefile projects/cxl_iscsi/tools/bsdbox/Makefile.base projects/cxl_iscsi/tools/build/mk/OptionalObsoleteFiles.inc projects/cxl_iscsi/tools/build/options/WITH_DIRDEPS_CACHE projects/cxl_iscsi/tools/build/options/WITH_STAGING projects/cxl_iscsi/tools/build/options/WITH_SYSROOT projects/cxl_iscsi/tools/build/options/makeman projects/cxl_iscsi/tools/debugscripts/kld_deb.py projects/cxl_iscsi/tools/install.sh projects/cxl_iscsi/tools/regression/lib/msun/test-fenv.c projects/cxl_iscsi/tools/regression/net80211/ccmp/test_ccmp.c projects/cxl_iscsi/tools/regression/net80211/tkip/test_tkip.c projects/cxl_iscsi/tools/regression/net80211/wep/test_wep.c projects/cxl_iscsi/tools/regression/netinet/ip_id_period/ip_id_period.py projects/cxl_iscsi/tools/regression/security/open_to_operation/Makefile projects/cxl_iscsi/tools/regression/security/open_to_operation/open_to_operation.c projects/cxl_iscsi/tools/sched/schedgraph.py projects/cxl_iscsi/tools/test/README projects/cxl_iscsi/tools/tools/ioat/Makefile projects/cxl_iscsi/tools/tools/ioat/ioatcontrol.8 projects/cxl_iscsi/tools/tools/ioat/ioatcontrol.c projects/cxl_iscsi/tools/tools/nanobsd/defaults.sh projects/cxl_iscsi/tools/tools/shlib-compat/shlib-compat.py projects/cxl_iscsi/tools/tools/zfsboottest/Makefile projects/cxl_iscsi/tools/tools/zfsboottest/zfsboottest.c projects/cxl_iscsi/usr.bin/Makefile projects/cxl_iscsi/usr.bin/ar/write.c projects/cxl_iscsi/usr.bin/bmake/Makefile projects/cxl_iscsi/usr.bin/bsdiff/bsdiff/bsdiff.c projects/cxl_iscsi/usr.bin/calendar/parsedata.c projects/cxl_iscsi/usr.bin/dpv/dpv.1 projects/cxl_iscsi/usr.bin/dtc/HACKING projects/cxl_iscsi/usr.bin/dtc/Makefile projects/cxl_iscsi/usr.bin/dtc/checking.cc projects/cxl_iscsi/usr.bin/dtc/checking.hh projects/cxl_iscsi/usr.bin/dtc/dtb.cc projects/cxl_iscsi/usr.bin/dtc/dtb.hh projects/cxl_iscsi/usr.bin/dtc/dtc.cc projects/cxl_iscsi/usr.bin/dtc/fdt.cc projects/cxl_iscsi/usr.bin/dtc/fdt.hh projects/cxl_iscsi/usr.bin/dtc/input_buffer.cc projects/cxl_iscsi/usr.bin/dtc/input_buffer.hh projects/cxl_iscsi/usr.bin/dtc/string.hh projects/cxl_iscsi/usr.bin/fortune/tools/do_uniq.py projects/cxl_iscsi/usr.bin/getconf/sysconf.gperf projects/cxl_iscsi/usr.bin/gzip/gzip.1 projects/cxl_iscsi/usr.bin/gzip/gzip.c projects/cxl_iscsi/usr.bin/indent/indent.1 projects/cxl_iscsi/usr.bin/iscsictl/Makefile projects/cxl_iscsi/usr.bin/iscsictl/iscsictl.8 projects/cxl_iscsi/usr.bin/iscsictl/iscsictl.c projects/cxl_iscsi/usr.bin/ldd/ldd.c projects/cxl_iscsi/usr.bin/limits/Makefile projects/cxl_iscsi/usr.bin/locale/locale.c projects/cxl_iscsi/usr.bin/locate/locate/locate.rc projects/cxl_iscsi/usr.bin/locate/locate/updatedb.sh projects/cxl_iscsi/usr.bin/look/look.1 projects/cxl_iscsi/usr.bin/m4/Makefile projects/cxl_iscsi/usr.bin/m4/Makefile.depend projects/cxl_iscsi/usr.bin/mandoc/Makefile projects/cxl_iscsi/usr.bin/mandoc/Makefile.depend projects/cxl_iscsi/usr.bin/mkdep/mkdep.1 projects/cxl_iscsi/usr.bin/mkimg/ebr.c projects/cxl_iscsi/usr.bin/mkimg/mbr.c projects/cxl_iscsi/usr.bin/mkimg/mkimg.1 projects/cxl_iscsi/usr.bin/mkimg/scheme.c projects/cxl_iscsi/usr.bin/mkimg/scheme.h projects/cxl_iscsi/usr.bin/mt/mt.c projects/cxl_iscsi/usr.bin/netstat/if.c projects/cxl_iscsi/usr.bin/netstat/route.c projects/cxl_iscsi/usr.bin/patch/pch.c projects/cxl_iscsi/usr.bin/pr/egetopt.c projects/cxl_iscsi/usr.bin/rctl/rctl.8 projects/cxl_iscsi/usr.bin/rctl/rctl.c projects/cxl_iscsi/usr.bin/sed/compile.c projects/cxl_iscsi/usr.bin/sockstat/sockstat.c projects/cxl_iscsi/usr.bin/soelim/soelim.1 projects/cxl_iscsi/usr.bin/sort/sort.1.in projects/cxl_iscsi/usr.bin/sort/sort.c projects/cxl_iscsi/usr.bin/svn/lib/Makefile projects/cxl_iscsi/usr.bin/systat/Makefile projects/cxl_iscsi/usr.bin/systat/cmdtab.c projects/cxl_iscsi/usr.bin/systat/extern.h projects/cxl_iscsi/usr.bin/systat/systat.1 projects/cxl_iscsi/usr.bin/timeout/timeout.c projects/cxl_iscsi/usr.bin/truss/Makefile projects/cxl_iscsi/usr.bin/truss/Makefile.depend.amd64 projects/cxl_iscsi/usr.bin/truss/amd64-cloudabi64.c projects/cxl_iscsi/usr.bin/truss/amd64-linux32.c projects/cxl_iscsi/usr.bin/truss/i386-linux.c projects/cxl_iscsi/usr.bin/vgrind/regexp.c projects/cxl_iscsi/usr.bin/vi/catalog/Makefile projects/cxl_iscsi/usr.bin/wc/Makefile projects/cxl_iscsi/usr.bin/xinstall/Makefile projects/cxl_iscsi/usr.bin/xlint/llib/Makefile projects/cxl_iscsi/usr.bin/xo/Makefile projects/cxl_iscsi/usr.sbin/Makefile projects/cxl_iscsi/usr.sbin/Makefile.arm64 projects/cxl_iscsi/usr.sbin/bhyve/bhyverun.c projects/cxl_iscsi/usr.sbin/bhyve/pci_emul.c projects/cxl_iscsi/usr.sbin/bluetooth/sdpcontrol/search.c projects/cxl_iscsi/usr.sbin/bootparamd/bootparamd/main.c projects/cxl_iscsi/usr.sbin/bsdconfig/bsdconfig projects/cxl_iscsi/usr.sbin/bsdconfig/share/sysrc.subr projects/cxl_iscsi/usr.sbin/bsdinstall/distfetch/distfetch.c projects/cxl_iscsi/usr.sbin/config/config.h projects/cxl_iscsi/usr.sbin/config/mkmakefile.c projects/cxl_iscsi/usr.sbin/ctld/ctl.conf.5 projects/cxl_iscsi/usr.sbin/ctld/ctld.c projects/cxl_iscsi/usr.sbin/ctld/ctld.h projects/cxl_iscsi/usr.sbin/ctld/kernel.c projects/cxl_iscsi/usr.sbin/ctld/keys.c projects/cxl_iscsi/usr.sbin/ctld/parse.y projects/cxl_iscsi/usr.sbin/freebsd-update/freebsd-update.sh projects/cxl_iscsi/usr.sbin/fwcontrol/fwmpegts.c projects/cxl_iscsi/usr.sbin/iscsid/keys.c projects/cxl_iscsi/usr.sbin/iscsid/pdu.c projects/cxl_iscsi/usr.sbin/jail/command.c projects/cxl_iscsi/usr.sbin/jail/jailp.h projects/cxl_iscsi/usr.sbin/jail/jailparse.y projects/cxl_iscsi/usr.sbin/jls/jls.c projects/cxl_iscsi/usr.sbin/makefs/Makefile projects/cxl_iscsi/usr.sbin/makefs/cd9660.c projects/cxl_iscsi/usr.sbin/makefs/cd9660/cd9660_write.c projects/cxl_iscsi/usr.sbin/makefs/cd9660/iso9660_rrip.c projects/cxl_iscsi/usr.sbin/makefs/ffs/ffs_bswap.c projects/cxl_iscsi/usr.sbin/makefs/ffs/mkfs.c projects/cxl_iscsi/usr.sbin/makefs/ffs/newfs_extern.h projects/cxl_iscsi/usr.sbin/makefs/makefs.8 projects/cxl_iscsi/usr.sbin/makefs/makefs.c projects/cxl_iscsi/usr.sbin/mfiutil/mfiutil.8 projects/cxl_iscsi/usr.sbin/mptable/mptable.c projects/cxl_iscsi/usr.sbin/nandsim/nandsim.8 projects/cxl_iscsi/usr.sbin/nandsim/nandsim.c projects/cxl_iscsi/usr.sbin/nandsim/nandsim_cfgparse.c projects/cxl_iscsi/usr.sbin/ndiscvt/Makefile projects/cxl_iscsi/usr.sbin/ndp/ndp.c projects/cxl_iscsi/usr.sbin/newsyslog/newsyslog.c projects/cxl_iscsi/usr.sbin/newsyslog/newsyslog.conf.5 projects/cxl_iscsi/usr.sbin/ntp/config.h projects/cxl_iscsi/usr.sbin/ntp/doc/ntp-keygen.8 projects/cxl_iscsi/usr.sbin/ntp/doc/ntp.conf.5 projects/cxl_iscsi/usr.sbin/ntp/doc/ntp.keys.5 projects/cxl_iscsi/usr.sbin/ntp/doc/ntpd.8 projects/cxl_iscsi/usr.sbin/ntp/doc/ntpdc.8 projects/cxl_iscsi/usr.sbin/ntp/doc/ntpq.8 projects/cxl_iscsi/usr.sbin/ntp/doc/sntp.8 projects/cxl_iscsi/usr.sbin/ntp/scripts/mkver projects/cxl_iscsi/usr.sbin/pciconf/cap.c projects/cxl_iscsi/usr.sbin/pmcstat/pmcpl_gprof.c projects/cxl_iscsi/usr.sbin/pmcstat/pmcstat.8 projects/cxl_iscsi/usr.sbin/pmcstat/pmcstat.c projects/cxl_iscsi/usr.sbin/pmcstat/pmcstat.h projects/cxl_iscsi/usr.sbin/pmcstudy/eval_expr.c projects/cxl_iscsi/usr.sbin/ppp/ip.c projects/cxl_iscsi/usr.sbin/ppp/ppp.8 projects/cxl_iscsi/usr.sbin/pw/pw_group.c projects/cxl_iscsi/usr.sbin/pw/pw_user.c projects/cxl_iscsi/usr.sbin/rtadvd/config.c projects/cxl_iscsi/usr.sbin/rtadvd/if.c projects/cxl_iscsi/usr.sbin/rtsold/rtsold.c projects/cxl_iscsi/usr.sbin/rtsold/rtsold.h projects/cxl_iscsi/usr.sbin/sysrc/sysrc projects/cxl_iscsi/usr.sbin/sysrc/sysrc.8 projects/cxl_iscsi/usr.sbin/uefisign/magic.h projects/cxl_iscsi/usr.sbin/uefisign/pe.c projects/cxl_iscsi/usr.sbin/wpa/Makefile.crypto projects/cxl_iscsi/usr.sbin/wpa/hostapd/Makefile projects/cxl_iscsi/usr.sbin/wpa/wpa_supplicant/Makefile projects/cxl_iscsi/usr.sbin/ypbind/ypbind.c projects/cxl_iscsi/usr.sbin/ypserv/yp_access.c projects/cxl_iscsi/usr.sbin/ypserv/yp_dblookup.c projects/cxl_iscsi/usr.sbin/ypserv/yp_dnslookup.c projects/cxl_iscsi/usr.sbin/ypserv/ypinit.sh projects/cxl_iscsi/usr.sbin/zic/zdump/Makefile projects/cxl_iscsi/usr.sbin/zic/zic/Makefile Directory Properties: projects/cxl_iscsi/ (props changed) projects/cxl_iscsi/cddl/ (props changed) projects/cxl_iscsi/cddl/contrib/opensolaris/ (props changed) projects/cxl_iscsi/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/ (props changed) projects/cxl_iscsi/cddl/contrib/opensolaris/cmd/zfs/ (props changed) projects/cxl_iscsi/cddl/contrib/opensolaris/lib/libzfs/ (props changed) projects/cxl_iscsi/contrib/apr/ (props changed) projects/cxl_iscsi/contrib/binutils/ (props changed) projects/cxl_iscsi/contrib/bmake/ (props changed) projects/cxl_iscsi/contrib/compiler-rt/ (props changed) projects/cxl_iscsi/contrib/dma/ (props changed) projects/cxl_iscsi/contrib/dtc/ (props changed) projects/cxl_iscsi/contrib/elftoolchain/ (props changed) projects/cxl_iscsi/contrib/elftoolchain/ar/ (props changed) projects/cxl_iscsi/contrib/elftoolchain/brandelf/ (props changed) projects/cxl_iscsi/contrib/elftoolchain/elfdump/ (props changed) projects/cxl_iscsi/contrib/expat/ (props changed) projects/cxl_iscsi/contrib/file/ (props changed) projects/cxl_iscsi/contrib/gcc/ (props changed) projects/cxl_iscsi/contrib/gdb/ (props changed) projects/cxl_iscsi/contrib/groff/ (props changed) projects/cxl_iscsi/contrib/ipfilter/ (props changed) projects/cxl_iscsi/contrib/ipfilter/ml_ipl.c (props changed) projects/cxl_iscsi/contrib/ipfilter/mlfk_ipl.c (props changed) projects/cxl_iscsi/contrib/ipfilter/mlh_rule.c (props changed) projects/cxl_iscsi/contrib/ipfilter/mli_ipl.c (props changed) projects/cxl_iscsi/contrib/ipfilter/mln_ipl.c (props changed) projects/cxl_iscsi/contrib/ipfilter/mls_ipl.c (props changed) projects/cxl_iscsi/contrib/libarchive/ (props changed) projects/cxl_iscsi/contrib/libarchive/libarchive/ (props changed) projects/cxl_iscsi/contrib/libc++/ (props changed) projects/cxl_iscsi/contrib/libcxxrt/ (props changed) projects/cxl_iscsi/contrib/libexecinfo/ (props changed) projects/cxl_iscsi/contrib/libucl/ (props changed) projects/cxl_iscsi/contrib/llvm/ (props changed) projects/cxl_iscsi/contrib/llvm/lib/Target/Sparc/AsmParser/SparcAsmParser.cpp (props changed) projects/cxl_iscsi/contrib/llvm/lib/Target/Sparc/Disassembler/SparcDisassembler.cpp (props changed) projects/cxl_iscsi/contrib/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.cpp (props changed) projects/cxl_iscsi/contrib/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.h (props changed) projects/cxl_iscsi/contrib/llvm/projects/libunwind/ (props changed) projects/cxl_iscsi/contrib/llvm/tools/clang/ (props changed) projects/cxl_iscsi/contrib/llvm/tools/lldb/ (props changed) projects/cxl_iscsi/contrib/llvm/tools/llvm-dwarfdump/ (props changed) projects/cxl_iscsi/contrib/llvm/tools/llvm-lto/ (props changed) projects/cxl_iscsi/contrib/mdocml/ (props changed) projects/cxl_iscsi/contrib/ncurses/ (props changed) projects/cxl_iscsi/contrib/netcat/ (props changed) projects/cxl_iscsi/contrib/ntp/ (props changed) projects/cxl_iscsi/contrib/ntp/html/drivers/driver40-ja.html (props changed) projects/cxl_iscsi/contrib/ntp/include/refidsmear.h (props changed) projects/cxl_iscsi/contrib/ntp/libjsmn/example/jsondump.c (props changed) projects/cxl_iscsi/contrib/ntp/libjsmn/example/simple.c (props changed) projects/cxl_iscsi/contrib/ntp/libntp/refidsmear.c (props changed) projects/cxl_iscsi/contrib/ntp/scripts/update-leap/Makefile.am (props changed) projects/cxl_iscsi/contrib/ntp/scripts/update-leap/update-leap.in (props changed) projects/cxl_iscsi/contrib/ntp/scripts/update-leap/update-leap.sh (props changed) projects/cxl_iscsi/contrib/ntp/sntp/ag-tpl/Mdoc.pm (props changed) projects/cxl_iscsi/contrib/ntp/sntp/libpkgver/colcomp.c (props changed) projects/cxl_iscsi/contrib/ntp/sntp/libpkgver/pkgver.h (props changed) projects/cxl_iscsi/contrib/ntp/sntp/tests/networking.c (props changed) projects/cxl_iscsi/contrib/ntp/sntp/unity/auto/colour_prompt.rb (props changed) projects/cxl_iscsi/contrib/ntp/sntp/unity/auto/colour_reporter.rb (props changed) projects/cxl_iscsi/contrib/ntp/sntp/unity/auto/generate_module.rb (props changed) projects/cxl_iscsi/contrib/ntp/sntp/unity/auto/runner_maybe.c (props changed) projects/cxl_iscsi/contrib/ntp/sntp/unity/auto/test_file_filter.rb (props changed) projects/cxl_iscsi/contrib/ntp/sntp/unity/unity.h (props changed) projects/cxl_iscsi/contrib/ntp/sntp/unity/unity_fixture.c (props changed) projects/cxl_iscsi/contrib/ntp/sntp/unity/unity_fixture.h (props changed) projects/cxl_iscsi/contrib/ntp/sntp/unity/unity_fixture_internals.h (props changed) projects/cxl_iscsi/contrib/ntp/sntp/unity/unity_fixture_malloc_overrides.h (props changed) projects/cxl_iscsi/contrib/ntp/tests/bug-2803/bug-2803.c (props changed) projects/cxl_iscsi/contrib/ntp/tests/sandbox/bug-2803.c (props changed) projects/cxl_iscsi/contrib/ntp/tests/sandbox/modetoa.c (props changed) projects/cxl_iscsi/contrib/ntp/tests/sandbox/uglydate.c (props changed) projects/cxl_iscsi/contrib/ntp/tests/sandbox/ut-2803.c (props changed) projects/cxl_iscsi/contrib/openpam/ (props changed) projects/cxl_iscsi/contrib/pf/ (props changed) projects/cxl_iscsi/contrib/sendmail/ (props changed) projects/cxl_iscsi/contrib/serf/ (props changed) projects/cxl_iscsi/contrib/sqlite3/ (props changed) projects/cxl_iscsi/contrib/subversion/ (props changed) projects/cxl_iscsi/contrib/tcpdump/ (props changed) projects/cxl_iscsi/contrib/top/ (props changed) projects/cxl_iscsi/contrib/tzcode/stdtime/ (props changed) projects/cxl_iscsi/contrib/tzdata/ (props changed) projects/cxl_iscsi/contrib/unbound/ (props changed) projects/cxl_iscsi/contrib/wpa/ (props changed) projects/cxl_iscsi/crypto/openssh/ (props changed) projects/cxl_iscsi/crypto/openssl/ (props changed) projects/cxl_iscsi/gnu/lib/ (props changed) projects/cxl_iscsi/gnu/usr.bin/binutils/ (props changed) projects/cxl_iscsi/gnu/usr.bin/cc/cc_tools/ (props changed) projects/cxl_iscsi/gnu/usr.bin/gdb/ (props changed) projects/cxl_iscsi/include/ (props changed) projects/cxl_iscsi/lib/libc/ (props changed) projects/cxl_iscsi/lib/libc/stdtime/ (props changed) projects/cxl_iscsi/lib/libutil/ (props changed) projects/cxl_iscsi/lib/libvmmapi/ (props changed) projects/cxl_iscsi/lib/libz/ (props changed) projects/cxl_iscsi/sbin/ (props changed) projects/cxl_iscsi/sbin/dumpon/ (props changed) projects/cxl_iscsi/sbin/ipfw/ (props changed) projects/cxl_iscsi/share/ (props changed) projects/cxl_iscsi/share/man/man4/ (props changed) projects/cxl_iscsi/share/zoneinfo/ (props changed) projects/cxl_iscsi/sys/ (props changed) projects/cxl_iscsi/sys/amd64/include/vmm.h (props changed) projects/cxl_iscsi/sys/amd64/include/vmm_dev.h (props changed) projects/cxl_iscsi/sys/amd64/include/xen/ (props changed) projects/cxl_iscsi/sys/amd64/vmm/ (props changed) projects/cxl_iscsi/sys/boot/ (props changed) projects/cxl_iscsi/sys/boot/powerpc/kboot/ (props changed) projects/cxl_iscsi/sys/boot/powerpc/ofw/ (props changed) projects/cxl_iscsi/sys/cddl/contrib/opensolaris/ (props changed) projects/cxl_iscsi/sys/conf/ (props changed) projects/cxl_iscsi/sys/contrib/dev/acpica/ (props changed) projects/cxl_iscsi/sys/contrib/ipfilter/ (props changed) projects/cxl_iscsi/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c (props changed) projects/cxl_iscsi/sys/dev/hyperv/ (props changed) projects/cxl_iscsi/sys/modules/hyperv/ (props changed) projects/cxl_iscsi/targets/ (props changed) projects/cxl_iscsi/usr.bin/calendar/ (props changed) projects/cxl_iscsi/usr.bin/mkimg/ (props changed) projects/cxl_iscsi/usr.bin/procstat/ (props changed) projects/cxl_iscsi/usr.sbin/bhyve/ (props changed) projects/cxl_iscsi/usr.sbin/bhyvectl/ (props changed) projects/cxl_iscsi/usr.sbin/bhyveload/ (props changed) projects/cxl_iscsi/usr.sbin/jail/ (props changed) projects/cxl_iscsi/usr.sbin/ndiscvt/ (props changed) projects/cxl_iscsi/usr.sbin/rtadvctl/ (props changed) projects/cxl_iscsi/usr.sbin/rtadvd/ (props changed) projects/cxl_iscsi/usr.sbin/rtsold/ (props changed) projects/cxl_iscsi/usr.sbin/zic/ (props changed) Modified: projects/cxl_iscsi/MAINTAINERS ============================================================================== --- projects/cxl_iscsi/MAINTAINERS Thu Nov 19 15:09:57 2015 (r291075) +++ projects/cxl_iscsi/MAINTAINERS Thu Nov 19 16:28:42 2015 (r291076) @@ -18,9 +18,63 @@ However, this is not a 'big stick', it i of guidance. It does not override the communal nature of the tree. It is not a registry of 'turf' or private property. +*** +This list is prone to becoming stale quickly. The best way to find the recent +maintainer of a sub-system is to check recent logs for that directory or +sub-system. +*** + subsystem login notes ----------------------------- +opencrypto jmg Pre-commit review requested. Documentation Required. kqueue jmg Pre-commit review requested. Documentation Required. +share/mk imp, bapt, bdrewery, emaste, sjg Make is hard. +ath(4) adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org +net80211 adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org +iwn(4) adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org +iwm(4) adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org +otus(4) adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org +dev/usb/wlan adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org +openssl benl,jkim Pre-commit review requested. +release/release.sh gjb,re Pre-commit review and regression tests + requested. +sh(1) jilles Pre-commit review requested. This also applies + to kill(1), printf(1) and test(1) which are + compiled in as builtins. +isci(4) jimharris Pre-commit review requested. +nvme(4) jimharris Pre-commit review requested. +nvd(4) jimharris Pre-commit review requested. +nvmecontrol(8) jimharris Pre-commit review requested. +libfetch des Pre-commit review requested. +fetch des Pre-commit review requested. +libpam des Pre-commit review requested. +openssh des Pre-commit review requested. +pseudofs des Pre-commit review requested. +procfs des Pre-commit review requested. +linprocfs des Pre-commit review requested. +contrib/compiler-rt dim Pre-commit review preferred. +contrib/libc++ dim Pre-commit review preferred. +contrib/libcxxrt dim Pre-commit review preferred. +contrib/llvm dim Pre-commit review preferred. +contrib/llvm/tools/lldb emaste Pre-commit review preferred. +atf freebsd-testing,jmmv,ngie Pre-commit review requested. +contrib/netbsd-tests freebsd-testing,ngie Pre-commit review requested. +contrib/pjdfstest freebsd-testing,ngie,pjd Pre-commit review requested. +share/mk/*.test.mk freebsd-testing,ngie (same list as share/mk too) Pre-commit review requested. +tests freebsd-testing,ngie Pre-commit review requested. +sys/dev/usb hselasky If in doubt, ask. +sys/dev/sound/usb hselasky If in doubt, ask. +sys/compat/linuxkpi hselasky If in doubt, ask. +sys/dev/e1000 erj Pre-commit phabricator review requested. +sys/dev/ixgbe erj Pre-commit phabricator review requested. +sys/dev/ixl erj Pre-commit phabricator review requested. +sys/netinet/ip_carp.c glebius Pre-commit review recommended. +sys/netpfil/pf kp,glebius Pre-commit review recommended. +usr.sbin/pkg pkg@ Please coordinate behavior or flag changes with pkg team. +lpr gad Pre-commit review requested, particularly for + lpd/recvjob.c and lpd/printjob.c. +nis(8), yp(8) araujo Pre-commit review requested. +---- OLD ---- libc/posix1e rwatson Pre-commit review requested. POSIX.1e ACLs rwatson Pre-commit review requested. UFS EAs rwatson Pre-commit review requested. @@ -28,11 +82,8 @@ MAC Framework rwatson Pre-commit review MAC Modules rwatson Pre-commit review requested. contrib/openbsm rwatson Pre-commit review requested. sys/security/audit rwatson Pre-commit review requested. -ath(4) adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org ahc(4) gibbs Pre-commit review requested. ahd(4) gibbs Pre-commit review requested. -PC Card imp Pre-commit review requested. -CardBus imp Pre-commit review requested. pci bus imp,jhb Pre-commit review requested. cdboot jhb Pre-commit review requested. pxeboot jhb Pre-commit review requested. @@ -53,21 +104,9 @@ etc/mail gshapiro Pre-commit review requ Keep in sync with -STABLE. etc/sendmail gshapiro Pre-commit review requested. Keep in sync with -STABLE. -libfetch des Advance notification requested. -fetch des Advance notification requested. -libpam des Pre-commit review requested. -openssh des Pre-commit review requested. -pseudofs des Pre-commit review requested. -procfs des Pre-commit review requested. -linprocfs des Pre-commit review requested. -lpr gad Pre-commit review requested, particularly for - lpd/recvjob.c and lpd/printjob.c. -net80211 adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org nvi peter Try not to break it. libz peter Try not to break it. groff ru Recommends pre-commit review. -share/mk ru This is a vital component of the build system, so I - offer a pre-commit review for anything non-trivial. ipfw ipfw Pre-commit review preferred. send to ipfw@freebsd.org drm rnoland Just keep me informed of changes, try not to break it. unifdef(1) fanf Pre-commit review requested. @@ -75,12 +114,10 @@ ntp roberto Pre-commit review r inetd dwmalone Recommends pre-commit review. contrib/smbfs bp Open for in-tree committs. In case of functional changes pre-commit review requested. -contrib/pf glebius Pre-commit review recommended. file obrien Insists to keep file blocked from other's unapproved commits contrib/bzip2 obrien Pre-commit review required. -contrib/netbsd-tests freebsd-testing,ngie Pre-commit review requested. -contrib/pjdfstest freebsd-testing,ngie Pre-commit review requested. +geom freebsd-geom@FreeBSD.org geom_concat pjd Pre-commit review preferred. geom_eli pjd Pre-commit review preferred. geom_gate pjd Pre-commit review preferred. @@ -92,16 +129,12 @@ geom_shsec pjd Pre-commit review preferr geom_stripe pjd Pre-commit review preferred. geom_zero pjd Pre-commit review preferred. sbin/geom pjd Pre-commit review preferred. -zfs pjd Pre-commit review preferred. -nfs alfred Will be happy to review code, but not mandatory. -rpc.lockd alfred Will be happy to review code, but not mandatory. -truss alfred Will be happy to review code, but not mandatory. -rpc alfred Pre-commit review requested. +zfs freebsd-fs@FreeBSD.org +nfs freebsd-fs@FreeBSD.org, rmacklem is best for reviews. linux emul emulation Please discuss changes here. bs{diff,patch} cperciva Pre-commit review requested. portsnap cperciva Pre-commit review requested. freebsd-update cperciva Pre-commit review requested. -openssl benl,jkim Pre-commit review requested. sys/netgraph/bluetooth emax Pre-commit review preferred. lib/libbluetooth emax Pre-commit review preferred. lib/libsdp emax Pre-commit review preferred. @@ -116,18 +149,8 @@ usr.sbin/zic edwin Heads-up appreciat lib/libc/stdtime edwin Heads-up appreciated, since parts of this code is maintained by a third party source. sbin/routed bms Pre-commit review; notify vendor at rhyolite.com -isci(4) jimharris Pre-commit review requested. cmx daniel@roe.ch Pre-commit review preferred. filemon obrien Pre-commit review preferred. sysdoc trhodes Pre-commit review preferred. -sh(1) jilles Pre-commit review requested. This also applies - to kill(1), printf(1) and test(1) which are - compiled in as builtins. -nvme(4) jimharris Pre-commit review requested. -nvd(4) jimharris Pre-commit review requested. -nvmecontrol(8) jimharris Pre-commit review requested. -release/release.sh gjb Pre-commit review and regression tests - requested. nanobsd imp Pre-commit review requested for coordination. vmm(4) neel,grehan Pre-commit review requested. -opencrypto jmg Pre-commit review requested. Documentation Required. Modified: projects/cxl_iscsi/Makefile ============================================================================== --- projects/cxl_iscsi/Makefile Thu Nov 19 15:09:57 2015 (r291075) +++ projects/cxl_iscsi/Makefile Thu Nov 19 16:28:42 2015 (r291076) @@ -100,16 +100,20 @@ # For more information, see the build(7) manual page. # +# This is included so CC is set to ccache for -V, and COMPILER_TYPE/VERSION +# can be cached for sub-makes. +.include + # Note: we use this awkward construct to be compatible with FreeBSD's # old make used in 10.0 and 9.2 and earlier. -.if defined(MK_META_MODE) && ${MK_META_MODE} == "yes" && !make(showconfig) +.if defined(MK_DIRDEPS_BUILD) && ${MK_DIRDEPS_BUILD} == "yes" && !make(showconfig) # targets/Makefile plays the role of top-level .include "targets/Makefile" .else TGTS= all all-man buildenv buildenvvars buildkernel buildworld \ check-old check-old-dirs check-old-files check-old-libs \ - checkdpadd clean cleandepend cleandir \ + checkdpadd clean cleandepend cleandir cleanworld \ delete-old delete-old-dirs delete-old-files delete-old-libs \ depend distribute distributekernel distributekernel.debug \ distributeworld distrib-dirs distribution doxygen \ @@ -208,49 +212,11 @@ buildworld: upgrade_checks .endif # -# This 'cleanworld' target is not included in TGTS, because it is not a -# recursive target. All of the work for it is done right here. It is -# expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be -# created by bsd.obj.mk, except that we don't want to .include that file -# in this makefile. -# -# In the following, the first 'rm' in a series will usually remove all -# files and directories. If it does not, then there are probably some -# files with file flags set, so this unsets them and tries the 'rm' a -# second time. There are situations where this target will be cleaning -# some directories via more than one method, but that duplication is -# needed to correctly handle all the possible situations. Removing all -# files without file flags set in the first 'rm' instance saves time, -# because 'chflags' will need to operate on fewer files afterwards. -# -BW_CANONICALOBJDIR:=${MAKEOBJDIRPREFIX}${.CURDIR} -cleanworld: -.if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR} -.if exists(${BW_CANONICALOBJDIR}/) - -rm -rf ${BW_CANONICALOBJDIR}/* - -chflags -R 0 ${BW_CANONICALOBJDIR} - rm -rf ${BW_CANONICALOBJDIR}/* -.endif - # To be safe in this case, fall back to a 'make cleandir' - ${_+_}@cd ${.CURDIR}; ${_MAKE} cleandir -.else - -rm -rf ${.OBJDIR}/* - -chflags -R 0 ${.OBJDIR} - rm -rf ${.OBJDIR}/* -.endif - -# # Handle the user-driven targets, using the source relative mk files. # -.if !(!empty(.MAKEFLAGS:M-n) && ${.MAKEFLAGS:M-n} == "-n") -# skip this for -n to avoid changing previous behavior of -# 'make -n buildworld' etc. Using -n -n will run it. -${TGTS}: .MAKE tinderbox toolchains kernel-toolchains: .MAKE -.endif - -${TGTS}: +${TGTS}: .PHONY .MAKE ${_+_}@cd ${.CURDIR}; ${_MAKE} ${.TARGET} # The historic default "all" target creates files which may cause stale @@ -259,9 +225,9 @@ ${TGTS}: # if they want the historic behavior. .MAIN: _guard -_guard: +_guard: .PHONY @echo - @echo "Explicit target required (use \"all\" for historic behavior)" + @echo "Explicit target required. Likely \"${SUBDIR_OVERRIDE:Dall:Ubuildworld}\" is wanted. See build(7)." @echo @false @@ -532,15 +498,15 @@ buildLINT: # This makefile does not run in meta mode .MAKE.MODE= normal # Normally the things we run from here don't either. -# Using -DWITH_META_FILES +# Using -DWITH_META_MODE # we can buildworld with meta files created which are useful # for debugging, but without any of the rest of a meta mode build. -MK_META_MODE= no +MK_DIRDEPS_BUILD= no MK_STAGING= no # tell meta.autodep.mk to not even think about updating anything. UPDATE_DEPENDFILE= NO .if !make(showconfig) -.export MK_META_MODE MK_STAGING UPDATE_DEPENDFILE +.export MK_DIRDEPS_BUILD MK_STAGING UPDATE_DEPENDFILE .endif .if make(universe) @@ -550,4 +516,4 @@ MAKE_JOB_ERROR_TOKEN= no .endif .endif # bmake -.endif # META_MODE +.endif # DIRDEPS_BUILD Modified: projects/cxl_iscsi/Makefile.inc1 ============================================================================== --- projects/cxl_iscsi/Makefile.inc1 Thu Nov 19 15:09:57 2015 (r291075) +++ projects/cxl_iscsi/Makefile.inc1 Thu Nov 19 16:28:42 2015 (r291076) @@ -27,9 +27,11 @@ # when NO_ROOT is set. (default: ${DESTDIR}/METALOG) # TARGET="machine" to crossbuild world for a different machine type # TARGET_ARCH= may be required when a TARGET supports multiple endians -# BUILDENV_SHELL= shell to launch for the buildenv target (def:/bin/sh) +# BUILDENV_SHELL= shell to launch for the buildenv target (def:${SHELL}) # WORLD_FLAGS= additional flags to pass to make(1) during buildworld # KERNEL_FLAGS= additional flags to pass to make(1) during buildkernel +# SUBDIR_OVERRIDE="list of dirs" to build rather than everything. +# All libraries and includes, and some build tools will still build. # # The intended user-driven targets are: @@ -46,20 +48,33 @@ .error "Both TARGET and TARGET_ARCH must be defined." .endif -.include "share/mk/src.opts.mk" -.include -.include - -# We must do lib/ and libexec/ before bin/, because if installworld -# installs a new /bin/sh, the 'make' command will *immediately* -# use that new version. And the new (dynamically-linked) /bin/sh -# will expect to find appropriate libraries in /lib and /libexec. -# +# Cross toolchain changes must be in effect before bsd.compiler.mk +# so that gets the right CC, and pass CROSS_TOOLCHAIN to submakes. +.if defined(CROSS_TOOLCHAIN) +LOCALBASE?= /usr/local +.include "${LOCALBASE}/share/toolchains/${CROSS_TOOLCHAIN}.mk" +CROSSENV+=CROSS_TOOLCHAIN="${CROSS_TOOLCHAIN}" +.endif +.include # don't depend on src.opts.mk doing it +.include "share/mk/src.opts.mk" + +# We must do lib/ and libexec/ before bin/ in case of a mid-install error to +# keep the users system reasonably usable. For static->dynamic root upgrades, +# we don't want to install a dynamic binary without rtld and the needed +# libraries. More commonly, for dynamic root, we don't want to install a +# binary that requires a newer library version that hasn't been installed yet. +# This ordering is not a guarantee though. The only guarantee of a working +# system here would require fine-grained ordering of all components based +# on their dependencies. SRCDIR?= ${.CURDIR} -.if defined(SUBDIR_OVERRIDE) +.if !empty(SUBDIR_OVERRIDE) SUBDIR= ${SUBDIR_OVERRIDE} .else SUBDIR= lib libexec +.if make(install*) +# Ensure libraries are installed before progressing. +SUBDIR+=.WAIT +.endif SUBDIR+=bin .if ${MK_CDDL} != "no" SUBDIR+=cddl @@ -85,10 +100,6 @@ SUBDIR+= tests .if ${MK_OFED} != "no" SUBDIR+=contrib/ofed .endif -# -# We must do etc/ last for install/distribute to work. -# -SUBDIR+=etc # Local directories are last, since it is nice to at least get the base # system rebuilt before you do them. @@ -110,9 +121,20 @@ SUBDIR+= ${_DIR} .warning ${_DIR} not added to SUBDIR list. See UPDATING 20141121. .endif .endfor + +# We must do etc/ last as it hooks into building the man whatis file +# by calling 'makedb' in share/man. This is only relevant for +# install/distribute so they build the whatis file after every manpage is +# installed. +.if make(install*) +SUBDIR+=.WAIT .endif +SUBDIR+=etc + +.endif # !empty(SUBDIR_OVERRIDE) .if defined(NOCLEAN) +.warning NOCLEAN option is deprecated. Use NO_CLEAN instead. NO_CLEAN= ${NOCLEAN} .endif .if defined(NO_CLEANDIR) @@ -123,7 +145,7 @@ CLEANDIR= cleandir LOCAL_TOOL_DIRS?= -BUILDENV_SHELL?=/bin/sh +BUILDENV_SHELL?=${SHELL} SVN?= /usr/local/bin/svn SVNFLAGS?= -r HEAD @@ -136,14 +158,17 @@ OSRELDATE!= awk '/^\#define[[:space:]]*_ .else OSRELDATE= 0 .endif +.export OSRELDATE .endif +# Set VERSION for CTFMERGE to use via the default CTFFLAGS=-L VERSION. .if !defined(VERSION) REVISION!= ${MAKE} -C ${SRCDIR}/release -V REVISION BRANCH!= ${MAKE} -C ${SRCDIR}/release -V BRANCH SRCRELDATE!= awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \ ${SRCDIR}/sys/sys/param.h VERSION= FreeBSD ${REVISION}-${BRANCH:C/-p[0-9]+$//} ${TARGET_ARCH} ${SRCRELDATE} +.export VERSION .endif KNOWN_ARCHES?= aarch64/arm64 amd64 arm armeb/arm armv6/arm armv6hf/arm i386 i386/pc98 mips mipsel/mips mips64el/mips mips64/mips mipsn32el/mips mipsn32/mips powerpc powerpc64/powerpc sparc64 @@ -235,7 +260,7 @@ INSTALLTMP!= /usr/bin/mktemp -d -u -t in BOOTSTRAPPING?= 0 # Common environment for world related stages -CROSSENV= MAKEOBJDIRPREFIX=${OBJTREE} \ +CROSSENV+= MAKEOBJDIRPREFIX=${OBJTREE} \ MACHINE_ARCH=${TARGET_ARCH} \ MACHINE=${TARGET} \ CPUTYPE=${TARGET_CPUTYPE} @@ -252,7 +277,6 @@ CROSSENV+= ${TARGET_CFLAGS} BMAKEENV= INSTALL="sh ${.CURDIR}/tools/install.sh" \ PATH=${BPATH}:${PATH} \ WORLDTMP=${WORLDTMP} \ - VERSION="${VERSION}" \ MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}" # need to keep this in sync with targets/pseudo/bootstrap-tools/Makefile BSARGS= DESTDIR= \ @@ -289,8 +313,7 @@ XMAKE= TOOLS_PREFIX=${WORLDTMP} ${BMAKE # kernel-tools stage KTMAKEENV= INSTALL="sh ${.CURDIR}/tools/install.sh" \ PATH=${BPATH}:${PATH} \ - WORLDTMP=${WORLDTMP} \ - VERSION="${VERSION}" + WORLDTMP=${WORLDTMP} KTMAKE= TOOLS_PREFIX=${WORLDTMP} MAKEOBJDIRPREFIX=${WORLDTMP} \ ${KTMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \ DESTDIR= \ @@ -303,7 +326,6 @@ KTMAKE= TOOLS_PREFIX=${WORLDTMP} MAKEOB # world stage WMAKEENV= ${CROSSENV} \ _LDSCRIPTROOT= \ - VERSION="${VERSION}" \ INSTALL="sh ${.CURDIR}/tools/install.sh" \ PATH=${TMPPATH} @@ -313,14 +335,6 @@ HMAKE= PATH=${TMPPATH} ${MAKE} LOCAL_MT HMAKE+= PATH=${TMPPATH} METALOG=${METALOG} -DNO_ROOT .endif -.if ${MK_CDDL} == "no" -WMAKEENV+= MK_CTF=no -.endif - -.if defined(CROSS_TOOLCHAIN) -LOCALBASE?= /usr/local -.include "${LOCALBASE}/share/toolchains/${CROSS_TOOLCHAIN}.mk" -.endif .if defined(CROSS_TOOLCHAIN_PREFIX) CROSS_COMPILER_PREFIX?=${CROSS_TOOLCHAIN_PREFIX} CROSS_BINUTILS_PREFIX?=${CROSS_TOOLCHAIN_PREFIX} @@ -357,7 +371,7 @@ X${BINUTIL}?= ${CROSS_BINUTILS_PREFIX}${ X${BINUTIL}?= ${${BINUTIL}} .endif .endfor -WMAKEENV+= CC="${XCC} ${XCFLAGS}" CXX="${XCXX} ${XCFLAGS} ${XCXXFLAGS}" \ +CROSSENV+= CC="${XCC} ${XCFLAGS}" CXX="${XCXX} ${XCFLAGS} ${XCXXFLAGS}" \ DEPFLAGS="${DEPFLAGS}" \ CPP="${XCPP} ${XCFLAGS}" \ AS="${XAS}" AR="${XAR}" LD="${XLD}" NM=${XNM} \ @@ -365,7 +379,7 @@ WMAKEENV+= CC="${XCC} ${XCFLAGS}" CXX="$ RANLIB=${XRANLIB} STRINGS=${XSTRINGS} \ SIZE="${XSIZE}" -.if ${XCC:M/*} +.if ${XCC:N${CCACHE_BIN}:M/*} .if defined(CROSS_BINUTILS_PREFIX) # In the case of xdev-build tools, CROSS_BINUTILS_PREFIX won't be a # directory, but the compiler will look in the right place for it's @@ -386,6 +400,9 @@ TARGET_ABI= gnueabi .if defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc XCFLAGS+= -isystem ${WORLDTMP}/usr/include -L${WORLDTMP}/usr/lib XCXXFLAGS+= -I${WORLDTMP}/usr/include/c++/v1 -std=gnu++11 -L${WORLDTMP}/../lib/libc++ +# XXX: DEPFLAGS is a workaround for not properly passing CXXFLAGS to sub-makes +# due to CXX="${XCXX} ${XCXXFLAGS}". bsd.dep.mk does use CXXFLAGS when +# building C++ files so this can come out if passing CXXFLAGS down is fixed. DEPFLAGS+= -I${WORLDTMP}/usr/include/c++/v1 .else TARGET_ABI?= unknown @@ -439,14 +456,13 @@ LIB32FLAGS= -m32 ${LIB32CPUFLAGS} -DCOMP -isystem ${LIB32TMP}/usr/include/ \ -L${LIB32TMP}/usr/lib32 \ -B${LIB32TMP}/usr/lib32 -.if ${XCC:M/*} +.if ${XCC:N${CCACHE_BIN}:M/*} LIB32FLAGS+= --sysroot=${WORLDTMP} .endif # Yes, the flags are redundant. LIB32WMAKEENV+= MAKEOBJDIRPREFIX=${LIB32_OBJTREE} \ _LDSCRIPTROOT=${LIB32TMP} \ - VERSION="${VERSION}" \ INSTALL="sh ${.CURDIR}/tools/install.sh" \ PATH=${TMPPATH} \ LIBDIR=/usr/lib32 \ @@ -506,7 +522,7 @@ KMAKE= ${KMAKEENV} ${MAKE} ${.MAKEFLAGS # Attempt to rebuild the entire system, with reasonable chance of # success, regardless of how old your existing system is. # -_worldtmp: +_worldtmp: .PHONY .if ${.CURDIR:C/[^,]//g} != "" # The m4 build of sendmail files doesn't like it if ',' is used # anywhere in the path of it's files. @@ -553,10 +569,25 @@ _worldtmp: mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ -p ${WORLDTMP}/usr/lib >/dev/null .endif +.if ${MK_LIB32} != "no" + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ + -p ${WORLDTMP}/usr >/dev/null +.if ${MK_DEBUG_FILES} != "no" + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ + -p ${WORLDTMP}/legacy/usr/lib/debug/usr >/dev/null + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ + -p ${WORLDTMP}/usr/lib/debug/usr >/dev/null +.endif +.endif .if ${MK_TESTS} != "no" mkdir -p ${WORLDTMP}${TESTSBASE} mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ -p ${WORLDTMP}${TESTSBASE} >/dev/null +.if ${MK_DEBUG_FILES} != "no" + mkdir -p ${WORLDTMP}/usr/lib/debug/${TESTSBASE} + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ + -p ${WORLDTMP}/usr/lib/debug/${TESTSBASE} >/dev/null +.endif .endif .for _mtree in ${LOCAL_MTREE} mtree -deU -f ${.CURDIR}/${_mtree} -p ${WORLDTMP} > /dev/null @@ -579,9 +610,9 @@ _cleanobj: @echo "--------------------------------------------------------------" @echo ">>> stage 2.1: cleaning up the object tree" @echo "--------------------------------------------------------------" - ${_+_}cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/} + ${_+_}cd ${.CURDIR}; ${WMAKE} ${CLEANDIR} .if defined(LIB32TMP) - ${_+_}cd ${.CURDIR}; ${LIB32WMAKE} -f Makefile.inc1 ${CLEANDIR:S/^/par-/} + ${_+_}cd ${.CURDIR}; ${LIB32WMAKE} -f Makefile.inc1 ${CLEANDIR} .endif .endif _obj: @@ -589,7 +620,7 @@ _obj: @echo "--------------------------------------------------------------" @echo ">>> stage 2.2: rebuilding the object tree" @echo "--------------------------------------------------------------" - ${_+_}cd ${.CURDIR}; ${WMAKE} par-obj + ${_+_}cd ${.CURDIR}; ${WMAKE} obj _build-tools: @echo @echo "--------------------------------------------------------------" @@ -608,7 +639,16 @@ _includes: @echo "--------------------------------------------------------------" @echo ">>> stage 4.1: building includes" @echo "--------------------------------------------------------------" - ${_+_}cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes +# Special handling for SUBDIR_OVERRIDE in buildworld as they most likely need +# headers from default SUBDIR. Do SUBDIR_OVERRIDE includes last. + ${_+_}cd ${.CURDIR}; ${WMAKE} SUBDIR_OVERRIDE= SHARED=symlinks \ + buildincludes + ${_+_}cd ${.CURDIR}; ${WMAKE} SUBDIR_OVERRIDE= SHARED=symlinks \ + installincludes +.if !empty(SUBDIR_OVERRIDE) && make(buildworld) + ${_+_}cd ${.CURDIR}; ${WMAKE} SHARED=symlinks buildincludes + ${_+_}cd ${.CURDIR}; ${WMAKE} SHARED=symlinks installincludes +.endif _libraries: @echo @echo "--------------------------------------------------------------" @@ -622,7 +662,7 @@ _depend: @echo "--------------------------------------------------------------" @echo ">>> stage 4.3: make dependencies" @echo "--------------------------------------------------------------" - ${_+_}cd ${.CURDIR}; ${WMAKE} par-depend + ${_+_}cd ${.CURDIR}; ${WMAKE} depend everything: @echo @echo "--------------------------------------------------------------" @@ -630,7 +670,7 @@ everything: @echo "--------------------------------------------------------------" ${_+_}cd ${.CURDIR}; ${WMAKE} par-all .if defined(LIB32TMP) -build32: +build32: .PHONY @echo @echo "--------------------------------------------------------------" @echo ">>> stage 5.1: building 32 bit shim libraries" @@ -640,73 +680,76 @@ build32: -p ${LIB32TMP}/usr >/dev/null mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ -p ${LIB32TMP}/usr/include >/dev/null + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ + -p ${LIB32TMP}/usr >/dev/null .if ${MK_DEBUG_FILES} != "no" mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ -p ${LIB32TMP}/usr/lib >/dev/null + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ + -p ${LIB32TMP}/usr/lib/debug/usr >/dev/null .endif mkdir -p ${WORLDTMP} ln -sf ${.CURDIR}/sys ${WORLDTMP} .for _t in obj includes - cd ${.CURDIR}/include; ${LIB32WMAKE} DIRPRFX=include/ ${_t} - cd ${.CURDIR}/lib; ${LIB32WMAKE} DIRPRFX=lib/ ${_t} + ${_+_}cd ${.CURDIR}/include; ${LIB32WMAKE} DIRPRFX=include/ ${_t} + ${_+_}cd ${.CURDIR}/lib; ${LIB32WMAKE} DIRPRFX=lib/ ${_t} .if ${MK_CDDL} != "no" - cd ${.CURDIR}/cddl/lib; ${LIB32WMAKE} DIRPRFX=cddl/lib/ ${_t} + ${_+_}cd ${.CURDIR}/cddl/lib; ${LIB32WMAKE} DIRPRFX=cddl/lib/ ${_t} .endif - cd ${.CURDIR}/gnu/lib; ${LIB32WMAKE} DIRPRFX=gnu/lib/ ${_t} + ${_+_}cd ${.CURDIR}/gnu/lib; ${LIB32WMAKE} DIRPRFX=gnu/lib/ ${_t} .if ${MK_CRYPT} != "no" - cd ${.CURDIR}/secure/lib; ${LIB32WMAKE} DIRPRFX=secure/lib/ ${_t} + ${_+_}cd ${.CURDIR}/secure/lib; ${LIB32WMAKE} DIRPRFX=secure/lib/ ${_t} .endif .if ${MK_KERBEROS} != "no" - cd ${.CURDIR}/kerberos5/lib; ${LIB32WMAKE} DIRPRFX=kerberos5/lib ${_t} + ${_+_}cd ${.CURDIR}/kerberos5/lib; ${LIB32WMAKE} DIRPRFX=kerberos5/lib ${_t} .endif .endfor .for _dir in usr.bin/lex/lib - cd ${.CURDIR}/${_dir}; ${LIB32WMAKE} DIRPRFX=${_dir}/ obj + ${_+_}cd ${.CURDIR}/${_dir}; ${LIB32WMAKE} DIRPRFX=${_dir}/ obj .endfor .for _dir in lib/ncurses/ncurses lib/ncurses/ncursesw lib/libmagic - cd ${.CURDIR}/${_dir}; \ + ${_+_}cd ${.CURDIR}/${_dir}; \ WORLDTMP=${WORLDTMP} \ MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}" \ MAKEOBJDIRPREFIX=${LIB32_OBJTREE} ${MAKE} SSP_CFLAGS= DESTDIR= \ DIRPRFX=${_dir}/ -DNO_LINT -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \ build-tools .endfor - cd ${.CURDIR}; \ - ${LIB32WMAKE} -f Makefile.inc1 libraries + ${_+_}cd ${.CURDIR}; \ + ${LIB32WMAKE} -f Makefile.inc1 -DNO_FSCHG libraries .for _t in obj depend all - cd ${.CURDIR}/libexec/rtld-elf; PROG=ld-elf32.so.1 ${LIB32WMAKE} \ - DIRPRFX=libexec/rtld-elf/ ${_t} - cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32WMAKE} \ + ${_+_}cd ${.CURDIR}/libexec/rtld-elf; PROG=ld-elf32.so.1 ${LIB32WMAKE} \ + -DNO_FSCHG DIRPRFX=libexec/rtld-elf/ ${_t} + ${_+_}cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32WMAKE} \ DIRPRFX=usr.bin/ldd ${_t} .endfor -distribute32 install32: - cd ${.CURDIR}/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} +distribute32 install32: .MAKE .PHONY + ${_+_}cd ${.CURDIR}/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} .if ${MK_CDDL} != "no" - cd ${.CURDIR}/cddl/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} + ${_+_}cd ${.CURDIR}/cddl/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} .endif - cd ${.CURDIR}/gnu/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} + ${_+_}cd ${.CURDIR}/gnu/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} .if ${MK_CRYPT} != "no" - cd ${.CURDIR}/secure/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} + ${_+_}cd ${.CURDIR}/secure/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} .endif .if ${MK_KERBEROS} != "no" - cd ${.CURDIR}/kerberos5/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} + ${_+_}cd ${.CURDIR}/kerberos5/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} .endif - cd ${.CURDIR}/libexec/rtld-elf; \ + ${_+_}cd ${.CURDIR}/libexec/rtld-elf; \ PROG=ld-elf32.so.1 ${LIB32IMAKE} ${.TARGET:S/32$//} - cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32IMAKE} ${.TARGET:S/32$//} + ${_+_}cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32IMAKE} \ + ${.TARGET:S/32$//} .endif WMAKE_TGTS= -.if !defined(SUBDIR_OVERRIDE) -WMAKE_TGTS+= _worldtmp _legacy _bootstrap-tools -.endif -WMAKE_TGTS+= _cleanobj _obj _build-tools -.if !defined(SUBDIR_OVERRIDE) -WMAKE_TGTS+= _cross-tools +WMAKE_TGTS+= _worldtmp _legacy +.if empty(SUBDIR_OVERRIDE) +WMAKE_TGTS+= _bootstrap-tools .endif +WMAKE_TGTS+= _cleanobj _obj _build-tools _cross-tools WMAKE_TGTS+= _includes _libraries _depend everything -.if defined(LIB32TMP) && ${MK_LIB32} != "no" +.if defined(LIB32TMP) && ${MK_LIB32} != "no" && empty(SUBDIR_OVERRIDE) WMAKE_TGTS+= build32 .endif @@ -730,17 +773,22 @@ buildworld_epilogue: # modification of the current environment's PATH. In addition, we need # to quote multiword values. # -buildenvvars: - @echo ${WMAKEENV:Q} +buildenvvars: .PHONY + @echo ${WMAKEENV:Q} ${.MAKE.EXPORTED:@v@$v=\"${$v}\"@} .if ${.TARGETS:Mbuildenv} .if ${.MAKEFLAGS:M-j} .error The buildenv target is incompatible with -j .endif .endif -buildenv: +BUILDENV_DIR?= ${.CURDIR} +buildenv: .PHONY @echo Entering world for ${TARGET_ARCH}:${TARGET} - @cd ${.CURDIR} && env ${WMAKEENV} ${BUILDENV_SHELL} || true +.if ${BUILDENV_SHELL:M*zsh*} + @echo For ZSH you must run: export CPUTYPE=${TARGET_CPUTYPE} +.endif + @cd ${BUILDENV_DIR} && env ${WMAKEENV} BUILDENV=1 ${BUILDENV_SHELL} \ + || true TOOLCHAIN_TGTS= ${WMAKE_TGTS:N_depend:Neverything:Nbuild32} toolchain: ${TOOLCHAIN_TGTS} @@ -815,7 +863,7 @@ _zoneinfo= zic tzsetup ITOOLS= [ awk cap_mkdb cat chflags chmod chown cmp cp \ date echo egrep find grep id install ${_install-info} \ - ln lockf make mkdir mtree mv pwd_mkdb \ + ln make mkdir mtree mv pwd_mkdb \ rm sed services_mkdb sh strip sysctl test true uname wc ${_zoneinfo} \ ${LOCAL_ITOOLS} @@ -888,10 +936,22 @@ distributeworld installworld: _installch mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib >/dev/null .endif +.if ${MK_LIB32} != "no" + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ + -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null +.if ${MK_DEBUG_FILES} != "no" + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ + -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/usr >/dev/null +.endif +.endif .if ${MK_TESTS} != "no" && ${dist} == "tests" -mkdir -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE} mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE} >/dev/null +.if ${MK_DEBUG_FILES} != "no" + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ + -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/${TESTSBASE} >/dev/null +.endif .endif .if defined(NO_ROOT) ${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.root.dist | \ @@ -900,10 +960,14 @@ distributeworld installworld: _installch sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG} ${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.include.dist | \ sed -e 's#^\./#./${dist}/usr/include/#' >> ${METALOG} +.if ${MK_LIB32} != "no" + ${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.lib32.dist | \ + sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG} +.endif .endif .endfor -mkdir ${DESTDIR}/${DISTDIR}/base - cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ + ${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ METALOG=${METALOG} ${IMAKE_INSTALL} ${IMAKE_MTREE} \ DISTBASE=/base DESTDIR=${DESTDIR}/${DISTDIR}/base \ LOCAL_MTREE=${LOCAL_MTREE:Q} distrib-dirs @@ -971,7 +1035,7 @@ packageworld: # and do a 'make reinstall' on the *client* to install new binaries from the # most recent server build. # -reinstall: .MAKE +reinstall: .MAKE .PHONY @echo "--------------------------------------------------------------" @echo ">>> Making hierarchy" @echo "--------------------------------------------------------------" @@ -986,7 +1050,7 @@ reinstall: .MAKE ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install32 .endif -redistribute: .MAKE +redistribute: .MAKE .PHONY @echo "--------------------------------------------------------------" @echo ">>> Distributing everything" @echo "--------------------------------------------------------------" @@ -996,12 +1060,12 @@ redistribute: .MAKE DISTRIBUTION=lib32 .endif -distrib-dirs: .MAKE - cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ +distrib-dirs: .MAKE .PHONY + ${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ ${IMAKE_INSTALL} ${IMAKE_MTREE} METALOG=${METALOG} ${.TARGET} -distribution: .MAKE - cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ +distribution: .MAKE .PHONY + ${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ ${IMAKE_INSTALL} ${IMAKE_MTREE} METALOG=${METALOG} ${.TARGET} ${_+_}cd ${.CURDIR}; ${CROSSENV} PATH=${TMPPATH} \ ${MAKE} -f Makefile.inc1 ${IMAKE_INSTALL} \ @@ -1054,14 +1118,14 @@ INSTALLKERNEL= ${_kernel} .endif .endfor -buildkernel ${WMAKE_TGTS} ${.ALLTARGETS:M_*}: .MAKE +${WMAKE_TGTS:N_worldtmp:Nbuild32} ${.ALLTARGETS:M_*:N_worldtmp}: .MAKE .PHONY # # buildkernel # # Builds all kernels defined by BUILDKERNELS. # -buildkernel: +buildkernel: .MAKE .PHONY .if empty(BUILDKERNELS) @echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \ false @@ -1088,14 +1152,14 @@ buildkernel: @echo "--------------------------------------------------------------" @echo ">>> stage 2.1: cleaning up the object tree" @echo "--------------------------------------------------------------" - cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR} + ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR} .endif .if !defined(NO_KERNELOBJ) @echo @echo "--------------------------------------------------------------" @echo ">>> stage 2.2: rebuilding the object tree" @echo "--------------------------------------------------------------" - cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj + ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj .endif @echo @echo "--------------------------------------------------------------" @@ -1107,13 +1171,13 @@ buildkernel: @echo "--------------------------------------------------------------" @echo ">>> stage 3.1: making dependencies" @echo "--------------------------------------------------------------" - cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} depend -DNO_MODULES_OBJ + ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} depend -DNO_MODULES_OBJ .endif @echo @echo "--------------------------------------------------------------" @echo ">>> stage 3.2: building everything" @echo "--------------------------------------------------------------" - cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ + ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ @echo "--------------------------------------------------------------" @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`" @echo "--------------------------------------------------------------" @@ -1214,12 +1278,12 @@ packagekernel: # # Build the API documentation with doxygen # -doxygen: +doxygen: .PHONY @if [ ! -x `/usr/bin/which doxygen` ]; then \ echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \ exit 1; \ fi - cd ${.CURDIR}/tools/kerneldoc/subsys && ${MAKE} obj all + ${_+_}cd ${.CURDIR}/tools/kerneldoc/subsys && ${MAKE} obj all # # update @@ -1310,10 +1374,10 @@ _sed= usr.bin/sed .endif .if ${BOOTSTRAPPING} < 1000002 -_libohash= lib/libohash +_libopenbsd= lib/libopenbsd _m4= usr.bin/m4 -${_bt}-usr.bin/m4: ${_bt}-lib/libohash +${_bt}-usr.bin/m4: ${_bt}-lib/libopenbsd .endif .if ${BOOTSTRAPPING} < 1000026 @@ -1386,17 +1450,14 @@ _kerberos5_bootstrap_tools= \ .endif .if ${MK_MANDOCDB} != "no" -_libohash?= lib/libohash +_libopenbsd?= lib/libopenbsd _makewhatis= lib/libsqlite3 \ usr.bin/mandoc -${_bt}-usr.bin/mandoc: ${_bt}-lib/libohash ${_bt}-lib/libsqlite3 +${_bt}-usr.bin/mandoc: ${_bt}-lib/libopenbsd ${_bt}-lib/libsqlite3 .else _makewhatis=usr.bin/makewhatis .endif -# Rebuild up-to-date libmd for xinstall -${_bt}-usr.bin/xinstall: ${_bt}-lib/libmd - bootstrap-tools: .PHONY # Please document (add comment) why something is in 'bootstrap-tools'. @@ -1412,20 +1473,20 @@ bootstrap-tools: .PHONY ${_awk} \ ${_cat} \ usr.bin/lorder \ - ${_libohash} \ + ${_libopenbsd} \ ${_makewhatis} \ usr.bin/rpcgen \ ${_sed} \ ${_yacc} \ ${_m4} \ ${_lex} \ - lib/libmd \ usr.bin/xinstall \ ${_gensnmptree} \ usr.sbin/config \ ${_crunch} \ ${_nmtree} \ - ${_vtfontcvt} + ${_vtfontcvt} \ + usr.bin/localedef ${_bt}-${_tool}: .PHONY .MAKE ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \ cd ${.CURDIR}/${_tool} && \ @@ -1453,7 +1514,6 @@ _gcc_tools= gnu/usr.bin/cc/cc_tools _rescue=rescue/rescue .endif -build-tools: .MAKE .for _tool in \ bin/csh \ bin/sh \ @@ -1467,24 +1527,28 @@ build-tools: .MAKE usr.bin/mkesdb_static \ usr.bin/mkcsmapper_static \ usr.bin/vi/catalog +build-tools_${_tool}: .PHONY ${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \ cd ${.CURDIR}/${_tool} && \ ${MAKE} DIRPRFX=${_tool}/ obj && \ ${MAKE} DIRPRFX=${_tool}/ build-tools +build-tools: build-tools_${_tool} .endfor .for _tool in \ ${_gcc_tools} +build-tools_${_tool}: .PHONY ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all)"; \ cd ${.CURDIR}/${_tool} && \ ${MAKE} DIRPRFX=${_tool}/ obj && \ ${MAKE} DIRPRFX=${_tool}/ depend && \ ${MAKE} DIRPRFX=${_tool}/ all +build-tools: build-tools_${_tool} .endfor # # kernel-tools: Build kernel-building tools # -kernel-tools: .MAKE +kernel-tools: mkdir -p ${MAKEOBJDIRPREFIX}/usr mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ -p ${MAKEOBJDIRPREFIX}/usr >/dev/null @@ -1531,7 +1595,7 @@ _elftctools= lib/libelftc \ # If an full path to an external cross compiler is given, don't build # a cross compiler. -.if ${XCC:M/*} == "" && ${MK_CROSS_COMPILER} != "no" +.if ${XCC:N${CCACHE_BIN}:M/*} == "" && ${MK_CROSS_COMPILER} != "no" .if ${MK_CLANG_BOOTSTRAP} != "no" _clang= usr.bin/clang _clang_libs= lib/clang @@ -1544,7 +1608,7 @@ _cc= gnu/usr.bin/cc _usb_tools= sys/boot/usb/tools .endif -cross-tools: .MAKE +cross-tools: .MAKE .PHONY .for _tool in \ ${_clang_libs} \ ${_clang} \ @@ -1563,13 +1627,13 @@ cross-tools: .MAKE ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install .endfor +NXBDESTDIR= ${OBJTREE}/nxb-bin NXBENV= MAKEOBJDIRPREFIX=${OBJTREE}/nxb \ INSTALL="sh ${.CURDIR}/tools/install.sh" \ - VERSION="${VERSION}" \ PATH=${PATH}:${OBJTREE}/gperf_for_gcc/usr/bin NXBMAKE= ${NXBENV} ${MAKE} \ - TBLGEN=${OBJTREE}/nxb-bin/usr/bin/tblgen \ - CLANG_TBLGEN=${OBJTREE}/nxb-bin/usr/bin/clang-tblgen \ + TBLGEN=${NXBDESTDIR}/usr/bin/tblgen \ + CLANG_TBLGEN=${NXBDESTDIR}/usr/bin/clang-tblgen \ MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH} \ MK_GDB=no MK_TESTS=no \ SSP_CFLAGS= \ @@ -1584,7 +1648,7 @@ NXBMAKE= ${NXBENV} ${MAKE} \ # For non-clang enabled targets that are still using the in tree gcc # we must build a gperf binary for one instance of its Makefiles. On # clang-enabled systems, the gperf binary is obsolete. -native-xtools: .MAKE +native-xtools: .PHONY .if ${MK_GCC_BOOTSTRAP} != "no" mkdir -p ${OBJTREE}/gperf_for_gcc/usr/bin ${_+_}@${ECHODIR} "===> ${_gperf} (obj,depend,all,install)"; \ @@ -1594,13 +1658,15 @@ native-xtools: .MAKE ${NXBMAKE} DIRPRFX=${_gperf}/ all && \ ${NXBMAKE} DIRPRFX=${_gperf}/ DESTDIR=${OBJTREE}/gperf_for_gcc install .endif - mkdir -p ${OBJTREE}/nxb-bin/bin - mkdir -p ${OBJTREE}/nxb-bin/sbin - mkdir -p ${OBJTREE}/nxb-bin/usr + mkdir -p ${NXBDESTDIR}/bin ${NXBDESTDIR}/sbin ${NXBDESTDIR}/usr mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ - -p ${OBJTREE}/nxb-bin/usr >/dev/null + -p ${NXBDESTDIR}/usr >/dev/null mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@freebsd.org Fri Nov 20 18:22:21 2015 Return-Path: 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 C2957A347AB for ; Fri, 20 Nov 2015 18:22:21 +0000 (UTC) (envelope-from sbruno@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 5BC501952; Fri, 20 Nov 2015 18:22:21 +0000 (UTC) (envelope-from sbruno@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAKIMKLL074600; Fri, 20 Nov 2015 18:22:20 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAKIMJxl074589; Fri, 20 Nov 2015 18:22:19 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201511201822.tAKIMJxl074589@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Fri, 20 Nov 2015 18:22:19 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r291107 - in projects/intel_net_refactor/sys: conf dev/e1000 dev/igb modules/em modules/igb X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Nov 2015 18:22:21 -0000 Author: sbruno Date: Fri Nov 20 18:22:19 2015 New Revision: 291107 URL: https://svnweb.freebsd.org/changeset/base/291107 Log: First pass. Move igb(4) out of sys/dev/e1000 with its own copy of "shared code" Remove the igb(4) related shared code files from sys/dev/e1000 Remove a coupld of em/lem conditionals in various switch/case statements from igb(4) code that shouldn't be there in the first place. Literally rename all symbols in igb(4) via s/e1000_/igb_/g that are global. I think I got all of them, but needs review. Added: projects/intel_net_refactor/sys/dev/igb/ - copied from r290770, projects/intel_net_refactor/sys/dev/e1000/ projects/intel_net_refactor/sys/dev/igb/igb_80003es2lan.h - copied unchanged from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_80003es2lan.h projects/intel_net_refactor/sys/dev/igb/igb_82541.h - copied unchanged from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_82541.h projects/intel_net_refactor/sys/dev/igb/igb_82543.h - copied unchanged from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_82543.h projects/intel_net_refactor/sys/dev/igb/igb_82571.h - copied unchanged from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_82571.h projects/intel_net_refactor/sys/dev/igb/igb_82575.c - copied, changed from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_82575.c projects/intel_net_refactor/sys/dev/igb/igb_82575.h - copied, changed from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_82575.h projects/intel_net_refactor/sys/dev/igb/igb_api.c - copied, changed from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_api.c projects/intel_net_refactor/sys/dev/igb/igb_api.h - copied, changed from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_api.h projects/intel_net_refactor/sys/dev/igb/igb_defines.h - copied unchanged from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_defines.h projects/intel_net_refactor/sys/dev/igb/igb_hw.h - copied, changed from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_hw.h projects/intel_net_refactor/sys/dev/igb/igb_i210.c - copied, changed from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_i210.c projects/intel_net_refactor/sys/dev/igb/igb_i210.h - copied, changed from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_i210.h projects/intel_net_refactor/sys/dev/igb/igb_ich8lan.h - copied unchanged from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_ich8lan.h projects/intel_net_refactor/sys/dev/igb/igb_mac.c - copied, changed from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_mac.c projects/intel_net_refactor/sys/dev/igb/igb_mac.h - copied, changed from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_mac.h projects/intel_net_refactor/sys/dev/igb/igb_manage.c - copied, changed from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_manage.c projects/intel_net_refactor/sys/dev/igb/igb_manage.h - copied, changed from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_manage.h projects/intel_net_refactor/sys/dev/igb/igb_mbx.c - copied, changed from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_mbx.c projects/intel_net_refactor/sys/dev/igb/igb_mbx.h - copied, changed from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_mbx.h projects/intel_net_refactor/sys/dev/igb/igb_nvm.c - copied, changed from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_nvm.c projects/intel_net_refactor/sys/dev/igb/igb_nvm.h - copied, changed from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_nvm.h projects/intel_net_refactor/sys/dev/igb/igb_osdep.c - copied, changed from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_osdep.c projects/intel_net_refactor/sys/dev/igb/igb_osdep.h - copied, changed from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_osdep.h projects/intel_net_refactor/sys/dev/igb/igb_phy.c - copied, changed from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_phy.c projects/intel_net_refactor/sys/dev/igb/igb_phy.h - copied, changed from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_phy.h projects/intel_net_refactor/sys/dev/igb/igb_regs.h - copied unchanged from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_regs.h projects/intel_net_refactor/sys/dev/igb/igb_vf.c - copied, changed from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_vf.c projects/intel_net_refactor/sys/dev/igb/igb_vf.h - copied, changed from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_vf.h Deleted: projects/intel_net_refactor/sys/dev/e1000/e1000_82575.c projects/intel_net_refactor/sys/dev/e1000/e1000_i210.c projects/intel_net_refactor/sys/dev/e1000/if_igb.c projects/intel_net_refactor/sys/dev/e1000/if_igb.h projects/intel_net_refactor/sys/dev/igb/LICENSE projects/intel_net_refactor/sys/dev/igb/README projects/intel_net_refactor/sys/dev/igb/e1000_80003es2lan.c projects/intel_net_refactor/sys/dev/igb/e1000_80003es2lan.h projects/intel_net_refactor/sys/dev/igb/e1000_82540.c projects/intel_net_refactor/sys/dev/igb/e1000_82541.c projects/intel_net_refactor/sys/dev/igb/e1000_82541.h projects/intel_net_refactor/sys/dev/igb/e1000_82542.c projects/intel_net_refactor/sys/dev/igb/e1000_82543.c projects/intel_net_refactor/sys/dev/igb/e1000_82543.h projects/intel_net_refactor/sys/dev/igb/e1000_82571.c projects/intel_net_refactor/sys/dev/igb/e1000_82571.h projects/intel_net_refactor/sys/dev/igb/e1000_82575.c projects/intel_net_refactor/sys/dev/igb/e1000_82575.h projects/intel_net_refactor/sys/dev/igb/e1000_api.c projects/intel_net_refactor/sys/dev/igb/e1000_api.h projects/intel_net_refactor/sys/dev/igb/e1000_defines.h projects/intel_net_refactor/sys/dev/igb/e1000_hw.h projects/intel_net_refactor/sys/dev/igb/e1000_i210.c projects/intel_net_refactor/sys/dev/igb/e1000_i210.h projects/intel_net_refactor/sys/dev/igb/e1000_ich8lan.c projects/intel_net_refactor/sys/dev/igb/e1000_ich8lan.h projects/intel_net_refactor/sys/dev/igb/e1000_mac.c projects/intel_net_refactor/sys/dev/igb/e1000_mac.h projects/intel_net_refactor/sys/dev/igb/e1000_manage.c projects/intel_net_refactor/sys/dev/igb/e1000_manage.h projects/intel_net_refactor/sys/dev/igb/e1000_mbx.c projects/intel_net_refactor/sys/dev/igb/e1000_mbx.h projects/intel_net_refactor/sys/dev/igb/e1000_nvm.c projects/intel_net_refactor/sys/dev/igb/e1000_nvm.h projects/intel_net_refactor/sys/dev/igb/e1000_osdep.c projects/intel_net_refactor/sys/dev/igb/e1000_osdep.h projects/intel_net_refactor/sys/dev/igb/e1000_phy.c projects/intel_net_refactor/sys/dev/igb/e1000_phy.h projects/intel_net_refactor/sys/dev/igb/e1000_regs.h projects/intel_net_refactor/sys/dev/igb/e1000_vf.c projects/intel_net_refactor/sys/dev/igb/e1000_vf.h projects/intel_net_refactor/sys/dev/igb/if_em.c projects/intel_net_refactor/sys/dev/igb/if_em.h projects/intel_net_refactor/sys/dev/igb/if_lem.c projects/intel_net_refactor/sys/dev/igb/if_lem.h Modified: projects/intel_net_refactor/sys/conf/files projects/intel_net_refactor/sys/dev/e1000/e1000_api.c projects/intel_net_refactor/sys/dev/e1000/e1000_nvm.c projects/intel_net_refactor/sys/dev/igb/if_igb.c projects/intel_net_refactor/sys/dev/igb/if_igb.h projects/intel_net_refactor/sys/modules/em/Makefile projects/intel_net_refactor/sys/modules/igb/Makefile Modified: projects/intel_net_refactor/sys/conf/files ============================================================================== --- projects/intel_net_refactor/sys/conf/files Fri Nov 20 18:10:02 2015 (r291106) +++ projects/intel_net_refactor/sys/conf/files Fri Nov 20 18:22:19 2015 (r291107) @@ -1335,25 +1335,19 @@ dev/e1000/if_em.c optional em \ compile-with "${NORMAL_C} -I$S/dev/e1000" dev/e1000/if_lem.c optional em \ compile-with "${NORMAL_C} -I$S/dev/e1000" -dev/e1000/if_igb.c optional igb \ +dev/e1000/e1000_80003es2lan.c optional em \ compile-with "${NORMAL_C} -I$S/dev/e1000" -dev/e1000/e1000_80003es2lan.c optional em | igb \ +dev/e1000/e1000_82540.c optional em \ compile-with "${NORMAL_C} -I$S/dev/e1000" -dev/e1000/e1000_82540.c optional em | igb \ +dev/e1000/e1000_82541.c optional em \ compile-with "${NORMAL_C} -I$S/dev/e1000" -dev/e1000/e1000_82541.c optional em | igb \ +dev/e1000/e1000_82542.c optional em \ compile-with "${NORMAL_C} -I$S/dev/e1000" -dev/e1000/e1000_82542.c optional em | igb \ +dev/e1000/e1000_82543.c optional em \ compile-with "${NORMAL_C} -I$S/dev/e1000" -dev/e1000/e1000_82543.c optional em | igb \ +dev/e1000/e1000_82571.c optional em \ compile-with "${NORMAL_C} -I$S/dev/e1000" -dev/e1000/e1000_82571.c optional em | igb \ - compile-with "${NORMAL_C} -I$S/dev/e1000" -dev/e1000/e1000_82575.c optional em | igb \ - compile-with "${NORMAL_C} -I$S/dev/e1000" -dev/e1000/e1000_ich8lan.c optional em | igb \ - compile-with "${NORMAL_C} -I$S/dev/e1000" -dev/e1000/e1000_i210.c optional em | igb \ +dev/e1000/e1000_ich8lan.c optional em \ compile-with "${NORMAL_C} -I$S/dev/e1000" dev/e1000/e1000_api.c optional em | igb \ compile-with "${NORMAL_C} -I$S/dev/e1000" @@ -1371,6 +1365,30 @@ dev/e1000/e1000_mbx.c optional em | igb compile-with "${NORMAL_C} -I$S/dev/e1000" dev/e1000/e1000_osdep.c optional em | igb \ compile-with "${NORMAL_C} -I$S/dev/e1000" + +dev/igb/if_igb.c optional igb \ + compile-with "${NORMAL_C} -I$S/dev/igb" +dev/igb/igb_82575.c optional igb \ + compile-with "${NORMAL_C} -I$S/dev/igb" +dev/igb/igb_i210.c optional igb \ + compile-with "${NORMAL_C} -I$S/dev/igb" +dev/igb/igb_api.c optional igb \ + compile-with "${NORMAL_C} -I$S/dev/igb" +dev/igb/igb_mac.c optional igb \ + compile-with "${NORMAL_C} -I$S/dev/igb" +dev/igb/igb_manage.c optional igb \ + compile-with "${NORMAL_C} -I$S/dev/igb" +dev/igb/igb_nvm.c optional igb \ + compile-with "${NORMAL_C} -I$S/dev/igb" +dev/igb/igb_phy.c optional igb \ + compile-with "${NORMAL_C} -I$S/dev/igb" +dev/igb/igb_vf.c optional igb \ + compile-with "${NORMAL_C} -I$S/dev/igb" +dev/igb/igb_mbx.c optional igb \ + compile-with "${NORMAL_C} -I$S/dev/igb" +dev/igb/igb_osdep.c optional igb \ + compile-with "${NORMAL_C} -I$S/dev/igb" + dev/et/if_et.c optional et dev/en/if_en_pci.c optional en pci dev/en/midway.c optional en Modified: projects/intel_net_refactor/sys/dev/e1000/e1000_api.c ============================================================================== --- projects/intel_net_refactor/sys/dev/e1000/e1000_api.c Fri Nov 20 18:10:02 2015 (r291106) +++ projects/intel_net_refactor/sys/dev/e1000/e1000_api.c Fri Nov 20 18:22:19 2015 (r291107) @@ -451,17 +451,6 @@ s32 e1000_setup_init_funcs(struct e1000_ case e1000_pch_lpt: e1000_init_function_pointers_ich8lan(hw); break; - case e1000_82575: - case e1000_82576: - case e1000_82580: - case e1000_i350: - case e1000_i354: - e1000_init_function_pointers_82575(hw); - break; - case e1000_i210: - case e1000_i211: - e1000_init_function_pointers_i210(hw); - break; case e1000_vfadapt: e1000_init_function_pointers_vf(hw); break; Modified: projects/intel_net_refactor/sys/dev/e1000/e1000_nvm.c ============================================================================== --- projects/intel_net_refactor/sys/dev/e1000/e1000_nvm.c Fri Nov 20 18:10:02 2015 (r291106) +++ projects/intel_net_refactor/sys/dev/e1000/e1000_nvm.c Fri Nov 20 18:22:19 2015 (r291107) @@ -775,12 +775,6 @@ s32 e1000_read_pba_string_generic(struct DEBUGFUNC("e1000_read_pba_string_generic"); - if ((hw->mac.type >= e1000_i210) && - !e1000_get_flash_presence_i210(hw)) { - DEBUGOUT("Flashless no PBA string\n"); - return -E1000_ERR_NVM_PBA_SECTION; - } - if (pba_num == NULL) { DEBUGOUT("PBA string buffer was null\n"); return -E1000_ERR_INVALID_ARGUMENT; Modified: projects/intel_net_refactor/sys/dev/igb/if_igb.c ============================================================================== --- projects/intel_net_refactor/sys/dev/e1000/if_igb.c Fri Nov 13 16:35:22 2015 (r290770) +++ projects/intel_net_refactor/sys/dev/igb/if_igb.c Fri Nov 20 18:22:19 2015 (r291107) @@ -445,13 +445,13 @@ igb_attach(device_t dev) } /* Do Shared Code initialization */ - if (e1000_setup_init_funcs(&adapter->hw, TRUE)) { + if (igb_setup_init_funcs(&adapter->hw, TRUE)) { device_printf(dev, "Setup of Shared code failed\n"); error = ENXIO; goto err_pci; } - e1000_get_bus_info(&adapter->hw); + igb_get_bus_info(&adapter->hw); /* Sysctl for limiting the amount of work done in the taskqueue */ igb_set_sysctl_value(adapter, "rx_processing_limit", @@ -541,9 +541,9 @@ igb_attach(device_t dev) "Disable Energy Efficient Ethernet"); if (adapter->hw.phy.media_type == e1000_media_type_copper) { if (adapter->hw.mac.type == e1000_i354) - e1000_set_eee_i354(&adapter->hw); + igb_set_eee_i354(&adapter->hw); else - e1000_set_eee_i350(&adapter->hw); + igb_set_eee_i350(&adapter->hw); } } @@ -552,18 +552,18 @@ igb_attach(device_t dev) ** important in reading the nvm and ** mac from that. */ - e1000_reset_hw(&adapter->hw); + igb_reset_hw(&adapter->hw); /* Make sure we have a good EEPROM before we read from it */ if (((adapter->hw.mac.type != e1000_i210) && (adapter->hw.mac.type != e1000_i211)) && - (e1000_validate_nvm_checksum(&adapter->hw) < 0)) { + (igb_validate_nvm_checksum(&adapter->hw) < 0)) { /* ** Some PCI-E parts fail the first check due to ** the link being in sleep state, call it again, ** if it fails a second time its a real issue. */ - if (e1000_validate_nvm_checksum(&adapter->hw) < 0) { + if (igb_validate_nvm_checksum(&adapter->hw) < 0) { device_printf(dev, "The EEPROM Checksum Is Not Valid\n"); error = EIO; @@ -574,7 +574,7 @@ igb_attach(device_t dev) /* ** Copy the permanent MAC address out of the EEPROM */ - if (e1000_read_mac_addr(&adapter->hw) < 0) { + if (igb_read_mac_addr(&adapter->hw) < 0) { device_printf(dev, "EEPROM read error while reading MAC" " address\n"); error = EIO; @@ -601,12 +601,12 @@ igb_attach(device_t dev) igb_update_link_status(adapter); /* Indicate SOL/IDER usage */ - if (e1000_check_reset_block(&adapter->hw)) + if (igb_check_reset_block(&adapter->hw)) device_printf(dev, "PHY reset is blocked due to SOL/IDER session.\n"); /* Determine if we have to control management hardware */ - adapter->has_manage = e1000_enable_mng_pass_thru(&adapter->hw); + adapter->has_manage = igb_enable_mng_pass_thru(&adapter->hw); /* * Setup Wake-on-Lan @@ -702,7 +702,7 @@ igb_detach(device_t dev) igb_stop(adapter); IGB_CORE_UNLOCK(adapter); - e1000_phy_hw_reset(&adapter->hw); + igb_phy_hw_reset(&adapter->hw); /* Give control back to firmware */ igb_release_manageability(adapter); @@ -1135,7 +1135,7 @@ igb_ioctl(struct ifnet *ifp, u_long comm case SIOCSIFMEDIA: /* Check SOL/IDER usage */ IGB_CORE_LOCK(adapter); - if (e1000_check_reset_block(&adapter->hw)) { + if (igb_check_reset_block(&adapter->hw)) { IGB_CORE_UNLOCK(adapter); device_printf(adapter->dev, "Media change is" " blocked due to SOL/IDER session.\n"); @@ -1246,7 +1246,7 @@ igb_init_locked(struct adapter *adapter) ETHER_ADDR_LEN); /* Put the address into the Receive Address Array */ - e1000_rar_set(&adapter->hw, adapter->hw.mac.addr, 0); + igb_rar_set(&adapter->hw, adapter->hw.mac.addr, 0); igb_reset(adapter); igb_update_link_status(adapter); @@ -1294,7 +1294,7 @@ igb_init_locked(struct adapter *adapter) return; } igb_initialize_receive_units(adapter); - e1000_rx_fifo_flush_82575(&adapter->hw); + igb_rx_fifo_flush_82575(&adapter->hw); /* Enable VLAN support */ if (ifp->if_capenable & IFCAP_VLAN_HWTAGGING) @@ -1307,7 +1307,7 @@ igb_init_locked(struct adapter *adapter) ifp->if_drv_flags &= ~IFF_DRV_OACTIVE; callout_reset(&adapter->timer, hz, igb_local_timer, adapter); - e1000_clear_hw_cntrs_base_generic(&adapter->hw); + igb_clear_hw_cntrs_base_generic(&adapter->hw); if (adapter->msix > 1) /* Set up queue routing */ igb_configure_queues(adapter); @@ -1331,9 +1331,9 @@ igb_init_locked(struct adapter *adapter) /* Set Energy Efficient Ethernet */ if (adapter->hw.phy.media_type == e1000_media_type_copper) { if (adapter->hw.mac.type == e1000_i354) - e1000_set_eee_i354(&adapter->hw); + igb_set_eee_i354(&adapter->hw); else - e1000_set_eee_i350(&adapter->hw); + igb_set_eee_i350(&adapter->hw); } } @@ -1925,7 +1925,7 @@ igb_set_promisc(struct adapter *adapter) u32 reg; if (adapter->vf_ifp) { - e1000_promisc_set_vf(hw, e1000_promisc_enabled); + igb_promisc_set_vf(hw, e1000_promisc_enabled); return; } @@ -1949,7 +1949,7 @@ igb_disable_promisc(struct adapter *adap int mcnt = 0; if (adapter->vf_ifp) { - e1000_promisc_set_vf(hw, e1000_promisc_disabled); + igb_promisc_set_vf(hw, e1000_promisc_disabled); return; } reg = E1000_READ_REG(hw, E1000_RCTL); @@ -2033,7 +2033,7 @@ igb_set_multi(struct adapter *adapter) reg_rctl |= E1000_RCTL_MPE; E1000_WRITE_REG(&adapter->hw, E1000_RCTL, reg_rctl); } else - e1000_update_mc_addr_list(&adapter->hw, mta, mcnt); + igb_update_mc_addr_list(&adapter->hw, mta, mcnt); } @@ -2121,23 +2121,23 @@ igb_update_link_status(struct adapter *a case e1000_media_type_copper: if (hw->mac.get_link_status) { /* Do the work to read phy */ - e1000_check_for_link(hw); + igb_check_for_link(hw); link_check = !hw->mac.get_link_status; } else link_check = TRUE; break; case e1000_media_type_fiber: - e1000_check_for_link(hw); + igb_check_for_link(hw); link_check = (E1000_READ_REG(hw, E1000_STATUS) & E1000_STATUS_LU); break; case e1000_media_type_internal_serdes: - e1000_check_for_link(hw); + igb_check_for_link(hw); link_check = adapter->hw.mac.serdes_has_link; break; /* VF device is type_unknown */ case e1000_media_type_unknown: - e1000_check_for_link(hw); + igb_check_for_link(hw); link_check = !hw->mac.get_link_status; /* Fall thru */ default: @@ -2169,7 +2169,7 @@ igb_update_link_status(struct adapter *a /* Now we check if a transition has happened */ if (link_check && (adapter->link_active == 0)) { - e1000_get_speed_and_duplex(&adapter->hw, + igb_get_speed_and_duplex(&adapter->hw, &adapter->link_speed, &adapter->link_duplex); if (bootverbose) device_printf(dev, "Link is up %d Mbps %s," @@ -2245,11 +2245,11 @@ igb_stop(void *arg) IGB_TX_UNLOCK(txr); } - e1000_reset_hw(&adapter->hw); + igb_reset_hw(&adapter->hw); E1000_WRITE_REG(&adapter->hw, E1000_WUC, 0); - e1000_led_off(&adapter->hw); - e1000_cleanup_led(&adapter->hw); + igb_led_off(&adapter->hw); + igb_cleanup_led(&adapter->hw); } @@ -2277,7 +2277,7 @@ igb_identify_hardware(struct adapter *ad pci_read_config(dev, PCIR_SUBDEV_0, 2); /* Set MAC type early for PCI setup */ - e1000_set_mac_type(&adapter->hw); + igb_set_mac_type(&adapter->hw); /* Are we a VF device? */ if ((adapter->hw.mac.type == e1000_vfadapt) || @@ -3016,7 +3016,7 @@ igb_reset(struct adapter *adapter) case e1000_i354: case e1000_vfadapt_i350: pba = E1000_READ_REG(hw, E1000_RXPBS); - pba = e1000_rxpbs_adjust_82580(pba); + pba = igb_rxpbs_adjust_82580(pba); break; case e1000_i210: case e1000_i211: @@ -3081,25 +3081,25 @@ igb_reset(struct adapter *adapter) fc->requested_mode = e1000_fc_default; /* Issue a global reset */ - e1000_reset_hw(hw); + igb_reset_hw(hw); E1000_WRITE_REG(hw, E1000_WUC, 0); /* Reset for AutoMediaDetect */ if (adapter->flags & IGB_MEDIA_RESET) { - e1000_setup_init_funcs(hw, TRUE); - e1000_get_bus_info(hw); + igb_setup_init_funcs(hw, TRUE); + igb_get_bus_info(hw); adapter->flags &= ~IGB_MEDIA_RESET; } - if (e1000_init_hw(hw) < 0) + if (igb_init_hw(hw) < 0) device_printf(dev, "Hardware Initialization Failed\n"); /* Setup DMA Coalescing */ igb_init_dmac(adapter, pba); E1000_WRITE_REG(&adapter->hw, E1000_VET, ETHERTYPE_VLAN); - e1000_get_phy_info(hw); - e1000_check_for_link(hw); + igb_get_phy_info(hw); + igb_check_for_link(hw); return; } @@ -3621,7 +3621,7 @@ igb_initialize_transmit_units(struct ada if (adapter->vf_ifp) return; - e1000_config_collision_dist(hw); + igb_config_collision_dist(hw); /* Program the Transmit Control Register */ tctl = E1000_READ_REG(hw, E1000_TCTL); @@ -5266,7 +5266,7 @@ igb_setup_vlan_hw_support(struct adapter u32 reg; if (adapter->vf_ifp) { - e1000_rlpml_set_vf(hw, + igb_rlpml_set_vf(hw, adapter->max_frame_size + VLAN_TAG_SIZE); return; } @@ -5298,10 +5298,10 @@ igb_setup_vlan_hw_support(struct adapter for (int i = 0; i < IGB_VFTA_SIZE; i++) if (adapter->shadow_vfta[i] != 0) { if (adapter->vf_ifp) - e1000_vfta_set_vf(hw, + igb_vfta_set_vf(hw, adapter->shadow_vfta[i], TRUE); else - e1000_write_vfta(hw, + igb_write_vfta(hw, i, adapter->shadow_vfta[i]); } } @@ -5464,11 +5464,11 @@ igb_led_func(void *arg, int onoff) IGB_CORE_LOCK(adapter); if (onoff) { - e1000_setup_led(&adapter->hw); - e1000_led_on(&adapter->hw); + igb_setup_led(&adapter->hw); + igb_led_on(&adapter->hw); } else { - e1000_led_off(&adapter->hw); - e1000_cleanup_led(&adapter->hw); + igb_led_off(&adapter->hw); + igb_cleanup_led(&adapter->hw); } IGB_CORE_UNLOCK(adapter); } @@ -6252,7 +6252,7 @@ igb_print_nvm_info(struct adapter *adapt j = 0; ++row; printf("\n0x00%x0 ",row); } - e1000_read_nvm(&adapter->hw, i, 1, &eeprom_data); + igb_read_nvm(&adapter->hw, i, 1, &eeprom_data); printf("%04x ", eeprom_data); } printf("\n"); @@ -6302,7 +6302,7 @@ igb_set_flowcntl(SYSCTL_HANDLER_ARGS) } adapter->hw.fc.current_mode = adapter->hw.fc.requested_mode; - e1000_force_mac_fc(&adapter->hw); + igb_force_mac_fc(&adapter->hw); /* XXX TODO: update DROP_EN on each RX queue if appropriate */ return (error); } Modified: projects/intel_net_refactor/sys/dev/igb/if_igb.h ============================================================================== --- projects/intel_net_refactor/sys/dev/e1000/if_igb.h Fri Nov 13 16:35:22 2015 (r290770) +++ projects/intel_net_refactor/sys/dev/igb/if_igb.h Fri Nov 20 18:22:19 2015 (r291107) @@ -88,8 +88,8 @@ #include #include -#include "e1000_api.h" -#include "e1000_82575.h" +#include "igb_api.h" +#include "igb_82575.h" /* Tunables */ /* Copied: projects/intel_net_refactor/sys/dev/igb/igb_80003es2lan.h (from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_80003es2lan.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/intel_net_refactor/sys/dev/igb/igb_80003es2lan.h Fri Nov 20 18:22:19 2015 (r291107, copy of r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_80003es2lan.h) @@ -0,0 +1,101 @@ +/****************************************************************************** + + Copyright (c) 2001-2015, Intel Corporation + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + 3. Neither the name of the Intel Corporation nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + +******************************************************************************/ +/*$FreeBSD$*/ + +#ifndef _E1000_80003ES2LAN_H_ +#define _E1000_80003ES2LAN_H_ + +#define E1000_KMRNCTRLSTA_OFFSET_FIFO_CTRL 0x00 +#define E1000_KMRNCTRLSTA_OFFSET_INB_CTRL 0x02 +#define E1000_KMRNCTRLSTA_OFFSET_HD_CTRL 0x10 +#define E1000_KMRNCTRLSTA_OFFSET_MAC2PHY_OPMODE 0x1F + +#define E1000_KMRNCTRLSTA_FIFO_CTRL_RX_BYPASS 0x0008 +#define E1000_KMRNCTRLSTA_FIFO_CTRL_TX_BYPASS 0x0800 +#define E1000_KMRNCTRLSTA_INB_CTRL_DIS_PADDING 0x0010 + +#define E1000_KMRNCTRLSTA_HD_CTRL_10_100_DEFAULT 0x0004 +#define E1000_KMRNCTRLSTA_HD_CTRL_1000_DEFAULT 0x0000 +#define E1000_KMRNCTRLSTA_OPMODE_E_IDLE 0x2000 + +#define E1000_KMRNCTRLSTA_OPMODE_MASK 0x000C +#define E1000_KMRNCTRLSTA_OPMODE_INBAND_MDIO 0x0004 + +#define E1000_TCTL_EXT_GCEX_MASK 0x000FFC00 /* Gig Carry Extend Padding */ +#define DEFAULT_TCTL_EXT_GCEX_80003ES2LAN 0x00010000 + +#define DEFAULT_TIPG_IPGT_1000_80003ES2LAN 0x8 +#define DEFAULT_TIPG_IPGT_10_100_80003ES2LAN 0x9 + +/* GG82563 PHY Specific Status Register (Page 0, Register 16 */ +#define GG82563_PSCR_POLARITY_REVERSAL_DISABLE 0x0002 /* 1=Reversal Dis */ +#define GG82563_PSCR_CROSSOVER_MODE_MASK 0x0060 +#define GG82563_PSCR_CROSSOVER_MODE_MDI 0x0000 /* 00=Manual MDI */ +#define GG82563_PSCR_CROSSOVER_MODE_MDIX 0x0020 /* 01=Manual MDIX */ +#define GG82563_PSCR_CROSSOVER_MODE_AUTO 0x0060 /* 11=Auto crossover */ + +/* PHY Specific Control Register 2 (Page 0, Register 26) */ +#define GG82563_PSCR2_REVERSE_AUTO_NEG 0x2000 /* 1=Reverse Auto-Neg */ + +/* MAC Specific Control Register (Page 2, Register 21) */ +/* Tx clock speed for Link Down and 1000BASE-T for the following speeds */ +#define GG82563_MSCR_TX_CLK_MASK 0x0007 +#define GG82563_MSCR_TX_CLK_10MBPS_2_5 0x0004 +#define GG82563_MSCR_TX_CLK_100MBPS_25 0x0005 +#define GG82563_MSCR_TX_CLK_1000MBPS_25 0x0007 + +#define GG82563_MSCR_ASSERT_CRS_ON_TX 0x0010 /* 1=Assert */ + +/* DSP Distance Register (Page 5, Register 26) + * 0 = <50M + * 1 = 50-80M + * 2 = 80-100M + * 3 = 110-140M + * 4 = >140M + */ +#define GG82563_DSPD_CABLE_LENGTH 0x0007 + +/* Kumeran Mode Control Register (Page 193, Register 16) */ +#define GG82563_KMCR_PASS_FALSE_CARRIER 0x0800 + +/* Max number of times Kumeran read/write should be validated */ +#define GG82563_MAX_KMRN_RETRY 0x5 + +/* Power Management Control Register (Page 193, Register 20) */ +/* 1=Enable SERDES Electrical Idle */ +#define GG82563_PMCR_ENABLE_ELECTRICAL_IDLE 0x0001 + +/* In-Band Control Register (Page 194, Register 18) */ +#define GG82563_ICR_DIS_PADDING 0x0010 /* Disable Padding */ + +#endif Copied: projects/intel_net_refactor/sys/dev/igb/igb_82541.h (from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_82541.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/intel_net_refactor/sys/dev/igb/igb_82541.h Fri Nov 20 18:22:19 2015 (r291107, copy of r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_82541.h) @@ -0,0 +1,92 @@ +/****************************************************************************** + + Copyright (c) 2001-2015, Intel Corporation + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + 3. Neither the name of the Intel Corporation nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + +******************************************************************************/ +/*$FreeBSD$*/ + +#ifndef _E1000_82541_H_ +#define _E1000_82541_H_ + +#define NVM_WORD_SIZE_BASE_SHIFT_82541 (NVM_WORD_SIZE_BASE_SHIFT + 1) + +#define IGP01E1000_PHY_CHANNEL_NUM 4 + +#define IGP01E1000_PHY_AGC_A 0x1172 +#define IGP01E1000_PHY_AGC_B 0x1272 +#define IGP01E1000_PHY_AGC_C 0x1472 +#define IGP01E1000_PHY_AGC_D 0x1872 + +#define IGP01E1000_PHY_AGC_PARAM_A 0x1171 +#define IGP01E1000_PHY_AGC_PARAM_B 0x1271 +#define IGP01E1000_PHY_AGC_PARAM_C 0x1471 +#define IGP01E1000_PHY_AGC_PARAM_D 0x1871 + +#define IGP01E1000_PHY_EDAC_MU_INDEX 0xC000 +#define IGP01E1000_PHY_EDAC_SIGN_EXT_9_BITS 0x8000 + +#define IGP01E1000_PHY_DSP_RESET 0x1F33 + +#define IGP01E1000_PHY_DSP_FFE 0x1F35 +#define IGP01E1000_PHY_DSP_FFE_CM_CP 0x0069 +#define IGP01E1000_PHY_DSP_FFE_DEFAULT 0x002A + +#define IGP01E1000_IEEE_FORCE_GIG 0x0140 +#define IGP01E1000_IEEE_RESTART_AUTONEG 0x3300 + +#define IGP01E1000_AGC_LENGTH_SHIFT 7 +#define IGP01E1000_AGC_RANGE 10 + +#define FFE_IDLE_ERR_COUNT_TIMEOUT_20 20 +#define FFE_IDLE_ERR_COUNT_TIMEOUT_100 100 + +#define IGP01E1000_ANALOG_FUSE_STATUS 0x20D0 +#define IGP01E1000_ANALOG_SPARE_FUSE_STATUS 0x20D1 +#define IGP01E1000_ANALOG_FUSE_CONTROL 0x20DC +#define IGP01E1000_ANALOG_FUSE_BYPASS 0x20DE + +#define IGP01E1000_ANALOG_SPARE_FUSE_ENABLED 0x0100 +#define IGP01E1000_ANALOG_FUSE_FINE_MASK 0x0F80 +#define IGP01E1000_ANALOG_FUSE_COARSE_MASK 0x0070 +#define IGP01E1000_ANALOG_FUSE_COARSE_THRESH 0x0040 +#define IGP01E1000_ANALOG_FUSE_COARSE_10 0x0010 +#define IGP01E1000_ANALOG_FUSE_FINE_1 0x0080 +#define IGP01E1000_ANALOG_FUSE_FINE_10 0x0500 +#define IGP01E1000_ANALOG_FUSE_POLY_MASK 0xF000 +#define IGP01E1000_ANALOG_FUSE_ENABLE_SW_CONTROL 0x0002 + +#define IGP01E1000_MSE_CHANNEL_D 0x000F +#define IGP01E1000_MSE_CHANNEL_C 0x00F0 +#define IGP01E1000_MSE_CHANNEL_B 0x0F00 +#define IGP01E1000_MSE_CHANNEL_A 0xF000 + + +void e1000_init_script_state_82541(struct e1000_hw *hw, bool state); +#endif Copied: projects/intel_net_refactor/sys/dev/igb/igb_82543.h (from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_82543.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/intel_net_refactor/sys/dev/igb/igb_82543.h Fri Nov 20 18:22:19 2015 (r291107, copy of r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_82543.h) @@ -0,0 +1,57 @@ +/****************************************************************************** + + Copyright (c) 2001-2015, Intel Corporation + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + 3. Neither the name of the Intel Corporation nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + +******************************************************************************/ +/*$FreeBSD$*/ + +#ifndef _E1000_82543_H_ +#define _E1000_82543_H_ + +#define PHY_PREAMBLE 0xFFFFFFFF +#define PHY_PREAMBLE_SIZE 32 +#define PHY_SOF 0x1 +#define PHY_OP_READ 0x2 +#define PHY_OP_WRITE 0x1 +#define PHY_TURNAROUND 0x2 + +#define TBI_COMPAT_ENABLED 0x1 /* Global "knob" for the workaround */ +/* If TBI_COMPAT_ENABLED, then this is the current state (on/off) */ +#define TBI_SBP_ENABLED 0x2 + +void e1000_tbi_adjust_stats_82543(struct e1000_hw *hw, + struct e1000_hw_stats *stats, + u32 frame_len, u8 *mac_addr, + u32 max_frame_size); +void e1000_set_tbi_compatibility_82543(struct e1000_hw *hw, + bool state); +bool e1000_tbi_sbp_enabled_82543(struct e1000_hw *hw); + +#endif Copied: projects/intel_net_refactor/sys/dev/igb/igb_82571.h (from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_82571.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/intel_net_refactor/sys/dev/igb/igb_82571.h Fri Nov 20 18:22:19 2015 (r291107, copy of r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_82571.h) @@ -0,0 +1,65 @@ +/****************************************************************************** + + Copyright (c) 2001-2015, Intel Corporation + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + 3. Neither the name of the Intel Corporation nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + +******************************************************************************/ +/*$FreeBSD$*/ + +#ifndef _E1000_82571_H_ +#define _E1000_82571_H_ + +#define ID_LED_RESERVED_F746 0xF746 +#define ID_LED_DEFAULT_82573 ((ID_LED_DEF1_DEF2 << 12) | \ + (ID_LED_OFF1_ON2 << 8) | \ + (ID_LED_DEF1_DEF2 << 4) | \ + (ID_LED_DEF1_DEF2)) + +#define E1000_GCR_L1_ACT_WITHOUT_L0S_RX 0x08000000 +#define AN_RETRY_COUNT 5 /* Autoneg Retry Count value */ + +/* Intr Throttling - RW */ +#define E1000_EITR_82574(_n) (0x000E8 + (0x4 * (_n))) + +#define E1000_EIAC_82574 0x000DC /* Ext. Interrupt Auto Clear - RW */ +#define E1000_EIAC_MASK_82574 0x01F00000 + +#define E1000_NVM_INIT_CTRL2_MNGM 0x6000 /* Manageability Operation Mode mask */ + +#define E1000_RXCFGL 0x0B634 /* TimeSync Rx EtherType & Msg Type Reg - RW */ + +#define E1000_BASE1000T_STATUS 10 +#define E1000_IDLE_ERROR_COUNT_MASK 0xFF +#define E1000_RECEIVE_ERROR_COUNTER 21 +#define E1000_RECEIVE_ERROR_MAX 0xFFFF +bool e1000_check_phy_82574(struct e1000_hw *hw); +bool e1000_get_laa_state_82571(struct e1000_hw *hw); +void e1000_set_laa_state_82571(struct e1000_hw *hw, bool state); + +#endif Copied and modified: projects/intel_net_refactor/sys/dev/igb/igb_82575.c (from r290770, projects/intel_net_refactor/sys/dev/e1000/e1000_82575.c) ============================================================================== --- projects/intel_net_refactor/sys/dev/e1000/e1000_82575.c Fri Nov 13 16:35:22 2015 (r290770, copy source) +++ projects/intel_net_refactor/sys/dev/igb/igb_82575.c Fri Nov 20 18:22:19 2015 (r291107) @@ -42,79 +42,79 @@ * I350 Gigabit Network Connection */ -#include "e1000_api.h" -#include "e1000_i210.h" +#include "igb_api.h" +#include "igb_i210.h" -static s32 e1000_init_phy_params_82575(struct e1000_hw *hw); -static s32 e1000_init_mac_params_82575(struct e1000_hw *hw); -static s32 e1000_acquire_phy_82575(struct e1000_hw *hw); -static void e1000_release_phy_82575(struct e1000_hw *hw); -static s32 e1000_acquire_nvm_82575(struct e1000_hw *hw); -static void e1000_release_nvm_82575(struct e1000_hw *hw); -static s32 e1000_check_for_link_82575(struct e1000_hw *hw); -static s32 e1000_check_for_link_media_swap(struct e1000_hw *hw); -static s32 e1000_get_cfg_done_82575(struct e1000_hw *hw); -static s32 e1000_get_link_up_info_82575(struct e1000_hw *hw, u16 *speed, +static s32 igb_init_phy_params_82575(struct e1000_hw *hw); +static s32 igb_init_mac_params_82575(struct e1000_hw *hw); +static s32 igb_acquire_phy_82575(struct e1000_hw *hw); +static void igb_release_phy_82575(struct e1000_hw *hw); +static s32 igb_acquire_nvm_82575(struct e1000_hw *hw); +static void igb_release_nvm_82575(struct e1000_hw *hw); +static s32 igb_check_for_link_82575(struct e1000_hw *hw); +static s32 igb_check_for_link_media_swap(struct e1000_hw *hw); +static s32 igb_get_cfg_done_82575(struct e1000_hw *hw); +static s32 igb_get_link_up_info_82575(struct e1000_hw *hw, u16 *speed, u16 *duplex); -static s32 e1000_phy_hw_reset_sgmii_82575(struct e1000_hw *hw); -static s32 e1000_read_phy_reg_sgmii_82575(struct e1000_hw *hw, u32 offset, +static s32 igb_phy_hw_reset_sgmii_82575(struct e1000_hw *hw); +static s32 igb_read_phy_reg_sgmii_82575(struct e1000_hw *hw, u32 offset, u16 *data); -static s32 e1000_reset_hw_82575(struct e1000_hw *hw); -static s32 e1000_reset_hw_82580(struct e1000_hw *hw); -static s32 e1000_read_phy_reg_82580(struct e1000_hw *hw, +static s32 igb_reset_hw_82575(struct e1000_hw *hw); +static s32 igb_reset_hw_82580(struct e1000_hw *hw); +static s32 igb_read_phy_reg_82580(struct e1000_hw *hw, u32 offset, u16 *data); -static s32 e1000_write_phy_reg_82580(struct e1000_hw *hw, +static s32 igb_write_phy_reg_82580(struct e1000_hw *hw, u32 offset, u16 data); -static s32 e1000_set_d0_lplu_state_82580(struct e1000_hw *hw, +static s32 igb_set_d0_lplu_state_82580(struct e1000_hw *hw, bool active); -static s32 e1000_set_d3_lplu_state_82580(struct e1000_hw *hw, +static s32 igb_set_d3_lplu_state_82580(struct e1000_hw *hw, bool active); -static s32 e1000_set_d0_lplu_state_82575(struct e1000_hw *hw, +static s32 igb_set_d0_lplu_state_82575(struct e1000_hw *hw, bool active); -static s32 e1000_setup_copper_link_82575(struct e1000_hw *hw); -static s32 e1000_setup_serdes_link_82575(struct e1000_hw *hw); -static s32 e1000_get_media_type_82575(struct e1000_hw *hw); -static s32 e1000_set_sfp_media_type_82575(struct e1000_hw *hw); -static s32 e1000_valid_led_default_82575(struct e1000_hw *hw, u16 *data); -static s32 e1000_write_phy_reg_sgmii_82575(struct e1000_hw *hw, +static s32 igb_setup_copper_link_82575(struct e1000_hw *hw); +static s32 igb_setup_serdes_link_82575(struct e1000_hw *hw); +static s32 igb_get_media_type_82575(struct e1000_hw *hw); +static s32 igb_set_sfp_media_type_82575(struct e1000_hw *hw); +static s32 igb_valid_led_default_82575(struct e1000_hw *hw, u16 *data); +static s32 igb_write_phy_reg_sgmii_82575(struct e1000_hw *hw, u32 offset, u16 data); -static void e1000_clear_hw_cntrs_82575(struct e1000_hw *hw); -static s32 e1000_acquire_swfw_sync_82575(struct e1000_hw *hw, u16 mask); -static s32 e1000_get_pcs_speed_and_duplex_82575(struct e1000_hw *hw, +static void igb_clear_hw_cntrs_82575(struct e1000_hw *hw); +static s32 igb_acquire_swfw_sync_82575(struct e1000_hw *hw, u16 mask); +static s32 igb_get_pcs_speed_and_duplex_82575(struct e1000_hw *hw, u16 *speed, u16 *duplex); -static s32 e1000_get_phy_id_82575(struct e1000_hw *hw); -static void e1000_release_swfw_sync_82575(struct e1000_hw *hw, u16 mask); -static bool e1000_sgmii_active_82575(struct e1000_hw *hw); -static s32 e1000_reset_init_script_82575(struct e1000_hw *hw); -static s32 e1000_read_mac_addr_82575(struct e1000_hw *hw); -static void e1000_config_collision_dist_82575(struct e1000_hw *hw); -static void e1000_power_down_phy_copper_82575(struct e1000_hw *hw); -static void e1000_shutdown_serdes_link_82575(struct e1000_hw *hw); -static void e1000_power_up_serdes_link_82575(struct e1000_hw *hw); -static s32 e1000_set_pcie_completion_timeout(struct e1000_hw *hw); -static s32 e1000_reset_mdicnfg_82580(struct e1000_hw *hw); -static s32 e1000_validate_nvm_checksum_82580(struct e1000_hw *hw); -static s32 e1000_update_nvm_checksum_82580(struct e1000_hw *hw); -static s32 e1000_update_nvm_checksum_with_offset(struct e1000_hw *hw, +static s32 igb_get_phy_id_82575(struct e1000_hw *hw); +static void igb_release_swfw_sync_82575(struct e1000_hw *hw, u16 mask); +static bool igb_sgmii_active_82575(struct e1000_hw *hw); +static s32 igb_reset_init_script_82575(struct e1000_hw *hw); +static s32 igb_read_mac_addr_82575(struct e1000_hw *hw); +static void igb_config_collision_dist_82575(struct e1000_hw *hw); +static void igb_power_down_phy_copper_82575(struct e1000_hw *hw); +static void igb_shutdown_serdes_link_82575(struct e1000_hw *hw); +static void igb_power_up_serdes_link_82575(struct e1000_hw *hw); +static s32 igb_set_pcie_completion_timeout(struct e1000_hw *hw); +static s32 igb_reset_mdicnfg_82580(struct e1000_hw *hw); +static s32 igb_validate_nvm_checksum_82580(struct e1000_hw *hw); +static s32 igb_update_nvm_checksum_82580(struct e1000_hw *hw); +static s32 igb_update_nvm_checksum_with_offset(struct e1000_hw *hw, u16 offset); -static s32 e1000_validate_nvm_checksum_with_offset(struct e1000_hw *hw, +static s32 igb_validate_nvm_checksum_with_offset(struct e1000_hw *hw, u16 offset); -static s32 e1000_validate_nvm_checksum_i350(struct e1000_hw *hw); -static s32 e1000_update_nvm_checksum_i350(struct e1000_hw *hw); -static void e1000_write_vfta_i350(struct e1000_hw *hw, u32 offset, u32 value); -static void e1000_clear_vfta_i350(struct e1000_hw *hw); - -static void e1000_i2c_start(struct e1000_hw *hw); -static void e1000_i2c_stop(struct e1000_hw *hw); -static s32 e1000_clock_in_i2c_byte(struct e1000_hw *hw, u8 *data); -static s32 e1000_clock_out_i2c_byte(struct e1000_hw *hw, u8 data); -static s32 e1000_get_i2c_ack(struct e1000_hw *hw); -static s32 e1000_clock_in_i2c_bit(struct e1000_hw *hw, bool *data); -static s32 e1000_clock_out_i2c_bit(struct e1000_hw *hw, bool data); -static void e1000_raise_i2c_clk(struct e1000_hw *hw, u32 *i2cctl); -static void e1000_lower_i2c_clk(struct e1000_hw *hw, u32 *i2cctl); -static s32 e1000_set_i2c_data(struct e1000_hw *hw, u32 *i2cctl, bool data); -static bool e1000_get_i2c_data(u32 *i2cctl); +static s32 igb_validate_nvm_checksum_i350(struct e1000_hw *hw); +static s32 igb_update_nvm_checksum_i350(struct e1000_hw *hw); +static void igb_write_vfta_i350(struct e1000_hw *hw, u32 offset, u32 value); +static void igb_clear_vfta_i350(struct e1000_hw *hw); + +static void igb_i2c_start(struct e1000_hw *hw); +static void igb_i2c_stop(struct e1000_hw *hw); +static s32 igb_clock_in_i2c_byte(struct e1000_hw *hw, u8 *data); +static s32 igb_clock_out_i2c_byte(struct e1000_hw *hw, u8 data); +static s32 igb_get_i2c_ack(struct e1000_hw *hw); +static s32 igb_clock_in_i2c_bit(struct e1000_hw *hw, bool *data); +static s32 igb_clock_out_i2c_bit(struct e1000_hw *hw, bool data); +static void igb_raise_i2c_clk(struct e1000_hw *hw, u32 *i2cctl); +static void igb_lower_i2c_clk(struct e1000_hw *hw, u32 *i2cctl); +static s32 igb_set_i2c_data(struct e1000_hw *hw, u32 *i2cctl, bool data); +static bool igb_get_i2c_data(u32 *i2cctl); static const u16 e1000_82580_rxpbs_table[] = { 36, 72, 144, 1, 2, 4, 8, 16, 35, 70, 140 }; @@ -130,7 +130,7 @@ static const u16 e1000_82580_rxpbs_table * Called to determine if the I2C pins are being used for I2C or as an * external MDIO interface since the two options are mutually exclusive. **/ -static bool e1000_sgmii_uses_mdio_82575(struct e1000_hw *hw) +static bool igb_sgmii_uses_mdio_82575(struct e1000_hw *hw) { u32 reg = 0; bool ext_mdio = FALSE; @@ -161,7 +161,7 @@ static bool e1000_sgmii_uses_mdio_82575( * e1000_init_phy_params_82575 - Init PHY func ptrs. * @hw: pointer to the HW structure **/ -static s32 e1000_init_phy_params_82575(struct e1000_hw *hw) +static s32 igb_init_phy_params_82575(struct e1000_hw *hw) { struct e1000_phy_info *phy = &hw->phy; s32 ret_val = E1000_SUCCESS; @@ -169,63 +169,63 @@ static s32 e1000_init_phy_params_82575(s DEBUGFUNC("e1000_init_phy_params_82575"); - phy->ops.read_i2c_byte = e1000_read_i2c_byte_generic; - phy->ops.write_i2c_byte = e1000_write_i2c_byte_generic; + phy->ops.read_i2c_byte = igb_read_i2c_byte_generic; + phy->ops.write_i2c_byte = igb_write_i2c_byte_generic; if (hw->phy.media_type != e1000_media_type_copper) { phy->type = e1000_phy_none; goto out; } - phy->ops.power_up = e1000_power_up_phy_copper; - phy->ops.power_down = e1000_power_down_phy_copper_82575; + phy->ops.power_up = igb_power_up_phy_copper; + phy->ops.power_down = igb_power_down_phy_copper_82575; phy->autoneg_mask = AUTONEG_ADVERTISE_SPEED_DEFAULT; phy->reset_delay_us = 100; - phy->ops.acquire = e1000_acquire_phy_82575; - phy->ops.check_reset_block = e1000_check_reset_block_generic; - phy->ops.commit = e1000_phy_sw_reset_generic; - phy->ops.get_cfg_done = e1000_get_cfg_done_82575; - phy->ops.release = e1000_release_phy_82575; + phy->ops.acquire = igb_acquire_phy_82575; + phy->ops.check_reset_block = igb_check_reset_block_generic; + phy->ops.commit = igb_phy_sw_reset_generic; + phy->ops.get_cfg_done = igb_get_cfg_done_82575; + phy->ops.release = igb_release_phy_82575; ctrl_ext = E1000_READ_REG(hw, E1000_CTRL_EXT); - if (e1000_sgmii_active_82575(hw)) { - phy->ops.reset = e1000_phy_hw_reset_sgmii_82575; + if (igb_sgmii_active_82575(hw)) { + phy->ops.reset = igb_phy_hw_reset_sgmii_82575; ctrl_ext |= E1000_CTRL_I2C_ENA; } else { - phy->ops.reset = e1000_phy_hw_reset_generic; + phy->ops.reset = igb_phy_hw_reset_generic; ctrl_ext &= ~E1000_CTRL_I2C_ENA; } E1000_WRITE_REG(hw, E1000_CTRL_EXT, ctrl_ext); - e1000_reset_mdicnfg_82580(hw); + igb_reset_mdicnfg_82580(hw); - if (e1000_sgmii_active_82575(hw) && !e1000_sgmii_uses_mdio_82575(hw)) { - phy->ops.read_reg = e1000_read_phy_reg_sgmii_82575; - phy->ops.write_reg = e1000_write_phy_reg_sgmii_82575; + if (igb_sgmii_active_82575(hw) && !igb_sgmii_uses_mdio_82575(hw)) { + phy->ops.read_reg = igb_read_phy_reg_sgmii_82575; + phy->ops.write_reg = igb_write_phy_reg_sgmii_82575; } else { switch (hw->mac.type) { case e1000_82580: case e1000_i350: case e1000_i354: - phy->ops.read_reg = e1000_read_phy_reg_82580; - phy->ops.write_reg = e1000_write_phy_reg_82580; + phy->ops.read_reg = igb_read_phy_reg_82580; + phy->ops.write_reg = igb_write_phy_reg_82580; break; case e1000_i210: case e1000_i211: - phy->ops.read_reg = e1000_read_phy_reg_gs40g; - phy->ops.write_reg = e1000_write_phy_reg_gs40g; + phy->ops.read_reg = igb_read_phy_reg_gs40g; *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***